From 590d2d55833b3f18b3bf9c33e99cac45bc1d0a44 Mon Sep 17 00:00:00 2001 From: Athan Clark Date: Sat, 26 Jan 2019 00:47:47 -0700 Subject: [PATCH 0001/2682] fixing #3551 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0d15b5b7..af1f6532 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1874,7 +1874,7 @@ packages: - composition-extra - every - extractable-singleton - - follow-file < 0 # https://github.com/fpco/stackage/issues/3551 + - follow-file - HSet - markup < 0 # GHC 8.4 via clay - monad-control-aligned From a4b8cf413223ef639d932cfd2987b809db91df52 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 6 Mar 2019 04:48:31 +0000 Subject: [PATCH 0002/2682] Install GHC via Stack PPA does not yet include GHC 8.6.4 --- Dockerfile | 4 +++- debian-bootstrap.sh | 29 ++++++++++++++--------------- 2 files changed, 17 insertions(+), 16 deletions(-) diff --git a/Dockerfile b/Dockerfile index 408a8fc9..ca89e46b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,9 +2,11 @@ FROM fpco/pid1:18.04 ENV HOME /home/stackage ENV LANG en_US.UTF-8 +ENV GHCVER 8.6.4 +ENV GHCDIR /home/stackage/.stack/programs/x86_64-linux/ghc-$GHCVER # NOTE: also update debian-bootstrap.sh when cuda version changes -ENV PATH /usr/local/cuda-10.0/bin:/opt/ghc/8.6.4/bin:/usr/sbin:/usr/bin:/sbin:/bin +ENV PATH /usr/local/cuda-10.0/bin:/home/stackage/.stack/programs/x86_64-linux/ghc-$GHCVER:/usr/sbin:/usr/bin:/sbin:/bin ENV CUDA_PATH /usr/local/cuda-10.0 ADD debian-bootstrap.sh /tmp/debian-bootstrap.sh diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index 6b90ed36..33d7aba8 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -10,13 +10,21 @@ # instructions, see: # http://www.stackage.org/install -set -exu +set -exuo pipefail mkdir -p /home/stackage export LANG=C.UTF-8 export DEBIAN_FRONTEND=noninteractive +# Get curl +apt-get update +apt-get install -y curl + +# Get Stack and GHC +curl -sSL https://get.haskellstack.org/ | sh -s - -d /usr/bin +stack setup --resolver ghc-$GHCVER + apt-get update apt-get install -y \ @@ -146,11 +154,6 @@ apt-get install -y \ zlib1g-dev \ zsh -GHCVER=8.6.4 - -add-apt-repository ppa:hvr/ghc -y -apt-get install -y ghc-$GHCVER ghc-$GHCVER-dyn ghc-$GHCVER-htmldocs ghc-$GHCVER-prof - # odbc curl https://packages.microsoft.com/keys/microsoft.asc | apt-key add - curl https://packages.microsoft.com/config/debian/9/prod.list > /etc/apt/sources.list.d/mssql-release.list @@ -159,11 +162,6 @@ ACCEPT_EULA=Y apt-get install msodbcsql17 -y locale-gen en_US.UTF-8 -curl -sSL https://get.haskellstack.org/ | sh - -# Put documentation where we expect it -mv /opt/ghc/$GHCVER/share/doc/ghc-$GHCVER/ /opt/ghc/$GHCVER/share/doc/ghc - # llvm-7.0 for llvm-hs (separate since it needs wget) wget -O - http://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - \ && add-apt-repository "deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-7 main" \ @@ -258,10 +256,6 @@ apt-add-repository multiverse \ export CLANG_PURE_LLVM_LIB_DIR=/usr/lib/llvm-6.0/lib; export CLANG_PURE_LLVM_INCLUDE_DIR=/usr/lib/llvm-6.0/include; -# finally run: -ldconfig -# EOF: don't build anything below this line - # protoc, for proto-lens-combinators test suite # Instructions from: https://google.github.io/proto-lens/installing-protoc.html PROTOC_ZIP=protoc-3.3.0-linux-x86_64.zip @@ -278,3 +272,8 @@ echo /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/server > /etc/ld.so.conf.d/ echo /usr/lib/llvm-3.7/lib > /etc/ld.so.conf.d/llvm.conf ldconfig +# EOF: don't build anything below this line + +# Cleanup +apt-get clean +rm -rf /var/lib/apt/lists/* From 2c98036ed6551de54ae3ef396b74e7fb8d3428a8 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 6 Mar 2019 04:55:31 +0000 Subject: [PATCH 0003/2682] Fix PATH --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ca89e46b..0b6189c7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,10 +3,9 @@ FROM fpco/pid1:18.04 ENV HOME /home/stackage ENV LANG en_US.UTF-8 ENV GHCVER 8.6.4 -ENV GHCDIR /home/stackage/.stack/programs/x86_64-linux/ghc-$GHCVER # NOTE: also update debian-bootstrap.sh when cuda version changes -ENV PATH /usr/local/cuda-10.0/bin:/home/stackage/.stack/programs/x86_64-linux/ghc-$GHCVER:/usr/sbin:/usr/bin:/sbin:/bin +ENV PATH /home/stackage/.stack/programs/x86_64-linux/ghc-$GHCVER/bin:/usr/local/cuda-10.0/bin:/usr/sbin:/usr/bin:/sbin:/bin ENV CUDA_PATH /usr/local/cuda-10.0 ADD debian-bootstrap.sh /tmp/debian-bootstrap.sh From c3df5924f2262ffaf7989f9f46df4190aa0a1b25 Mon Sep 17 00:00:00 2001 From: 23prime <23.prime.37@gmail.com> Date: Tue, 5 Mar 2019 23:03:42 +0900 Subject: [PATCH 0004/2682] Add oeis2 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index fc261171..a4a87329 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3843,6 +3843,9 @@ packages: "Jan Path @janpath": - smallcheck-series + "Taisuke Hikawa <23.prime.37@gmail.com> @23prime": + - oeis2 + "Grandfathered dependencies": - Boolean - ChasingBottoms From 6915845ded1318f423ef5f0619d9e9e4cae8c413 Mon Sep 17 00:00:00 2001 From: Kirill Zaborsky Date: Tue, 5 Mar 2019 17:55:48 +0300 Subject: [PATCH 0005/2682] Fix snapshot repository URLs They were moved from fpco organization to commercialhaskell --- CURATORS.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CURATORS.md b/CURATORS.md index f3937e87..0ac5ca24 100644 --- a/CURATORS.md +++ b/CURATORS.md @@ -23,8 +23,8 @@ process works: * The [Travis job](https://github.com/commercialhaskell/stackage/blob/master/.travis.yml) performs these two steps to provide immediate feedback on pull requests * Docker Hub [builds](https://github.com/commercialhaskell/stackage/blob/master/Dockerfile) a [Docker image](https://hub.docker.com/r/commercialhaskell/stackage/) for running builds * The stackage-build server (described below) is able to run automated builds using the [build.sh script](https://github.com/commercialhaskell/stackage/blob/master/automated/build.sh) -* When a new Nightly build is completed, it is uploaded to [the nightly repo](https://github.com/fpco/stackage-nightly) -* Once a week, we run an LTS minor bump. Instead of using build-constraints.yaml, that job takes the previous LTS release, turns it into constraints, and then bumps the version numbers to the latest on Hackage, in accordance with the version bounds in the build plan. This plans are uploaded to [the LTS repo](https://github.com/fpco/lts-haskell) +* When a new Nightly build is completed, it is uploaded to [the nightly repo](https://github.com/commercialhaskell/stackage-nightly) +* Once a week, we run an LTS minor bump. Instead of using build-constraints.yaml, that job takes the previous LTS release, turns it into constraints, and then bumps the version numbers to the latest on Hackage, in accordance with the version bounds in the build plan. This plans are uploaded to [the LTS repo](https://github.com/commercialhaskell/lts-haskell) * Cutting a new LTS major release is essentially just a Stackage Nightly that gets rebuilt and uploaded as an LTS ## Pull requests From 2c5df71c8f7834afe8a650236ac32f4a6b137919 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Tue, 5 Mar 2019 15:55:35 -0500 Subject: [PATCH 0006/2682] Restore ekg and ekg-json --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a4a87329..89bf649c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1157,8 +1157,8 @@ packages: - wai-middleware-caching-lru < 0 - wai-middleware-caching-redis < 0 # GHC 8.4 via hedis # not package maintainer - - ekg < 0 # via aeson-1.4.0.0 - - ekg-json < 0 # via aeson-1.4.0.0 + - ekg + - ekg-json "Paul Rouse @paul-rouse": - mysql From c95ada983c6654a8b515778c857592da20ac03c5 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 6 Mar 2019 00:38:42 +0200 Subject: [PATCH 0007/2682] Upper bound on distribution-nixpkgs for #4406 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 89bf649c..b90d5b06 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2358,7 +2358,7 @@ packages: - cabal2nix - cabal2spec - cgi - - distribution-nixpkgs + - distribution-nixpkgs < 1.2 # https://github.com/commercialhaskell/stackage/issues/4406 - distribution-opensuse - flexible-defaults - funcmp From 085c16340828c8966e16a90d924ee9f906453728 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 6 Mar 2019 00:52:55 +0200 Subject: [PATCH 0008/2682] Block three packages with transformers upper bounds and close #4408 --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b90d5b06..8b587a32 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2096,7 +2096,7 @@ packages: - range "Vladislav Zavialov @int-index": - - transformers-lift + - transformers-lift < 0 # transformers https://github.com/commercialhaskell/stackage/issues/4408 - union - named - inj @@ -2173,7 +2173,7 @@ packages: - xlsx "Matt Parsons @parsonsmatt": - - monad-logger-prefix + - monad-logger-prefix < 0 # trasnformers https://github.com/commercialhaskell/stackage/issues/4408 - monad-metrics < 0 # - ekg-cloudwatch # http-conduit 2.3 via amazonka - smtp-mail @@ -2745,7 +2745,7 @@ packages: - binary-bits "Alex McLean @yaxu": - - tidal + - tidal < 0 # transformers https://github.com/commercialhaskell/stackage/issues/4408 - hosc "Kei Hibino @khibino": From 023e9277af2965c803dafe0e1bce4f70e5a367de Mon Sep 17 00:00:00 2001 From: Brent Yorgey Date: Tue, 5 Mar 2019 20:22:00 -0600 Subject: [PATCH 0009/2682] Reinstate palette Reinstate the palette package, which has been updated since it was removed. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8b587a32..83144c6e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1420,7 +1420,7 @@ packages: - bcrypt "Jeffrey Rosenbluth @jeffreyrosenbluth": - - palette < 0 + - palette - diagrams-canvas - svg-builder From 1d20e59b919db99c22f157c0c8208f91bdcf6354 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 6 Mar 2019 12:49:08 +0200 Subject: [PATCH 0010/2682] Block refined nikita-volkov/refined#33 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 83144c6e..e0351344 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1248,7 +1248,7 @@ packages: - postgresql-binary - slave-thread < 0 - stm-containers < 0 - - refined + - refined < 0 # https://github.com/nikita-volkov/refined/issues/33 "Iustin Pop @iustin": - prefix-units From 308069e2147281f00ea47fc9c9896ce36018e32b Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 6 Mar 2019 12:49:20 +0200 Subject: [PATCH 0011/2682] Block packages for minad/writer-cps-mtl#3 --- build-constraints.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e0351344..f85f2ddb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3045,17 +3045,17 @@ packages: "Daniel Mendler @minad": - quickcheck-special - - writer-cps-mtl + - writer-cps-mtl < 0 # https://github.com/minad/writer-cps-mtl/issues/3 - writer-cps-transformers - writer-cps-morph - - writer-cps-lens - - writer-cps-full - - writer-cps-exceptions + - writer-cps-lens < 0 # writer-cps-mtl + - writer-cps-full < 0 # writer-cps-mtl + - writer-cps-exceptions < 0 # https://github.com/minad/writer-cps-mtl/issues/3 - wl-pprint-annotated - wl-pprint-console - console-style - unlit - - intro + - intro < 0 # writer-cps-mtl - tasty-stats < 0 - colorful-monoids - ihs From 8ff68e16ed5f6933ec43e46482c8755aa9050405 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 6 Mar 2019 12:52:07 +0200 Subject: [PATCH 0012/2682] Extra blocked package due to refined --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f85f2ddb..29d89222 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2036,7 +2036,7 @@ packages: - conduit-parse - dublincore-xml-conduit - euler-tour-tree < 0 # GHC 8.4 via base-4.11.0.0 - - opml-conduit + - opml-conduit < 0 # refined - rss-conduit < 0 - timerep - xml-conduit-parse From 84e786baa8b5326691be165fa93c43e333734e22 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 6 Mar 2019 16:03:28 +0200 Subject: [PATCH 0013/2682] Remove upper bound on distribution-nixpkgs and close #4406 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 29d89222..c2a2f196 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2358,7 +2358,7 @@ packages: - cabal2nix - cabal2spec - cgi - - distribution-nixpkgs < 1.2 # https://github.com/commercialhaskell/stackage/issues/4406 + - distribution-nixpkgs - distribution-opensuse - flexible-defaults - funcmp From 474c39d549ca46ccfb0ab1beb9b0f6ed1d50ba3d Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 7 Mar 2019 03:51:04 +0200 Subject: [PATCH 0014/2682] Upper bound for simonmichael/hledger#983 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index c2a2f196..28485481 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4481,6 +4481,9 @@ packages: - hunit-dejafu < 2.0.0.0 - tasty-dejafu < 2.0.0.0 + # https://github.com/simonmichael/hledger/issues/983 + - easytest < 0.3 + # end of packages # Package flags are applied to individual packages, and override the values of From f51838e50adf7ebee3c0a3c1851d3dd9b2be5bc1 Mon Sep 17 00:00:00 2001 From: Daniel Mendler Date: Thu, 7 Mar 2019 15:22:29 +0100 Subject: [PATCH 0015/2682] Reenable pkgs depending on writer-cps-transformers Issue is fixed https://github.com/minad/writer-cps-mtl/issues/3 --- build-constraints.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 28485481..cbbb7c4d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3045,17 +3045,17 @@ packages: "Daniel Mendler @minad": - quickcheck-special - - writer-cps-mtl < 0 # https://github.com/minad/writer-cps-mtl/issues/3 + - writer-cps-mtl - writer-cps-transformers - writer-cps-morph - - writer-cps-lens < 0 # writer-cps-mtl - - writer-cps-full < 0 # writer-cps-mtl - - writer-cps-exceptions < 0 # https://github.com/minad/writer-cps-mtl/issues/3 + - writer-cps-lens + - writer-cps-full + - writer-cps-exceptions - wl-pprint-annotated - wl-pprint-console - console-style - unlit - - intro < 0 # writer-cps-mtl + - intro - tasty-stats < 0 - colorful-monoids - ihs From 7463400a9fe468917fed585d12e31aca1d44c652 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 8 Mar 2019 06:05:34 +0200 Subject: [PATCH 0016/2682] Block more writer-cps packages See: * https://github.com/louispan/writer-cps-morph/issues/2 * https://github.com/louispan/writer-cps-lens/issues/2 --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index cbbb7c4d..e4d94c92 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3047,9 +3047,9 @@ packages: - quickcheck-special - writer-cps-mtl - writer-cps-transformers - - writer-cps-morph - - writer-cps-lens - - writer-cps-full + - writer-cps-morph < 0 # https://github.com/louispan/writer-cps-morph/issues/2 + - writer-cps-lens < 0 # https://github.com/louispan/writer-cps-lens/issues/2 + - writer-cps-full < 0 - writer-cps-exceptions - wl-pprint-annotated - wl-pprint-console From 018fcb5c357ac18c6e4be9d4c33b43aae9059da4 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 8 Mar 2019 06:06:04 +0200 Subject: [PATCH 0017/2682] Upper bounds on validity for NorfairKing/validity#62 --- build-constraints.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e4d94c92..243abff3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3545,11 +3545,11 @@ packages: - gym-http-api "Tom Sydney Kerckhove @NorfairKing": - - genvalidity - - genvalidity-aeson - - genvalidity-bytestring - - genvalidity-containers - - genvalidity-hspec + - genvalidity < 0.8 # https://github.com/NorfairKing/validity/issues/62 + - genvalidity-aeson < 0.3 + - genvalidity-bytestring < 0.5 + - genvalidity-containers < 0.6 + - genvalidity-hspec < 0.7 - genvalidity-hspec-aeson - genvalidity-hspec-binary - genvalidity-hspec-cereal @@ -3560,7 +3560,7 @@ packages: - genvalidity-scientific - genvalidity-text - genvalidity-time - - genvalidity-unordered-containers + - genvalidity-unordered-containers < 0.3 - genvalidity-uuid - genvalidity-vector - validity From 715842f961dcfdb6bac3532e3429d0e75c06db18 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 8 Mar 2019 06:09:50 +0200 Subject: [PATCH 0018/2682] Another genvalidity upper bound --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 243abff3..e285044d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3558,7 +3558,7 @@ packages: - genvalidity-path - genvalidity-property - genvalidity-scientific - - genvalidity-text + - genvalidity-text < 0.6 - genvalidity-time - genvalidity-unordered-containers < 0.3 - genvalidity-uuid From d2429284c8ff71889a10b27cb57b234ae7d2baf1 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 8 Mar 2019 06:29:33 +0200 Subject: [PATCH 0019/2682] Hopefully last genvalidity upper bound --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e285044d..5b1f4ef2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3550,7 +3550,7 @@ packages: - genvalidity-bytestring < 0.5 - genvalidity-containers < 0.6 - genvalidity-hspec < 0.7 - - genvalidity-hspec-aeson + - genvalidity-hspec-aeson < 0.3.1 - genvalidity-hspec-binary - genvalidity-hspec-cereal - genvalidity-hspec-hashable From 0c1c3de4b1620454b559b1f1d41d8be299a630cd Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 8 Mar 2019 12:27:49 +0200 Subject: [PATCH 0020/2682] Remove upper bounds NorfairKing/validity#62 --- build-constraints.yaml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5b1f4ef2..e4d94c92 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3545,12 +3545,12 @@ packages: - gym-http-api "Tom Sydney Kerckhove @NorfairKing": - - genvalidity < 0.8 # https://github.com/NorfairKing/validity/issues/62 - - genvalidity-aeson < 0.3 - - genvalidity-bytestring < 0.5 - - genvalidity-containers < 0.6 - - genvalidity-hspec < 0.7 - - genvalidity-hspec-aeson < 0.3.1 + - genvalidity + - genvalidity-aeson + - genvalidity-bytestring + - genvalidity-containers + - genvalidity-hspec + - genvalidity-hspec-aeson - genvalidity-hspec-binary - genvalidity-hspec-cereal - genvalidity-hspec-hashable @@ -3558,9 +3558,9 @@ packages: - genvalidity-path - genvalidity-property - genvalidity-scientific - - genvalidity-text < 0.6 + - genvalidity-text - genvalidity-time - - genvalidity-unordered-containers < 0.3 + - genvalidity-unordered-containers - genvalidity-uuid - genvalidity-vector - validity From 2334ee7532a4653d087006d02af0ce65fa1f42e1 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 8 Mar 2019 12:31:21 +0200 Subject: [PATCH 0021/2682] Add back servant-auth-client --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e4d94c92..31191a49 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3638,7 +3638,7 @@ packages: - pretty-sop - servant-auth - servant-auth-server - - servant-auth-client < 0 # https://github.com/haskell-servant/servant-auth/issues/144 + - servant-auth-client - servant-auth-swagger - servant-auth-docs - servant-elm From f2f533a12492eb5e21a0e3b8b03ed26bd478d168 Mon Sep 17 00:00:00 2001 From: quxbar Date: Sat, 9 Mar 2019 17:23:45 +0100 Subject: [PATCH 0022/2682] add chronos-bench --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 31191a49..39ed86f6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -143,6 +143,7 @@ packages: "Florian Knupfer @knupfer": - type-of-html - type-of-html-static + - chronos-bench "Mikolaj Konarski @Mikolaj": - sdl2-ttf From 43e80cbe1c7100e7650e32b147f33e9751bbef71 Mon Sep 17 00:00:00 2001 From: David Himmelstrup Date: Sun, 10 Mar 2019 07:16:42 +0100 Subject: [PATCH 0023/2682] add reanimate-svg --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 39ed86f6..b58d2531 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3846,6 +3846,9 @@ packages: "Taisuke Hikawa <23.prime.37@gmail.com> @23prime": - oeis2 + + "David Himmelstrup @lemmih": + - reanimate-svg "Grandfathered dependencies": - Boolean From 7f46f58a94143ba0a3ac8c40bb062c64b1dfdc80 Mon Sep 17 00:00:00 2001 From: Alexander Vershilov Date: Sun, 10 Mar 2019 11:58:02 +0300 Subject: [PATCH 0024/2682] put back inline-r. --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b58d2531..82528330 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2002,11 +2002,11 @@ packages: - choice - distributed-closure - inline-java < 0 - - inline-r < 0 # https://github.com/commercialhaskell/stackage/issues/4216 + - inline-r - jni - jvm - jvm-streaming < 0 - - H < 0 # via inline-r + - H - sparkle < 0 - th-lift From 83c8178fd603aa433fd9439b9c07150bd38db901 Mon Sep 17 00:00:00 2001 From: Sebastian Witte Date: Sun, 10 Mar 2019 17:50:31 +0100 Subject: [PATCH 0025/2682] Re-add messagepack --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 82528330..83ce05b7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -979,7 +979,7 @@ packages: - servant-subscriber < 0 # build failure with servant 0.14: https://github.com/eskimor/servant-subscriber/issues/17 "Rodrigo Setti @rodrigosetti": - - messagepack < 0 + - messagepack - messagepack-rpc < 0 "Boris Lykah @lykahb": From 7794702b6cd718db764963db1b2773df27eac655 Mon Sep 17 00:00:00 2001 From: Sebastian Witte Date: Mon, 11 Mar 2019 16:22:43 +0100 Subject: [PATCH 0026/2682] Re-add nvim-hs, nvim-hs-contrib --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 83ce05b7..e5c07943 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3367,8 +3367,8 @@ packages: - katip-scalyr-scribe < 0 # via katip "Sebastian Witte @saep": - - nvim-hs < 0 - - nvim-hs-contrib < 0 + - nvim-hs + - nvim-hs-contrib # - nvim-hs-ghcid "Sam Protas @SamProtas": From 5b0ad5a1df54553a3dd84f5536f04fb2bb3062fb Mon Sep 17 00:00:00 2001 From: David Himmelstrup Date: Tue, 12 Mar 2019 08:25:20 +0100 Subject: [PATCH 0027/2682] Add reanimate --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index e5c07943..fa046079 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3849,6 +3849,7 @@ packages: "David Himmelstrup @lemmih": - reanimate-svg + - reanimate "Grandfathered dependencies": - Boolean From 968b411e338a64c2d73ba60c3d57337ab9c81cb4 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 12 Mar 2019 07:13:41 -0700 Subject: [PATCH 0028/2682] Revert "Add reanimate" --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index fa046079..e5c07943 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3849,7 +3849,6 @@ packages: "David Himmelstrup @lemmih": - reanimate-svg - - reanimate "Grandfathered dependencies": - Boolean From 7a91ecd41ac1240a1e9d0f552966c82222f68de3 Mon Sep 17 00:00:00 2001 From: David Himmelstrup Date: Tue, 12 Mar 2019 16:39:25 +0100 Subject: [PATCH 0029/2682] Add reanimate 0.1.4.1 should fix the dependency issue. --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index e5c07943..fa046079 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3849,6 +3849,7 @@ packages: "David Himmelstrup @lemmih": - reanimate-svg + - reanimate "Grandfathered dependencies": - Boolean From c28dbc18ef3b0f80675f8f73a884638951f46eff Mon Sep 17 00:00:00 2001 From: Justin Le Date: Thu, 14 Mar 2019 18:13:30 -0700 Subject: [PATCH 0030/2682] Add list-witnesses to stackage --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index fa046079..c1fde214 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1958,6 +1958,7 @@ packages: - hmatrix-backprop - hmatrix-vector-sized - lens-typelevel + - list-witnesses - nonempty-containers - one-liner-instances - prompt From d06890c2a4053fb9a01bd43017c25808fc72a3db Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 14 Mar 2019 20:58:54 -0700 Subject: [PATCH 0031/2682] Remove trailing whitespace --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c1fde214..369e824d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3847,7 +3847,7 @@ packages: "Taisuke Hikawa <23.prime.37@gmail.com> @23prime": - oeis2 - + "David Himmelstrup @lemmih": - reanimate-svg - reanimate From 4a86fe3e4e6e65fd1d20979fec63bc5ece8ac68d Mon Sep 17 00:00:00 2001 From: Neil Mitchell Date: Fri, 15 Mar 2019 16:15:00 +0000 Subject: [PATCH 0032/2682] Add js-dgtable to constraints --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 369e824d..cbdc572a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -554,6 +554,7 @@ packages: - nsis - js-jquery - js-flot + - js-dgtable - extra - ghcid - hexml From 7a259ac406b12abefad6b49f200be8c462a95ad6 Mon Sep 17 00:00:00 2001 From: Matt Parsons Date: Fri, 15 Mar 2019 20:25:52 -0600 Subject: [PATCH 0033/2682] Add persistent-typed-db, restore other packages esqueleto, monad-logger-prefix, liboath-hs, and monad-metrics have all been updated to be compliant with stackage nightly. --- build-constraints.yaml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index cbdc572a..6a2795d6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2176,13 +2176,14 @@ packages: - xlsx "Matt Parsons @parsonsmatt": - - monad-logger-prefix < 0 # trasnformers https://github.com/commercialhaskell/stackage/issues/4408 - - monad-metrics < 0 + - monad-logger-prefix + - monad-metrics # - ekg-cloudwatch # http-conduit 2.3 via amazonka - smtp-mail - - liboath-hs < 0 # GHC 8.4 via inline-c + - liboath-hs - servant-quickcheck < 0 - - esqueleto < 0 # https://github.com/bitemyapp/esqueleto/issues/115 + - esqueleto + - persistent-typed-db "Matthew Pickering @mpickering": - refact From fb1dcb0a9b57e45dbdeca93ff6c908959bc45822 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 16 Mar 2019 09:06:07 -0700 Subject: [PATCH 0034/2682] No more esqueleto haddock failures --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6a2795d6..e3224c1b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5256,9 +5256,6 @@ expected-haddock-failures: - bins - emd - hmatrix-backprop - - # https://github.com/haskell/haddock/issues/979 - - esqueleto # end of expected-haddock-failures # For packages with haddock issues From ac03184587f13e3680360e7679f0fadc4ef6f0aa Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 16 Mar 2019 15:53:26 -0700 Subject: [PATCH 0035/2682] Test skipped-haddocks --- build-constraints.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e3224c1b..2609666d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5260,10 +5260,10 @@ expected-haddock-failures: # For packages with haddock issues skipped-haddocks: -- approximate -- invertible -- modular # https://github.com/haskell/haddock/issues/900 -- sparkle # Java function failures tweag/sparkle#144 +# approximate +# invertible +# modular # https://github.com/haskell/haddock/issues/900 +# sparkle # Java function failures tweag/sparkle#144 # end of skipped-haddocks # Benchmarks which should not be built. Note that Stackage builds benchmarks but does not run them. From e282b1642d9911800d2e03b75d1e985c125edcc9 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 16 Mar 2019 16:06:58 -0700 Subject: [PATCH 0036/2682] Keep modular and sparkle --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2609666d..8252be98 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5262,8 +5262,8 @@ expected-haddock-failures: skipped-haddocks: # approximate # invertible -# modular # https://github.com/haskell/haddock/issues/900 -# sparkle # Java function failures tweag/sparkle#144 +- modular # https://github.com/haskell/haddock/issues/900 +- sparkle # Java function failures tweag/sparkle#144 # end of skipped-haddocks # Benchmarks which should not be built. Note that Stackage builds benchmarks but does not run them. From d4288653967d65f494ebf7b55c573d73df786844 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 17 Mar 2019 07:50:38 -0700 Subject: [PATCH 0037/2682] Approximate and invertible work --- build-constraints.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8252be98..c545d2ba 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5260,8 +5260,6 @@ expected-haddock-failures: # For packages with haddock issues skipped-haddocks: -# approximate -# invertible - modular # https://github.com/haskell/haddock/issues/900 - sparkle # Java function failures tweag/sparkle#144 # end of skipped-haddocks From 70874b1963d7d58334b804236ae29340b4fe0358 Mon Sep 17 00:00:00 2001 From: Kirill Zaborsky Date: Sun, 17 Mar 2019 21:48:28 +0300 Subject: [PATCH 0038/2682] Wait for a new release of exp-pairs Library author doesn't want to make a release yet --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index c545d2ba..73c09a8a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5626,6 +5626,7 @@ tell-me-when-its-released: - hoopl-3.10.2.2 # reenable tests, https://github.com/haskell/hoopl/issues/50 - point-octree-0.5.5.3 # re-enable test and then we can resolve https://github.com/fpco/lts-haskell/issues/27 - yarr-1.4.0.2 # Re-enable package https://github.com/fpco/stackage/issues/1876 +- exp-pairs-0.2.0.0 # remove from expected-test-failures, https://github.com/Bodigrim/exp-pairs/issues/16 # Packages which should be hidden after registering, to avoid module name # conflicts. This is intended for at least two use cases: From ddda89d503dde12ed5b67d85fab1484b9fdc6e76 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 17 Mar 2019 12:34:13 -0700 Subject: [PATCH 0039/2682] Update network dependencies and issue (#4312 -> #4427) --- build-constraints.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 73c09a8a..84d1b46a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4480,9 +4480,10 @@ packages: - Win32 == 2.6.1.0 "Stackage upper bounds": - # https://github.com/commercialhaskell/stackage/issues/4312 + # https://github.com/commercialhaskell/stackage/issues/4427 - network < 3.0.0.0 - - hsdev < 0.3.3 + - hsdev < 0.3.3.0 + - network-bsd < 2.8.1.0 # https://github.com/commercialhaskell/stackage/issues/4373 - dejafu < 2.0.0.0 From 7d5365e0d259ce9153e502d7c88afc18e293fb81 Mon Sep 17 00:00:00 2001 From: Travis Athougies Date: Mon, 18 Mar 2019 11:11:29 -0700 Subject: [PATCH 0040/2682] Re-enable beam packages --- build-constraints.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 84d1b46a..67733d1b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -100,9 +100,10 @@ packages: - geodetics "Travis Athougies @tathougies": - - beam-core < 0 - - beam-migrate < 0 - - beam-sqlite < 0 + - beam-core + - beam-migrate + - beam-sqlite + - beam-postgres "Fraser Murray Date: Mon, 18 Mar 2019 20:03:54 -0700 Subject: [PATCH 0041/2682] Expect failure on beam-postgres (#4429) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 67733d1b..258651b1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4983,6 +4983,7 @@ expected-test-failures: - accelerate-bignum # CUDA GPU - amqp - aws # AWS Credentials + - beam-postgres # requires Postgress instance - bindings-GLFW # Expects running X server - bitcoin-api - bitcoin-api-extra From 7d3043e416469b8bc6679b8684c9efcebe61e1f6 Mon Sep 17 00:00:00 2001 From: Alexey Kuleshevich Date: Wed, 20 Mar 2019 23:31:02 +0300 Subject: [PATCH 0042/2682] Add massiv-scheduler to stackage --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9ab2361e..3986242c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3200,6 +3200,7 @@ packages: # - hip # lens 4.16 via diagrams/chart - massiv - massiv-io + - massiv-scheduler "Hans-Peter Deifel @hpdeifel": - hledger-iadd From e7220d2b1f43e07d56b3382e36ca5ef022bf70ce Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Wed, 20 Mar 2019 16:25:12 -0700 Subject: [PATCH 0043/2682] hledger now has easytest upper bound --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9ab2361e..43844f5c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4491,9 +4491,6 @@ packages: - hunit-dejafu < 2.0.0.0 - tasty-dejafu < 2.0.0.0 - # https://github.com/simonmichael/hledger/issues/983 - - easytest < 0.3 - # end of packages # Package flags are applied to individual packages, and override the values of From 74f3a01e4a549223d54a6f775c992fa22385eba1 Mon Sep 17 00:00:00 2001 From: George Wilson Date: Thu, 21 Mar 2019 09:30:22 +1000 Subject: [PATCH 0044/2682] Re-add hw-hspec-hedgehog unskip tests and benchmarks for hw packages and sv --- build-constraints.yaml | 18 ++---------------- 1 file changed, 2 insertions(+), 16 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9ab2361e..15eb5c46 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2817,10 +2817,10 @@ packages: - hw-eliasfano - hw-excess - hw-hedgehog - - hw-hspec-hedgehog < 0 # via hspec-2.7.0 + - hw-hspec-hedgehog - hw-int - hw-ip - - hw-fingertree < 0 # build failure with GHC 8.4 + - hw-fingertree - hw-fingertree-strict - hw-json - hw-mquery @@ -4743,13 +4743,6 @@ skipped-tests: - servant-swagger # via hspec-2.7.0 - streaming-cassava # via hspec-2.7.0 - vinyl # via hspec-2.7.0 - - arbor-lru-cache # via hw-hspec-hedgehog via hspec-2.7.0 - - asif # via hw-hspec-hedgehog via hspec-2.7.0 - - bits-extra # via hw-hspec-hedgehog via hspec-2.7.0 - - hw-dsv # via hw-hspec-hedgehog via hspec-2.7.0 - - hw-fingertree-strict # via hw-hspec-hedgehog via hspec-2.7.0 - - hw-mquery # via hw-hspec-hedgehog via hspec-2.7.0 - - hw-simd # via hw-hspec-hedgehog via hspec-2.7.0 # Blocked due to tests failing to compile for GHC 8.6 @@ -5308,7 +5301,6 @@ skipped-benchmarks: - binary-list - binary-tagged - bit-stream - - bits-extra - bitset-word8 - blake2 - broadcast-chan @@ -5346,11 +5338,6 @@ skipped-benchmarks: - http-link-header - http2 - human-readable-duration - - hw-conduit - - hw-dsv - - hw-prim - - hw-rankselect - - hw-simd - hweblib - hxt-regex-xmlschema - ilist @@ -5397,7 +5384,6 @@ skipped-benchmarks: - sourcemap - stache - stm-hamt - - sv - tar - tar-conduit - text-builder From a5868c0dec179f736c6ee297f9a62520680af178 Mon Sep 17 00:00:00 2001 From: George Wilson Date: Thu, 21 Mar 2019 10:50:55 +1000 Subject: [PATCH 0045/2682] Add hedgehog-fn --- build-constraints.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9ab2361e..e1b390a4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2843,6 +2843,7 @@ packages: - antiope-sqs "George Wilson @gwils": + - hedgehog-fn - sv - sv-cassava - sv-core @@ -4271,9 +4272,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/3967 - text-format - # Not sure how it got here but it seems to be fine - - hedgehog-fn - # Packages without maintainers that cause issues, # this is to prevent us from including them by accident. They can # be removed from this list if they are fixed. @@ -4709,7 +4707,6 @@ skipped-tests: - tasty-discover # via hedgehog - typerep-map # via hedgehog - wide-word # via hedgehog - - nonempty-containers # via hedgehog-fn - axel # via tasty-hedgehog - bsb-http-chunked # via tasty-hedgehog - focuslist # via tasty-hedgehog From 3b4b244327a49e63d1274fafaa13b5d050b7141a Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 20 Mar 2019 20:46:29 -0700 Subject: [PATCH 0046/2682] Revert "hledger now has easytest upper bound" --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 43844f5c..9ab2361e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4491,6 +4491,9 @@ packages: - hunit-dejafu < 2.0.0.0 - tasty-dejafu < 2.0.0.0 + # https://github.com/simonmichael/hledger/issues/983 + - easytest < 0.3 + # end of packages # Package flags are applied to individual packages, and override the values of From ce73c0be5ebd58100fe6b7932b4a5bb0caa99e98 Mon Sep 17 00:00:00 2001 From: George Wilson Date: Thu, 21 Mar 2019 13:55:53 +1000 Subject: [PATCH 0047/2682] Re-add packages previously removed by [tasty-]hedgehog --- build-constraints.yaml | 29 ----------------------------- 1 file changed, 29 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2dbc59ba..0bbde3a7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4663,7 +4663,6 @@ skipped-tests: - text # QuickCheck-2.11.3 - text-short # tasty 1.1 - tree-diff # trifecta 2 - - validation # hedgehog 0.6 - vector # QuickCheck-2.11.3 - zlib # tasty-quickcheck, tasty-hunit, tasty - MissingH # testpack, quickcheck @@ -4690,34 +4689,6 @@ skipped-tests: - hw-rankselect-base # via hspec-2.6.0 - hw-streams # via hspec-2.6.0 - clay # via hspec-discover-2.6.0 - # another batch per removal of hedgehog - - axel # via hedgehog - - bsb-http-chunked # via hedgehog - - focuslist # via hedgehog - - hmatrix-backprop # via hedgehog - - hmatrix-vector-sized # via hedgehog - - hyraxAbif # via hedgehog - - loc # via hedgehog - - nonempty-containers # via hedgehog - - partial-semigroup # via hedgehog - - registry # via hedgehog - - relude # via hedgehog - - retry # via hedgehog - - rng-utils # via hedgehog - - summoner # via hedgehog - - tasty-discover # via hedgehog - - typerep-map # via hedgehog - - wide-word # via hedgehog - - axel # via tasty-hedgehog - - bsb-http-chunked # via tasty-hedgehog - - focuslist # via tasty-hedgehog - - nonempty-containers # via tasty-hedgehog - - registry # via tasty-hedgehog - - relude # via tasty-hedgehog - - retry # via tasty-hedgehog - - rng-utils # via tasty-hedgehog - - tasty-discover # via tasty-hedgehog - - typerep-map # via tasty-hedgehog # another batch for tasty 0.12 - cborg # via tasty-1.2 - ghc-prof # via tasty-1.2 From 65eae090189952a25f8593e9f4017be62867f61f Mon Sep 17 00:00:00 2001 From: George Wilson Date: Thu, 21 Mar 2019 14:18:09 +1000 Subject: [PATCH 0048/2682] Disable wide-word test suite --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0bbde3a7..29005603 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4664,6 +4664,7 @@ skipped-tests: - text-short # tasty 1.1 - tree-diff # trifecta 2 - vector # QuickCheck-2.11.3 + - wide-word # via semirings - zlib # tasty-quickcheck, tasty-hunit, tasty - MissingH # testpack, quickcheck - DBFunctor # missing file test_options.csv From aa7ff117176006342a3e96f55efbb9560b558ac2 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 20 Mar 2019 21:33:18 -0700 Subject: [PATCH 0049/2682] Remove duplicated skipped-tests for clay as they are already skipped below --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 29005603..37642fe5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4679,7 +4679,6 @@ skipped-tests: - pure-zlib # via QuickCheck-2.12.6.1 - antiope-s3 # via hspec-2.6.0 - cayley-client # via hspec-2.6.0 - - clay # via hspec-2.6.0 - codec-rpm # via hspec-2.6.0 - hw-balancedparens # via hspec-2.6.0 - hw-excess # via hspec-2.6.0 From acc0980d611ac110e0efc8ccc8ed0c498480dfda Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 20 Mar 2019 21:34:02 -0700 Subject: [PATCH 0050/2682] Keep tests skipped for focuslist as per #4436 comment --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 37642fe5..bd4ff0f8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4689,6 +4689,7 @@ skipped-tests: - hw-rankselect-base # via hspec-2.6.0 - hw-streams # via hspec-2.6.0 - clay # via hspec-discover-2.6.0 + - focuslist # via genvalidity, see https://github.com/commercialhaskell/stackage/pull/4436#issuecomment-475110614 # another batch for tasty 0.12 - cborg # via tasty-1.2 - ghc-prof # via tasty-1.2 From 9d8057e491645829c5094a95adbef22dce99d9dd Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 20 Mar 2019 21:40:42 -0700 Subject: [PATCH 0051/2682] Reorder and remove duplicated skipped test sections --- build-constraints.yaml | 88 +++++++++++++++++++----------------------- 1 file changed, 40 insertions(+), 48 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index bd4ff0f8..e38a56d1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4633,87 +4633,79 @@ skipped-tests: # These can periodically be checked for updates; # just remove these lines and run `stackage-curator check' to verify. - Cabal # GHC 8.4 via base-orphans-0.7, base-orphans-0.7 + - DBFunctor # missing file test_options.csv + - MissingH # testpack, quickcheck - RSA # DRBG-0.5.5 via cipher-aes128-0.7.0.3 via Cabal-2.4 - aeson # QuickCheck-2.11.3, base-orphans-0.7, hashable-time + - antiope-s3 # via hspec-2.6.0 - atom-conduit - attoparsec # QuickCheck-2.11.3 - barrier # tasty 0.12 and tasty-hunit 0.10 - binary-parser # tasty-1.0.1.1, tasty-quickcheck-0.10, tasty-hunit-0.10.0.1 - blaze-markup # tasty 1.1 - cabal-install # tasty 1.1 + - cayley-client # via hspec-2.6.0 + - cborg # via tasty-1.2 + - clay # via hspec-discover-2.6.0 + - codec-rpm # via hspec-2.6.0 - colour # QuickCheck-2.11.3 - drawille # hspec 2.4 - ed25519 # QuickCheck, hlint and more - exact-pi # QuickCHeck 2.12, tasty-1.2 + - focuslist # via genvalidity, see https://github.com/commercialhaskell/stackage/pull/4436#issuecomment-475110614 + - ghc-prof # via tasty-1.2 - github # hspec-2.6.0, hspec-discover-2.6.0 - hackage-security # QuickCheck - haddock-library # base-compat-0.10.1, hspec-2.5.1 + - haskell-names # via tasty-1.2 - http-streams # via snap-server-1.1.0.0 - - indents # tasty 0.12 and tasty-hunit 0.10 - - ip # hspec 2.5 https://github.com/andrewthad/haskell-ip/issues/33 - - language-ecmascript # testing-feat 1.1.0.0 - - makefile # GHC 8.2 - - next-ref # hspec 2.3 - - partial-order # HUnit 1.6 - - serialise - - stb-image-redux # hspec 2.5 - - superbuffer # QuickCheck-2.11.3 - - tar # QuickCheck-2.11.3, tasty-quickcheck, base-4.11.1 - - test-framework # QuickCheck 2.10 - - text # QuickCheck-2.11.3 - - text-short # tasty 1.1 - - tree-diff # trifecta 2 - - vector # QuickCheck-2.11.3 - - wide-word # via semirings - - zlib # tasty-quickcheck, tasty-hunit, tasty - - MissingH # testpack, quickcheck - - DBFunctor # missing file test_options.csv - # A new swath of tests per QuickCheck 2.12, hspec-2.6 - - hw-balancedparens # via QuickCheck-2.12.6.1 + - hw-balancedparens # via QuickCheck-2.12.6.1, via hspec-2.6.0 - hw-bits # via QuickCheck-2.12.6.1 - - hw-excess # via QuickCheck-2.12.6.1 - - hw-prim # via QuickCheck-2.12.6.1 - - hw-rankselect # via QuickCheck-2.12.6.1 - - hw-rankselect-base # via QuickCheck-2.12.6.1 - - psqueues # via QuickCheck-2.12.6.1 - - pure-zlib # via QuickCheck-2.12.6.1 - - antiope-s3 # via hspec-2.6.0 - - cayley-client # via hspec-2.6.0 - - codec-rpm # via hspec-2.6.0 - - hw-balancedparens # via hspec-2.6.0 - - hw-excess # via hspec-2.6.0 + - hw-excess # via QuickCheck-2.12.6.1, via hspec-2.6.0 - hw-ip # via hspec-2.6.0 - hw-json # via hspec-2.6.0 - - hw-prim # via hspec-2.6.0 - - hw-rankselect # via hspec-2.6.0 - - hw-rankselect-base # via hspec-2.6.0 + - hw-prim # via QuickCheck-2.12.6.1, via hspec-2.6.0 + - hw-rankselect # via QuickCheck-2.12.6.1, via hspec-2.6.0 + - hw-rankselect-base # via QuickCheck-2.12.6.1, via hspec-2.6.0 - hw-streams # via hspec-2.6.0 - - clay # via hspec-discover-2.6.0 - - focuslist # via genvalidity, see https://github.com/commercialhaskell/stackage/pull/4436#issuecomment-475110614 - # another batch for tasty 0.12 - - cborg # via tasty-1.2 - - ghc-prof # via tasty-1.2 - - haskell-names # via tasty-1.2 + - indents # tasty 0.12 and tasty-hunit 0.10 - insert-ordered-containers # via tasty-1.2 + - ip # hspec 2.5 https://github.com/andrewthad/haskell-ip/issues/33 + - language-ecmascript # testing-feat 1.1.0.0 - lattices # via tasty-1.2 - - pandoc # via tasty-1.2 - - servant-docs # via tasty-1.2 - - sized-grid # via tasty-1.2 - - tdigest # via tasty-1.2 - - temporary-resourcet # via tasty-1.2 - - these # via tasty-1.2 + - makefile # GHC 8.2 - mmtf # via hspec-2.7.0 + - next-ref # hspec 2.3 + - pandoc # via tasty-1.2 + - partial-order # HUnit 1.6 + - psqueues # via QuickCheck-2.12.6.1 + - pure-zlib # via QuickCheck-2.12.6.1 - records-sop # via hspec-2.7.0 + - serialise - servant # via hspec-2.7.0 - servant-client # via hspec-2.7.0 - servant-client-core # via hspec-2.7.0 + - servant-docs # via tasty-1.2 - servant-foreign # via hspec-2.7.0 - servant-js # via hspec-2.7.0 - servant-server # via hspec-2.7.0 - servant-swagger # via hspec-2.7.0 + - sized-grid # via tasty-1.2 + - stb-image-redux # hspec 2.5 - streaming-cassava # via hspec-2.7.0 + - superbuffer # QuickCheck-2.11.3 + - tar # QuickCheck-2.11.3, tasty-quickcheck, base-4.11.1 + - tdigest # via tasty-1.2 + - temporary-resourcet # via tasty-1.2 + - test-framework # QuickCheck 2.10 + - text # QuickCheck-2.11.3 + - text-short # tasty 1.1 + - these # via tasty-1.2 + - tree-diff # trifecta 2 + - vector # QuickCheck-2.11.3 - vinyl # via hspec-2.7.0 - + - wide-word # via semirings + - zlib # tasty-quickcheck, tasty-hunit, tasty # Blocked due to tests failing to compile for GHC 8.6 - async-refresh From 7c9f2edb5c41d7b975bb01b80e0b383830f44d95 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 21 Mar 2019 07:23:54 -0700 Subject: [PATCH 0052/2682] Try enable fast-builder --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e38a56d1..83f58f7e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2229,7 +2229,7 @@ packages: - fmt "Takano Akio tak@anoak.io @takano-akio": - - fast-builder < 0 # GHC 8.4 via base-4.11.0.0 + - fast-builder # 0 # GHC 8.4 via base-4.11.0.0 - filelock "Brian Lewis brian@lorf.org @bsl": From 89e468a7e236912f0832db9611b5a3c45a8fc15b Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 21 Mar 2019 07:32:23 -0700 Subject: [PATCH 0053/2682] fast-fuilder works --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 83f58f7e..422e71e5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2229,7 +2229,7 @@ packages: - fmt "Takano Akio tak@anoak.io @takano-akio": - - fast-builder # 0 # GHC 8.4 via base-4.11.0.0 + - fast-builder - filelock "Brian Lewis brian@lorf.org @bsl": From 49dc50b837a6c83e57b5dad548adc0f1d1cf58ca Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 21 Mar 2019 07:36:25 -0700 Subject: [PATCH 0054/2682] Try hspec-webdriver --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 422e71e5..8572ddb0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2082,7 +2082,7 @@ packages: "John Lenz @wuzzeb": # - yesod-static-angular # conduit 1.3, yesod 1.6 - - hspec-webdriver < 0 # https://bitbucket.org/wuzzeb/webdriver-utils/issues/9/hspec-webdriver-build-failure-with-ghc-84 + - hspec-webdriver # 0 # https://bitbucket.org/wuzzeb/webdriver-utils/issues/9/hspec-webdriver-build-failure-with-ghc-84 # - webdriver-angular # via hspec-webdriver "Sven Heyll @sheyll": From c3c51c03db03efb5b9355a9eaea0077facdb7853 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 21 Mar 2019 07:38:36 -0700 Subject: [PATCH 0055/2682] hspec-webdriver still fials --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8572ddb0..422e71e5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2082,7 +2082,7 @@ packages: "John Lenz @wuzzeb": # - yesod-static-angular # conduit 1.3, yesod 1.6 - - hspec-webdriver # 0 # https://bitbucket.org/wuzzeb/webdriver-utils/issues/9/hspec-webdriver-build-failure-with-ghc-84 + - hspec-webdriver < 0 # https://bitbucket.org/wuzzeb/webdriver-utils/issues/9/hspec-webdriver-build-failure-with-ghc-84 # - webdriver-angular # via hspec-webdriver "Sven Heyll @sheyll": From b37833ed6d18ee1aab11c8fe781ec604ed86f535 Mon Sep 17 00:00:00 2001 From: Neil Mitchell Date: Thu, 21 Mar 2019 14:52:29 +0000 Subject: [PATCH 0056/2682] Add record-hasfield package --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 422e71e5..85a2b267 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -564,6 +564,7 @@ packages: - debug - record-dot-preprocessor - filepattern + - record-hasfield "Digital Asset ": - ghc-lib From c2dea9efc79a02209c0d8fbd70277273338e109e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Buckwalter?= Date: Thu, 21 Mar 2019 16:50:38 +0100 Subject: [PATCH 0057/2682] dimensional-1.3 now builds Apparently, my previous pull request (#4275) wasn't quite right. This is a second try. Here benchmarks are disabled due to a hackage metadata edit (https://github.com/bjornbm/dimensional/issues/207). --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 422e71e5..18548398 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4328,7 +4328,6 @@ packages: - broadcast-chan < 0 - df1 < 0 - di-handle < 0 - - dimensional < 0 - exinst < 0 - extensible < 0 - gtk2hs-buildtools < 0 @@ -5236,6 +5235,7 @@ skipped-benchmarks: - binary-parsers # criterion 1.5 - buffer-builder # ghc 8.4 via json-builder build failure - cryptohash-sha512 # criterion 1.5 + - dimensional # base < 4.7, https://github.com/bjornbm/dimensional/issues/207 - ed25519 # Criterion - hw-balancedparens # criterion 1.5, https://github.com/commercialhaskell/stackage/issues/3880 - hw-rankselect-base # criterion 1.5, https://github.com/commercialhaskell/stackage/issues/3880 From 23e936a72528d3ca697df35e519e2e796bb1c2ab Mon Sep 17 00:00:00 2001 From: Kirill Zaborsky Date: Fri, 22 Mar 2019 14:58:21 +0300 Subject: [PATCH 0058/2682] Add missing dependency true-name --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f0fac79e..1d748b6b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4203,6 +4203,7 @@ packages: - token-bucket - tonatona - transformers-base + - true-name - tuple-th - type-fun - type-hint From ca1733fa50ea843cb30f3ff7ae94c383b34db371 Mon Sep 17 00:00:00 2001 From: Travis Athougies Date: Fri, 22 Mar 2019 13:17:47 -0700 Subject: [PATCH 0059/2682] Add beam-mysql to stackage --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1d748b6b..bf2216b2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -104,6 +104,7 @@ packages: - beam-migrate - beam-sqlite - beam-postgres + - beam-mysql "Fraser Murray Date: Fri, 22 Mar 2019 15:21:37 -0700 Subject: [PATCH 0060/2682] Upper bound grandfathered checkers (#4441) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1d748b6b..93665f6b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4494,6 +4494,9 @@ packages: # https://github.com/simonmichael/hledger/issues/983 - easytest < 0.3 + # https://github.com/commercialhaskell/stackage/issues/4441 + - checkers < 0.5.0 + # end of packages # Package flags are applied to individual packages, and override the values of From 2c0ed3ffeeb8be6d10742e7f94fe7b6341f190ba Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 22 Mar 2019 15:22:16 -0700 Subject: [PATCH 0061/2682] Move brick and data-clist from removed to grandfathered --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 93665f6b..8698cd75 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3859,6 +3859,8 @@ packages: - reanimate "Grandfathered dependencies": + - data-clist + - brick - Boolean - ChasingBottoms - Decimal @@ -4308,8 +4310,6 @@ packages: - hastache < 0 # GHC 8.4 via base-4.11.0.0 - attoparsec-time < 0 # GHC 8.4 via doctest-0.15.0 - syb-with-class < 0 # GHC 8.4 via template-haskell-2.13.0.0 - - data-clist - - brick - lens-labels < 0 # deprecated https://github.com/commercialhaskell/stackage/pull/4358 - proto-lens-combinators < 0 # deprecated https://github.com/commercialhaskell/stackage/pull/4358 From 59c59ecb603e4131686138dc712923fc0a099784 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 22 Mar 2019 15:22:37 -0700 Subject: [PATCH 0062/2682] Sort the grandfathered deps list --- build-constraints.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8698cd75..d814d0f7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3859,8 +3859,6 @@ packages: - reanimate "Grandfathered dependencies": - - data-clist - - brick - Boolean - ChasingBottoms - Decimal @@ -3884,10 +3882,10 @@ packages: - alsa-mixer - ansi-terminal - appar - - assoc - asn1-encoding - asn1-parse - asn1-types + - assoc - attoparsec - authenticate - auto-update @@ -3900,6 +3898,7 @@ packages: - blaze-builder - blaze-svg - blaze-textual + - brick - buffer-builder - byteable - bytestring-builder @@ -3952,6 +3951,7 @@ packages: - data-binary-ieee754 - data-bword - data-checked + - data-clist - data-default - data-default-class - data-default-instances-containers @@ -4037,13 +4037,13 @@ packages: - http-types - http2 - httpd-shed + - hw-json-simd - hw-string-parse - hxt - hxt-charproperties - hxt-http - hxt-regex-xmlschema - hxt-unicode - - hw-json-simd - iconv - ieee754 - infer-license From 29156aac61814fd3c688419224666c8f38005a6e Mon Sep 17 00:00:00 2001 From: Andrew Cowie Date: Sat, 23 Mar 2019 16:11:51 +1100 Subject: [PATCH 0063/2682] Add unbeliever package --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index a40992b4..f72a2cc1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2347,6 +2347,7 @@ packages: - http-common - http-streams - locators + - unbeliever "Sean Hunt Date: Sat, 23 Mar 2019 20:19:41 -0700 Subject: [PATCH 0064/2682] Upper bound concurrency due to #4443 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f72a2cc1..39000fa6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4499,6 +4499,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4441 - checkers < 0.5.0 + # https://github.com/commercialhaskell/stackage/issues/4443 + - concurrency < 1.7 + # end of packages # Package flags are applied to individual packages, and override the values of From b3fc087dbfda5b7cb037d7ecf54f9074dc5a2f0e Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Sun, 24 Mar 2019 15:31:55 -0700 Subject: [PATCH 0065/2682] Remove upper bounds for dejafu and concurrency Closes #4373, #4443 --- build-constraints.yaml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 39000fa6..39e597c2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4488,20 +4488,12 @@ packages: - hsdev < 0.3.3.0 - network-bsd < 2.8.1.0 - # https://github.com/commercialhaskell/stackage/issues/4373 - - dejafu < 2.0.0.0 - - hunit-dejafu < 2.0.0.0 - - tasty-dejafu < 2.0.0.0 - # https://github.com/simonmichael/hledger/issues/983 - easytest < 0.3 # https://github.com/commercialhaskell/stackage/issues/4441 - checkers < 0.5.0 - # https://github.com/commercialhaskell/stackage/issues/4443 - - concurrency < 1.7 - # end of packages # Package flags are applied to individual packages, and override the values of From 988d51a7a5a18be26e616ee90e5d6c7390b9590f Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Mon, 25 Mar 2019 17:20:40 -0700 Subject: [PATCH 0066/2682] Add upper bounds for QuickCheck, #4444 --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 39e597c2..d467a73c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4494,6 +4494,10 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4441 - checkers < 0.5.0 + # https://github.com/commercialhaskell/stackage/issues/4444 + - QuickCheck < 2.13 + - quickcheck-instances < 0.3.20 + # end of packages # Package flags are applied to individual packages, and override the values of From eea28bbb512df7b7f486c7924d1e86c927918275 Mon Sep 17 00:00:00 2001 From: Amit Levy Date: Mon, 25 Mar 2019 23:19:11 -0400 Subject: [PATCH 0067/2682] Add postgresql-orm package --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d467a73c..b6d739a5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2666,6 +2666,7 @@ packages: - simple < 0 # GHC 8.4 via simple-templates - simple-templates < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build - simple-session < 0 # GHC 8.4 via simple + - postgresql-orm "Sergey Astanin @astanin": # Stackage server uses Ubuntu 16.04 which ships libzip-1.0.1. From 1b92b50de1f9bf85b9ad8ed5427594a4e1107aa3 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Tue, 26 Mar 2019 18:21:17 -0700 Subject: [PATCH 0068/2682] Add upper bound for dependent-sum, #4446 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index b6d739a5..46d161a7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4499,6 +4499,9 @@ packages: - QuickCheck < 2.13 - quickcheck-instances < 0.3.20 + # https://github.com/commercialhaskell/stackage/issues/4446 + - dependent-sum < 0.5 + # end of packages # Package flags are applied to individual packages, and override the values of From cf5db573069399c7c1eec1512ebbc04dc2a2dae7 Mon Sep 17 00:00:00 2001 From: Alexey Kuleshevich Date: Wed, 27 Mar 2019 14:01:16 +0300 Subject: [PATCH 0069/2682] Package was renamed. Adding `scheduler` instread of `massiv-scheduler` --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 46d161a7..5685b71e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3205,7 +3205,7 @@ packages: # - hip # lens 4.16 via diagrams/chart - massiv - massiv-io - - massiv-scheduler + - scheduler "Hans-Peter Deifel @hpdeifel": - hledger-iadd From 5cef750863b130bb1abdd1d2db87489a73a140b6 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 27 Mar 2019 17:58:04 +0200 Subject: [PATCH 0070/2682] Extra upper bound for #4446 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 46d161a7..f696aafa 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4501,6 +4501,7 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4446 - dependent-sum < 0.5 + - typerep-map < 0.3.2 # end of packages From 8404361e5dbce18b486e944df5e4c42fda68daef Mon Sep 17 00:00:00 2001 From: Kirill Zaborsky Date: Fri, 29 Mar 2019 16:19:51 +0300 Subject: [PATCH 0071/2682] Add bounds on hspec packages because of QuickCheck bounds --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4f69bde3..bd9f14d9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4498,6 +4498,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4444 - QuickCheck < 2.13 - quickcheck-instances < 0.3.20 + - hspec-core < 2.7.1 + - hspec < 2.7.1 + - hspec-discover < 2.7.1 # https://github.com/commercialhaskell/stackage/issues/4446 - dependent-sum < 0.5 From 049c3ea89d1157f4b537cdde9b79ddb388b9d6ce Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Fri, 29 Mar 2019 09:09:59 -0700 Subject: [PATCH 0072/2682] Expect test failure for record-dot-preprocessor, #4449 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index bd9f14d9..f3f095ed 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5091,6 +5091,7 @@ expected-test-failures: - yeshql-core # https://github.com/tdammers/yeshql/issues/6 - yeshql-hdbc # https://github.com/tdammers/yeshql/issues/6 - yesod-gitrev # https://github.com/DanBurton/yesod-gitrev/issues/5 + - record-dot-preprocessor # https://github.com/commercialhaskell/stackage/issues/4449 # Stackage upper bounds, re-enable these when their upper bound is removed From 69e8322c21c34d9c99db1fc8e6db93fca038c1c9 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Fri, 29 Mar 2019 14:28:06 -0700 Subject: [PATCH 0073/2682] Enable tests for record-dot-preprocessor, #4449 --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f3f095ed..bd9f14d9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5091,7 +5091,6 @@ expected-test-failures: - yeshql-core # https://github.com/tdammers/yeshql/issues/6 - yeshql-hdbc # https://github.com/tdammers/yeshql/issues/6 - yesod-gitrev # https://github.com/DanBurton/yesod-gitrev/issues/5 - - record-dot-preprocessor # https://github.com/commercialhaskell/stackage/issues/4449 # Stackage upper bounds, re-enable these when their upper bound is removed From cc1f64a0d13d55eea5a0634cfab8706826d3a45d Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Fri, 29 Mar 2019 14:32:31 -0700 Subject: [PATCH 0074/2682] Revert 69e8322c21c34d9c99db1fc8e6db93fca038c1c9, #4449 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index bd9f14d9..f3f095ed 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5091,6 +5091,7 @@ expected-test-failures: - yeshql-core # https://github.com/tdammers/yeshql/issues/6 - yeshql-hdbc # https://github.com/tdammers/yeshql/issues/6 - yesod-gitrev # https://github.com/DanBurton/yesod-gitrev/issues/5 + - record-dot-preprocessor # https://github.com/commercialhaskell/stackage/issues/4449 # Stackage upper bounds, re-enable these when their upper bound is removed From 5c044925a7ca5af74c85f8c603ab5cb1d07afaef Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Mon, 1 Apr 2019 09:03:19 -0700 Subject: [PATCH 0075/2682] Add upper bound for hw-rankselect, #4450 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f3f095ed..0fab8ab8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4506,6 +4506,9 @@ packages: - dependent-sum < 0.5 - typerep-map < 0.3.2 + # https://github.com/commercialhaskell/stackage/issues/4450 + - hw-rankselect < 0.13 + # end of packages # Package flags are applied to individual packages, and override the values of From 09c099974731456accd15fa1ebe553c604f0e20c Mon Sep 17 00:00:00 2001 From: "(cdep)illabout" Date: Tue, 2 Apr 2019 13:43:10 +0900 Subject: [PATCH 0076/2682] Add password and password-instances packages This PR adds the `password` and `password-instances` packages to `build-constraints.yaml`. --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0fab8ab8..65ef71e5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2283,6 +2283,8 @@ packages: - hailgun-simple < 0 # via hailgun - natural-transformation # - opaleye-trans # product-profunctors 0.9 + - password + - password-instances - pretty-simple - read-env-var - servant-checked-exceptions < 0 # https://github.com/cdepillabout/servant-checked-exceptions/issues/29 From 0661ce39a715cfe1581ab8c7a785b973a7f5ee6f Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Tue, 2 Apr 2019 19:16:46 +0100 Subject: [PATCH 0077/2682] suspend tensors benchmarks and registry tests --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0fab8ab8..2c75c50a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4762,6 +4762,7 @@ skipped-tests: - rakuten - rank1dynamic - rcu + - registry - rss-conduit - servant-blaze - servant-cassava @@ -5202,6 +5203,9 @@ expected-benchmark-failures: - lz4 # https://github.com/fpco/stackage/issues/3510 - xmlgen # https://github.com/skogsbaer/xmlgen/issues/6 + # https://github.com/commercialhaskell/stackage/issues/4452 + - tensors + # end of expected-benchmark-failures From d21e0a6c663befbd39ba1835b293868c55757483 Mon Sep 17 00:00:00 2001 From: Vitaly Bragilevsky Date: Wed, 3 Apr 2019 19:49:39 +0300 Subject: [PATCH 0078/2682] Re-enable Chart-diagrams --- build-constraints.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2c75c50a..e10d2f86 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -820,7 +820,7 @@ packages: - diagrams-gtk < 0 # via diagrams-cairo - diagrams-html5 < 0 # via lens-4.17 - diagrams-lib - - diagrams-postscript < 0 # via lens-4.17 + - diagrams-postscript - diagrams-rasterific - diagrams-solve - diagrams-svg @@ -3861,6 +3861,10 @@ packages: - reanimate-svg - reanimate + "Vitaly Bragilevsky @bravit": + - Chart + - Chart-diagrams + "Grandfathered dependencies": - Boolean - ChasingBottoms @@ -4295,7 +4299,6 @@ packages: "Removed packages": - gi-webkit2 < 0 # https://github.com/fpco/stackage/issues/3415 - PSQueue < 0 # build failure with GHC 8.4 (nowhere to report, it's ancient just let it die) - - Chart < 0 # build failure with GHC 8.4 https://github.com/timbod7/haskell-chart/issues/181 - json-builder < 0 # build failure with GHC 8.4 https://github.com/lpsmith/json-builder/issues/2 - type-combinators < 0 # build failure with GHC 8.4 https://github.com/kylcarte/type-combinators/issues/8 - HaXml < 0 # build failure with GHC 8.4 From 3499c4ad030b2481156b897729c4dba937b7c997 Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Wed, 3 Apr 2019 18:34:01 +0100 Subject: [PATCH 0079/2682] hw-rankselect-0.13.0.0 no longer contstrained (#4450) --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2c75c50a..df49ea8f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4506,9 +4506,6 @@ packages: - dependent-sum < 0.5 - typerep-map < 0.3.2 - # https://github.com/commercialhaskell/stackage/issues/4450 - - hw-rankselect < 0.13 - # end of packages # Package flags are applied to individual packages, and override the values of From 90d8ae0da44369622931e9721d246879ac1b5258 Mon Sep 17 00:00:00 2001 From: ChShersh Date: Thu, 4 Apr 2019 16:29:39 +0800 Subject: [PATCH 0080/2682] Add elm-street --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index df49ea8f..86aa14df 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3453,6 +3453,9 @@ packages: - tomland - typerep-map + "Holmusk @arbus": + - elm-street + "Lorenz Moesenlechner @moesenle": - servant-websockets < 0 # https://github.com/moesenle/servant-websockets/issues/8 From 5262fd89440e5c521487a77b374ad56ffcfcdc69 Mon Sep 17 00:00:00 2001 From: Kirill Zaborsky Date: Fri, 5 Apr 2019 17:59:19 +0300 Subject: [PATCH 0081/2682] Add missing packages stackage-curator: Snapshot dependency graph contains errors: fib (not present) depended on by: - [ ] scheduler-1.1.0 (-any). Alexey Kuleshevich @lehins. @lehins. Used by: benchmark ghc-lib-parser (not present) depended on by: - [ ] ghc-lib-0.20190402 (==0.20190402). Digital Asset . @digital-asset. Used by: library --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index df49ea8f..c10d32c5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -569,6 +569,7 @@ packages: "Digital Asset ": - ghc-lib + - ghc-lib-parser "Karl Ostmo @kostmo": - perfect-hash-generator @@ -3995,6 +3996,7 @@ packages: - fail - fast-logger - fast-math + - fib - file-embed - file-embed-lzma - filemanip From 16e5d82f9494c4f5a35db6bb7fbcd452a527f924 Mon Sep 17 00:00:00 2001 From: Matt Parsons Date: Fri, 5 Apr 2019 14:35:18 -0600 Subject: [PATCH 0082/2682] Add `persistent-qq` --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index df49ea8f..175970f7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2187,6 +2187,7 @@ packages: - servant-quickcheck < 0 - esqueleto - persistent-typed-db + - persistent-qq "Matthew Pickering @mpickering": - refact From f49e0b3ed4da5112e15178e41d2df800700ab987 Mon Sep 17 00:00:00 2001 From: Kirill Zaborsky Date: Tue, 19 Mar 2019 09:51:21 +0300 Subject: [PATCH 0083/2682] build.sh variant with the new curator version (and new Stack) --- automated/build-next.sh | 150 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 150 insertions(+) create mode 100755 automated/build-next.sh diff --git a/automated/build-next.sh b/automated/build-next.sh new file mode 100755 index 00000000..fd51f430 --- /dev/null +++ b/automated/build-next.sh @@ -0,0 +1,150 @@ +#!/usr/bin/env bash + +set -eu +x + +ROOT=$(cd $(dirname $0) ; pwd) +TARGET=$1 + +# For nightly-YYYY-MM-DD, tag should be nightly +# For lts-X.Y, tag should be ltsX +SHORTNAME=$(echo $TARGET | cut -d- -f 1) +if [ $SHORTNAME = "lts" ] +then + TAG=$(echo $TARGET | sed 's@^lts-\([0-9]*\)\.[0-9]*@lts\1@') +else + TAG=$SHORTNAME +fi + +IMAGE=commercialhaskell/stackage:$TAG + +CABAL_DIR=$ROOT/cabal +STACK_DIR=$ROOT/stack +GHC_DIR=$ROOT/ghc +DOT_STACKAGE_DIR=$ROOT/dot-stackage +WORKDIR=$ROOT/$TAG/work +# ssh key is used for committing snapshots (and their constraints) to Github +SSH_DIR=$ROOT/ssh +USERID=$(id -u) + +mkdir -p \ + "$CABAL_DIR" \ + "$STACK_DIR" \ + "$GHC_DIR" \ + "$DOT_STACKAGE_DIR" \ + "$WORKDIR" \ + "$SSH_DIR" + +GITCONFIG=$ROOT/gitconfig +cat >$GITCONFIG < Date: Mon, 8 Apr 2019 09:49:15 +0100 Subject: [PATCH 0084/2682] mime-mail-0.5.0 (#4463), add possibly, enum-text --- build-constraints.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index df49ea8f..2682dcd2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3322,6 +3322,8 @@ packages: - regex - regex-pcre-text - regex-with-pcre + - possibly + - enum-text "Elliot Cameron @3noch": [] @@ -4506,6 +4508,9 @@ packages: - dependent-sum < 0.5 - typerep-map < 0.3.2 + # https://github.com/commercialhaskell/stackage/issues/4463 + - mime-mail < 0.5.0 + # end of packages # Package flags are applied to individual packages, and override the values of From 44b407e785c6d7df5b8706452bf08ba286042caf Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Mon, 8 Apr 2019 11:45:49 +0100 Subject: [PATCH 0085/2682] hledger-lib and servant-static-th failing tests --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2682dcd2..5d6d07f0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5098,6 +5098,8 @@ expected-test-failures: - yeshql-hdbc # https://github.com/tdammers/yeshql/issues/6 - yesod-gitrev # https://github.com/DanBurton/yesod-gitrev/issues/5 - record-dot-preprocessor # https://github.com/commercialhaskell/stackage/issues/4449 + - hledger # https://github.com/commercialhaskell/stackage/issues/4464 + - servant-static-th # https://github.com/commercialhaskell/stackage/issues/4465 # Stackage upper bounds, re-enable these when their upper bound is removed From 65a8982e93da5f1c7adaa59cdc6c4053a12482c3 Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Mon, 8 Apr 2019 12:08:54 +0100 Subject: [PATCH 0086/2682] expect hledger-lib test failures (not hledger) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5d6d07f0..09f2e81e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5098,7 +5098,7 @@ expected-test-failures: - yeshql-hdbc # https://github.com/tdammers/yeshql/issues/6 - yesod-gitrev # https://github.com/DanBurton/yesod-gitrev/issues/5 - record-dot-preprocessor # https://github.com/commercialhaskell/stackage/issues/4449 - - hledger # https://github.com/commercialhaskell/stackage/issues/4464 + - hledger-lib # https://github.com/commercialhaskell/stackage/issues/4464 - servant-static-th # https://github.com/commercialhaskell/stackage/issues/4465 # Stackage upper bounds, re-enable these when their upper bound is removed From f763c1306eaa78eb70ebdc0b1fc8a2e1f14e444b Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Mon, 8 Apr 2019 12:18:39 +0100 Subject: [PATCH 0087/2682] fixes #4453 and fixes #4452 --- build-constraints.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 09f2e81e..8f8f576c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4764,7 +4764,6 @@ skipped-tests: - rakuten - rank1dynamic - rcu - - registry - rss-conduit - servant-blaze - servant-cassava @@ -5207,9 +5206,6 @@ expected-benchmark-failures: - lz4 # https://github.com/fpco/stackage/issues/3510 - xmlgen # https://github.com/skogsbaer/xmlgen/issues/6 - # https://github.com/commercialhaskell/stackage/issues/4452 - - tensors - # end of expected-benchmark-failures From af79fa36ce6f1b6cde2d937cd830e8053de07d21 Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Mon, 8 Apr 2019 12:22:22 +0100 Subject: [PATCH 0088/2682] fixes #4459 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8f8f576c..cc3f14de 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1252,7 +1252,7 @@ packages: - partial-handler - postgresql-binary - slave-thread < 0 - - stm-containers < 0 + - stm-containers - refined < 0 # https://github.com/nikita-volkov/refined/issues/33 "Iustin Pop @iustin": From 3af743cde32757a12b2b12a1c5d90a710ab1c963 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Mon, 8 Apr 2019 15:30:16 -0400 Subject: [PATCH 0089/2682] Enable stm-hamt & primitive-extras --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index cc3f14de..e967facb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4118,6 +4118,7 @@ packages: - prettyprinter-convert-ansi-wl-pprint - primes - primitive + - primitive-extras - process-extras - product-isomorphic - project-template @@ -4166,6 +4167,7 @@ packages: - stateref - statistics - stm-delay + - stm-hamt - storable-complex - store-core - streaming-cassava @@ -4325,9 +4327,7 @@ packages: - SCalendar < 0 - haskell-tools-builtin-refactorings < 0 - hpqtypes < 0 - - primitive-extras < 0 - ref-fd < 0 - - stm-hamt < 0 # failed to build - Fin < 0 From 4c7bfdecff7afbfc8af9a317446a9f8845a7e4e7 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Tue, 9 Apr 2019 00:16:52 -0400 Subject: [PATCH 0090/2682] Expect test failure for password per #4468 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f7b62ce0..0f9bce4c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5129,6 +5129,7 @@ expected-test-failures: - genvalidity-hspec # https://github.com/NorfairKing/validity/issues/55 - genvalidity-hspec-hashable # https://github.com/NorfairKing/validity/issues/55 - ghcid # Weird conflicts with sandboxingistributed/distributed-process-supervisor/issues/1 + - password # https://github.com/commercialhaskell/stackage/issues/4468 - pg-transact # https://github.com/jfischoff/pg-transact/issues/2 - postgresql-simple-queue # same issue as before, see also https://github.com/fpco/stackage/issues/2592 as that will fix both - rattletrap # OOM? https://github.com/fpco/stackage/issues/2232 From 218ecae8e9ec0a32aa9dda50a4896ab34aa7099f Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Tue, 9 Apr 2019 10:18:14 -0400 Subject: [PATCH 0091/2682] Add constraint "cmark-gfm < 0.2.0" per #4469 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index a2608734..0dfa6920 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4522,6 +4522,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4463 - mime-mail < 0.5.0 + # https://github.com/commercialhaskell/stackage/issues/4469 + - cmark-gfm < 0.2.0 + # end of packages # Package flags are applied to individual packages, and override the values of From 6212cadf3a8541ced142a70a434e4fde97f09ef0 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Tue, 9 Apr 2019 10:25:44 -0400 Subject: [PATCH 0092/2682] Expect haddock failures for elm-street per #4470 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0dfa6920..c7641399 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5242,6 +5242,7 @@ expected-haddock-failures: # "Compilation" errors - MemoTrie # https://github.com/conal/MemoTrie/issues/10 - classy-prelude-yesod + - elm-street # https://github.com/commercialhaskell/stackage/issues/4470 - haddock-library # https://github.com/fpco/stackage/issues/3236 - ghc-lib # https://github.com/commercialhaskell/stackage/issues/4377 From 95e52be4d093e5a194aceaab52af7d2fe7558857 Mon Sep 17 00:00:00 2001 From: 2mol <1773075+2mol@users.noreply.github.com> Date: Tue, 9 Apr 2019 17:28:34 +0200 Subject: [PATCH 0093/2682] add msgpack --- build-constraints.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c7641399..77f259fe 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3874,6 +3874,10 @@ packages: - Chart - Chart-diagrams + "Juri Chomé @2mol": + - msgpack + - msgpack-rpc + "Grandfathered dependencies": - Boolean - ChasingBottoms @@ -4522,9 +4526,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4463 - mime-mail < 0.5.0 - # https://github.com/commercialhaskell/stackage/issues/4469 - - cmark-gfm < 0.2.0 - # end of packages # Package flags are applied to individual packages, and override the values of @@ -5242,7 +5243,6 @@ expected-haddock-failures: # "Compilation" errors - MemoTrie # https://github.com/conal/MemoTrie/issues/10 - classy-prelude-yesod - - elm-street # https://github.com/commercialhaskell/stackage/issues/4470 - haddock-library # https://github.com/fpco/stackage/issues/3236 - ghc-lib # https://github.com/commercialhaskell/stackage/issues/4377 From 9e4580c210234acf274851a7fde23dc4012635a6 Mon Sep 17 00:00:00 2001 From: 2mol <1773075+2mol@users.noreply.github.com> Date: Tue, 9 Apr 2019 17:35:04 +0200 Subject: [PATCH 0094/2682] add msgpack --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 77f259fe..cf795d63 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3877,6 +3877,8 @@ packages: "Juri Chomé @2mol": - msgpack - msgpack-rpc + - msgpack-idl + - msgpack-aeson "Grandfathered dependencies": - Boolean From d8179f39b77f7dd4084534657d4777477ab67699 Mon Sep 17 00:00:00 2001 From: 2mol <1773075+2mol@users.noreply.github.com> Date: Wed, 10 Apr 2019 10:22:16 +0200 Subject: [PATCH 0095/2682] add msgpack --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index cf795d63..6a91221d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3877,7 +3877,6 @@ packages: "Juri Chomé @2mol": - msgpack - msgpack-rpc - - msgpack-idl - msgpack-aeson "Grandfathered dependencies": From 3cfd749a8eba4e3867956de8d5cb963d0f9a8d8a Mon Sep 17 00:00:00 2001 From: Lukasz Szwed Date: Wed, 10 Apr 2019 10:33:32 +0100 Subject: [PATCH 0096/2682] Add amazonka-glue to build-constraints.yaml --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index c7641399..8e128d6c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1604,6 +1604,7 @@ packages: - amazonka-emr - amazonka-gamelift - amazonka-glacier + - amazonka-glue - amazonka-health - amazonka-iam - amazonka-importexport @@ -4439,6 +4440,7 @@ packages: - amazonka-emr < 0 # via amazonka-core - amazonka-gamelift < 0 # via amazonka-core - amazonka-glacier < 0 # via amazonka-core + - amazonka-glue < 0 # via amazonka-core - amazonka-health < 0 # via amazonka-core - amazonka-iam < 0 # via amazonka-core - amazonka-importexport < 0 # via amazonka-core From 25aff62b67db62d8963790c09da930ded3998e5e Mon Sep 17 00:00:00 2001 From: 2mol <1773075+2mol@users.noreply.github.com> Date: Wed, 10 Apr 2019 11:34:35 +0200 Subject: [PATCH 0097/2682] add msgpack --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6a91221d..94bdcff9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3878,6 +3878,7 @@ packages: - msgpack - msgpack-rpc - msgpack-aeson + - int-cast "Grandfathered dependencies": - Boolean From 5f358c6cc8f6278536256a7e251ed5096f341743 Mon Sep 17 00:00:00 2001 From: Dmitry Kovanikov Date: Wed, 10 Apr 2019 18:42:17 +0800 Subject: [PATCH 0098/2682] Add summoner --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c7641399..753b55aa 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3455,7 +3455,7 @@ packages: - first-class-patterns - relude - shellmet - - summoner < 0 + - summoner - tomland - typerep-map @@ -5058,7 +5058,6 @@ expected-test-failures: - crypto-pubkey # https://github.com/vincenthz/hs-crypto-pubkey/issues/23 - doctest-discover # 0.1.0.9 https://github.com/karun012/doctest-discover/issues/22 - graylog # 0.1.0.1 https://github.com/fpco/stackage/pull/1254 - - summoner # https://github.com/kowainik/summoner/issues/270 - tomland # https://github.com/kowainik/tomland/issues/141 # Assertion failures, these can be real bugs or just limitations From 5b8cac9fdf466746af6f50fea0d2d260ad5e517a Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 10 Apr 2019 18:52:14 -0400 Subject: [PATCH 0099/2682] Tweaks restoring stuff on master & making the build plan pass --- build-constraints.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e9ed5ec7..d01eef9c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3877,7 +3877,8 @@ packages: "Juri Chomé @2mol": - msgpack - - msgpack-rpc + # - msgpack-rpc # https://github.com/commercialhaskell/stackage/pull/4471 + # - msgpack-idl # https://github.com/commercialhaskell/stackage/pull/4471 - msgpack-aeson - int-cast @@ -4530,6 +4531,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4463 - mime-mail < 0.5.0 + # https://github.com/commercialhaskell/stackage/issues/4469 + - cmark-gfm < 0.2.0 + # end of packages # Package flags are applied to individual packages, and override the values of @@ -4707,6 +4711,7 @@ skipped-tests: - hw-streams # via hspec-2.6.0 - indents # tasty 0.12 and tasty-hunit 0.10 - insert-ordered-containers # via tasty-1.2 + - int-cast # QuickCheck 2.12 - ip # hspec 2.5 https://github.com/andrewthad/haskell-ip/issues/33 - language-ecmascript # testing-feat 1.1.0.0 - lattices # via tasty-1.2 @@ -5246,6 +5251,7 @@ expected-haddock-failures: # "Compilation" errors - MemoTrie # https://github.com/conal/MemoTrie/issues/10 - classy-prelude-yesod + - elm-street # https://github.com/commercialhaskell/stackage/issues/4470 - haddock-library # https://github.com/fpco/stackage/issues/3236 - ghc-lib # https://github.com/commercialhaskell/stackage/issues/4377 From 2a3e9733f43fb59503e34ab9c51051add45fbe73 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 10 Apr 2019 19:03:33 -0400 Subject: [PATCH 0100/2682] Expect test failure per michalkonecny/mixed-types-num#3 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d01eef9c..a08456b7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5102,6 +5102,7 @@ expected-test-failures: - hspec-expectations-pretty-diff # GHC 8 issue not reported upstream since issue tracker disabled - hweblib # https://github.com/aycanirican/hweblib/issues/3 - libraft # https://github.com/commercialhaskell/stackage/issues/4337#issuecomment-462465921 + - mixed-types-num # https://github.com/michalkonecny/mixed-types-num/issues/3 - multiset # doctests require Glob, a hidden package - perf # https://github.com/fpco/stackage/pull/2859 - picosat # https://github.com/fpco/stackage/pull/2382 From fc411339bb5277ac584cb54ad72ed4ad4776e571 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 10 Apr 2019 20:14:47 -0400 Subject: [PATCH 0101/2682] re-enable ghc-compact & compact --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a08456b7..883b7dd0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -522,7 +522,7 @@ packages: - say - unliftio-core - unliftio - - compact < 0 # ghc-compact + - compact - fsnotify - hinotify @@ -4023,6 +4023,7 @@ packages: - fingertree - fmlist - generic-arbitrary + - ghc-compact - ghc-paths - ghc-prof - gi-gdk @@ -4332,7 +4333,6 @@ packages: - prim-array < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build - xxhash < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build - Unique < 0 # GHC 8.4 via base-4.11.0.0 - - ghc-compact < 0 # GHC 8.4 via base-4.11.1.0 - hastache < 0 # GHC 8.4 via base-4.11.0.0 - attoparsec-time < 0 # GHC 8.4 via doctest-0.15.0 - syb-with-class < 0 # GHC 8.4 via template-haskell-2.13.0.0 From 691e9640568c8265d576d06f1e28ff5f5837be3c Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 10 Apr 2019 20:47:52 -0400 Subject: [PATCH 0102/2682] Constrain Allure and LambdaHack per #4475 --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 883b7dd0..20355777 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4534,6 +4534,10 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4469 - cmark-gfm < 0.2.0 + # https://github.com/commercialhaskell/stackage/issues/4475 + - Allure < 0.9 + - LambdaHack < 0.9 + # end of packages # Package flags are applied to individual packages, and override the values of From ae60748d5753e8e88495014399a96bb70372853c Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 10 Apr 2019 20:51:11 -0400 Subject: [PATCH 0103/2682] Expect tests to pass per michaelkonecny/mixed-types-num#3 --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 20355777..6adc576d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5106,7 +5106,6 @@ expected-test-failures: - hspec-expectations-pretty-diff # GHC 8 issue not reported upstream since issue tracker disabled - hweblib # https://github.com/aycanirican/hweblib/issues/3 - libraft # https://github.com/commercialhaskell/stackage/issues/4337#issuecomment-462465921 - - mixed-types-num # https://github.com/michalkonecny/mixed-types-num/issues/3 - multiset # doctests require Glob, a hidden package - perf # https://github.com/fpco/stackage/pull/2859 - picosat # https://github.com/fpco/stackage/pull/2382 From 17d95130088462c6b84a51af22123c8478cedfb7 Mon Sep 17 00:00:00 2001 From: Kirill Zaborsky Date: Thu, 7 Feb 2019 16:47:33 +0300 Subject: [PATCH 0104/2682] Use more correct pruning done in https://github.com/commercialhaskell/stack/pull/4547 --- etc/curator-2-check.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/etc/curator-2-check.sh b/etc/curator-2-check.sh index 82a8facc..6304db21 100755 --- a/etc/curator-2-check.sh +++ b/etc/curator-2-check.sh @@ -6,8 +6,8 @@ mkdir -p ~/.local/bin export PATH=$HOME/.local/bin:$PATH # Get new Stackage curator -CURATOR2=stackage-curator-2-90cf65bfddea4e8abb5bc68fe83d59a7f8766757 -wget "https://s3.amazonaws.com/www.snoyman.com/stackage-curator-2/$CURATOR2.bz2" +CURATOR2=stackage-curator-2-6ec4ac4ee5016e2ecd86af2abfa722b94d2a56c3 +wget "https://download.fpcomplete.com/stackage-curator-2/$CURATOR2.bz2" bunzip2 "$CURATOR2.bz2" chmod +x $CURATOR2 mv $CURATOR2 ~/.local/bin/stackage-curator-2 From b43549d05bf4960872965f1ad06d0f2b1b3db459 Mon Sep 17 00:00:00 2001 From: Kirill Zaborsky Date: Thu, 7 Feb 2019 17:41:52 +0300 Subject: [PATCH 0105/2682] Setup proper GHC to get boot libraries --- etc/curator-2-check.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/etc/curator-2-check.sh b/etc/curator-2-check.sh index 6304db21..6e9369ee 100755 --- a/etc/curator-2-check.sh +++ b/etc/curator-2-check.sh @@ -2,6 +2,8 @@ set -euxo pipefail +export GHCVER=8.6.3 + mkdir -p ~/.local/bin export PATH=$HOME/.local/bin:$PATH @@ -12,9 +14,12 @@ bunzip2 "$CURATOR2.bz2" chmod +x $CURATOR2 mv $CURATOR2 ~/.local/bin/stackage-curator-2 +# Install GHC +stack setup $GHCVER + # New curator check stackage-curator-2 update && stackage-curator-2 constraints && stackage-curator-2 snapshotincomplete && stackage-curator-2 snapshot && - stackage-curator-2 checksnapshot + stack --resolver ghc-$GHCVER exec stackage-curator-2 checksnapshot From ca4015eaec3e0cf04eccba442cbaf9e4189ddf9e Mon Sep 17 00:00:00 2001 From: Kirill Zaborsky Date: Thu, 7 Feb 2019 18:10:41 +0300 Subject: [PATCH 0106/2682] Download and install Stack --- etc/curator-2-check.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/etc/curator-2-check.sh b/etc/curator-2-check.sh index 6e9369ee..abafaae6 100755 --- a/etc/curator-2-check.sh +++ b/etc/curator-2-check.sh @@ -4,8 +4,10 @@ set -euxo pipefail export GHCVER=8.6.3 +# Download and unpack the stack executable mkdir -p ~/.local/bin export PATH=$HOME/.local/bin:$PATH +curl -L https://www.stackage.org/stack/linux-x86_64 | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack' # Get new Stackage curator CURATOR2=stackage-curator-2-6ec4ac4ee5016e2ecd86af2abfa722b94d2a56c3 From bf0e69bee73c98ed656584a2885a8d3fbadd5c87 Mon Sep 17 00:00:00 2001 From: Kirill Zaborsky Date: Thu, 11 Apr 2019 16:40:31 +0300 Subject: [PATCH 0107/2682] Use GHC version defined in build-constraints.yaml --- etc/curator-2-check.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/etc/curator-2-check.sh b/etc/curator-2-check.sh index abafaae6..d9759b61 100755 --- a/etc/curator-2-check.sh +++ b/etc/curator-2-check.sh @@ -2,7 +2,8 @@ set -euxo pipefail -export GHCVER=8.6.3 +ETC=$(cd $(dirname $0) ; pwd) +export GHCVER=$(sed -n "s/^ghc-version: \"\(.*\)\"/\1/p" "$ETC/../build-constraints.yaml") # Download and unpack the stack executable mkdir -p ~/.local/bin From 7f50a181d4917b9fb9ee6d2847d6626d58c262f3 Mon Sep 17 00:00:00 2001 From: Kirill Zaborsky Date: Thu, 11 Apr 2019 16:41:08 +0300 Subject: [PATCH 0108/2682] Use newer Stack/curator versions --- automated/build-next.sh | 4 ++-- etc/curator-2-check.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/automated/build-next.sh b/automated/build-next.sh index fd51f430..bc8e091c 100755 --- a/automated/build-next.sh +++ b/automated/build-next.sh @@ -61,7 +61,7 @@ BINDIR=$(cd $ROOT/bin ; pwd) ( cd $BINDIR rm -f stackage-curator stackage-curator-2*.bz2 -CURATOR2=stackage-curator-2-401883a889b06e0a2ac772fac7abcc743d5a00e2 +CURATOR2=stackage-curator-2-7e65b644121812d9a3a8b24d7130bb8865485f8f wget "https://download.fpcomplete.com/stackage-curator-2/$CURATOR2.bz2" bunzip2 "$CURATOR2.bz2" chmod +x $CURATOR2 @@ -90,7 +90,7 @@ fi ( cd $BINDIR rm -f stack stack-*.bz2 -STACK=stack-401883a889b06e0a2ac772fac7abcc743d5a00e2 +STACK=stack-7e65b644121812d9a3a8b24d7130bb8865485f8f wget "https://download.fpcomplete.com/stackage-curator-2/$STACK.bz2" bunzip2 "$STACK.bz2" chmod +x $STACK diff --git a/etc/curator-2-check.sh b/etc/curator-2-check.sh index d9759b61..a40874d1 100755 --- a/etc/curator-2-check.sh +++ b/etc/curator-2-check.sh @@ -11,7 +11,7 @@ export PATH=$HOME/.local/bin:$PATH curl -L https://www.stackage.org/stack/linux-x86_64 | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack' # Get new Stackage curator -CURATOR2=stackage-curator-2-6ec4ac4ee5016e2ecd86af2abfa722b94d2a56c3 +CURATOR2=stackage-curator-2-7e65b644121812d9a3a8b24d7130bb8865485f8f wget "https://download.fpcomplete.com/stackage-curator-2/$CURATOR2.bz2" bunzip2 "$CURATOR2.bz2" chmod +x $CURATOR2 From 77fa3278dff35f71914f0e91404331ea86ef6301 Mon Sep 17 00:00:00 2001 From: Daniel YU Date: Fri, 12 Apr 2019 10:52:27 +0800 Subject: [PATCH 0109/2682] add crc32c --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6adc576d..11d51bfe 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3189,10 +3189,13 @@ packages: "Daniel YU ": - salak + - salak-yaml + - salak-toml - tensors - yam - yam-datasource - menshen + - crc32c "Tom Nielsen @glutamate": - plotlyhs From ab3829793d29d42ff6f3cec0d775c171d5321d71 Mon Sep 17 00:00:00 2001 From: Kirill Zaborsky Date: Fri, 12 Apr 2019 14:13:32 +0300 Subject: [PATCH 0110/2682] Hyphenated commands and target argument for constraints command --- etc/curator-2-check.sh | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/etc/curator-2-check.sh b/etc/curator-2-check.sh index a40874d1..beddaf39 100755 --- a/etc/curator-2-check.sh +++ b/etc/curator-2-check.sh @@ -20,9 +20,12 @@ mv $CURATOR2 ~/.local/bin/stackage-curator-2 # Install GHC stack setup $GHCVER +# curator's constraint command has target as a required parameter +# because of a different constraints handling in minor LTS version bumps +NIGHTLY="nightly-$(date +%Y-%m-%d)" # New curator check stackage-curator-2 update && - stackage-curator-2 constraints && - stackage-curator-2 snapshotincomplete && + stackage-curator-2 constraints --target=$NIGHTLY && + stackage-curator-2 snapshot-incomplete && stackage-curator-2 snapshot && - stack --resolver ghc-$GHCVER exec stackage-curator-2 checksnapshot + stack --resolver ghc-$GHCVER exec stackage-curator-2 check-snapshot From 170c460f5ab944f60a2ae847bee7634560989528 Mon Sep 17 00:00:00 2001 From: Kirill Zaborsky Date: Sat, 13 Apr 2019 17:18:33 +0300 Subject: [PATCH 0111/2682] Disable rio-0.1.9.0 breaking etc and Stack --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6adc576d..e52984e9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4538,6 +4538,9 @@ packages: - Allure < 0.9 - LambdaHack < 0.9 + # https://github.com/commercialhaskell/stackage/issues/4479 + - rio < 0.1.9.0 + # end of packages # Package flags are applied to individual packages, and override the values of From f7b8c9a5e448450d871c3dd14262feb43ce9bf06 Mon Sep 17 00:00:00 2001 From: Mikolaj Konarski Date: Sat, 13 Apr 2019 21:18:34 +0200 Subject: [PATCH 0112/2682] Drop unneeded constraints on LH and Allure (#4475) The issue is reported to be fixed and haddock problems are worked around in the new cabal files (as are the original issue problems, in fact). --- build-constraints.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6adc576d..b5af9a56 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4534,10 +4534,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4469 - cmark-gfm < 0.2.0 - # https://github.com/commercialhaskell/stackage/issues/4475 - - Allure < 0.9 - - LambdaHack < 0.9 - # end of packages # Package flags are applied to individual packages, and override the values of From ee03f7b36ccb2b483ed91e3c2ded976d8a6bf448 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sat, 13 Apr 2019 21:15:02 -0400 Subject: [PATCH 0113/2682] Expect test failure per AllureOfTheStars/Allure#96 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2facccb9..d0d62840 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5097,6 +5097,7 @@ expected-test-failures: - hpack-dhall # https://github.com/BlockScope/hpack-dhall/issues/25 # Compilation failures + - Allure # https://github.com/AllureOfTheStars/Allure/issues/96 - ListLike # No issue tracker, e-mail sent to maintainer - amazonka-core # https://github.com/brendanhay/amazonka/issues/397 - async-timer # https://github.com/mtesseract/async-timer/issues/8 From 90b525afc8d3215e4763a206799a90feb7ea5793 Mon Sep 17 00:00:00 2001 From: Akihito KIRISAKI Date: Sun, 14 Apr 2019 12:06:34 +0900 Subject: [PATCH 0114/2682] add caster --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d0d62840..bbd1a25f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3885,6 +3885,9 @@ packages: - msgpack-aeson - int-cast + "Akihito Kirisaki @kirisaki": + - caster + "Grandfathered dependencies": - Boolean - ChasingBottoms From bf6fa497a313d00ff84543ea8381a9be5a959840 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sun, 14 Apr 2019 19:05:44 -0400 Subject: [PATCH 0115/2682] Revert "Expect test failure per AllureOfTheStars/Allure#96" This reverts commit ee03f7b36ccb2b483ed91e3c2ded976d8a6bf448. --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d0d62840..2facccb9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5097,7 +5097,6 @@ expected-test-failures: - hpack-dhall # https://github.com/BlockScope/hpack-dhall/issues/25 # Compilation failures - - Allure # https://github.com/AllureOfTheStars/Allure/issues/96 - ListLike # No issue tracker, e-mail sent to maintainer - amazonka-core # https://github.com/brendanhay/amazonka/issues/397 - async-timer # https://github.com/mtesseract/async-timer/issues/8 From a5bfe089aef2f147c808d9c41202a29ee6d15453 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 15 Apr 2019 09:06:57 +0300 Subject: [PATCH 0116/2682] Newer convert program --- automated/new-stackage-format/convert.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automated/new-stackage-format/convert.sh b/automated/new-stackage-format/convert.sh index 66460b37..87c21a69 100755 --- a/automated/new-stackage-format/convert.sh +++ b/automated/new-stackage-format/convert.sh @@ -4,7 +4,7 @@ set -eux if [[ ! -f convert ]] then - curl https://s3.amazonaws.com/michael.snoyman.com/convert-old-stackage-22f85f4829da949df601f2facf2d9b8c794232cf.bz2 > convert.bz2 + curl https://s3.amazonaws.com/www.snoyman.com/convert-old-stackage-f780174e2c84e4fb171f6526228d9243beb7fd71.bz2 > convert.bz2 chmod +x convert.bz2 bunzip2 convert.bz2 fi From 7306085d054f697e415adfcc9b94f66b27545539 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 16 Apr 2019 14:57:22 +0800 Subject: [PATCH 0117/2682] add fedora-img-dl, http-directory, xdg-userdirs --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 60cd61d7..77e71b7a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1355,6 +1355,8 @@ packages: - cabal-rpm - fedora-dists - fedora-haskell-tools + - fedora-img-dl + - http-directory - rpmbuild-order - simple-cmd - simple-cmd-args @@ -1375,6 +1377,7 @@ packages: - vcswrapper < 0 # GHC 8.4 via base-4.11.0.0 - ShellCheck - binary-shared + - xdg-userdirs - codec-rpm - cpio-conduit From 44e9c58310a99ebde2630aca33000fc9af671201 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 16 Apr 2019 15:02:16 +0800 Subject: [PATCH 0118/2682] http-media < 0.8.0.0 (#4483) --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 77e71b7a..3b479ed1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4546,6 +4546,8 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4479 - rio < 0.1.9.0 + # https://github.com/commercialhaskell/stackage/issues/4483 + - http-media < 0.8.0.0 # end of packages # Package flags are applied to individual packages, and override the values of From 6d7863068c0fd675b9bdc1b32329a3ba14f1aec6 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 16 Apr 2019 15:07:11 +0800 Subject: [PATCH 0119/2682] hslogger < 1.3.0.0 (#4484) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3b479ed1..1325b017 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4548,6 +4548,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4483 - http-media < 0.8.0.0 + + # https://github.com/commercialhaskell/stackage/issues/4484 + - hslogger < 1.3.0.0 # end of packages # Package flags are applied to individual packages, and override the values of From 0df184804da6bd107e043ca63e14470c0653caa2 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 16 Apr 2019 15:22:47 +0800 Subject: [PATCH 0120/2682] universe-* bounds for lattices-1.7.1.1 (#4485) --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1325b017..a39a2a49 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4551,6 +4551,10 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4484 - hslogger < 1.3.0.0 + + # https://github.com/commercialhaskell/stackage/issues/4485 + - universe-base < 1.1 + - universe-reverse-instances < 1.1 # end of packages # Package flags are applied to individual packages, and override the values of From 55c28d10cc85ddc6b8390007d9c70a8f44c429f1 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 16 Apr 2019 15:25:56 +0800 Subject: [PATCH 0121/2682] 2 more universe-instance-* bounds (#4485) --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index a39a2a49..153a1ce0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4555,6 +4555,8 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4485 - universe-base < 1.1 - universe-reverse-instances < 1.1 + - universe-instances-base < 1.1 + - universe-instances-trans < 1.1 # end of packages # Package flags are applied to individual packages, and override the values of From ae6185894df2a724efa9df10a8230e16a064d36d Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 16 Apr 2019 15:39:20 +0800 Subject: [PATCH 0122/2682] try adding universe and universe-instances-extended bounds too (#4485) --- build-constraints.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 153a1ce0..d2478988 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4553,10 +4553,12 @@ packages: - hslogger < 1.3.0.0 # https://github.com/commercialhaskell/stackage/issues/4485 + - universe < 1.1 - universe-base < 1.1 - - universe-reverse-instances < 1.1 - universe-instances-base < 1.1 + - universe-instances-extended < 1.1 - universe-instances-trans < 1.1 + - universe-reverse-instances < 1.1 # end of packages # Package flags are applied to individual packages, and override the values of From d6b6f8814bf20cf013612f81388b8735b591389c Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 17 Apr 2019 16:43:55 +0800 Subject: [PATCH 0123/2682] drop universe* bounds (#4485); reenable universe & universe-instances-extended --- build-constraints.yaml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d2478988..76bc6c94 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4378,7 +4378,6 @@ packages: - o-clock < 0 - teardown < 0 - typography-geometry < 0 - - universe-instances-extended < 0 # transitive dependencies of packages failing to build - butcher < 0 @@ -4391,7 +4390,6 @@ packages: - jvm < 0 - plot-light < 0 - rdf < 0 - - universe < 0 "Blocked per http-client-0.6": @@ -4551,14 +4549,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4484 - hslogger < 1.3.0.0 - - # https://github.com/commercialhaskell/stackage/issues/4485 - - universe < 1.1 - - universe-base < 1.1 - - universe-instances-base < 1.1 - - universe-instances-extended < 1.1 - - universe-instances-trans < 1.1 - - universe-reverse-instances < 1.1 # end of packages # Package flags are applied to individual packages, and override the values of From 074199fa0af266baef5f20c62587d35268674330 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 17 Apr 2019 17:05:24 +0800 Subject: [PATCH 0124/2682] hide ghc-lib-parser MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit eg: src/Text/Heterocephalus.hs:71:1: error: Ambiguous module name ‘Language.Haskell.TH.Lib’: it was found in multiple packages: ghc-lib-parser-0.20190402 template-haskell-2.14.0.0 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 76bc6c94..d8b0493c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5688,6 +5688,7 @@ hide: - temporary-rc # conflicts with temporary - temporary-resourcet # conflicts with temporary - ghc-lib # per its own recommendation. conflicts with template-haskell +- ghc-lib-parser # also conflicts with template-haskell # Cryptonite deprecations - cipher-aes From 522f00757f8dd2eb59cd9aa57dd1510e5e2bf1d6 Mon Sep 17 00:00:00 2001 From: Kirill Zaborsky Date: Wed, 17 Apr 2019 13:18:33 +0300 Subject: [PATCH 0125/2682] Add missing universe-dependent-sum --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d8b0493c..bd5b862c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1541,6 +1541,7 @@ packages: # Universe - universe - universe-base + - universe-dependent-sum - universe-instances-base - universe-instances-extended - universe-instances-trans From a22801207ac9876585625298d7206e03149a8242 Mon Sep 17 00:00:00 2001 From: Neil Mitchell Date: Wed, 17 Apr 2019 23:49:32 +0100 Subject: [PATCH 0126/2682] Add rattle --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d8b0493c..7f0d23b6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -566,6 +566,7 @@ packages: - record-dot-preprocessor - filepattern - record-hasfield + - rattle "Digital Asset ": - ghc-lib From c0b8969a3c622a9f797edd5bedcaf3614dafa610 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 18 Apr 2019 15:52:14 +0800 Subject: [PATCH 0127/2682] persistent-2.10 bounds (#4489) --- build-constraints.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d8b0493c..baed0ef3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4549,6 +4549,12 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4484 - hslogger < 1.3.0.0 + + # https://github.com/commercialhaskell/stackage/issues/4489 + - persistent < 2.10.0 + - persistent-mysql < 2.10.0 + - persistent-postgresql < 2.10.0 + - persistent-template < 2.7.0 # end of packages # Package flags are applied to individual packages, and override the values of From a99c9cc70748500223e6b50eeb6d250e66bde5cf Mon Sep 17 00:00:00 2001 From: Daniel YU Date: Fri, 19 Apr 2019 10:56:48 +0800 Subject: [PATCH 0128/2682] add yam-redis --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f94e830a..d5fa909f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3199,6 +3199,7 @@ packages: - tensors - yam - yam-datasource + - yam-redis - menshen - crc32c From 480da2f9d15525a21c693f76f606e114666479bd Mon Sep 17 00:00:00 2001 From: Kirill Zaborsky Date: Fri, 19 Apr 2019 09:51:33 +0300 Subject: [PATCH 0129/2682] Add persistent-test missing dependency for persistent-sqlite --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f94e830a..32fecff9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -464,6 +464,7 @@ packages: - persistent-postgresql - persistent-sqlite - persistent-template + - persistent-test # - stackage-curator # http-conduit 2.3 via amazonka - store - wai-websockets From afc8ffd49b54632a03e1e1eaaa5e6bbbddfa4fbe Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sat, 20 Apr 2019 00:25:50 +0800 Subject: [PATCH 0130/2682] persistent-sqlite < 2.10.0 (#4489, yesodweb/persistent#899) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f94e830a..078ad354 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4557,6 +4557,7 @@ packages: - persistent-mysql < 2.10.0 - persistent-postgresql < 2.10.0 - persistent-template < 2.7.0 + - persistent-sqlite < 2.10.0 # end of packages # Package flags are applied to individual packages, and override the values of From 35264a83d790acf8bbd7f6e8154f1c2e74f8c57d Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sat, 20 Apr 2019 02:09:57 +0800 Subject: [PATCH 0131/2682] allow rattle testsuite to fail (#4488) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 078ad354..d0dc322e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5065,6 +5065,7 @@ expected-test-failures: - postgresql-simple-queue - postgresql-typed # PostgreSQL - purescript # git 128 https://github.com/purescript/purescript/issues/2292 + - rattle # needs fsatrace - redis-io - rethinkdb - rethinkdb-client-driver From 7d06ffb844f42bb32987ab8e55573423db51ba1a Mon Sep 17 00:00:00 2001 From: Felix Paulusma Date: Fri, 19 Apr 2019 23:26:59 +0200 Subject: [PATCH 0132/2682] add safe-json --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4087408f..b67be95b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3895,6 +3895,9 @@ packages: "Akihito Kirisaki @kirisaki": - caster + "Felix Paulusma @Vlix": + - safe-json + "Grandfathered dependencies": - Boolean - ChasingBottoms @@ -5096,6 +5099,7 @@ expected-test-failures: - doctest-discover # 0.1.0.9 https://github.com/karun012/doctest-discover/issues/22 - graylog # 0.1.0.1 https://github.com/fpco/stackage/pull/1254 - tomland # https://github.com/kowainik/tomland/issues/141 + - safe-json # 0.1.0 https://github.com/Vlix/safe-json/issues/1 # Assertion failures, these can be real bugs or just limitations # in the test cases. From 4833b55c019b126a2c333af6db726752e8522797 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sat, 20 Apr 2019 02:10:43 +0800 Subject: [PATCH 0133/2682] format expected-test-failures comment on missing servers/env --- build-constraints.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b67be95b..53645b60 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4999,9 +4999,8 @@ expected-test-failures: - zeromq4-patterns - zip - # Requires running servers, accounts, or a specific - # environment. These shouldn't be re-enabled unless we know a fix - # has been released. + # Requires running servers, accounts, or a specific environment. + # These shouldn't be re-enabled unless we know a fix has been released. - GLFW-b # X - HTF # Requires shell script and are incompatible with sandboxed package databases - HaRe # # Needs ~/.ghc-mod/cabal-helper https://github.com/fpco/stackage/pull/906 From a4ce9728e354e59df0edb264d62fe5a15dd2d3e1 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 21 Apr 2019 22:53:50 +0800 Subject: [PATCH 0134/2682] persistent does not build (#4492) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 53645b60..bee054b7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -464,7 +464,7 @@ packages: - persistent-postgresql - persistent-sqlite - persistent-template - - persistent-test + # - persistent-test # https://github.com/commercialhaskell/stackage/pull/4492 # - stackage-curator # http-conduit 2.3 via amazonka - store - wai-websockets From 1ed72b2f9ab72dba12a303e2ab7df24c90cdc8c4 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 22 Apr 2019 17:21:25 +0300 Subject: [PATCH 0135/2682] Upper bound on connection and socks for #4494 --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index bee054b7..6cfe946f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4563,6 +4563,10 @@ packages: - persistent-postgresql < 2.10.0 - persistent-template < 2.7.0 - persistent-sqlite < 2.10.0 + + # https://github.com/commercialhaskell/stackage/issues/4494 + - connection < 0.3 + - socks < 0.6 # end of packages # Package flags are applied to individual packages, and override the values of From a837dcfe3f58da31830e9c05b41710926cdbdfa1 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 22 Apr 2019 17:23:38 +0300 Subject: [PATCH 0136/2682] Upper bound on haskell-lsp for #4495 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6cfe946f..9ea26a81 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4567,6 +4567,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4494 - connection < 0.3 - socks < 0.6 + + # https://github.com/commercialhaskell/stackage/issues/4495 + - haskell-lsp < 0.10 # end of packages # Package flags are applied to individual packages, and override the values of From 6df391a5598d7e58ed78ff34a81cbfcb02511513 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 22 Apr 2019 17:34:44 +0300 Subject: [PATCH 0137/2682] Remove upper bound on haskell-lsp and close #4495 This reverts commit a837dcfe3f58da31830e9c05b41710926cdbdfa1. --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9ea26a81..6cfe946f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4567,9 +4567,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4494 - connection < 0.3 - socks < 0.6 - - # https://github.com/commercialhaskell/stackage/issues/4495 - - haskell-lsp < 0.10 # end of packages # Package flags are applied to individual packages, and override the values of From cc4107eaf14379954020f56f620117a605625dfe Mon Sep 17 00:00:00 2001 From: Roel van Dijk Date: Tue, 23 Apr 2019 15:42:08 +0200 Subject: [PATCH 0138/2682] add terminal-progress-bar As requested by https://github.com/roelvandijk/terminal-progress-bar/issues/26 Seems to build fine with multiple GHC versions: https://matrix.hackage.haskell.org/#/package/terminal-progress-bar I have no problems with supporting this package now and in the future. --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6cfe946f..23c3e7c2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -10,6 +10,9 @@ cabal-format-version: "2.4" # Constraints for brand new builds packages: + "Roel van Dijk @roelvandijk": + - terminal-progress-bar + "Marek Fajkus @turboMaCk": - wai-enforce-https From aa61a46341977cf8229a34ad1a86c80627deb613 Mon Sep 17 00:00:00 2001 From: Travis Whitaker Date: Tue, 23 Apr 2019 13:54:27 -0700 Subject: [PATCH 0139/2682] Fixup rdf. --- build-constraints.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 23c3e7c2..e231798b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4399,7 +4399,6 @@ packages: - geodetics < 0 - jvm < 0 - plot-light < 0 - - rdf < 0 "Blocked per http-client-0.6": @@ -5417,7 +5416,6 @@ skipped-benchmarks: - prometheus-client - ramus - rcu - - rdf - reinterpret-cast - rng-utils - sampling From 5ad601c4110b029b59179fae8583f5fb0f20788c Mon Sep 17 00:00:00 2001 From: Kirill Zaborsky Date: Mon, 15 Apr 2019 12:16:08 +0300 Subject: [PATCH 0140/2682] Share pantry dir but otherwise use different STACK_ROOT in lts/nightly --- automated/build-next.sh | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/automated/build-next.sh b/automated/build-next.sh index bc8e091c..67ccb37b 100755 --- a/automated/build-next.sh +++ b/automated/build-next.sh @@ -18,7 +18,8 @@ fi IMAGE=commercialhaskell/stackage:$TAG CABAL_DIR=$ROOT/cabal -STACK_DIR=$ROOT/stack +PANTRY_DIR=$ROOT/pantry +STACK_DIR=$ROOT/stack-$TAG GHC_DIR=$ROOT/ghc DOT_STACKAGE_DIR=$ROOT/dot-stackage WORKDIR=$ROOT/$TAG/work @@ -28,6 +29,7 @@ USERID=$(id -u) mkdir -p \ "$CABAL_DIR" \ + "$PANTRY_DIR" \ "$STACK_DIR" \ "$GHC_DIR" \ "$DOT_STACKAGE_DIR" \ @@ -69,8 +71,10 @@ mv $CURATOR2 stackage-curator ./stackage-curator --version ) - -ARGS_COMMON="--rm -v $WORKDIR:$HOME/work -w $HOME/work -v $BINDIR/stackage-curator:/usr/bin/stackage-curator:ro -v /etc/passwd:/etc/passwd:ro -v /etc/group:/etc/group:ro -v $BINDIR/stack:/usr/bin/stack:ro -v $STACK_DIR:$HOME/.stack" +# We share pantry directory between snapshots while the other content in .stack +# is stored separately (because e.g. Ubuntu releases between LTS and nightly +# could differ). Also the order of binds is important. +ARGS_COMMON="--rm -v $WORKDIR:$HOME/work -w $HOME/work -v $BINDIR/stackage-curator:/usr/bin/stackage-curator:ro -v /etc/passwd:/etc/passwd:ro -v /etc/group:/etc/group:ro -v $BINDIR/stack:/usr/bin/stack:ro -v $STACK_DIR:$HOME/.stack -v $PANTRY_DIR:$HOME/.stack/pantry" ARGS_PREBUILD="$ARGS_COMMON -u $USERID -e HOME=$HOME -v $CABAL_DIR:$HOME/.cabal -v $GHC_DIR:$HOME/.ghc -v $DOT_STACKAGE_DIR:$HOME/.stackage" ARGS_BUILD="$ARGS_COMMON -v $CABAL_DIR:$HOME/.cabal:ro -v $GHC_DIR:$HOME/.ghc:ro" # instance-data is an undocumented feature of S3 used by amazonka, From 56c2bf8165b8e57092e24a7003c03e2b857ef1d6 Mon Sep 17 00:00:00 2001 From: Kirill Zaborsky Date: Tue, 16 Apr 2019 15:45:32 +0300 Subject: [PATCH 0141/2682] Newer Stack/curator (with disabled interleaved output) --- automated/build-next.sh | 4 ++-- etc/curator-2-check.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/automated/build-next.sh b/automated/build-next.sh index 67ccb37b..567ce19b 100755 --- a/automated/build-next.sh +++ b/automated/build-next.sh @@ -63,7 +63,7 @@ BINDIR=$(cd $ROOT/bin ; pwd) ( cd $BINDIR rm -f stackage-curator stackage-curator-2*.bz2 -CURATOR2=stackage-curator-2-7e65b644121812d9a3a8b24d7130bb8865485f8f +CURATOR2=stackage-curator-2-b6102fdf8a6017e7fee131cf24f470bf1a396665 wget "https://download.fpcomplete.com/stackage-curator-2/$CURATOR2.bz2" bunzip2 "$CURATOR2.bz2" chmod +x $CURATOR2 @@ -94,7 +94,7 @@ fi ( cd $BINDIR rm -f stack stack-*.bz2 -STACK=stack-7e65b644121812d9a3a8b24d7130bb8865485f8f +STACK=stack-b6102fdf8a6017e7fee131cf24f470bf1a396665 wget "https://download.fpcomplete.com/stackage-curator-2/$STACK.bz2" bunzip2 "$STACK.bz2" chmod +x $STACK diff --git a/etc/curator-2-check.sh b/etc/curator-2-check.sh index beddaf39..75b0b713 100755 --- a/etc/curator-2-check.sh +++ b/etc/curator-2-check.sh @@ -11,7 +11,7 @@ export PATH=$HOME/.local/bin:$PATH curl -L https://www.stackage.org/stack/linux-x86_64 | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack' # Get new Stackage curator -CURATOR2=stackage-curator-2-7e65b644121812d9a3a8b24d7130bb8865485f8f +CURATOR2=stackage-curator-2-b6102fdf8a6017e7fee131cf24f470bf1a396665 wget "https://download.fpcomplete.com/stackage-curator-2/$CURATOR2.bz2" bunzip2 "$CURATOR2.bz2" chmod +x $CURATOR2 From 42737f9ea88f09dc6e57f2233804fac89b9c6147 Mon Sep 17 00:00:00 2001 From: Kirill Zaborsky Date: Wed, 17 Apr 2019 13:09:19 +0300 Subject: [PATCH 0142/2682] tee build console output into a file --- automated/build-next.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automated/build-next.sh b/automated/build-next.sh index 567ce19b..5e0476a3 100755 --- a/automated/build-next.sh +++ b/automated/build-next.sh @@ -132,7 +132,7 @@ esac # Now do the actual build. We need to first set the owner of the home directory # correctly, so we run the command as root, change owner, and then use sudo to # switch back to the current user -docker run $ARGS_BUILD $IMAGE nice -n 15 /bin/bash -c "chown $USER $HOME && exec sudo -E -u $USER env \"HOME=$HOME\" \"PATH=\$PATH\" stackage-curator build --jobs $JOBS" +docker run $ARGS_BUILD $IMAGE nice -n 15 /bin/bash -c "chown $USER $HOME && exec sudo -E -u $USER env \"HOME=$HOME\" \"PATH=\$PATH\" stackage-curator build --jobs $JOBS" 2>&1 | tee "$SHORTNAME-build.log" # Make sure we actually need this snapshot. We used to perform this check # exclusively before building. Now we perform it after as well for the case of From 6c63017ae2699dfbf1e7b38f957b07a391341665 Mon Sep 17 00:00:00 2001 From: Kirill Zaborsky Date: Wed, 24 Apr 2019 12:24:41 +0300 Subject: [PATCH 0143/2682] New versions: fixed repo url in curator + proper reuse --- automated/build-next.sh | 4 ++-- etc/curator-2-check.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/automated/build-next.sh b/automated/build-next.sh index 5e0476a3..b0c65c48 100755 --- a/automated/build-next.sh +++ b/automated/build-next.sh @@ -63,7 +63,7 @@ BINDIR=$(cd $ROOT/bin ; pwd) ( cd $BINDIR rm -f stackage-curator stackage-curator-2*.bz2 -CURATOR2=stackage-curator-2-b6102fdf8a6017e7fee131cf24f470bf1a396665 +CURATOR2=stackage-curator-2-7e161449fa1b63a7e41299f3f87bd6f3d7e13082 wget "https://download.fpcomplete.com/stackage-curator-2/$CURATOR2.bz2" bunzip2 "$CURATOR2.bz2" chmod +x $CURATOR2 @@ -94,7 +94,7 @@ fi ( cd $BINDIR rm -f stack stack-*.bz2 -STACK=stack-b6102fdf8a6017e7fee131cf24f470bf1a396665 +STACK=stack-7e161449fa1b63a7e41299f3f87bd6f3d7e13082 wget "https://download.fpcomplete.com/stackage-curator-2/$STACK.bz2" bunzip2 "$STACK.bz2" chmod +x $STACK diff --git a/etc/curator-2-check.sh b/etc/curator-2-check.sh index 75b0b713..0f2a3c7e 100755 --- a/etc/curator-2-check.sh +++ b/etc/curator-2-check.sh @@ -11,7 +11,7 @@ export PATH=$HOME/.local/bin:$PATH curl -L https://www.stackage.org/stack/linux-x86_64 | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack' # Get new Stackage curator -CURATOR2=stackage-curator-2-b6102fdf8a6017e7fee131cf24f470bf1a396665 +CURATOR2=stackage-curator-2-7e161449fa1b63a7e41299f3f87bd6f3d7e13082 wget "https://download.fpcomplete.com/stackage-curator-2/$CURATOR2.bz2" bunzip2 "$CURATOR2.bz2" chmod +x $CURATOR2 From 88db8c11b2a2542bf4a1b8dc46b5e2748a48b994 Mon Sep 17 00:00:00 2001 From: Oleg Grenrus Date: Thu, 25 Apr 2019 12:03:49 +0300 Subject: [PATCH 0144/2682] Remove myself as a maintainer --- build-constraints.yaml | 127 ++++++++++++++++++----------------------- 1 file changed, 55 insertions(+), 72 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e231798b..0a47eb07 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1480,78 +1480,6 @@ packages: "Jan Stolarek @jstolarek": - tasty-program - "Oleg Grenrus @phadej": - - aeson-compat - - aeson-extra - - base64-bytestring-type - - binary-orphans - - binary-tagged - - boring - - cabal-doctest - - crypt-sha512 - - dlist-nonempty - - edit-distance - - fin - - functor-classes-compat - - generics-sop-lens - - github - - insert-ordered-containers - - integer-logarithms - - JuicyPixels-scale-dct - - kleene - - lattices - - microstache - - OneTuple - - postgresql-simple-url - - range-set-list - - regex-applicative-text - - servant-dhall < 0 - - servant-swagger-ui - - servant-swagger-ui-core - - servant-swagger-ui-redoc - - servant-yaml - - singleton-bool - - spdx < 0 # needs QuickCheck 2.12 - - splitmix - - step-function - - tdigest - - these - - time-parsers - - tree-diff - - vec - - # scrive/log - - log < 0 # via log-elasticsearch - - log-base - - log-elasticsearch < 0 # via bloodhound - - log-postgres < 0 - - # Not a maintainer - - folds - - friendly-time - - hashable - - haxl - - monad-time - - packdeps < 0 - - recursion-schemes < 5.1.1.1 || > 5.1.1.1 - - unordered-containers - - # Regex packages by Chris Kuklewicz - - regex-base - - regex-compat - - regex-pcre - - regex-posix - - regex-tdfa - - # Universe - - universe - - universe-base - - universe-dependent-sum - - universe-instances-base - - universe-instances-extended - - universe-instances-trans - - universe-reverse-instances - "Abhinav Gupta @abhinav": - farmhash - pinch < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build @@ -3914,14 +3842,18 @@ packages: - HTTP - HsOpenSSL - HsYAML + - JuicyPixels-scale-dct - ListLike - MemoTrie - NumInstances + - OneTuple - Only - ParsecTools - QuickCheck - RSA - X11 + - aeson-compat + - aeson-extra - alsa-mixer - ansi-terminal - appar @@ -3933,14 +3865,18 @@ packages: - authenticate - auto-update - base64-bytestring + - base64-bytestring-type - base64-string - bimap + - binary-orphans - binary-parser + - binary-tagged - bindings-DSL - bitarray - blaze-builder - blaze-svg - blaze-textual + - boring - brick - buffer-builder - byteable @@ -3949,6 +3885,7 @@ packages: - bytestring-tree-builder - bzlib - ca-province-codes + - cabal-doctest - call-stack - casing - cassava-megaparsec @@ -3977,6 +3914,7 @@ packages: - convertible - cookie - cpphs + - crypt-sha512 - crypto-api - crypto-api-tests - crypto-cipher-tests @@ -4018,12 +3956,14 @@ packages: - discount - dlist - dlist-instances + - dlist-nonempty - dotgen - double-conversion - dual-tree - easy-file - easytest - ed25519 + - edit-distance - enclosed-exceptions - entropy - erf @@ -4039,23 +3979,30 @@ packages: - file-embed - file-embed-lzma - filemanip + - fin - fingertree - fmlist + - friendly-time + - functor-classes-compat - generic-arbitrary + - generics-sop-lens - ghc-compact - ghc-paths - ghc-prof - gi-gdk - gi-gdkpixbuf - gi-pango + - github - groom - groups - hackage-security + - hashable - haskell-gi-overloading - haskell-lexer - haskell-lsp-types - haskell-src - haskell-src-exts + - haxl - heap - hex - hint @@ -4092,20 +4039,25 @@ packages: - iconv - ieee754 - infer-license + - insert-ordered-containers - inspection-testing + - integer-logarithms - io-streams-haproxy - ip - ixset-typed - json - json-alt + - kleene - language-haskell-extract - largeword + - lattices - lazy-csv - libyaml - lifted-async - lifted-base - loch-th - lockfree-queue + - log-base - logging-facade - lrucache - lzma @@ -4114,12 +4066,14 @@ packages: - math-functions - mersenne-random-pure64 - mfsolve + - microstache - mmap - mmorph - mockery - monad-control - monad-logger - monad-loops + - monad-time - monads-tf - mono-traversable-instances - mono-traversable-keys @@ -4153,6 +4107,7 @@ packages: - polyparse - postgresql-libpq - postgresql-simple + - postgresql-simple-url - pretty-hex - pretty-show - prettyprinter-convert-ansi-wl-pprint @@ -4170,10 +4125,18 @@ packages: - quickcheck-unicode - random - random-shuffle + - range-set-list - raw-strings-qq - readable - rebase + - recursion-schemes + - regex-applicative-text + - regex-base + - regex-compat + - regex-pcre - regex-pcre-builtin + - regex-posix + - regex-tdfa - regex-tdfa-text - relapse - relational-schemas @@ -4188,12 +4151,17 @@ packages: - securemem - serialise - servant-client-core + - servant-swagger-ui + - servant-swagger-ui-core + - servant-swagger-ui-redoc + - servant-yaml - setenv - shakespeare - shell-escape - silently - simple-reflect - simple-sendfile + - singleton-bool - singleton-nats - size-based - skein @@ -4202,10 +4170,12 @@ packages: - special-values - splice - split + - splitmix - sql-words - srcloc - stateref - statistics + - step-function - stm-delay - stm-hamt - storable-complex @@ -4223,6 +4193,7 @@ packages: - tabular - tar - tasty-th + - tdigest - temporary - temporary-rc - temporary-resourcet @@ -4244,27 +4215,39 @@ packages: - th-extras - th-lift-instances - th-utilities + - these - threads - thyme - time-locale-compat + - time-parsers - timeit - tls-session-manager - token-bucket - tonatona - transformers-base + - tree-diff - true-name - tuple-th - type-fun - type-hint - uglymemo - unbounded-delays + - universe + - universe-base + - universe-dependent-sum + - universe-instances-base + - universe-instances-extended + - universe-instances-trans + - universe-reverse-instances - unix-compat - unix-time + - unordered-containers - url - utf8-light - utf8-string - uuid-types - vault + - vec - vector - vector-algorithms - vector-binary-instances From 8999e29ad54278072377b1ebb04041755c94d486 Mon Sep 17 00:00:00 2001 From: Oleg Grenrus Date: Thu, 25 Apr 2019 12:10:21 +0300 Subject: [PATCH 0145/2682] Update servant packages --- build-constraints.yaml | 29 +++++++++++++++++------------ 1 file changed, 17 insertions(+), 12 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e231798b..a166906f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1317,17 +1317,26 @@ packages: - alarmclock - bank-holidays-england - "Haskell Servant ": + "Haskell Servant ": - servant - - servant-client - - servant-docs - - servant-js - - servant-server - - servant-lucid - servant-blaze - - servant-foreign - - servant-mock - servant-cassava + - servant-client + - servant-client-core + - servant-conduit + - servant-docs + - servant-foreign + - servant-http-streams + - servant-js + - servant-lucid + - servant-machines + - servant-mock + - servant-multipart + - servant-pipes + - servant-server + - servant-swagger + - servant-swagger-ui + - servant-swagger-ui-core "Alexandr Ruchkin @mvoidex": - hformat @@ -1506,9 +1515,6 @@ packages: - range-set-list - regex-applicative-text - servant-dhall < 0 - - servant-swagger-ui - - servant-swagger-ui-core - - servant-swagger-ui-redoc - servant-yaml - singleton-bool - spdx < 0 # needs QuickCheck 2.12 @@ -2476,7 +2482,6 @@ packages: "Nickolay Kudasov @fizruk": - http-api-data - swagger2 - - servant-swagger - telegram-bot-simple < 0 # https://github.com/fizruk/telegram-bot-simple/issues/18 "Jared Tobin @jtobin": From c6ea64f008175af95f3911b04a063891d44bea53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Sipma?= Date: Fri, 26 Apr 2019 13:57:24 +0200 Subject: [PATCH 0146/2682] HaskellNet-SSL 0.3.4.1 should compile fine with network-2.7.0.0 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6cfe946f..54672845 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1351,7 +1351,7 @@ packages: "Leza M. Lutonda @lemol": - HaskellNet - - HaskellNet-SSL < 0 + - HaskellNet-SSL "Jens Petersen @juhp": - cabal-rpm From 54f0b932edfa887a71f71cc59fa01fa591766698 Mon Sep 17 00:00:00 2001 From: David Millar-Durrant Date: Fri, 26 Apr 2019 16:44:14 +0200 Subject: [PATCH 0147/2682] Added rope utf16 splay with permission --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2b204087..f619555c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3837,6 +3837,9 @@ packages: "Felix Paulusma @Vlix": - safe-json + "Olle Fredriksson @ollef": + - rope-utf16-splay + "Grandfathered dependencies": - Boolean - ChasingBottoms From d7dec74ede7155e2649e4ca4f5f44da1c41e8cf8 Mon Sep 17 00:00:00 2001 From: Vaibhav Sagar Date: Fri, 26 Apr 2019 15:36:03 -0400 Subject: [PATCH 0148/2682] Unblock `ihaskell` and `ghc-parser` I've just released new versions to Hackage that are compatible with LTS-13. --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2b204087..9a686143 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3556,8 +3556,8 @@ packages: - servant-exceptions < 0 # https://github.com/ch1bo/servant-exceptions/issues/9 "Vaibhav Sagar @vaibhavsagar": - - ihaskell < 0 - - ghc-parser < 0 + - ihaskell + - ghc-parser "Alexis Williams @typedrat": - stb-image-redux From 0d9527c18a1e4a70705b36899ac38c43c611cadd Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sat, 27 Apr 2019 16:38:57 +0200 Subject: [PATCH 0149/2682] network < 2.8.0.1 #4427 and disable lambdabot-core & lambdabot-irc-plugins --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2b204087..30dab1cb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2329,8 +2329,8 @@ packages: - hsyslog - jailbreak-cabal - json-autotype - - lambdabot-core - - lambdabot-irc-plugins + - lambdabot-core < 0 + - lambdabot-irc-plugins < 0 - language-nix - logging-facade-syslog - MonadPrompt @@ -4514,7 +4514,7 @@ packages: "Stackage upper bounds": # https://github.com/commercialhaskell/stackage/issues/4427 - - network < 3.0.0.0 + - network < 2.8.0.1 - hsdev < 0.3.3.0 - network-bsd < 2.8.1.0 From e2f2130d570ca7df0acd73d6dd843a35b674fc1e Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sat, 27 Apr 2019 16:45:12 +0200 Subject: [PATCH 0150/2682] th-abstraction < 0.3.0.0 #4504 --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 30dab1cb..0cc71b58 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4560,6 +4560,10 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4494 - connection < 0.3 - socks < 0.6 + + # https://github.com/commercialhaskell/stackage/issues/4504 + - th-abstraction < 0.3.0.0 + # end of packages # Package flags are applied to individual packages, and override the values of From f45d2cbdb30b09373db0630dd32cb300225d15f9 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sat, 27 Apr 2019 16:48:01 +0200 Subject: [PATCH 0151/2682] th-lift < 0.8 #4505 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0cc71b58..d4b698df 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4564,6 +4564,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4504 - th-abstraction < 0.3.0.0 + # https://github.com/commercialhaskell/stackage/issues/4505 + - th-lift < 0.8 + # end of packages # Package flags are applied to individual packages, and override the values of From 27e5014b83b870fb5e898b277a1f8c62a390ca77 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sun, 28 Apr 2019 12:45:20 +0200 Subject: [PATCH 0152/2682] port-uitls < 0.2.1.0 #4506 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index dcf77641..5161e5c7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4570,6 +4570,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4505 - th-lift < 0.8 + # https://github.com/commercialhaskell/stackage/issues/4506 + - port-utils < 0.2.1.0 + # end of packages # Package flags are applied to individual packages, and override the values of From 230efd97918b81eb043ea469a3e650f8f20cc6ee Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sun, 28 Apr 2019 19:18:42 +0200 Subject: [PATCH 0153/2682] Remove th-lift upper bound, closes #4505 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5161e5c7..cb50b2b3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4567,9 +4567,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4504 - th-abstraction < 0.3.0.0 - # https://github.com/commercialhaskell/stackage/issues/4505 - - th-lift < 0.8 - # https://github.com/commercialhaskell/stackage/issues/4506 - port-utils < 0.2.1.0 From a3c1fa3560c2d2e2a88900e59bfcb3492fdfccf0 Mon Sep 17 00:00:00 2001 From: Albert Krewinkel Date: Sun, 28 Apr 2019 22:28:13 +0200 Subject: [PATCH 0154/2682] Add package hslua-module-system --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index cb50b2b3..72091fdd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3297,6 +3297,7 @@ packages: "Albert Krewinkel @tarleb": - hslua - hslua-aeson + - hslua-module-system - hslua-module-text "Judah Jacobson @judah": From d80a654b77ab7b8f86d554ca21b8122686e5c5e8 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 29 Apr 2019 06:32:00 +0300 Subject: [PATCH 0155/2682] Upgrade to GHC 8.6.5 --- Dockerfile | 2 +- build-constraints.yaml | 2 +- check | 2 +- etc/ci-script.sh | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0b6189c7..1bd56971 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM fpco/pid1:18.04 ENV HOME /home/stackage ENV LANG en_US.UTF-8 -ENV GHCVER 8.6.4 +ENV GHCVER 8.6.5 # NOTE: also update debian-bootstrap.sh when cuda version changes ENV PATH /home/stackage/.stack/programs/x86_64-linux/ghc-$GHCVER/bin:/usr/local/cuda-10.0/bin:/usr/sbin:/usr/bin:/sbin:/bin diff --git a/build-constraints.yaml b/build-constraints.yaml index 9ab2361e..cfa2b017 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1,6 +1,6 @@ ghc-major-version: "8.6" # new curator is supposed to use exact GHC version -ghc-version: "8.6.4" +ghc-version: "8.6.5" # This affects which version of the Cabal file format we allow. We # should ensure that this is always no greater than the version diff --git a/check b/check index 9ed2b812..b28ba8bb 100755 --- a/check +++ b/check @@ -3,4 +3,4 @@ # Convenience script for checking constraints locally cd `dirname $0` -exec stack exec --resolver ghc-8.6.4 stackage-curator check +exec stack exec --resolver ghc-8.6.5 stackage-curator check diff --git a/etc/ci-script.sh b/etc/ci-script.sh index c70f2b32..66e04114 100755 --- a/etc/ci-script.sh +++ b/etc/ci-script.sh @@ -2,7 +2,7 @@ set -euxo pipefail -export GHCVER=8.6.4 +export GHCVER=8.6.5 # Download and unpack the stack executable mkdir -p ~/.local/bin From d5550f9534a9b1db6087fca0a88d8f12a99408d7 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Tue, 30 Apr 2019 11:37:23 +0200 Subject: [PATCH 0156/2682] clock < 0.8 #4510 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d807e130..a8c22f60 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4571,6 +4571,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4506 - port-utils < 0.2.1.0 + # https://github.com/commercialhaskell/stackage/issues/4510 + - clock < 0.8 + # end of packages # Package flags are applied to individual packages, and override the values of From 1a57c0286dda7af6253964ed4731af17435ea683 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Tue, 30 Apr 2019 11:46:26 +0200 Subject: [PATCH 0157/2682] wai-extra < 3.0.26 #4511 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index a8c22f60..01287040 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4574,6 +4574,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4510 - clock < 0.8 + # https://github.com/commercialhaskell/stackage/issues/4511 + - wai-extra < 3.0.26 + # end of packages # Package flags are applied to individual packages, and override the values of From efcf180892ed7092051c894e75025c9cc73b88df Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Tue, 30 Apr 2019 12:14:05 +0200 Subject: [PATCH 0158/2682] aeson < 1.4.3.0 #4512 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 01287040..f6aca82e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4577,6 +4577,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4511 - wai-extra < 3.0.26 + # https://github.com/commercialhaskell/stackage/issues/4512 + - aeson < 1.4.3.0 + # end of packages # Package flags are applied to individual packages, and override the values of From 0b5ba6617d4b1962e895176c746e161c315c2a45 Mon Sep 17 00:00:00 2001 From: Alexey Kuleshevich Date: Tue, 30 Apr 2019 15:42:05 +0300 Subject: [PATCH 0159/2682] Remove upper bound on `rio`. Fix #4479 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f6aca82e..0cc50811 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4545,9 +4545,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4469 - cmark-gfm < 0.2.0 - # https://github.com/commercialhaskell/stackage/issues/4479 - - rio < 0.1.9.0 - # https://github.com/commercialhaskell/stackage/issues/4483 - http-media < 0.8.0.0 From fd55b4ee4d905e052a4325a9667fd6bc2b7628f9 Mon Sep 17 00:00:00 2001 From: "Scott N. Walck" Date: Wed, 1 May 2019 09:23:23 -0400 Subject: [PATCH 0160/2682] reintroduce cyclotomic --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0cc50811..e60b3218 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -71,7 +71,7 @@ packages: - valor "Scott N. Walck @walck": - - cyclotomic < 0 + - cyclotomic - learn-physics < 0 "Phil de Joux @philderbeast": From ae67f0a552b7dfd8e6eb14d53b2c1f0a70048646 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Fri, 3 May 2019 06:58:51 -0400 Subject: [PATCH 0161/2682] Restrict persistent-typed-db (#4516 #4515) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0cc50811..25cd5455 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2134,7 +2134,7 @@ packages: - liboath-hs - servant-quickcheck < 0 - esqueleto - - persistent-typed-db + - persistent-typed-db < 0.1.0.0 # persistent-2.10.0, persistent-template-2.7.0 - persistent-qq "Matthew Pickering @mpickering": From 62931b1e5beed9883b40016d39f9b5a9d3687291 Mon Sep 17 00:00:00 2001 From: Dmitry Ivanov Date: Fri, 3 May 2019 15:17:33 +0200 Subject: [PATCH 0162/2682] Add planb-token-introspection --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 25cd5455..3e19f489 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2256,6 +2256,7 @@ packages: - dyre - io-storage - oo-prototypes + - planb-token-introspection - pointedlist - unordered-intmap - word-trie From 23501be6ed997f6f4be55e4e2fc8de9445a5ad17 Mon Sep 17 00:00:00 2001 From: Venkateswara Rao Mandela Date: Sat, 4 May 2019 23:52:02 +0530 Subject: [PATCH 0163/2682] add package pandoc-csv2table --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ce2864e9..06a4f476 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3842,6 +3842,9 @@ packages: "Olle Fredriksson @ollef": - rope-utf16-splay + "Venkateswara Rao Mandela @vmandela": + - pandoc-csv2table + "Grandfathered dependencies": - Boolean - ChasingBottoms From 833e0df7bd4c324983ce32ca95b15b060995be31 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sun, 5 May 2019 08:49:15 -0400 Subject: [PATCH 0164/2682] Restrict case-insensitive bounds #4519 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ce2864e9..f93cdc66 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -452,7 +452,7 @@ packages: "Michael Snoyman michael@snoyman.com @snoyberg": - bzlib-conduit - mega-sdist - - case-insensitive + - case-insensitive < 1.2.1 - classy-prelude-yesod - conduit-combinators - conduit-extra From 0fa84d96b3512f5bb439d32704377599b4a9bf95 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Mon, 6 May 2019 17:33:01 -0700 Subject: [PATCH 0165/2682] Block doctest-0.16.1 (#4523) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2833a8b4..41b0e772 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4581,6 +4581,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4512 - aeson < 1.4.3.0 + # https://github.com/commercialhaskell/stackage/issues/4523 + - doctest < 0.16.1 + # end of packages # Package flags are applied to individual packages, and override the values of From e3b8e8b856d905f6457b80a75f47ecf61bf6ffe6 Mon Sep 17 00:00:00 2001 From: Tobias Dammers Date: Mon, 6 May 2019 14:37:03 +0200 Subject: [PATCH 0166/2682] Reinstate ginger --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 41b0e772..75dc2a6b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -356,7 +356,7 @@ packages: - type-map "Tobias Dammers @tdammers": - - ginger < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build + - ginger - yeshql "Yair Chuchem @yairchu": From 8d2ca3bfcafd98ed0deac3d4c9ed2824cdebfd2c Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 8 May 2019 06:32:56 -0700 Subject: [PATCH 0167/2682] Test zstd --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 75dc2a6b..561731fb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5206,7 +5206,7 @@ expected-test-failures: - stm-delay # https://github.com/joeyadams/haskell-stm-delay/issues/5 - tcp-streams # https://github.com/didi-FP/tcp-streams/issues/5 - tmp-postgres # https://github.com/jfischoff/tmp-postgres/issues/1 - - zstd # ghc 8.2.2 bug? https://github.com/fpco/stackage/issues/3219 + # zstd # ghc 8.2.2 bug? https://github.com/fpco/stackage/issues/3219 # Linting failures (these may break every time HLint gets updated so keep them disabled) # https://www.snoyman.com/blog/2017/11/future-proofing-test-suites From 6c0ed8523c9e67220c4ea95ee35314465e8e9b15 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 8 May 2019 06:37:51 -0700 Subject: [PATCH 0168/2682] Try haddock-library --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 561731fb..fd36d8ff 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5206,7 +5206,7 @@ expected-test-failures: - stm-delay # https://github.com/joeyadams/haskell-stm-delay/issues/5 - tcp-streams # https://github.com/didi-FP/tcp-streams/issues/5 - tmp-postgres # https://github.com/jfischoff/tmp-postgres/issues/1 - # zstd # ghc 8.2.2 bug? https://github.com/fpco/stackage/issues/3219 + - zstd # ghc 8.2.2 bug? https://github.com/fpco/stackage/issues/3219 # Linting failures (these may break every time HLint gets updated so keep them disabled) # https://www.snoyman.com/blog/2017/11/future-proofing-test-suites @@ -5303,7 +5303,7 @@ expected-haddock-failures: - MemoTrie # https://github.com/conal/MemoTrie/issues/10 - classy-prelude-yesod - elm-street # https://github.com/commercialhaskell/stackage/issues/4470 - - haddock-library # https://github.com/fpco/stackage/issues/3236 + # haddock-library # https://github.com/fpco/stackage/issues/3236 - ghc-lib # https://github.com/commercialhaskell/stackage/issues/4377 # Modules use compiler plugins From 3c429556ab0af2a3c88c159a9db42bd7232b6d30 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 8 May 2019 06:45:44 -0700 Subject: [PATCH 0169/2682] Fix #3236, haddock-library now builds properly --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index fd36d8ff..5ce38223 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5303,7 +5303,6 @@ expected-haddock-failures: - MemoTrie # https://github.com/conal/MemoTrie/issues/10 - classy-prelude-yesod - elm-street # https://github.com/commercialhaskell/stackage/issues/4470 - # haddock-library # https://github.com/fpco/stackage/issues/3236 - ghc-lib # https://github.com/commercialhaskell/stackage/issues/4377 # Modules use compiler plugins From 8d337618ba360266782ba5a996cca425a6285c6d Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 8 May 2019 06:49:35 -0700 Subject: [PATCH 0170/2682] Test hw-rankselect(s) --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5ce38223..1dda9a03 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4756,8 +4756,8 @@ skipped-tests: - hw-ip # via hspec-2.6.0 - hw-json # via hspec-2.6.0 - hw-prim # via QuickCheck-2.12.6.1, via hspec-2.6.0 - - hw-rankselect # via QuickCheck-2.12.6.1, via hspec-2.6.0 - - hw-rankselect-base # via QuickCheck-2.12.6.1, via hspec-2.6.0 + # hw-rankselect # via QuickCheck-2.12.6.1, via hspec-2.6.0 + # hw-rankselect-base # via QuickCheck-2.12.6.1, via hspec-2.6.0 - hw-streams # via hspec-2.6.0 - indents # tasty 0.12 and tasty-hunit 0.10 - insert-ordered-containers # via tasty-1.2 @@ -5335,7 +5335,7 @@ skipped-benchmarks: - dimensional # base < 4.7, https://github.com/bjornbm/dimensional/issues/207 - ed25519 # Criterion - hw-balancedparens # criterion 1.5, https://github.com/commercialhaskell/stackage/issues/3880 - - hw-rankselect-base # criterion 1.5, https://github.com/commercialhaskell/stackage/issues/3880 + # hw-rankselect-base # criterion 1.5, https://github.com/commercialhaskell/stackage/issues/3880 - identicon # via criterion-1.5.0.0 - pandoc-types # via criterion-1.5.0.0 - pipes # optparse-applicative 0.13 From ff58c3d9dae98a749135c65ebebc3248305e4f4d Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 8 May 2019 06:58:27 -0700 Subject: [PATCH 0171/2682] Try concurrent-extra --- build-constraints.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1dda9a03..a72ed2af 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4756,8 +4756,8 @@ skipped-tests: - hw-ip # via hspec-2.6.0 - hw-json # via hspec-2.6.0 - hw-prim # via QuickCheck-2.12.6.1, via hspec-2.6.0 - # hw-rankselect # via QuickCheck-2.12.6.1, via hspec-2.6.0 - # hw-rankselect-base # via QuickCheck-2.12.6.1, via hspec-2.6.0 + - hw-rankselect # via QuickCheck-2.12.6.1, via hspec-2.6.0 + - hw-rankselect-base # via QuickCheck-2.12.6.1, via hspec-2.6.0 - hw-streams # via hspec-2.6.0 - indents # tasty 0.12 and tasty-hunit 0.10 - insert-ordered-containers # via tasty-1.2 @@ -4984,7 +4984,7 @@ expected-test-failures: - aeson-lens # https://github.com/tanakh/aeson-lens/issues/10 - cabal-debian # https://github.com/ddssff/cabal-debian/issues/50 - capataz # https://github.com/roman/Haskell-capataz/issues/6 - - concurrent-extra # https://github.com/commercialhaskell/stackage/issues/3717 + # concurrent-extra # https://github.com/commercialhaskell/stackage/issues/3717 - crypto-numbers - css-text # 0.1.2.2 https://github.com/yesodweb/css-text/issues/10 - distributed-process @@ -5335,7 +5335,7 @@ skipped-benchmarks: - dimensional # base < 4.7, https://github.com/bjornbm/dimensional/issues/207 - ed25519 # Criterion - hw-balancedparens # criterion 1.5, https://github.com/commercialhaskell/stackage/issues/3880 - # hw-rankselect-base # criterion 1.5, https://github.com/commercialhaskell/stackage/issues/3880 + - hw-rankselect-base # criterion 1.5, https://github.com/commercialhaskell/stackage/issues/3880 - identicon # via criterion-1.5.0.0 - pandoc-types # via criterion-1.5.0.0 - pipes # optparse-applicative 0.13 From 56f975804f38272593705784e1e7b4ef803875e2 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 8 May 2019 07:08:02 -0700 Subject: [PATCH 0172/2682] Try pandoc --- build-constraints.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a72ed2af..030a2974 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4768,7 +4768,7 @@ skipped-tests: - makefile # GHC 8.2 - mmtf # via hspec-2.7.0 - next-ref # hspec 2.3 - - pandoc # via tasty-1.2 + # pandoc # via tasty-1.2 - partial-order # HUnit 1.6 - psqueues # via QuickCheck-2.12.6.1 - pure-zlib # via QuickCheck-2.12.6.1 @@ -4984,7 +4984,7 @@ expected-test-failures: - aeson-lens # https://github.com/tanakh/aeson-lens/issues/10 - cabal-debian # https://github.com/ddssff/cabal-debian/issues/50 - capataz # https://github.com/roman/Haskell-capataz/issues/6 - # concurrent-extra # https://github.com/commercialhaskell/stackage/issues/3717 + - concurrent-extra # https://github.com/commercialhaskell/stackage/issues/3717 - crypto-numbers - css-text # 0.1.2.2 https://github.com/yesodweb/css-text/issues/10 - distributed-process @@ -5002,8 +5002,8 @@ expected-test-failures: - mltool # https://github.com/Alexander-Ignatyev/mltool/issues/1 - network # Unfortunately network failures seem to happen haphazardly - nsis # Intermittent on non-Windows systems - - pandoc # https://github.com/commercialhaskell/stackage/issues/3719 - - pandoc-citeproc # https://github.com/jgm/pandoc-citeproc/issues/172 + # pandoc # https://github.com/commercialhaskell/stackage/issues/3719 + # pandoc-citeproc # https://github.com/jgm/pandoc-citeproc/issues/172 - statistics # https://github.com/bos/statistics/issues/42 # Timeouts @@ -5337,7 +5337,7 @@ skipped-benchmarks: - hw-balancedparens # criterion 1.5, https://github.com/commercialhaskell/stackage/issues/3880 - hw-rankselect-base # criterion 1.5, https://github.com/commercialhaskell/stackage/issues/3880 - identicon # via criterion-1.5.0.0 - - pandoc-types # via criterion-1.5.0.0 + # pandoc-types # via criterion-1.5.0.0 - pipes # optparse-applicative 0.13 - psqueues # ghc 8.4 via PSQueue build failure - serialise From 8d3de4a929fa396964c91cf55f107d7e35f29478 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 8 May 2019 17:00:06 -0700 Subject: [PATCH 0173/2682] Upper bounds needed for #4525 --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 030a2974..9c9cbc50 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4584,6 +4584,10 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4523 - doctest < 0.16.1 + # https://github.com/commercialhaskell/stackage/issues/4525 + - lsp-test < 0.5.2.1 + - haskell-lsp < 0.12 + - haskell-lsp-types < 0.12 # end of packages # Package flags are applied to individual packages, and override the values of From c60eeeb19ad4c56023f42b51895ae5b9cdcda795 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 8 May 2019 17:00:52 -0700 Subject: [PATCH 0174/2682] Remove commented lines --- build-constraints.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9c9cbc50..c97c018d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4772,7 +4772,6 @@ skipped-tests: - makefile # GHC 8.2 - mmtf # via hspec-2.7.0 - next-ref # hspec 2.3 - # pandoc # via tasty-1.2 - partial-order # HUnit 1.6 - psqueues # via QuickCheck-2.12.6.1 - pure-zlib # via QuickCheck-2.12.6.1 @@ -5006,8 +5005,6 @@ expected-test-failures: - mltool # https://github.com/Alexander-Ignatyev/mltool/issues/1 - network # Unfortunately network failures seem to happen haphazardly - nsis # Intermittent on non-Windows systems - # pandoc # https://github.com/commercialhaskell/stackage/issues/3719 - # pandoc-citeproc # https://github.com/jgm/pandoc-citeproc/issues/172 - statistics # https://github.com/bos/statistics/issues/42 # Timeouts @@ -5341,7 +5338,6 @@ skipped-benchmarks: - hw-balancedparens # criterion 1.5, https://github.com/commercialhaskell/stackage/issues/3880 - hw-rankselect-base # criterion 1.5, https://github.com/commercialhaskell/stackage/issues/3880 - identicon # via criterion-1.5.0.0 - # pandoc-types # via criterion-1.5.0.0 - pipes # optparse-applicative 0.13 - psqueues # ghc 8.4 via PSQueue build failure - serialise From c44f180babef70f82ef1c9b446209ca86f77fabf Mon Sep 17 00:00:00 2001 From: William Yao Date: Mon, 6 May 2019 19:30:16 -0700 Subject: [PATCH 0175/2682] add string-interpolate --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index c97c018d..05e9b268 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -10,6 +10,9 @@ cabal-format-version: "2.4" # Constraints for brand new builds packages: + "William Yao @williamyaoh": + - string-interpolate + "Roel van Dijk @roelvandijk": - terminal-progress-bar From 69f1d6852bf7b6946d1eff760dbae10490ca6bbc Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 8 May 2019 17:30:21 -0700 Subject: [PATCH 0176/2682] Remove upper bound on hslua benchmarks. Fix #3994 --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 05e9b268..2af01546 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5352,7 +5352,6 @@ skipped-benchmarks: - unicode-transforms # path-io - unordered-containers # criterion 1.5 - xxhash-ffi # ghc 8.4 via xxhash build failure - - hslua # criterion 1.5.1 # Blocked due to benchmarks failing to compile for GHC 8.6 - binary-tagged From 03f2b94fee22f45694ece34cc2a12b729f33576c Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 8 May 2019 17:39:38 -0700 Subject: [PATCH 0177/2682] Disable hslua benchmarks, now due to #4526 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2af01546..fbe2e1cb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5484,6 +5484,7 @@ skipped-benchmarks: - extensible # via freer-effects https://github.com/fumieval/extensible/issues/12 - hw-bits # https://github.com/haskell-works/hw-bits/issues/8 - thyme # https://github.com/commercialhaskell/stackage/issues/4003 + - hslua # https://github.com/commercialhaskell/stackage/issues/4526 # Cyclic dependencies - cassava From 12f949ca8177875cf22b0472303e5da485d40cb4 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 8 May 2019 17:46:51 -0700 Subject: [PATCH 0178/2682] thyme works now, fix #4003 --- build-constraints.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index fbe2e1cb..b33dbc84 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4879,7 +4879,6 @@ skipped-tests: # Compilation failures - snappy # https://github.com/bos/snappy/issues/1 - - thyme # https://github.com/commercialhaskell/stackage/issues/4003 - genvalidity-time # https://github.com/NorfairKing/validity/issues/51 - uri-bytestring # Could not deduce (SOP.All (SOP.All Arbitrary) xs) arising from a use of ‘SOP.hcpure’ - cron # Could not deduce (SOP.All (SOP.All Arbitrary) xss) arising from a use of ‘SOP.hcpure’ @@ -5483,7 +5482,6 @@ skipped-benchmarks: - cipher-rc4 # https://github.com/vincenthz/hs-crypto-cipher/issues/46 - extensible # via freer-effects https://github.com/fumieval/extensible/issues/12 - hw-bits # https://github.com/haskell-works/hw-bits/issues/8 - - thyme # https://github.com/commercialhaskell/stackage/issues/4003 - hslua # https://github.com/commercialhaskell/stackage/issues/4526 # Cyclic dependencies From 804850af7db0b1ef90b8f83ad7aef66daf4ad5ae Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 8 May 2019 17:48:19 -0700 Subject: [PATCH 0179/2682] Test asif --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b33dbc84..cecaa569 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5222,7 +5222,7 @@ expected-test-failures: - Diff # https://github.com/commercialhaskell/stackage/issues/4294 - - asif + # asif # to get fixed in version after 0.3.2 https://github.com/snoyberg/tar-conduit/issues/28 - tar-conduit From db97e161451bc4b0ffcc34bfced2a8eccc1697f3 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 8 May 2019 17:58:56 -0700 Subject: [PATCH 0180/2682] thyme tests are still fialing --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index cecaa569..0061d276 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4845,9 +4845,9 @@ skipped-tests: - rank1dynamic - rcu - rss-conduit + - servant-auth-server - servant-blaze - servant-cassava - - servant-auth-server - siggy-chardust - simple-vec3 - skews @@ -4855,6 +4855,7 @@ skipped-tests: - speedy-slice - static-text - structs + - thyme - universum - unordered-containers - unordered-intmap From 6df8e2b6c09d3623fc39d484f6e00dfa30913bbc Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 8 May 2019 18:08:10 -0700 Subject: [PATCH 0181/2682] thyme bench also fails to build --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0061d276..ba690419 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5283,6 +5283,7 @@ expected-benchmark-failures: - cryptohash # https://github.com/vincenthz/hs-cryptohash/pull/43 - http2 - lz4 # https://github.com/fpco/stackage/issues/3510 + - thyme - xmlgen # https://github.com/skogsbaer/xmlgen/issues/6 # end of expected-benchmark-failures From 86b9fa216d8b51dcf25efe3bb049e272c8e88666 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 8 May 2019 20:22:46 -0700 Subject: [PATCH 0182/2682] asif tests are still failing --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ba690419..e6263b4b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5223,7 +5223,7 @@ expected-test-failures: - Diff # https://github.com/commercialhaskell/stackage/issues/4294 - # asif + - asif # to get fixed in version after 0.3.2 https://github.com/snoyberg/tar-conduit/issues/28 - tar-conduit From 85cc688f2a8b0ebdf4364701de52617b8cada5ed Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 8 May 2019 20:26:47 -0700 Subject: [PATCH 0183/2682] Try iproute --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e6263b4b..b3606a1d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4969,7 +4969,7 @@ skipped-tests: - js-jquery # Requires filesystem access - - json-autotype # https://github.com/commercialhaskell/stackage/issues/4185 + - json-autotype # Requires running pg-harness-server - peregrin @@ -5141,7 +5141,7 @@ expected-test-failures: - unicode-show # https://github.com/nushio3/unicode-show/issues/2 - wreq - xml-picklers # https://github.com/Philonous/xml-picklers/issues/5 - - iproute # https://github.com/commercialhaskell/stackage/issues/4210 + # iproute # https://github.com/commercialhaskell/stackage/issues/4210 - hakyll # https://github.com/jaspervdj/hakyll/issues/682 - hpack-dhall # https://github.com/BlockScope/hpack-dhall/issues/25 From 2a5969762de3559022590978df119b40eaa756e5 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 8 May 2019 20:29:47 -0700 Subject: [PATCH 0184/2682] Try rando --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b3606a1d..38b4ded1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5136,12 +5136,11 @@ expected-test-failures: - http-client-tls # https://github.com/snoyberg/http-client/issues/360 - http-link-header # https://github.com/myfreeweb/http-link-header/issues/7 - mmark # https://github.com/commercialhaskell/stackage/issues/3906#issuecomment-413061849 - - rando # https://github.com/commercialhaskell/stackage/issues/4249 + # rando # https://github.com/commercialhaskell/stackage/issues/4249 - systemd # https://github.com/erebe/systemd/issues/3 - unicode-show # https://github.com/nushio3/unicode-show/issues/2 - wreq - xml-picklers # https://github.com/Philonous/xml-picklers/issues/5 - # iproute # https://github.com/commercialhaskell/stackage/issues/4210 - hakyll # https://github.com/jaspervdj/hakyll/issues/682 - hpack-dhall # https://github.com/BlockScope/hpack-dhall/issues/25 From 1bc2f74bb8c331f98a341a7ab4c9530dda26793f Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 8 May 2019 20:37:21 -0700 Subject: [PATCH 0185/2682] Test Diff --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 38b4ded1..7dfb7942 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5136,7 +5136,7 @@ expected-test-failures: - http-client-tls # https://github.com/snoyberg/http-client/issues/360 - http-link-header # https://github.com/myfreeweb/http-link-header/issues/7 - mmark # https://github.com/commercialhaskell/stackage/issues/3906#issuecomment-413061849 - # rando # https://github.com/commercialhaskell/stackage/issues/4249 + - rando # https://github.com/commercialhaskell/stackage/issues/4249 - systemd # https://github.com/erebe/systemd/issues/3 - unicode-show # https://github.com/nushio3/unicode-show/issues/2 - wreq @@ -5219,7 +5219,7 @@ expected-test-failures: - heap # https://github.com/commercialhaskell/stackage/issues/4289 - - Diff + # Diff # https://github.com/commercialhaskell/stackage/issues/4294 - asif From 26c0d11dde7c7a2eddbbb71e316f85310c7774e8 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 8 May 2019 21:12:10 -0700 Subject: [PATCH 0186/2682] Diff not working --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7dfb7942..ac7a0021 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5219,7 +5219,7 @@ expected-test-failures: - heap # https://github.com/commercialhaskell/stackage/issues/4289 - # Diff + - Diff # https://github.com/commercialhaskell/stackage/issues/4294 - asif From 846f038220b8adffb9522f9beb582cf3e6ff1ff1 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 9 May 2019 17:44:16 -0700 Subject: [PATCH 0187/2682] Don't accept generics-sop 0.5.0.0 yet (#4527) --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ac7a0021..d0ff25bd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4591,6 +4591,10 @@ packages: - lsp-test < 0.5.2.1 - haskell-lsp < 0.12 - haskell-lsp-types < 0.12 + + # https://github.com/commercialhaskell/stackage/issues/4527 + - generics-sop < 0.5 + - sop-core < 0.5 # end of packages # Package flags are applied to individual packages, and override the values of From 9faa1a2efd8b078ec8821cde6e6973906cfe7708 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 9 May 2019 18:13:31 -0700 Subject: [PATCH 0188/2682] Test if lsp-test has been fixed --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d0ff25bd..4e33c125 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4588,9 +4588,9 @@ packages: - doctest < 0.16.1 # https://github.com/commercialhaskell/stackage/issues/4525 - - lsp-test < 0.5.2.1 - - haskell-lsp < 0.12 - - haskell-lsp-types < 0.12 + # lsp-test < 0.5.2.1 + # haskell-lsp < 0.12 + # haskell-lsp-types < 0.12 # https://github.com/commercialhaskell/stackage/issues/4527 - generics-sop < 0.5 From e5543342e7e3c86ab65ac36ddfbd2f18d73734be Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 9 May 2019 18:18:00 -0700 Subject: [PATCH 0189/2682] Fix #4525, lst-test builds successfully now --- build-constraints.yaml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4e33c125..0a0ebfbf 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4587,11 +4587,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4523 - doctest < 0.16.1 - # https://github.com/commercialhaskell/stackage/issues/4525 - # lsp-test < 0.5.2.1 - # haskell-lsp < 0.12 - # haskell-lsp-types < 0.12 - # https://github.com/commercialhaskell/stackage/issues/4527 - generics-sop < 0.5 - sop-core < 0.5 From 6a1e51b339af26ef5b3c4977f8e465a897789c00 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 9 May 2019 18:18:57 -0700 Subject: [PATCH 0190/2682] Try tests on lst-test --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0a0ebfbf..5d3a0a78 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5072,7 +5072,6 @@ expected-test-failures: - jvm - katip-elasticsearch # elasticsearch - log # ElasticSearch - - lsp-test - lxd-client # Needs LXD, not available on debian - mangopay # https://github.com/prowdsponsor/mangopay/issues/30 - memcached-binary # memcached From 873896f23b4e70801acf3f9ca5c3d61885fe2183 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 9 May 2019 18:19:35 -0700 Subject: [PATCH 0191/2682] Already know the tests fail --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5d3a0a78..0a0ebfbf 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5072,6 +5072,7 @@ expected-test-failures: - jvm - katip-elasticsearch # elasticsearch - log # ElasticSearch + - lsp-test - lxd-client # Needs LXD, not available on debian - mangopay # https://github.com/prowdsponsor/mangopay/issues/30 - memcached-binary # memcached From 3d462c89b2f627b533cb3ce56524e0573e4d7caf Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 9 May 2019 18:23:38 -0700 Subject: [PATCH 0192/2682] clock bounds seem to not be needed now (fix #4510) --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0a0ebfbf..8000cabf 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4575,9 +4575,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4506 - port-utils < 0.2.1.0 - # https://github.com/commercialhaskell/stackage/issues/4510 - - clock < 0.8 - # https://github.com/commercialhaskell/stackage/issues/4511 - wai-extra < 3.0.26 From bf13926fdfd44a612388e6fcdb81da78caf9c2d7 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 9 May 2019 19:56:42 -0700 Subject: [PATCH 0193/2682] Try ghc-lib --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8000cabf..d6545881 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5303,7 +5303,7 @@ expected-haddock-failures: - MemoTrie # https://github.com/conal/MemoTrie/issues/10 - classy-prelude-yesod - elm-street # https://github.com/commercialhaskell/stackage/issues/4470 - - ghc-lib # https://github.com/commercialhaskell/stackage/issues/4377 + # ghc-lib # https://github.com/commercialhaskell/stackage/issues/4377 # Modules use compiler plugins # https://github.com/haskell/haddock/issues/900 From 550849287caca3fd1b54b64478ec5ac2544c62a3 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 9 May 2019 20:19:36 -0700 Subject: [PATCH 0194/2682] ghc-lib haddocks are buildings (fix #4377) --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d6545881..cd0d01a1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5303,7 +5303,6 @@ expected-haddock-failures: - MemoTrie # https://github.com/conal/MemoTrie/issues/10 - classy-prelude-yesod - elm-street # https://github.com/commercialhaskell/stackage/issues/4470 - # ghc-lib # https://github.com/commercialhaskell/stackage/issues/4377 # Modules use compiler plugins # https://github.com/haskell/haddock/issues/900 From 47664a5d05370c0f2822b7e7f1e6236629b3dfb1 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 9 May 2019 20:21:58 -0700 Subject: [PATCH 0195/2682] Test avro --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index cd0d01a1..1edbc539 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4944,7 +4944,7 @@ skipped-tests: - vec # test build is failing - - avro + # avro # Uses Cabal's "library internal" stanza feature - s3-signer From 38c5f817501a92f7270a6d8516bcf02acfd4b700 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 9 May 2019 20:25:47 -0700 Subject: [PATCH 0196/2682] Avro tests are no longer failing, fix #4393 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1edbc539..f1b3592d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4943,9 +4943,6 @@ skipped-tests: - time-parsers - vec - # test build is failing - # avro - # Uses Cabal's "library internal" stanza feature - s3-signer From 4d6c7dd1e1b43fcd85d6dd4b7ffee444a1587d4e Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 9 May 2019 20:43:38 -0700 Subject: [PATCH 0197/2682] Update upper bound on network (#4528, close #4427) --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f1b3592d..c50005f5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4524,8 +4524,8 @@ packages: - Win32 == 2.6.1.0 "Stackage upper bounds": - # https://github.com/commercialhaskell/stackage/issues/4427 - - network < 2.8.0.1 + # https://github.com/commercialhaskell/stackage/issues/4528 + - network < 3 - hsdev < 0.3.3.0 - network-bsd < 2.8.1.0 From 20edcce93ec6b46a50d3a8ed3286dc1911b7a667 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 9 May 2019 20:48:47 -0700 Subject: [PATCH 0198/2682] Try viewprof --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c50005f5..6d0c1918 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3194,7 +3194,7 @@ packages: "Mitsutoshi Aoe @maoe": - influxdb - sensu-run < 0 # GHC 8.4 via base-4.11.0.0 - - viewprof < 0 # brick-0.38 commercialhaskell/stackage#3839 vty-5.22 commercialhaskell/stackage#3840 + - viewprof # 0 # brick-0.38 commercialhaskell/stackage#3839 vty-5.22 commercialhaskell/stackage#3840 "Dylan Simon @dylex": - postgresql-typed From 4df5e969f2fe6126d7cb4bbfed05b4c49836dcb5 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 10 May 2019 07:14:13 -0700 Subject: [PATCH 0199/2682] Viewprof seems to build now --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6d0c1918..e7100739 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3194,7 +3194,7 @@ packages: "Mitsutoshi Aoe @maoe": - influxdb - sensu-run < 0 # GHC 8.4 via base-4.11.0.0 - - viewprof # 0 # brick-0.38 commercialhaskell/stackage#3839 vty-5.22 commercialhaskell/stackage#3840 + - viewprof "Dylan Simon @dylex": - postgresql-typed From ad316e69bc967ac1641ce02a6466c0418d9f8964 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 10 May 2019 07:14:31 -0700 Subject: [PATCH 0200/2682] Upper bound hashable (#4529) and semigroups (#4530) --- build-constraints.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index e7100739..3a19c06b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4587,6 +4587,12 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4527 - generics-sop < 0.5 - sop-core < 0.5 + + # https://github.com/commercialhaskell/stackage/issues/4529 + - hashable < 1.3 + + # https://github.com/commercialhaskell/stackage/issues/4530 + - semigroups < 0.19 # end of packages # Package flags are applied to individual packages, and override the values of From 426a6e71744018268c8ffa622eb26c7703a1d97f Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 10 May 2019 07:21:41 -0700 Subject: [PATCH 0201/2682] Test a bunch of tests that seem to fail --- build-constraints.yaml | 54 +++++++++++++++++++++--------------------- 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3a19c06b..546610e6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4995,7 +4995,7 @@ expected-test-failures: - distributed-process - distributed-process-execution # https://github.com/haskell-distributed/distributed-process-execution/issues/2 - distributed-process-task - - dns # https://github.com/kazu-yamamoto/dns/issues/29 + # dns # https://github.com/kazu-yamamoto/dns/issues/29 - foldl-statistics # https://github.com/data61/foldl-statistics/issues/2 - fsnotify # Often runs out of inotify handles - hastache @@ -5021,7 +5021,7 @@ expected-test-failures: - punycode - unagi-chan - zeromq4-patterns - - zip + # zip # Requires running servers, accounts, or a specific environment. # These shouldn't be re-enabled unless we know a fix has been released. @@ -5131,8 +5131,8 @@ expected-test-failures: - courier # https://github.com/hargettp/courier/issues/19 - download # https://github.com/fpco/stackage/issues/2811 - haskell-tools-demo # https://github.com/haskell-tools/haskell-tools/issues/624 - - http-client # https://github.com/snoyberg/http-client/issues/360 - - http-client-tls # https://github.com/snoyberg/http-client/issues/360 + # http-client # https://github.com/snoyberg/http-client/issues/360 + # http-client-tls # https://github.com/snoyberg/http-client/issues/360 - http-link-header # https://github.com/myfreeweb/http-link-header/issues/7 - mmark # https://github.com/commercialhaskell/stackage/issues/3906#issuecomment-413061849 - rando # https://github.com/commercialhaskell/stackage/issues/4249 @@ -5163,7 +5163,7 @@ expected-test-failures: - squeal-postgresql # https://github.com/fpco/stackage/issues/3180 - text-icu # https://github.com/bos/text-icu/issues/32 - text-ldap # https://github.com/khibino/haskell-text-ldap/issues/1 - - tls # https://github.com/vincenthz/hs-tls/issues/247 + # tls # https://github.com/vincenthz/hs-tls/issues/247 - unicode-transforms # https://github.com/harendra-kumar/unicode-transforms/issues/15 - vector-algorithms # http://hub.darcs.net/dolio/vector-algorithms/issue/9 - vivid-supercollider # https://github.com/commercialhaskell/stackage/issues/4250 @@ -5174,14 +5174,14 @@ expected-test-failures: - yesod-gitrev # https://github.com/DanBurton/yesod-gitrev/issues/5 - record-dot-preprocessor # https://github.com/commercialhaskell/stackage/issues/4449 - hledger-lib # https://github.com/commercialhaskell/stackage/issues/4464 - - servant-static-th # https://github.com/commercialhaskell/stackage/issues/4465 + # servant-static-th # https://github.com/commercialhaskell/stackage/issues/4465 # Stackage upper bounds, re-enable these when their upper bound is removed # Recursive deps https://github.com/fpco/stackage/issues/1818 - options - text # 1.2.2.1 - - wai-logger # Missing build dep because of this https://github.com/kazu-yamamoto/logger/issues/42 + # wai-logger # Missing build dep because of this https://github.com/kazu-yamamoto/logger/issues/42 # Problem on the stackage build server, we need to dig deeper into # these if we want them fixed @@ -5193,11 +5193,11 @@ expected-test-failures: - makefile # Doctest failures - - bugsnag-haskell # https://github.com/pbrisbin/bugsnag-haskell/issues/42 + # bugsnag-haskell # https://github.com/pbrisbin/bugsnag-haskell/issues/42 # Misc. - - HTTP # e.g. "ERROR: Network.Socket.connect: : unsupported operation (Cannot assign requested address)", I'm not sure if this is a build server issue... - - dbus + # HTTP # e.g. "ERROR: Network.Socket.connect: : unsupported operation (Cannot assign requested address)", I'm not sure if this is a build server issue... + # dbus - genvalidity-hspec # https://github.com/NorfairKing/validity/issues/55 - genvalidity-hspec-hashable # https://github.com/NorfairKing/validity/issues/55 - ghcid # Weird conflicts with sandboxingistributed/distributed-process-supervisor/issues/1 @@ -5206,7 +5206,7 @@ expected-test-failures: - postgresql-simple-queue # same issue as before, see also https://github.com/fpco/stackage/issues/2592 as that will fix both - rattletrap # OOM? https://github.com/fpco/stackage/issues/2232 - stm-delay # https://github.com/joeyadams/haskell-stm-delay/issues/5 - - tcp-streams # https://github.com/didi-FP/tcp-streams/issues/5 + # tcp-streams # https://github.com/didi-FP/tcp-streams/issues/5 - tmp-postgres # https://github.com/jfischoff/tmp-postgres/issues/1 - zstd # ghc 8.2.2 bug? https://github.com/fpco/stackage/issues/3219 @@ -5230,7 +5230,7 @@ expected-test-failures: - pcg-random # https://github.com/snoyberg/conduit/issues/385 - - conduit-extra + # conduit-extra # Stack builds test and benchmarks in one pass so benchmark could prevent tests from getting built - cryptohash @@ -5249,21 +5249,21 @@ expected-test-failures: # doctests for the following packages fail because of ambiguous module # names, to be fixed in https://github.com/sol/doctest/pull/218 - - blaze-colonnade - - co-log-core - - colonnade - - control-dsl - - dhall - - greskell-core - - jose-jwt - - jwt - - language-nix - - lens-regex - - pcre-heavy - - servant-checked-exceptions-core - - servant-rawm - - vinyl - - world-peace + # blaze-colonnade + # co-log-core + # colonnade + # control-dsl + # dhall + # greskell-core + # jose-jwt + # jwt + # language-nix + # lens-regex + # pcre-heavy + # servant-checked-exceptions-core + # servant-rawm + # vinyl + # world-peace # end of expected-test-failures From 5f0381de06377d2c52b017c38d43a61ef6e38ead Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 10 May 2019 07:30:42 -0700 Subject: [PATCH 0202/2682] Upper bounds for constraints (#4531), intervals (#4534), machines (#4533) and profunctors (#4532) --- build-constraints.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 546610e6..43bac8c0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4593,6 +4593,18 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4530 - semigroups < 0.19 + + # https://github.com/commercialhaskell/stackage/issues/4531 + - constraints < 0.11 + + # https://github.com/commercialhaskell/stackage/issues/4534 + - intervals < 0.9 + + # https://github.com/commercialhaskell/stackage/issues/4533 + - machines < 0.7 + + # https://github.com/commercialhaskell/stackage/issues/4532 + - profunctors < 5.4 # end of packages # Package flags are applied to individual packages, and override the values of From a043251327b777b463a4d810519e5d1a8c0bdeed Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 10 May 2019 16:28:19 -0700 Subject: [PATCH 0203/2682] Remove commented out lines after those tests pass --- build-constraints.yaml | 36 ------------------------------------ 1 file changed, 36 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 43bac8c0..6089c0d3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5007,7 +5007,6 @@ expected-test-failures: - distributed-process - distributed-process-execution # https://github.com/haskell-distributed/distributed-process-execution/issues/2 - distributed-process-task - # dns # https://github.com/kazu-yamamoto/dns/issues/29 - foldl-statistics # https://github.com/data61/foldl-statistics/issues/2 - fsnotify # Often runs out of inotify handles - hastache @@ -5033,7 +5032,6 @@ expected-test-failures: - punycode - unagi-chan - zeromq4-patterns - # zip # Requires running servers, accounts, or a specific environment. # These shouldn't be re-enabled unless we know a fix has been released. @@ -5143,8 +5141,6 @@ expected-test-failures: - courier # https://github.com/hargettp/courier/issues/19 - download # https://github.com/fpco/stackage/issues/2811 - haskell-tools-demo # https://github.com/haskell-tools/haskell-tools/issues/624 - # http-client # https://github.com/snoyberg/http-client/issues/360 - # http-client-tls # https://github.com/snoyberg/http-client/issues/360 - http-link-header # https://github.com/myfreeweb/http-link-header/issues/7 - mmark # https://github.com/commercialhaskell/stackage/issues/3906#issuecomment-413061849 - rando # https://github.com/commercialhaskell/stackage/issues/4249 @@ -5175,7 +5171,6 @@ expected-test-failures: - squeal-postgresql # https://github.com/fpco/stackage/issues/3180 - text-icu # https://github.com/bos/text-icu/issues/32 - text-ldap # https://github.com/khibino/haskell-text-ldap/issues/1 - # tls # https://github.com/vincenthz/hs-tls/issues/247 - unicode-transforms # https://github.com/harendra-kumar/unicode-transforms/issues/15 - vector-algorithms # http://hub.darcs.net/dolio/vector-algorithms/issue/9 - vivid-supercollider # https://github.com/commercialhaskell/stackage/issues/4250 @@ -5186,14 +5181,10 @@ expected-test-failures: - yesod-gitrev # https://github.com/DanBurton/yesod-gitrev/issues/5 - record-dot-preprocessor # https://github.com/commercialhaskell/stackage/issues/4449 - hledger-lib # https://github.com/commercialhaskell/stackage/issues/4464 - # servant-static-th # https://github.com/commercialhaskell/stackage/issues/4465 - - # Stackage upper bounds, re-enable these when their upper bound is removed # Recursive deps https://github.com/fpco/stackage/issues/1818 - options - text # 1.2.2.1 - # wai-logger # Missing build dep because of this https://github.com/kazu-yamamoto/logger/issues/42 # Problem on the stackage build server, we need to dig deeper into # these if we want them fixed @@ -5204,12 +5195,7 @@ expected-test-failures: # Doctests require hidden Glob package - makefile - # Doctest failures - # bugsnag-haskell # https://github.com/pbrisbin/bugsnag-haskell/issues/42 - # Misc. - # HTTP # e.g. "ERROR: Network.Socket.connect: : unsupported operation (Cannot assign requested address)", I'm not sure if this is a build server issue... - # dbus - genvalidity-hspec # https://github.com/NorfairKing/validity/issues/55 - genvalidity-hspec-hashable # https://github.com/NorfairKing/validity/issues/55 - ghcid # Weird conflicts with sandboxingistributed/distributed-process-supervisor/issues/1 @@ -5218,7 +5204,6 @@ expected-test-failures: - postgresql-simple-queue # same issue as before, see also https://github.com/fpco/stackage/issues/2592 as that will fix both - rattletrap # OOM? https://github.com/fpco/stackage/issues/2232 - stm-delay # https://github.com/joeyadams/haskell-stm-delay/issues/5 - # tcp-streams # https://github.com/didi-FP/tcp-streams/issues/5 - tmp-postgres # https://github.com/jfischoff/tmp-postgres/issues/1 - zstd # ghc 8.2.2 bug? https://github.com/fpco/stackage/issues/3219 @@ -5241,9 +5226,6 @@ expected-test-failures: # https://github.com/cchalmers/pcg-random/pull/7 - pcg-random - # https://github.com/snoyberg/conduit/issues/385 - # conduit-extra - # Stack builds test and benchmarks in one pass so benchmark could prevent tests from getting built - cryptohash @@ -5259,24 +5241,6 @@ expected-test-failures: # https://github.com/Bodigrim/exp-pairs/issues/16 - exp-pairs - # doctests for the following packages fail because of ambiguous module - # names, to be fixed in https://github.com/sol/doctest/pull/218 - # blaze-colonnade - # co-log-core - # colonnade - # control-dsl - # dhall - # greskell-core - # jose-jwt - # jwt - # language-nix - # lens-regex - # pcre-heavy - # servant-checked-exceptions-core - # servant-rawm - # vinyl - # world-peace - # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 10392ba990689dcb020c0ff924045b797b9e5550 Mon Sep 17 00:00:00 2001 From: mrkkrp Date: Fri, 10 May 2019 21:07:04 +0200 Subject: [PATCH 0204/2682] =?UTF-8?q?Add=20=E2=80=98megaparsec-tests?= =?UTF-8?q?=E2=80=99=20and=20=E2=80=98parser-combinators-tests=E2=80=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Test suites of the ‘megaparsec’ and ‘parser-combinators’ were separated into their own packages. In addition, I took the liberty of sorting the list of my packages for clarity. --- build-constraints.yaml | 44 ++++++++++++++++++++++-------------------- 1 file changed, 23 insertions(+), 21 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6089c0d3..2b13d780 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2381,33 +2381,35 @@ packages: - tar-conduit "Mark Karpov @mrkkrp": - - megaparsec - - htaglib - - path-io - - hspec-megaparsec - - zip - JuicyPixels-extra - - identicon - - pagination - - text-metrics - - tagged-identity - - req - - req-conduit - cue-sheet - - wave - flac - flac-picture - - lame - - path - forma - - stache - - parser-combinators - - modern-uri - - mmark - - mmark-ext - - html-entity-map - - mmark-cli - ghc-syntax-highlighter + - hspec-megaparsec + - htaglib + - html-entity-map + - identicon + - lame + - megaparsec + - megaparsec-tests + - mmark + - mmark-cli + - mmark-ext + - modern-uri + - pagination + - parser-combinators + - parser-combinators-tests + - path + - path-io + - req + - req-conduit + - stache + - tagged-identity + - text-metrics + - wave + - zip "Emmanuel Touzery @emmanueltouzery": - app-settings From b1cfad5086f812e95e13e045006de4c8e51b11ca Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 10 May 2019 17:45:02 -0700 Subject: [PATCH 0205/2682] =?UTF-8?q?Revert=20"Add=20=E2=80=98megaparsec-t?= =?UTF-8?q?ests=E2=80=99=20and=20=E2=80=98parser-combinators-tests?= =?UTF-8?q?=E2=80=99"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit 10392ba990689dcb020c0ff924045b797b9e5550. --- build-constraints.yaml | 46 ++++++++++++++++++++---------------------- 1 file changed, 22 insertions(+), 24 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2b13d780..6089c0d3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2381,35 +2381,33 @@ packages: - tar-conduit "Mark Karpov @mrkkrp": - - JuicyPixels-extra - - cue-sheet - - flac - - flac-picture - - forma - - ghc-syntax-highlighter - - hspec-megaparsec - - htaglib - - html-entity-map - - identicon - - lame - megaparsec - - megaparsec-tests - - mmark - - mmark-cli - - mmark-ext - - modern-uri - - pagination - - parser-combinators - - parser-combinators-tests - - path + - htaglib - path-io + - hspec-megaparsec + - zip + - JuicyPixels-extra + - identicon + - pagination + - text-metrics + - tagged-identity - req - req-conduit - - stache - - tagged-identity - - text-metrics + - cue-sheet - wave - - zip + - flac + - flac-picture + - lame + - path + - forma + - stache + - parser-combinators + - modern-uri + - mmark + - mmark-ext + - html-entity-map + - mmark-cli + - ghc-syntax-highlighter "Emmanuel Touzery @emmanueltouzery": - app-settings From ce9c8de9997bd96c6102eb3d82400ff9758db134 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 11 May 2019 07:30:53 -0700 Subject: [PATCH 0206/2682] Upper bound rebase due to rerebase (#4539) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6089c0d3..29ad4fb6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4605,6 +4605,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4532 - profunctors < 5.4 + + # https://github.com/commercialhaskell/stackage/issues/4539 + - rebase < 1.3.1.1 # end of packages # Package flags are applied to individual packages, and override the values of From 1be42390f4134ee632ae3c0ca36ae19af89da3b6 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 11 May 2019 07:27:44 -0700 Subject: [PATCH 0207/2682] =?UTF-8?q?Revert=20"Revert=20"Add=20=E2=80=98me?= =?UTF-8?q?gaparsec-tests=E2=80=99=20and=20=E2=80=98parser-combinators-tes?= =?UTF-8?q?ts=E2=80=99""?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit b1cfad5086f812e95e13e045006de4c8e51b11ca. --- build-constraints.yaml | 44 ++++++++++++++++++++++-------------------- 1 file changed, 23 insertions(+), 21 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 29ad4fb6..31765e09 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2381,33 +2381,35 @@ packages: - tar-conduit "Mark Karpov @mrkkrp": - - megaparsec - - htaglib - - path-io - - hspec-megaparsec - - zip - JuicyPixels-extra - - identicon - - pagination - - text-metrics - - tagged-identity - - req - - req-conduit - cue-sheet - - wave - flac - flac-picture - - lame - - path - forma - - stache - - parser-combinators - - modern-uri - - mmark - - mmark-ext - - html-entity-map - - mmark-cli - ghc-syntax-highlighter + - hspec-megaparsec + - htaglib + - html-entity-map + - identicon + - lame + - megaparsec + - megaparsec-tests + - mmark + - mmark-cli + - mmark-ext + - modern-uri + - pagination + - parser-combinators + - parser-combinators-tests + - path + - path-io + - req + - req-conduit + - stache + - tagged-identity + - text-metrics + - wave + - zip "Emmanuel Touzery @emmanueltouzery": - app-settings From b097b0603b0e4f6831387a9f9036c98a1298e09e Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 11 May 2019 08:45:24 -0700 Subject: [PATCH 0208/2682] Remove parser-combinators-tests (#4540) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 31765e09..57521a6a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2400,7 +2400,7 @@ packages: - modern-uri - pagination - parser-combinators - - parser-combinators-tests + # parser-combinators-tests # https://github.com/commercialhaskell/stackage/issues/4540 - path - path-io - req From 11736518b2766ef058a4ac6795ec2843418a29da Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 11 May 2019 08:48:57 -0700 Subject: [PATCH 0209/2682] checkers solved, close #4441 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 57521a6a..a7804a58 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4534,9 +4534,6 @@ packages: # https://github.com/simonmichael/hledger/issues/983 - easytest < 0.3 - # https://github.com/commercialhaskell/stackage/issues/4441 - - checkers < 0.5.0 - # https://github.com/commercialhaskell/stackage/issues/4444 - QuickCheck < 2.13 - quickcheck-instances < 0.3.20 From 2acc9640c63a3c3e8b666b489cb59ec4d2770154 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 11 May 2019 08:53:38 -0700 Subject: [PATCH 0210/2682] Close #4446, prepare for adding co-log --- build-constraints.yaml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a7804a58..49028361 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2152,7 +2152,7 @@ packages: "James Cook @mokus0": - dependent-sum - - dependent-sum-template + # dependent-sum-template # see https://github.com/commercialhaskell/stackage/issues/4446#issuecomment-491522496 - dependent-map - dice < 0 # GHC 8.4 via random-fu - hstatsd @@ -4541,10 +4541,6 @@ packages: - hspec < 2.7.1 - hspec-discover < 2.7.1 - # https://github.com/commercialhaskell/stackage/issues/4446 - - dependent-sum < 0.5 - - typerep-map < 0.3.2 - # https://github.com/commercialhaskell/stackage/issues/4463 - mime-mail < 0.5.0 From cdee71297f9de26c9a727612a16aea9381c4efdb Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 11 May 2019 09:56:45 +0200 Subject: [PATCH 0211/2682] enable lambdabot builds again Recent versions support network 2.x and 3.x. --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 49028361..f00ce379 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2333,8 +2333,8 @@ packages: - hsyslog - jailbreak-cabal - json-autotype - - lambdabot-core < 0 - - lambdabot-irc-plugins < 0 + - lambdabot-core + - lambdabot-irc-plugins - language-nix - logging-facade-syslog - MonadPrompt From 97305e72308d6cfe729be0c909c3041ce11eb0c4 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 11 May 2019 09:11:24 -0700 Subject: [PATCH 0212/2682] #4446, #4541 --- build-constraints.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f00ce379..00a2eddc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2152,7 +2152,7 @@ packages: "James Cook @mokus0": - dependent-sum - # dependent-sum-template # see https://github.com/commercialhaskell/stackage/issues/4446#issuecomment-491522496 + - dependent-sum-template - dependent-map - dice < 0 # GHC 8.4 via random-fu - hstatsd @@ -4603,6 +4603,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4539 - rebase < 1.3.1.1 + + # https://github.com/commercialhaskell/stackage/issues/4541 + - dependent-sum < 0.5 # end of packages # Package flags are applied to individual packages, and override the values of @@ -5324,6 +5327,7 @@ skipped-benchmarks: - unicode-transforms # path-io - unordered-containers # criterion 1.5 - xxhash-ffi # ghc 8.4 via xxhash build failure + - typerep-map # via https://github.com/commercialhaskell/stackage/issues/4541 # Blocked due to benchmarks failing to compile for GHC 8.6 - binary-tagged From d0e3878ca6af54ca75c9dcb6caa0db3c465c2868 Mon Sep 17 00:00:00 2001 From: Dmitry Kovanikov Date: Sun, 5 May 2019 22:42:43 +0800 Subject: [PATCH 0213/2682] Add co-log --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 00a2eddc..692d5c6b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3405,10 +3405,10 @@ packages: - o-clock - universum - "Kowainik @ChShersh": + "Kowainik @chshersh @vrom911": - base-noprelude == 4.12.0.0 - co-log-core - - co-log < 0 + - co-log - first-class-patterns - relude - shellmet From 9703cecaec0e5145a57fc0b382a78b5a22d315f2 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 11 May 2019 09:43:36 -0700 Subject: [PATCH 0214/2682] Enable newer QuickCheck, close #4444, open #4542 --- build-constraints.yaml | 39 ++++++++++++++++++++++----------------- 1 file changed, 22 insertions(+), 17 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 692d5c6b..2e17c38a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -184,7 +184,7 @@ packages: "Jacob Stanley @jystic": - hedgehog - - hedgehog-quickcheck + - hedgehog-quickcheck < 0 # via QuickCheck https://github.com/commercialhaskell/stackage/issues/4444 - transformers-bifunctors "Walter Schulze @awalterschulze": @@ -1138,7 +1138,7 @@ packages: # - hledger-lib - hledger - - hledger-ui + - hledger-ui < 0 # via brick, via data-clist, via QuickCheck https://github.com/commercialhaskell/stackage/issues/4444 - hledger-web - hledger-api # @@ -2393,7 +2393,7 @@ packages: - identicon - lame - megaparsec - - megaparsec-tests + - megaparsec-tests < 0 # via QuickCheck https://github.com/commercialhaskell/stackage/issues/4444 - mmark - mmark-cli - mmark-ext @@ -3168,7 +3168,7 @@ packages: - scheduler "Hans-Peter Deifel @hpdeifel": - - hledger-iadd + - hledger-iadd < 0 # via brick, via data-clist, via QuickCheck https://github.com/commercialhaskell/stackage/issues/4444 "Roy Levien @orome": - crypto-enigma @@ -3196,7 +3196,7 @@ packages: "Mitsutoshi Aoe @maoe": - influxdb - sensu-run < 0 # GHC 8.4 via base-4.11.0.0 - - viewprof + - viewprof < 0 # via brick, via data-clist, via QuickCheck https://github.com/commercialhaskell/stackage/issues/4444 "Dylan Simon @dylex": - postgresql-typed @@ -3630,8 +3630,8 @@ packages: - indexed-list-literals "Dmitry Dzhus @dzhus": - - csg - - simple-vec3 + - csg < 0 # via QuickCheck https://github.com/commercialhaskell/stackage/issues/4444 + - simple-vec3 < 0 # via QuickCheck https://github.com/commercialhaskell/stackage/issues/4444 - static-text - th-nowq @@ -3852,7 +3852,7 @@ packages: "Grandfathered dependencies": - Boolean - - ChasingBottoms + - ChasingBottoms < 0 # due to QuickCheck, https://github.com/commercialhaskell/stackage/issues/4444 - Decimal - Diff - FloatingHex @@ -3898,7 +3898,7 @@ packages: - blaze-svg - blaze-textual - boring - - brick + - brick < 0 # via data-clist, via QuickCheck https://github.com/commercialhaskell/stackage/issues/4444 - buffer-builder - byteable - bytestring-builder @@ -3953,7 +3953,7 @@ packages: - data-binary-ieee754 - data-bword - data-checked - - data-clist + - data-clist < 0 # via QuickCheck https://github.com/commercialhaskell/stackage/issues/4444 - data-default - data-default-class - data-default-instances-containers @@ -4534,13 +4534,6 @@ packages: # https://github.com/simonmichael/hledger/issues/983 - easytest < 0.3 - # https://github.com/commercialhaskell/stackage/issues/4444 - - QuickCheck < 2.13 - - quickcheck-instances < 0.3.20 - - hspec-core < 2.7.1 - - hspec < 2.7.1 - - hspec-discover < 2.7.1 - # https://github.com/commercialhaskell/stackage/issues/4463 - mime-mail < 0.5.0 @@ -4892,6 +4885,18 @@ skipped-tests: # Blocked by stackage upper bounds. These can be re-enabled once # the relevant stackage upper bound is lifted. + # QuickCheck failures https://github.com/commercialhaskell/stackage/issues/4444 + - boolean-normal-forms + - cassava-conduit + - dlist-nonempty + - msgpack + - optparse-applicative + - typerep-map + - ucam-webauth + - unicode-transforms + - websockets + # via ChasingBottoms, via QuickCheck https://github.com/commercialhaskell/stackage/issues/4444 + - lapack # Compilation failures - snappy # https://github.com/bos/snappy/issues/1 From 8c2acdba185a219bf19eb9a413098258ef404fdb Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 11 May 2019 09:49:28 -0700 Subject: [PATCH 0215/2682] Try record-dot-preprocessor --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2e17c38a..a51e2dd0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5185,7 +5185,7 @@ expected-test-failures: - yeshql-core # https://github.com/tdammers/yeshql/issues/6 - yeshql-hdbc # https://github.com/tdammers/yeshql/issues/6 - yesod-gitrev # https://github.com/DanBurton/yesod-gitrev/issues/5 - - record-dot-preprocessor # https://github.com/commercialhaskell/stackage/issues/4449 + # record-dot-preprocessor # https://github.com/commercialhaskell/stackage/issues/4449 - hledger-lib # https://github.com/commercialhaskell/stackage/issues/4464 # Recursive deps https://github.com/fpco/stackage/issues/1818 From b0ecaf555be39b6f23b4d878be0b5f3f18e962f4 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 11 May 2019 09:50:06 -0700 Subject: [PATCH 0216/2682] No try yet, still waiting on QuickCheck --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a51e2dd0..2e17c38a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5185,7 +5185,7 @@ expected-test-failures: - yeshql-core # https://github.com/tdammers/yeshql/issues/6 - yeshql-hdbc # https://github.com/tdammers/yeshql/issues/6 - yesod-gitrev # https://github.com/DanBurton/yesod-gitrev/issues/5 - # record-dot-preprocessor # https://github.com/commercialhaskell/stackage/issues/4449 + - record-dot-preprocessor # https://github.com/commercialhaskell/stackage/issues/4449 - hledger-lib # https://github.com/commercialhaskell/stackage/issues/4464 # Recursive deps https://github.com/fpco/stackage/issues/1818 From 538ca32071567ce5da0d68e6ec71d5819c8b8337 Mon Sep 17 00:00:00 2001 From: Daniel Casanueva Date: Sat, 11 May 2019 20:50:19 +0200 Subject: [PATCH 0217/2682] Reenable Daniel Diaz's packages. --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2e17c38a..1a7c1561 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -926,9 +926,9 @@ packages: - binary-list - byteset - Clipboard - - grouped-list < 0 # GHC 8.4 via base-4.11.1.0 - - haskintex < 0 - - HaTeX < 0 + - grouped-list + - haskintex + - HaTeX - include-file - matrix - pcre-light From 79cc425b408b57a82c705f19766096bb084f2260 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 11 May 2019 12:43:11 -0700 Subject: [PATCH 0218/2682] Some more tests passed --- build-constraints.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2e17c38a..3154625f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5032,7 +5032,6 @@ expected-test-failures: # expected-tests unless we know a fix has been released. - accelerate-fourier - cabal-helper - - generic-random - graphviz - network-attoparsec - punycode @@ -5148,7 +5147,6 @@ expected-test-failures: - download # https://github.com/fpco/stackage/issues/2811 - haskell-tools-demo # https://github.com/haskell-tools/haskell-tools/issues/624 - http-link-header # https://github.com/myfreeweb/http-link-header/issues/7 - - mmark # https://github.com/commercialhaskell/stackage/issues/3906#issuecomment-413061849 - rando # https://github.com/commercialhaskell/stackage/issues/4249 - systemd # https://github.com/erebe/systemd/issues/3 - unicode-show # https://github.com/nushio3/unicode-show/issues/2 @@ -5202,8 +5200,6 @@ expected-test-failures: - makefile # Misc. - - genvalidity-hspec # https://github.com/NorfairKing/validity/issues/55 - - genvalidity-hspec-hashable # https://github.com/NorfairKing/validity/issues/55 - ghcid # Weird conflicts with sandboxingistributed/distributed-process-supervisor/issues/1 - password # https://github.com/commercialhaskell/stackage/issues/4468 - pg-transact # https://github.com/jfischoff/pg-transact/issues/2 From 9893b09cc19984564359b9e26cbd451e23bff742 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 11 May 2019 12:45:58 -0700 Subject: [PATCH 0219/2682] Disable testing bv-little due to #4544 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3154625f..99da6737 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5154,6 +5154,7 @@ expected-test-failures: - xml-picklers # https://github.com/Philonous/xml-picklers/issues/5 - hakyll # https://github.com/jaspervdj/hakyll/issues/682 - hpack-dhall # https://github.com/BlockScope/hpack-dhall/issues/25 + - bv-little # https://github.com/commercialhaskell/stackage/issues/4544 # Compilation failures - ListLike # No issue tracker, e-mail sent to maintainer From ee1c392b1bee64bd893ee7eed445a990c85c1766 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 11 May 2019 20:16:27 -0700 Subject: [PATCH 0220/2682] Upper bound dhall (#4545) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 99da6737..c9872f65 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4599,6 +4599,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4541 - dependent-sum < 0.5 + + # https://github.com/commercialhaskell/stackage/issues/4545 + - dhall < 1.23 # end of packages # Package flags are applied to individual packages, and override the values of From b1b84b3dd06b66c66561080dcb955325e647aa6d Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 11 May 2019 20:41:01 -0700 Subject: [PATCH 0221/2682] dhall works, close #4545 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c9872f65..99da6737 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4599,9 +4599,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4541 - dependent-sum < 0.5 - - # https://github.com/commercialhaskell/stackage/issues/4545 - - dhall < 1.23 # end of packages # Package flags are applied to individual packages, and override the values of From 81830612247bab9b8070d801aaa508cf6d177e58 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 11 May 2019 20:41:35 -0700 Subject: [PATCH 0222/2682] Try bv-little for one more time #4544 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 99da6737..698795a4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5154,7 +5154,7 @@ expected-test-failures: - xml-picklers # https://github.com/Philonous/xml-picklers/issues/5 - hakyll # https://github.com/jaspervdj/hakyll/issues/682 - hpack-dhall # https://github.com/BlockScope/hpack-dhall/issues/25 - - bv-little # https://github.com/commercialhaskell/stackage/issues/4544 + # bv-little # https://github.com/commercialhaskell/stackage/issues/4544 # Compilation failures - ListLike # No issue tracker, e-mail sent to maintainer From b24660e89f14318f68386eea03c5df48c1bb1fcc Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 11 May 2019 20:50:49 -0700 Subject: [PATCH 0223/2682] keep bv-little as failing --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 698795a4..99da6737 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5154,7 +5154,7 @@ expected-test-failures: - xml-picklers # https://github.com/Philonous/xml-picklers/issues/5 - hakyll # https://github.com/jaspervdj/hakyll/issues/682 - hpack-dhall # https://github.com/BlockScope/hpack-dhall/issues/25 - # bv-little # https://github.com/commercialhaskell/stackage/issues/4544 + - bv-little # https://github.com/commercialhaskell/stackage/issues/4544 # Compilation failures - ListLike # No issue tracker, e-mail sent to maintainer From e262f64d5335dc38a19697e52eb79948e0e305ff Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 11 May 2019 20:53:49 -0700 Subject: [PATCH 0224/2682] Can try record-dor-preprocessor now --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 99da6737..816c3603 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5184,7 +5184,7 @@ expected-test-failures: - yeshql-core # https://github.com/tdammers/yeshql/issues/6 - yeshql-hdbc # https://github.com/tdammers/yeshql/issues/6 - yesod-gitrev # https://github.com/DanBurton/yesod-gitrev/issues/5 - - record-dot-preprocessor # https://github.com/commercialhaskell/stackage/issues/4449 + # record-dot-preprocessor # https://github.com/commercialhaskell/stackage/issues/4449 - hledger-lib # https://github.com/commercialhaskell/stackage/issues/4464 # Recursive deps https://github.com/fpco/stackage/issues/1818 From 26fcd703a76f8bf5c52738d43bdefca14298e288 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 11 May 2019 21:01:26 -0700 Subject: [PATCH 0225/2682] Try hledger-lib --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 816c3603..99e4b698 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5184,8 +5184,8 @@ expected-test-failures: - yeshql-core # https://github.com/tdammers/yeshql/issues/6 - yeshql-hdbc # https://github.com/tdammers/yeshql/issues/6 - yesod-gitrev # https://github.com/DanBurton/yesod-gitrev/issues/5 - # record-dot-preprocessor # https://github.com/commercialhaskell/stackage/issues/4449 - - hledger-lib # https://github.com/commercialhaskell/stackage/issues/4464 + - record-dot-preprocessor # https://github.com/commercialhaskell/stackage/issues/4449 + # hledger-lib # https://github.com/commercialhaskell/stackage/issues/4464 # Recursive deps https://github.com/fpco/stackage/issues/1818 - options From e8c2e7a0e83b8943d4cfa96dffe36a3c48b68ae0 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 11 May 2019 21:14:03 -0700 Subject: [PATCH 0226/2682] Try password --- build-constraints.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 99e4b698..a5a6a9e6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5185,7 +5185,6 @@ expected-test-failures: - yeshql-hdbc # https://github.com/tdammers/yeshql/issues/6 - yesod-gitrev # https://github.com/DanBurton/yesod-gitrev/issues/5 - record-dot-preprocessor # https://github.com/commercialhaskell/stackage/issues/4449 - # hledger-lib # https://github.com/commercialhaskell/stackage/issues/4464 # Recursive deps https://github.com/fpco/stackage/issues/1818 - options @@ -5202,7 +5201,6 @@ expected-test-failures: # Misc. - ghcid # Weird conflicts with sandboxingistributed/distributed-process-supervisor/issues/1 - - password # https://github.com/commercialhaskell/stackage/issues/4468 - pg-transact # https://github.com/jfischoff/pg-transact/issues/2 - postgresql-simple-queue # same issue as before, see also https://github.com/fpco/stackage/issues/2592 as that will fix both - rattletrap # OOM? https://github.com/fpco/stackage/issues/2232 From b6120d508bfb6898645da96cee1f59f5c11817df Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 11 May 2019 21:18:04 -0700 Subject: [PATCH 0227/2682] Close #4469, no longer needing the bound --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a5a6a9e6..2b7552a2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4537,9 +4537,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4463 - mime-mail < 0.5.0 - # https://github.com/commercialhaskell/stackage/issues/4469 - - cmark-gfm < 0.2.0 - # https://github.com/commercialhaskell/stackage/issues/4483 - http-media < 0.8.0.0 From 804f71a90fd29f46890a6681b00231a6cfeffdf9 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 12 May 2019 07:07:30 -0700 Subject: [PATCH 0228/2682] Try elm-street --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2b7552a2..96e2dc0e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5279,7 +5279,7 @@ expected-haddock-failures: # "Compilation" errors - MemoTrie # https://github.com/conal/MemoTrie/issues/10 - classy-prelude-yesod - - elm-street # https://github.com/commercialhaskell/stackage/issues/4470 + # elm-street # https://github.com/commercialhaskell/stackage/issues/4470 # Modules use compiler plugins # https://github.com/haskell/haddock/issues/900 From 67ea0e3dd34e3b66d0129aaa8cb947e4e90efbb6 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 12 May 2019 07:17:17 -0700 Subject: [PATCH 0229/2682] Block servant-pandoc, close #4483 --- build-constraints.yaml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 96e2dc0e..ae3b7285 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2311,7 +2311,7 @@ packages: - fgl - graphviz - wl-pprint-text - - servant-pandoc + - servant-pandoc < 0 # blocks http-media https://github.com/commercialhaskell/stackage/issues/4483 "Sharif Olorin @olorin": - quickcheck-text @@ -4537,9 +4537,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4463 - mime-mail < 0.5.0 - # https://github.com/commercialhaskell/stackage/issues/4483 - - http-media < 0.8.0.0 - # https://github.com/commercialhaskell/stackage/issues/4484 - hslogger < 1.3.0.0 @@ -5279,7 +5276,7 @@ expected-haddock-failures: # "Compilation" errors - MemoTrie # https://github.com/conal/MemoTrie/issues/10 - classy-prelude-yesod - # elm-street # https://github.com/commercialhaskell/stackage/issues/4470 + - elm-street # https://github.com/commercialhaskell/stackage/issues/4470 # Modules use compiler plugins # https://github.com/haskell/haddock/issues/900 From b7133686f7b7e63a53bc2982ead9759a88dabb4d Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 12 May 2019 07:25:40 -0700 Subject: [PATCH 0230/2682] Update issue for persistent --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ae3b7285..8d5cbece 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4540,11 +4540,11 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4484 - hslogger < 1.3.0.0 - # https://github.com/commercialhaskell/stackage/issues/4489 + # https://github.com/commercialhaskell/stackage/issues/4547 - persistent < 2.10.0 + - persistent-template < 2.7.0 - persistent-mysql < 2.10.0 - persistent-postgresql < 2.10.0 - - persistent-template < 2.7.0 - persistent-sqlite < 2.10.0 # https://github.com/commercialhaskell/stackage/issues/4494 From cf4f28021f95fd0b9c0a0a187b1bcfc5f4fe741a Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 12 May 2019 07:57:44 -0700 Subject: [PATCH 0231/2682] try port-utils --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8d5cbece..f608b837 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4555,7 +4555,7 @@ packages: - th-abstraction < 0.3.0.0 # https://github.com/commercialhaskell/stackage/issues/4506 - - port-utils < 0.2.1.0 + # port-utils < 0.2.1.0 # https://github.com/commercialhaskell/stackage/issues/4511 - wai-extra < 3.0.26 From 84163b28b347c8490482de2da68965879b7161f8 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 12 May 2019 08:02:14 -0700 Subject: [PATCH 0232/2682] Add port-utils to expected failures --- build-constraints.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f608b837..ad96c3b0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4554,9 +4554,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4504 - th-abstraction < 0.3.0.0 - # https://github.com/commercialhaskell/stackage/issues/4506 - # port-utils < 0.2.1.0 - # https://github.com/commercialhaskell/stackage/issues/4511 - wai-extra < 3.0.26 @@ -5031,6 +5028,7 @@ expected-test-failures: - punycode - unagi-chan - zeromq4-patterns + - port-utils # Requires running servers, accounts, or a specific environment. # These shouldn't be re-enabled unless we know a fix has been released. From bc9a24156286381590853f4aa3077993a83c2493 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 12 May 2019 08:03:59 -0700 Subject: [PATCH 0233/2682] Try wai-extra --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ad96c3b0..fe241cd4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4555,7 +4555,7 @@ packages: - th-abstraction < 0.3.0.0 # https://github.com/commercialhaskell/stackage/issues/4511 - - wai-extra < 3.0.26 + # wai-extra < 3.0.26 # https://github.com/commercialhaskell/stackage/issues/4512 - aeson < 1.4.3.0 From bbaae523c8cf832f6e7716ce3fb8ccbb42f02aea Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 12 May 2019 08:05:41 -0700 Subject: [PATCH 0234/2682] Remove upper bound on wai-extra, close #4511 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index fe241cd4..45d3a9ce 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4554,9 +4554,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4504 - th-abstraction < 0.3.0.0 - # https://github.com/commercialhaskell/stackage/issues/4511 - # wai-extra < 3.0.26 - # https://github.com/commercialhaskell/stackage/issues/4512 - aeson < 1.4.3.0 From 147d74480485b99211c7833402479c2595467b7e Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 12 May 2019 08:10:10 -0700 Subject: [PATCH 0235/2682] Mov upper bound on case-insenstitive to the proper place --- build-constraints.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 45d3a9ce..92c4411e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -455,7 +455,7 @@ packages: "Michael Snoyman michael@snoyman.com @snoyberg": - bzlib-conduit - mega-sdist - - case-insensitive < 1.2.1 + - case-insensitive - classy-prelude-yesod - conduit-combinators - conduit-extra @@ -4557,6 +4557,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4512 - aeson < 1.4.3.0 + # https://github.com/commercialhaskell/stackage/issues/4519 + - case-insensitive < 1.2.1 + # https://github.com/commercialhaskell/stackage/issues/4523 - doctest < 0.16.1 From 691b3bb79684e1ac5137efe3cf168b5d17eba9c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Sipma?= Date: Fri, 10 May 2019 15:58:26 +0200 Subject: [PATCH 0236/2682] add servant-purescript & servant-subscriber back --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 92c4411e..e34820c8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -988,8 +988,8 @@ packages: "Robert Klotzner @eskimor": - purescript-bridge - - servant-purescript < 0 # mainland-pretty <- srcloc - - servant-subscriber < 0 # build failure with servant 0.14: https://github.com/eskimor/servant-subscriber/issues/17 + - servant-purescript + - servant-subscriber "Rodrigo Setti @rodrigosetti": - messagepack From 8fc8669fd3344afe98d066b3e081abca44147782 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 12 May 2019 09:25:06 -0700 Subject: [PATCH 0237/2682] Revert "add servant-purescript & servant-subscriber back" This reverts commit 691b3bb79684e1ac5137efe3cf168b5d17eba9c5. --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e34820c8..92c4411e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -988,8 +988,8 @@ packages: "Robert Klotzner @eskimor": - purescript-bridge - - servant-purescript - - servant-subscriber + - servant-purescript < 0 # mainland-pretty <- srcloc + - servant-subscriber < 0 # build failure with servant 0.14: https://github.com/eskimor/servant-subscriber/issues/17 "Rodrigo Setti @rodrigosetti": - messagepack From f290ad3baff840c111af9abf377a72afbf67287e Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 12 May 2019 11:00:11 -0700 Subject: [PATCH 0238/2682] rebase/rerebase fixed (#4539) --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 92c4411e..feacf0ee 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4585,9 +4585,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4532 - profunctors < 5.4 - # https://github.com/commercialhaskell/stackage/issues/4539 - - rebase < 1.3.1.1 - # https://github.com/commercialhaskell/stackage/issues/4541 - dependent-sum < 0.5 # end of packages From b3cf3fd034ad88194f20da5217bc75b6773b7b3e Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 12 May 2019 11:05:20 -0700 Subject: [PATCH 0239/2682] persistent issues fixed --- build-constraints.yaml | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index feacf0ee..ea59020d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2137,7 +2137,7 @@ packages: - liboath-hs - servant-quickcheck < 0 - esqueleto - - persistent-typed-db < 0.1.0.0 # persistent-2.10.0, persistent-template-2.7.0 + - persistent-typed-db - persistent-qq "Matthew Pickering @mpickering": @@ -4540,13 +4540,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4484 - hslogger < 1.3.0.0 - # https://github.com/commercialhaskell/stackage/issues/4547 - - persistent < 2.10.0 - - persistent-template < 2.7.0 - - persistent-mysql < 2.10.0 - - persistent-postgresql < 2.10.0 - - persistent-sqlite < 2.10.0 - # https://github.com/commercialhaskell/stackage/issues/4494 - connection < 0.3 - socks < 0.6 From cfc3e21bf3509b8268b87910855945cd264c9a67 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 12 May 2019 12:37:56 -0700 Subject: [PATCH 0240/2682] Upper bound ansi-terminal (#4549) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ea59020d..0c6bfd97 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4580,6 +4580,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4541 - dependent-sum < 0.5 + + # https://github.com/commercialhaskell/stackage/issues/4549 + - ansi-terminal < 0.9.1 # end of packages # Package flags are applied to individual packages, and override the values of From ed6e7828654498767b379a3e7bc70d7b26fa21f2 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 12 May 2019 12:44:10 -0700 Subject: [PATCH 0241/2682] Block persistent-mysql-haskell as it is a build failure (#4550) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0c6bfd97..6ccac841 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3323,7 +3323,7 @@ packages: - mnist-idx "Naushadh @naushadh": - - persistent-mysql-haskell + - persistent-mysql-haskell < 0 # build failure, https://github.com/commercialhaskell/stackage/issues/4550 "Moritz Schulte @mtesseract": - async-refresh From 31e4796aef2661b36c8f61ffbde47bc0233c3de7 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 12 May 2019 12:57:22 -0700 Subject: [PATCH 0242/2682] Upper bounds for #4550, #4551 and #4552 --- build-constraints.yaml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6ccac841..d0e9f930 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -470,7 +470,7 @@ packages: - persistent-postgresql - persistent-sqlite - persistent-template - # - persistent-test # https://github.com/commercialhaskell/stackage/pull/4492 + # persistent-test # https://github.com/commercialhaskell/stackage/pull/4492 # - stackage-curator # http-conduit 2.3 via amazonka - store - wai-websockets @@ -3323,7 +3323,7 @@ packages: - mnist-idx "Naushadh @naushadh": - - persistent-mysql-haskell < 0 # build failure, https://github.com/commercialhaskell/stackage/issues/4550 + - persistent-mysql-haskell "Moritz Schulte @mtesseract": - async-refresh @@ -4583,6 +4583,11 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4549 - ansi-terminal < 0.9.1 + + # causes build failure in persistent-mysql-haskell https://github.com/commercialhaskell/stackage/issues/4550 + # causes build failure in eventful-sql-common https://github.com/commercialhaskell/stackage/issues/4551 + # causes build failure in persistent-test https://github.com/commercialhaskell/stackage/issues/4552 + - persistent-template < 2.7.1 # end of packages # Package flags are applied to individual packages, and override the values of From 3fc44caad71bcb54cf1b80249116127d3f1b8915 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 12 May 2019 13:11:55 -0700 Subject: [PATCH 0243/2682] Proper upper bounds for #4550, #4551, #4552 and #4553 --- build-constraints.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d0e9f930..4ceb752c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4587,7 +4587,13 @@ packages: # causes build failure in persistent-mysql-haskell https://github.com/commercialhaskell/stackage/issues/4550 # causes build failure in eventful-sql-common https://github.com/commercialhaskell/stackage/issues/4551 # causes build failure in persistent-test https://github.com/commercialhaskell/stackage/issues/4552 - - persistent-template < 2.7.1 + # causes build failure in persistent-iproute https://github.com/commercialhaskell/stackage/issues/4553 + - persistent < 2.10 + - persistent-mysql < 2.10 + - persistent-postgresql < 2.10 + - persistent-sqlite < 2.10 + - persistent-template < 2.7.0 + - persistent-typed-db < 0.1.0.0 # end of packages # Package flags are applied to individual packages, and override the values of From 1f2a0cfc4b4b1f90cf2defcb98422dde4511731c Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 12 May 2019 17:13:33 -0700 Subject: [PATCH 0244/2682] Close #4549 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4ceb752c..54915325 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4581,9 +4581,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4541 - dependent-sum < 0.5 - # https://github.com/commercialhaskell/stackage/issues/4549 - - ansi-terminal < 0.9.1 - # causes build failure in persistent-mysql-haskell https://github.com/commercialhaskell/stackage/issues/4550 # causes build failure in eventful-sql-common https://github.com/commercialhaskell/stackage/issues/4551 # causes build failure in persistent-test https://github.com/commercialhaskell/stackage/issues/4552 From 59e96d6d2929fc533d860325bd9f12d5296e319e Mon Sep 17 00:00:00 2001 From: Jacob Stanley Date: Mon, 13 May 2019 05:41:10 +0800 Subject: [PATCH 0245/2682] Update build-constraints.yaml Renamed my github account: @jystic -> @jacobstanley --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 54915325..4e253abc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -182,7 +182,7 @@ packages: - mercury-api - normalization-insensitive < 0 # GHC 8.4 via unicode-transforms - "Jacob Stanley @jystic": + "Jacob Stanley @jacobstanley": - hedgehog - hedgehog-quickcheck < 0 # via QuickCheck https://github.com/commercialhaskell/stackage/issues/4444 - transformers-bifunctors From 79d32f3c3ee75ef421c20cd3b53eff760af68a00 Mon Sep 17 00:00:00 2001 From: Jacob Stanley Date: Mon, 13 May 2019 12:05:22 +0800 Subject: [PATCH 0246/2682] Move unix-compat under @jacobstanley --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4e253abc..ffcb453e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -186,6 +186,7 @@ packages: - hedgehog - hedgehog-quickcheck < 0 # via QuickCheck https://github.com/commercialhaskell/stackage/issues/4444 - transformers-bifunctors + - unix-compat "Walter Schulze @awalterschulze": - katydid < 0 # via transformers-either @@ -4260,7 +4261,6 @@ packages: - universe-instances-extended - universe-instances-trans - universe-reverse-instances - - unix-compat - unix-time - unordered-containers - url From ea928b0bc316be62a008128ec939442ad56639f6 Mon Sep 17 00:00:00 2001 From: Ryan Scott Date: Mon, 13 May 2019 19:40:41 -0400 Subject: [PATCH 0247/2682] Claim some grandfathered dependencies that I co-maintain --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4e253abc..22cc4f9c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2108,7 +2108,9 @@ packages: - code-page - criterion - criterion-measurement + - data-reify - deriving-compat + - dotgen - echo - eliminators - generic-deriving @@ -2121,6 +2123,7 @@ packages: - monad-par-extras - mtl-compat - proxied + - singleton-nats - text-show - text-show-instances - th-abstraction @@ -3965,7 +3968,6 @@ packages: - data-lens-light - data-memocombinators - data-msgpack-types - - data-reify - data-serializer - data-textual - deepseq-generics @@ -3978,7 +3980,6 @@ packages: - dlist - dlist-instances - dlist-nonempty - - dotgen - double-conversion - dual-tree - easy-file @@ -4183,7 +4184,6 @@ packages: - simple-reflect - simple-sendfile - singleton-bool - - singleton-nats - size-based - skein - skylighting-core From aaa5d5b0550c95b59dc9598024d45c4529a68dfd Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Tue, 14 May 2019 10:51:57 +0200 Subject: [PATCH 0248/2682] hedgehog < 1.0 & registry < 0.1.5.0 #4557 --- build-constraints.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4e253abc..4b1fd3ca 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4591,6 +4591,11 @@ packages: - persistent-sqlite < 2.10 - persistent-template < 2.7.0 - persistent-typed-db < 0.1.0.0 + + # https://github.com/commercialhaskell/stackage/issues/4557 + - hedgehog < 1.0 + - registry < 0.1.5.0 + # end of packages # Package flags are applied to individual packages, and override the values of From a8e4f061b3a71a6ee502d627ae2a2334f79b9539 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Wed, 15 May 2019 13:19:53 +0200 Subject: [PATCH 0249/2682] MissingH < 1.4.2.0 due to #4528 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f3438c14..46202e38 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4530,6 +4530,7 @@ packages: - network < 3 - hsdev < 0.3.3.0 - network-bsd < 2.8.1.0 + - MissingH < 1.4.2.0 # https://github.com/simonmichael/hledger/issues/983 - easytest < 0.3 From 6dad76dbba02330bc438cd9d8a0d001b2ab08df2 Mon Sep 17 00:00:00 2001 From: Kirill Zaborsky Date: Wed, 15 May 2019 16:20:53 +0300 Subject: [PATCH 0250/2682] New versions of Stack and curator tool --- automated/build-next.sh | 4 ++-- etc/curator-2-check.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/automated/build-next.sh b/automated/build-next.sh index b0c65c48..3fe33c4e 100755 --- a/automated/build-next.sh +++ b/automated/build-next.sh @@ -63,7 +63,7 @@ BINDIR=$(cd $ROOT/bin ; pwd) ( cd $BINDIR rm -f stackage-curator stackage-curator-2*.bz2 -CURATOR2=stackage-curator-2-7e161449fa1b63a7e41299f3f87bd6f3d7e13082 +CURATOR2=stackage-curator-2-f6258124cff9a7e92bcb5704164a70e149080e88 wget "https://download.fpcomplete.com/stackage-curator-2/$CURATOR2.bz2" bunzip2 "$CURATOR2.bz2" chmod +x $CURATOR2 @@ -94,7 +94,7 @@ fi ( cd $BINDIR rm -f stack stack-*.bz2 -STACK=stack-7e161449fa1b63a7e41299f3f87bd6f3d7e13082 +STACK=stack-f6258124cff9a7e92bcb5704164a70e149080e88 wget "https://download.fpcomplete.com/stackage-curator-2/$STACK.bz2" bunzip2 "$STACK.bz2" chmod +x $STACK diff --git a/etc/curator-2-check.sh b/etc/curator-2-check.sh index 0f2a3c7e..ac95ec8c 100755 --- a/etc/curator-2-check.sh +++ b/etc/curator-2-check.sh @@ -11,7 +11,7 @@ export PATH=$HOME/.local/bin:$PATH curl -L https://www.stackage.org/stack/linux-x86_64 | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack' # Get new Stackage curator -CURATOR2=stackage-curator-2-7e161449fa1b63a7e41299f3f87bd6f3d7e13082 +CURATOR2=stackage-curator-2-f6258124cff9a7e92bcb5704164a70e149080e88 wget "https://download.fpcomplete.com/stackage-curator-2/$CURATOR2.bz2" bunzip2 "$CURATOR2.bz2" chmod +x $CURATOR2 From 08c8e36b6be01287f44aa562999c7d25f3f63db9 Mon Sep 17 00:00:00 2001 From: Alejandro Serrano Date: Thu, 16 May 2019 16:07:44 +0200 Subject: [PATCH 0251/2682] Add `simplistic-generics` to Stackage --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 46202e38..5d1401dc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1201,6 +1201,7 @@ packages: - kind-apply - kind-generics - kind-generics-th + - simplistic-generics "Matvey Aksenov @supki": - terminal-size From 8c196043af62da50b7b279a3f7a882aeab655d8e Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Fri, 17 May 2019 10:54:07 +0200 Subject: [PATCH 0252/2682] More bounds for #4557 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 46202e38..8d162c93 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4596,6 +4596,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4557 - hedgehog < 1.0 - registry < 0.1.5.0 + - hedgehog-fn < 1.0 + - tasty-hedgehog < 1.0 + - tomland < 1.0.1.0 # end of packages From f3783bf3afc44c8bd1202a5b073bb0d70a53f444 Mon Sep 17 00:00:00 2001 From: Luis Pedro Coelho Date: Sat, 18 May 2019 11:59:28 +0200 Subject: [PATCH 0253/2682] Add hs-zstd package This is a fork of zstd, which fixes the bugs in that package (I tried contacting the original authors, but the package seems unmaintained). Related to #3219 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8d162c93..00bdef80 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3360,6 +3360,7 @@ packages: "Luis Pedro Coelho @luispedro": - safeio + - hs-zstd - conduit-algorithms - conduit-zstd From 5224538b42665f38808be3bd9698a34ef085e0ec Mon Sep 17 00:00:00 2001 From: Sandy Maguire Date: Sat, 18 May 2019 08:51:08 -0400 Subject: [PATCH 0254/2682] Add isovector's packages --- build-constraints.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8d162c93..7b6b9798 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -10,6 +10,16 @@ cabal-format-version: "2.4" # Constraints for brand new builds packages: + "Sandy Maguire @isovector": + - polysemy + - polysemy-plugin + - polysemy-zoo + - ecstasy + - interpolatedstring-qq2 + - prospect + - suavemente + - do-notation + "William Yao @williamyaoh": - string-interpolate From 798ff562e96fb6140fb6df0169b9c82e9df137f7 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sat, 18 May 2019 15:28:46 +0200 Subject: [PATCH 0255/2682] haskell-lsp & haskell-lsp-types bounds for #4563 --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index b3b2e51b..df18bf81 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4602,6 +4602,10 @@ packages: - tasty-hedgehog < 1.0 - tomland < 1.0.1.0 + # https://github.com/commercialhaskell/stackage/issues/4563 + - haskell-lsp < 0.13.0.0 + - haskell-lsp-types < 0.13.0.0 + # end of packages # Package flags are applied to individual packages, and override the values of From e786d4406f8d99d7084388b266429f4b90cbfa82 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sat, 18 May 2019 15:30:52 +0200 Subject: [PATCH 0256/2682] primitive < 0.7.0.0 for #4564 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index df18bf81..57afb34b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4606,6 +4606,9 @@ packages: - haskell-lsp < 0.13.0.0 - haskell-lsp-types < 0.13.0.0 + # https://github.com/commercialhaskell/stackage/issues/4564 + - primitive < 0.7.0.0 + # end of packages # Package flags are applied to individual packages, and override the values of From f0549d7e4d60b59208895e61694d32a79bdeec4a Mon Sep 17 00:00:00 2001 From: Sandy Maguire Date: Sat, 18 May 2019 12:13:12 -0400 Subject: [PATCH 0257/2682] Update build-constraints.yaml --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7b6b9798..0c17597e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -17,7 +17,6 @@ packages: - ecstasy - interpolatedstring-qq2 - prospect - - suavemente - do-notation "William Yao @williamyaoh": From 94f793c8af7905dcad0136bfbb0e06a29d20778b Mon Sep 17 00:00:00 2001 From: Chris Martin Date: Sat, 18 May 2019 21:36:49 -0600 Subject: [PATCH 0258/2682] add stripe-{concepts,et al} --- build-constraints.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7e4148dd..03ade3ad 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3496,6 +3496,12 @@ packages: - partial-semigroup - path-text-utf8 + "Type Classes @argumatronic @chris-martin": + - stripe-concepts + - stripe-signature + - stripe-scotty + - stripe-wreq + "Viacheslav Lotsmanov @unclechu": - qm-interpolated-string From 3dc33f26e9e65ff5d8ad5cd02d545478d1a4f9f6 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 20 May 2019 10:34:08 +0200 Subject: [PATCH 0259/2682] Remove upper bounds and close #4563 --- build-constraints.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7e4148dd..f41e6138 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4611,10 +4611,6 @@ packages: - tasty-hedgehog < 1.0 - tomland < 1.0.1.0 - # https://github.com/commercialhaskell/stackage/issues/4563 - - haskell-lsp < 0.13.0.0 - - haskell-lsp-types < 0.13.0.0 - # https://github.com/commercialhaskell/stackage/issues/4564 - primitive < 0.7.0.0 From 805cbbc2e4ce457bd64c21780328586175c26135 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 20 May 2019 10:58:53 +0200 Subject: [PATCH 0260/2682] Skip polysemy-zoo haddocks #4562 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f41e6138..ebce4604 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5311,6 +5311,7 @@ expected-haddock-failures: skipped-haddocks: - modular # https://github.com/haskell/haddock/issues/900 - sparkle # Java function failures tweag/sparkle#144 +- polysemy-zoo # Needs polysemy-plugin GHC plugin # end of skipped-haddocks # Benchmarks which should not be built. Note that Stackage builds benchmarks but does not run them. From 549c8a13e14bf9815a02b146de0c7ec710bc7145 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 20 May 2019 11:02:36 +0200 Subject: [PATCH 0261/2682] Skip haskell-lsp-types haddocks #4563 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ebce4604..805ab771 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5312,6 +5312,7 @@ skipped-haddocks: - modular # https://github.com/haskell/haddock/issues/900 - sparkle # Java function failures tweag/sparkle#144 - polysemy-zoo # Needs polysemy-plugin GHC plugin +- haskell-lsp-types # 0.13.0.0 https://github.com/commercialhaskell/stackage/issues/4563#issuecomment-493899809 # end of skipped-haddocks # Benchmarks which should not be built. Note that Stackage builds benchmarks but does not run them. From adb065bf1991d39483d5cff80367cdedeb20963f Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 20 May 2019 13:00:57 +0200 Subject: [PATCH 0262/2682] Add indexed to grandfathered packages --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 805ab771..9223221a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4072,6 +4072,7 @@ packages: - hxt-unicode - iconv - ieee754 + - indexed - infer-license - insert-ordered-containers - inspection-testing From 7cf8533352f6038813557364237b4059c67d98ab Mon Sep 17 00:00:00 2001 From: Luis Pedro Coelho Date: Mon, 20 May 2019 16:25:57 +0200 Subject: [PATCH 0263/2682] Remove hs-zstd This was only present briefly and now zstd contains the relevant bugfixes --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a8859933..08cd856d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3370,7 +3370,6 @@ packages: "Luis Pedro Coelho @luispedro": - safeio - - hs-zstd - conduit-algorithms - conduit-zstd @@ -5229,7 +5228,6 @@ expected-test-failures: - rattletrap # OOM? https://github.com/fpco/stackage/issues/2232 - stm-delay # https://github.com/joeyadams/haskell-stm-delay/issues/5 - tmp-postgres # https://github.com/jfischoff/tmp-postgres/issues/1 - - zstd # ghc 8.2.2 bug? https://github.com/fpco/stackage/issues/3219 # Linting failures (these may break every time HLint gets updated so keep them disabled) # https://www.snoyman.com/blog/2017/11/future-proofing-test-suites @@ -5468,7 +5466,6 @@ skipped-benchmarks: - xmlgen - yi-rope - zippers - - zstd # Transitive outdated dependencies # These packages From b524c92700258bbfbcfcfb5a73664802fa5d2375 Mon Sep 17 00:00:00 2001 From: Tony Day Date: Tue, 21 May 2019 10:34:03 +1000 Subject: [PATCH 0264/2682] Adding numhask back in. --- build-constraints.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a8859933..28adc29c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3089,12 +3089,11 @@ packages: - validation "Tony Day @tonyday567": - - numhask < 0 + - numhask + - numhask-array < 0 - numhask-prelude < 0 - - numhask-range < 0 + - numhask-space < 0 - perf < 0 - - online < 0 - - chart-unit < 0 # via diagrams-lib "Iphigenia Df @iphydf": - data-msgpack From 33fb9393741ce53c9b12ced09fad5eb029cb7c47 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Tue, 21 May 2019 08:27:13 -0700 Subject: [PATCH 0265/2682] Add prettyprinter upper bound, #4568 --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 25f97c3f..c9b3009a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4619,6 +4619,8 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4564 - primitive < 0.7.0.0 + # https://github.com/commercialhaskell/stackage/issues/4568 + - prettyprinter < 1.3.0 # end of packages # Package flags are applied to individual packages, and override the values of From ba8a85d35d0c067f4d6ed428d0251012038d45b0 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Tue, 21 May 2019 08:29:11 -0700 Subject: [PATCH 0266/2682] Add cryptonite upper bound, #4569 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index c9b3009a..02a0a175 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4621,6 +4621,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4568 - prettyprinter < 1.3.0 + + # https://github.com/commercialhaskell/stackage/issues/4569 + - cryptonite < 0.26 # end of packages # Package flags are applied to individual packages, and override the values of From fd0e7e75c400d67d10b875b34abf4628bd2e79c9 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Tue, 21 May 2019 08:30:48 -0700 Subject: [PATCH 0267/2682] Add xml-conduit upper bound, #4570 --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 02a0a175..e47c617a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4624,6 +4624,10 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4569 - cryptonite < 0.26 + + # https://github.com/commercialhaskell/stackage/issues/4570 + - xml-conduit < 1.9 + # end of packages # Package flags are applied to individual packages, and override the values of From 8595df84b7a91ae055abb754a54bf8bcc7100153 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Tue, 21 May 2019 08:38:16 -0700 Subject: [PATCH 0268/2682] Expect test failure for ersatz, #4571 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index e47c617a..011464c3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5215,6 +5215,7 @@ expected-test-failures: - yeshql-hdbc # https://github.com/tdammers/yeshql/issues/6 - yesod-gitrev # https://github.com/DanBurton/yesod-gitrev/issues/5 - record-dot-preprocessor # https://github.com/commercialhaskell/stackage/issues/4449 + - ersatz # https://github.com/commercialhaskell/stackage/issues/4571 # Recursive deps https://github.com/fpco/stackage/issues/1818 - options From 8c845ad884335b895233d54eaffd244ba0155e4c Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Wed, 22 May 2019 18:28:29 -0700 Subject: [PATCH 0269/2682] Expect test failures for polysemy-zoo, #4572 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index db1fd753..1a42aa1c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5216,6 +5216,7 @@ expected-test-failures: - yesod-gitrev # https://github.com/DanBurton/yesod-gitrev/issues/5 - record-dot-preprocessor # https://github.com/commercialhaskell/stackage/issues/4449 - ersatz # https://github.com/commercialhaskell/stackage/issues/4571 + - polysemy-zoo # https://github.com/commercialhaskell/stackage/issues/4572 # Recursive deps https://github.com/fpco/stackage/issues/1818 - options From 47df44dd627a01f8864a4619a7124f6c1aefc15d Mon Sep 17 00:00:00 2001 From: Justin Le Date: Thu, 23 May 2019 00:07:52 -0700 Subject: [PATCH 0270/2682] add servant-cli to stackage --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1a42aa1c..4112fdcd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1928,6 +1928,7 @@ packages: - nonempty-containers - one-liner-instances - prompt + - servant-cli - tagged-binary # - type-combinators-singletons # GHC 8.4 via type-combinators - typelits-witnesses From 2e81f2c5b3ea5ca39773b00a1477c9c4e0474e71 Mon Sep 17 00:00:00 2001 From: Colin Woodbury Date: Thu, 23 May 2019 07:39:59 -0700 Subject: [PATCH 0271/2682] Add aur, bounded-queue, servant-xml --- build-constraints.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1a42aa1c..ebac20b8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1090,12 +1090,15 @@ packages: - disk-free-space "Colin Woodbury @fosskers": + - aur + - bounded-queue - kanji - microlens-aeson - - pipes-random < 0 + - pipes-random + - servant-xml - streaming-attoparsec - versions - - vectortiles < 0 + # - vectortiles < 0 "Ketil Malde @ketil-malde": # - biocore # build failure with GHC 8.4 https://github.com/fpco/stackage/pull/3359 From 2600b3eb0e9d0353bc4ab3999d2b55c07980144f Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Thu, 23 May 2019 08:42:25 -0700 Subject: [PATCH 0272/2682] Upper bound for data-accessor, #4575 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1a42aa1c..e23156d8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4628,6 +4628,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4570 - xml-conduit < 1.9 + # https://github.com/commercialhaskell/stackage/issues/4575 + - data-accessor < 0.2.3 + # end of packages # Package flags are applied to individual packages, and override the values of From 1c2375ec426b526d2405a06e4c9997a3dcd67a96 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Thu, 23 May 2019 09:09:09 -0700 Subject: [PATCH 0273/2682] Upper bound for ghc-lib-parser, #4576 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8f753679..c3469c98 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4635,6 +4635,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4575 - data-accessor < 0.2.3 + # https://github.com/commercialhaskell/stackage/issues/4576 + - ghc-lib-parser < 0.20190523 + # end of packages # Package flags are applied to individual packages, and override the values of From 3ff16a1a60bbf061abecc1663f227f9a5cd299a9 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Thu, 23 May 2019 19:48:20 -0700 Subject: [PATCH 0274/2682] Upper bound for comfort-array, #4577 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index c3469c98..e25f6206 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4638,6 +4638,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4576 - ghc-lib-parser < 0.20190523 + # https://github.com/commercialhaskell/stackage/issues/4577 + - comfort-array < 0.4 + # end of packages # Package flags are applied to individual packages, and override the values of From c90dd856876eda814fb9be8d84cbb70fd10f4284 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Thu, 23 May 2019 19:50:31 -0700 Subject: [PATCH 0275/2682] Remove upper bound for ghc-lib-parser, closes #4576 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e25f6206..3ee2537c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4635,9 +4635,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4575 - data-accessor < 0.2.3 - # https://github.com/commercialhaskell/stackage/issues/4576 - - ghc-lib-parser < 0.20190523 - # https://github.com/commercialhaskell/stackage/issues/4577 - comfort-array < 0.4 From c34026e46565348d9f7bef8d7654a4ac2384ffd7 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Thu, 23 May 2019 19:52:27 -0700 Subject: [PATCH 0276/2682] Upper bound for lapack, #4578 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3ee2537c..a43e708a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4638,6 +4638,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4577 - comfort-array < 0.4 + # https://github.com/commercialhaskell/stackage/issues/4578 + - lapack < 0.3 + # end of packages # Package flags are applied to individual packages, and override the values of From a4ff3d7fdf0c1b1019cbae43e2a5d131fb21ef9a Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Thu, 23 May 2019 19:55:23 -0700 Subject: [PATCH 0277/2682] Upper bound for quickcheck-classes, #4579 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index a43e708a..37a8687f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4641,6 +4641,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4578 - lapack < 0.3 + # https://github.com/commercialhaskell/stackage/issues/4579 + - quickcheck-classes < 0.6.2.0 + # end of packages # Package flags are applied to individual packages, and override the values of From ceafea09134366466e73ff409504cfe4f52061e6 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Thu, 23 May 2019 22:34:29 -0700 Subject: [PATCH 0278/2682] Don't expect test failures for polysemy-zoo, closes #4572 --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 37a8687f..c5bbee7e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5232,7 +5232,6 @@ expected-test-failures: - yesod-gitrev # https://github.com/DanBurton/yesod-gitrev/issues/5 - record-dot-preprocessor # https://github.com/commercialhaskell/stackage/issues/4449 - ersatz # https://github.com/commercialhaskell/stackage/issues/4571 - - polysemy-zoo # https://github.com/commercialhaskell/stackage/issues/4572 # Recursive deps https://github.com/fpco/stackage/issues/1818 - options From 044d2a8b8c205c1f6292048caa3f0756ded6df74 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Fri, 24 May 2019 12:25:33 -0700 Subject: [PATCH 0279/2682] Extra upper bounds for comfort-array, #4577 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index c5bbee7e..54f56f0e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4637,6 +4637,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4577 - comfort-array < 0.4 + - hmm-lapack < 0.4 + - linear-circuit < 0.1.0.1 + - resistor-cube < 0.0.1.1 # https://github.com/commercialhaskell/stackage/issues/4578 - lapack < 0.3 From ac12f461afa58fc2496a1f3710e45c0476c56b4a Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Fri, 24 May 2019 12:31:49 -0700 Subject: [PATCH 0280/2682] Upper bound for http-api-data, #4580 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 54f56f0e..6a28411f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4647,6 +4647,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4579 - quickcheck-classes < 0.6.2.0 + # https://github.com/commercialhaskell/stackage/issues/4580 + - http-api-data < 0.4.1 + # end of packages # Package flags are applied to individual packages, and override the values of From 4c0a1268ca0e61f0c715a8ce14525933a68e946b Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Fri, 24 May 2019 16:00:27 -0700 Subject: [PATCH 0281/2682] Upper bound for magico, #4582 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6a28411f..a7e13fc0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4650,6 +4650,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4580 - http-api-data < 0.4.1 + # https://github.com/commercialhaskell/stackage/issues/4582 + - magico < 0.0.2.1 + # end of packages # Package flags are applied to individual packages, and override the values of From b2bd4e91116b95fe055a1d83a79cc68710aa1c12 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Sat, 25 May 2019 11:16:25 -0700 Subject: [PATCH 0282/2682] Unblock comfort-array and related packages Closes #4577, closes #4578, closes #4582 --- build-constraints.yaml | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a7e13fc0..93b6ecd8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4635,24 +4635,12 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4575 - data-accessor < 0.2.3 - # https://github.com/commercialhaskell/stackage/issues/4577 - - comfort-array < 0.4 - - hmm-lapack < 0.4 - - linear-circuit < 0.1.0.1 - - resistor-cube < 0.0.1.1 - - # https://github.com/commercialhaskell/stackage/issues/4578 - - lapack < 0.3 - # https://github.com/commercialhaskell/stackage/issues/4579 - quickcheck-classes < 0.6.2.0 # https://github.com/commercialhaskell/stackage/issues/4580 - http-api-data < 0.4.1 - # https://github.com/commercialhaskell/stackage/issues/4582 - - magico < 0.0.2.1 - # end of packages # Package flags are applied to individual packages, and override the values of @@ -4866,6 +4854,7 @@ skipped-tests: - vinyl # via hspec-2.7.0 - wide-word # via semirings - zlib # tasty-quickcheck, tasty-hunit, tasty + - comfort-array # ChasingBottoms # Blocked due to tests failing to compile for GHC 8.6 - async-refresh From dc72eeb02e4200ad51d766a9e1ecde8b06a02ecd Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Sat, 25 May 2019 11:43:46 -0700 Subject: [PATCH 0283/2682] Upper bounds for lapack and related packages, #4583 --- build-constraints.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 93b6ecd8..e112bc14 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4641,6 +4641,14 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4580 - http-api-data < 0.4.1 + # https://github.com/commercialhaskell/stackage/issues/4583 + - lapack < 0.3 + - comfort-array < 0.4 + - hmm-lapack < 0.4 + - linear-circuit < 0.1.0.1 + - resistor-cube < 0.0.1.1 + - magico < 0.0.2.1 + # end of packages # Package flags are applied to individual packages, and override the values of From 0c6e5b4c91117bbdeec9f56b9f067f556144fabb Mon Sep 17 00:00:00 2001 From: thielema Date: Sat, 25 May 2019 20:54:54 +0200 Subject: [PATCH 0284/2682] Update build-constraints.yaml add 'hyper' --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index e112bc14..2db16da6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -332,6 +332,7 @@ packages: - linear-circuit # Not a maintainer - ix-shapable + - hyper "Jeremy Barisch-Rooney @barischrooneyj": - threepenny-gui-flexbox < 0 # GHC 8.4 via clay From 44ec8c9bfe6820c11369745d4c1b6032f92c62a5 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Sat, 25 May 2019 16:41:26 -0700 Subject: [PATCH 0285/2682] Remove upper bounds for lapack and related packages, closes #4583 --- build-constraints.yaml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2db16da6..12c9d197 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4642,14 +4642,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4580 - http-api-data < 0.4.1 - # https://github.com/commercialhaskell/stackage/issues/4583 - - lapack < 0.3 - - comfort-array < 0.4 - - hmm-lapack < 0.4 - - linear-circuit < 0.1.0.1 - - resistor-cube < 0.0.1.1 - - magico < 0.0.2.1 - # end of packages # Package flags are applied to individual packages, and override the values of From d236c345fcacef44f3af88c3ac0cf52fcb59d5ec Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Sun, 26 May 2019 13:03:07 -0700 Subject: [PATCH 0286/2682] Upper bound for rattletrap, #4585 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 12c9d197..ba055868 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4642,6 +4642,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4580 - http-api-data < 0.4.1 + # https://github.com/commercialhaskell/stackage/issues/4585 + - rattletrap < 7 + # end of packages # Package flags are applied to individual packages, and override the values of From c80d37557731f71982e993a2303c7f843305a4a6 Mon Sep 17 00:00:00 2001 From: Emanuel Borsboom Date: Sun, 26 May 2019 15:03:23 -0700 Subject: [PATCH 0287/2682] Remove redundant maintainerships from @borsboom All the removed packages are also listed under another maintainer, so no changes to what is in Stackage are expected. --- build-constraints.yaml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ba055868..89718738 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1234,15 +1234,10 @@ packages: "Emanuel Borsboom @borsboom": - BoundedChan - broadcast-chan - - bytestring-lexing - - bytestring-trie < 0 # build failure with GHC 8.4 - - data-accessor - - data-accessor-mtl - fuzzcheck - here - hlibgit2 # - gitlib-libgit2 # via gitlib: https://github.com/jwiegley/gitlib/issues/72 - - hostname-validate - interpolatedstring-perl6 - iproute - missing-foreign From 8618f7e8800c7b189dcae261dd065a976cbb09f6 Mon Sep 17 00:00:00 2001 From: Paul Johnson Date: Mon, 27 May 2019 14:58:51 +0100 Subject: [PATCH 0288/2682] Added Ranged-sets to build-constraints.yaml As per request in https://github.com/PaulJohnson/Ranged-sets/issues/1 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 89718738..ad0265de 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -113,6 +113,7 @@ packages: "Paul Johnson @PaulJohnson": - geodetics + - Ranged-sets "Travis Athougies @tathougies": - beam-core From ee0b55402d603f3db3fe63ad5c91db070a2b0af6 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Mon, 27 May 2019 16:39:16 -0700 Subject: [PATCH 0289/2682] Upper bound for systemd, #4588 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 89718738..6b422612 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4640,6 +4640,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4585 - rattletrap < 7 + # https://github.com/commercialhaskell/stackage/issues/4588 + - systemd < 2 + # end of packages # Package flags are applied to individual packages, and override the values of From 30190303043d9296cf9b6b73b9742a1e28f3e45c Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Mon, 27 May 2019 16:41:08 -0700 Subject: [PATCH 0290/2682] Remove upper bound for rattletrap, closes #4585 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6b422612..c27aa265 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4637,9 +4637,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4580 - http-api-data < 0.4.1 - # https://github.com/commercialhaskell/stackage/issues/4585 - - rattletrap < 7 - # https://github.com/commercialhaskell/stackage/issues/4588 - systemd < 2 From 9c5e071b20d945c2a64a66557bf9f8f743397d41 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Mon, 27 May 2019 16:51:18 -0700 Subject: [PATCH 0291/2682] Upper bound for network-multicast, #4589 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index c27aa265..97204433 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4640,6 +4640,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4588 - systemd < 2 + # https://github.com/commercialhaskell/stackage/issues/4589 + - network-multicast < 0.3 + # end of packages # Package flags are applied to individual packages, and override the values of From fe2f1d895e610d740422774fa48544ea860ac3ba Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Mon, 27 May 2019 23:01:17 -0700 Subject: [PATCH 0292/2682] Upper bound for skylighting, #4590 --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2a592184..31064d8e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4644,6 +4644,10 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4589 - network-multicast < 0.3 + # https://github.com/commercialhaskell/stackage/issues/4590 + - skylighting < 0.8 + - skylighting-core < 0.8 + # end of packages # Package flags are applied to individual packages, and override the values of From ad71769b28f8b7ba474f8e1d53bfcf09b54a2a31 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Tue, 28 May 2019 08:41:52 -0700 Subject: [PATCH 0293/2682] Remove upper bound for network-multicast, closes #4589 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 31064d8e..dc1bd041 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4641,9 +4641,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4588 - systemd < 2 - # https://github.com/commercialhaskell/stackage/issues/4589 - - network-multicast < 0.3 - # https://github.com/commercialhaskell/stackage/issues/4590 - skylighting < 0.8 - skylighting-core < 0.8 From e9ce28cb4ce5fb0fc98c4021af16efa89928a458 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Tue, 28 May 2019 08:42:41 -0700 Subject: [PATCH 0294/2682] Add a new maintainer to ping for network-multicast --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index dc1bd041..8f3db868 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5666,6 +5666,8 @@ github-users: - donkeybonks tweag: - bazel-runfiles + network-multicast: + - audreyt # end of github-users From dbff5ed4e3c6dffc767173e6f26cf1b5b22fb5e1 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Tue, 28 May 2019 08:51:51 -0700 Subject: [PATCH 0295/2682] Revert ad71769b28f8b7ba474f8e1d53bfcf09b54a2a31 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8f3db868..c75edd7b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4641,6 +4641,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4588 - systemd < 2 + # https://github.com/commercialhaskell/stackage/issues/4589 + - network-multicast < 0.3 + # https://github.com/commercialhaskell/stackage/issues/4590 - skylighting < 0.8 - skylighting-core < 0.8 From 6b2339c0b24f7e8793b079a654503b3851c8a038 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Tue, 28 May 2019 09:12:08 -0700 Subject: [PATCH 0296/2682] Upper bound for servant-elm, #4591 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index c75edd7b..bb4244f9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4648,6 +4648,9 @@ packages: - skylighting < 0.8 - skylighting-core < 0.8 + # https://github.com/commercialhaskell/stackage/issues/4591 + - servant-elm < 0.6 + # end of packages # Package flags are applied to individual packages, and override the values of From b8ff4bc5ae76a1ffa7ac789fc98f4a517934b7ef Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Tue, 28 May 2019 19:22:03 -0700 Subject: [PATCH 0297/2682] Remove upper bound for network-multicast, #4589 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index bb4244f9..06717960 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4641,9 +4641,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4588 - systemd < 2 - # https://github.com/commercialhaskell/stackage/issues/4589 - - network-multicast < 0.3 - # https://github.com/commercialhaskell/stackage/issues/4590 - skylighting < 0.8 - skylighting-core < 0.8 From f7f58715bbdc27fd15dafabaa7bd6716fe2251c9 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Wed, 29 May 2019 06:38:40 -0700 Subject: [PATCH 0298/2682] Upper bound for swagger2, #4592 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 06717960..164e7abd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4648,6 +4648,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4591 - servant-elm < 0.6 + # https://github.com/commercialhaskell/stackage/issues/4592 + - swagger2 < 2.4 + # end of packages # Package flags are applied to individual packages, and override the values of From 6c3e7a9a804b8b4f88a04c933f0a416fc838637f Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Wed, 29 May 2019 06:40:55 -0700 Subject: [PATCH 0299/2682] Upper bound for tree-diff, #4593 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 164e7abd..eb97b985 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4651,6 +4651,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4592 - swagger2 < 2.4 + # https://github.com/commercialhaskell/stackage/issues/4593 + - tree-diff < 0.1 + # end of packages # Package flags are applied to individual packages, and override the values of From a91e6878e9615b29883ab58b1b8d62b9cfef476d Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Wed, 29 May 2019 19:48:53 -0700 Subject: [PATCH 0300/2682] Remove tree-diff upper bound, closes #4593 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index eb97b985..164e7abd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4651,9 +4651,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4592 - swagger2 < 2.4 - # https://github.com/commercialhaskell/stackage/issues/4593 - - tree-diff < 0.1 - # end of packages # Package flags are applied to individual packages, and override the values of From 44da47dd3466b1e6281d31f0b5e43aef53ab5815 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Thu, 30 May 2019 08:44:08 -0700 Subject: [PATCH 0301/2682] Upper bounds for servant, servant-server, #4594 --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 164e7abd..48303092 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4651,6 +4651,10 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4592 - swagger2 < 2.4 + # https://github.com/commercialhaskell/stackage/issues/4594 + - servant < 0.16.1 + - servant-server < 0.16.1 + # end of packages # Package flags are applied to individual packages, and override the values of From 97d3b4f5c5da6c4c6256ed87f5a03cdd715df822 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Thu, 30 May 2019 21:55:30 -0700 Subject: [PATCH 0302/2682] Upper bound for polysemy, #4595 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 48303092..75ae9acf 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4655,6 +4655,9 @@ packages: - servant < 0.16.1 - servant-server < 0.16.1 + # https://github.com/commercialhaskell/stackage/issues/4595 + - polysemy < 0.2.2 + # end of packages # Package flags are applied to individual packages, and override the values of From 993a29f697edf4a87b215b1dd6c5777d5373a648 Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Sat, 1 Jun 2019 13:46:25 +0100 Subject: [PATCH 0303/2682] tls<1.5.0 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 75ae9acf..624c0e03 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4658,6 +4658,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4595 - polysemy < 0.2.2 + # https://github.com/commercialhaskell/stackage/issues/4596 + - tls < 1.5.0 + # end of packages # Package flags are applied to individual packages, and override the values of From f8a9c5deeab78ca2cdde269730a30530e7ff20a3 Mon Sep 17 00:00:00 2001 From: amigalemming Date: Sun, 2 Jun 2019 17:37:49 +0200 Subject: [PATCH 0304/2682] Update build-constraints.yaml re-add midi-music-box --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 624c0e03..34f43b45 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -283,7 +283,7 @@ packages: - lazyio - markov-chain - midi - # - midi-music-box # lens 4.16 via diagrams + - midi-music-box - mbox-utility - med-module - monoid-transformer From def316b3ffce698ffee83ad64133aee9d2f10316 Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Sun, 2 Jun 2019 21:33:36 +0100 Subject: [PATCH 0305/2682] Stackage upper bounds additions --- build-constraints.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 624c0e03..35d6beec 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4619,6 +4619,10 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4564 - primitive < 0.7.0.0 + - primitive-extras < 0.8 + - primitive-unlifted < 0 + - stm-hamt < 0 + - stm-containers < 0 # https://github.com/commercialhaskell/stackage/issues/4568 - prettyprinter < 1.3.0 @@ -4657,9 +4661,14 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4595 - polysemy < 0.2.2 + - polysemy-zoo > 0.1.2.0 # https://github.com/commercialhaskell/stackage/issues/4596 - tls < 1.5.0 + - tls-debug < 0.4.6 + + # https://github.com/commercialhaskell/stackage/issues/4599 + - dbus < 1.2.8 # end of packages From 42906ab97c209fc16e86e53b31d549a05d739ff8 Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Mon, 3 Jun 2019 10:11:38 +0100 Subject: [PATCH 0306/2682] various updates to build-constraints.yaml --- build-constraints.yaml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2bbdd3e2..02651110 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3871,6 +3871,7 @@ packages: - pandoc-csv2table "Grandfathered dependencies": + - aeson-extra - Boolean - ChasingBottoms < 0 # due to QuickCheck, https://github.com/commercialhaskell/stackage/issues/4444 - Decimal @@ -4189,6 +4190,7 @@ packages: - safecopy - scientific - securemem + - selda-json - serialise - servant-client-core - servant-swagger-ui @@ -4564,6 +4566,8 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4504 - th-abstraction < 0.3.0.0 + - polysemy < 0.2.2 + - polysemy-zoo > 0.1.2.0 # https://github.com/commercialhaskell/stackage/issues/4512 - aeson < 1.4.3.0 @@ -4659,10 +4663,6 @@ packages: - servant < 0.16.1 - servant-server < 0.16.1 - # https://github.com/commercialhaskell/stackage/issues/4595 - - polysemy < 0.2.2 - - polysemy-zoo > 0.1.2.0 - # https://github.com/commercialhaskell/stackage/issues/4596 - tls < 1.5.0 - tls-debug < 0.4.6 @@ -4670,6 +4670,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4599 - dbus < 1.2.8 + # https://github.com/commercialhaskell/stackage/issues/4600 + - StateVar < 1.2 + # end of packages # Package flags are applied to individual packages, and override the values of From a65f3050f57ee3ec415f678ab588eec1dc5f61c6 Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Mon, 3 Jun 2019 10:28:01 +0100 Subject: [PATCH 0307/2682] add gd semialign --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 02651110..d6ab3fe7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3871,7 +3871,6 @@ packages: - pandoc-csv2table "Grandfathered dependencies": - - aeson-extra - Boolean - ChasingBottoms < 0 # due to QuickCheck, https://github.com/commercialhaskell/stackage/issues/4444 - Decimal @@ -4197,6 +4196,7 @@ packages: - servant-swagger-ui-core - servant-swagger-ui-redoc - servant-yaml + - semialign - setenv - shakespeare - shell-escape From 0e76422673da8b3a0652cf751a455855c7190aa1 Mon Sep 17 00:00:00 2001 From: Anton Ekblad Date: Mon, 3 Jun 2019 14:04:26 +0200 Subject: [PATCH 0308/2682] Add selda-json --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d6ab3fe7..b2c47a34 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3367,6 +3367,7 @@ packages: - selda - selda-sqlite - selda-postgresql + - selda-json "Luis Pedro Coelho @luispedro": - safeio @@ -4189,7 +4190,6 @@ packages: - safecopy - scientific - securemem - - selda-json - serialise - servant-client-core - servant-swagger-ui From d85ad7c9ec6e004bfcd6f4395fb0fd1fcfc2bafb Mon Sep 17 00:00:00 2001 From: Ryan Scott Date: Mon, 3 Jun 2019 11:12:25 -0400 Subject: [PATCH 0309/2682] Re-enable ersatz's test suite `erstaz-0.4.7` has a working test suite again, per https://github.com/commercialhaskell/stackage/issues/4571#issuecomment-497970551. Fixes #4571. --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d6ab3fe7..fceb6863 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5261,7 +5261,6 @@ expected-test-failures: - yeshql-hdbc # https://github.com/tdammers/yeshql/issues/6 - yesod-gitrev # https://github.com/DanBurton/yesod-gitrev/issues/5 - record-dot-preprocessor # https://github.com/commercialhaskell/stackage/issues/4449 - - ersatz # https://github.com/commercialhaskell/stackage/issues/4571 # Recursive deps https://github.com/fpco/stackage/issues/1818 - options From 0e6508370be93cb92c7df7818e68b8859c057b11 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Mon, 3 Jun 2019 13:57:26 -0400 Subject: [PATCH 0310/2682] Add haskell-gi constraints per #4603 --- build-constraints.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d6ab3fe7..eca0fcca 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4673,6 +4673,11 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4600 - StateVar < 1.2 + # https://github.com/commercialhaskell/stackage/issues/4603 + - haskell-gi < 0.22 + - haskell-gi-base < 0.22 + - gi-gtk-hs < 0.3.7 + # end of packages # Package flags are applied to individual packages, and override the values of From 3ff46ab8bfaa6dfa8eff76dfd0a7464352268751 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Mon, 3 Jun 2019 14:05:20 -0400 Subject: [PATCH 0311/2682] Expect test failure per RyanGlScott/text-show-instances#11 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index eca0fcca..0b4c1935 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5257,6 +5257,7 @@ expected-test-failures: - squeal-postgresql # https://github.com/fpco/stackage/issues/3180 - text-icu # https://github.com/bos/text-icu/issues/32 - text-ldap # https://github.com/khibino/haskell-text-ldap/issues/1 + - text-show-instances # https://github.com/RyanGlScott/text-show-instances/issues/11 - unicode-transforms # https://github.com/harendra-kumar/unicode-transforms/issues/15 - vector-algorithms # http://hub.darcs.net/dolio/vector-algorithms/issue/9 - vivid-supercollider # https://github.com/commercialhaskell/stackage/issues/4250 From 62ab725803a34d7063d166fd6ac44e05e8eb5bfd Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Mon, 3 Jun 2019 14:14:53 -0400 Subject: [PATCH 0312/2682] Revert "Add haskell-gi constraints per #4603" This reverts commit 0e6508370be93cb92c7df7818e68b8859c057b11. --- build-constraints.yaml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0b4c1935..036447c4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4673,11 +4673,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4600 - StateVar < 1.2 - # https://github.com/commercialhaskell/stackage/issues/4603 - - haskell-gi < 0.22 - - haskell-gi-base < 0.22 - - gi-gtk-hs < 0.3.7 - # end of packages # Package flags are applied to individual packages, and override the values of From fd34c0e45c93bcfecc329313193d2413f0c272e8 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Mon, 3 Jun 2019 14:57:06 -0400 Subject: [PATCH 0313/2682] Add constraint "inline-c < 0.8" per #4604 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 036447c4..01fd9518 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4673,6 +4673,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4600 - StateVar < 1.2 + # https://github.com/commercialhaskell/stackage/issues/4604 + - inline-c < 0.8 + # end of packages # Package flags are applied to individual packages, and override the values of From 684f11c00cf562fe8d4b039ad883d759b6ae0b02 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Mon, 3 Jun 2019 15:41:22 -0400 Subject: [PATCH 0314/2682] Constrain ghc-lib[-parser] to < 0.20190603 per #4605 --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 01fd9518..a918027e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4676,6 +4676,10 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4604 - inline-c < 0.8 + # https://github.com/commercialhaskell/stackage/issues/4605 + - ghc-lib < 0.20190603 + - ghc-lib-parser < 0.20190603 + # end of packages # Package flags are applied to individual packages, and override the values of From 2c2377eee9232af4fdbbaa6463009b22ce11ba06 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Mon, 3 Jun 2019 15:43:17 -0400 Subject: [PATCH 0315/2682] Skip tests per RyanGlScott/text-show-instances#11 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index a918027e..de5fee7e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4887,6 +4887,7 @@ skipped-tests: - test-framework # QuickCheck 2.10 - text # QuickCheck-2.11.3 - text-short # tasty 1.1 + - text-show-instances # quickcheck-instances 0.3.21, https://github.com/RyanGlScott/text-show-instances/issues/11 - these # via tasty-1.2 - tree-diff # trifecta 2 - vector # QuickCheck-2.11.3 From d46a1cc9d9de323e451a29d27f9b4b6719f5ed88 Mon Sep 17 00:00:00 2001 From: Ryan Scott Date: Mon, 3 Jun 2019 15:55:03 -0400 Subject: [PATCH 0316/2682] Reenable text-show-instances' test suite RyanGlScott/text-show-instances#11 has been fixed in `text-show-instances-3.8.1`. --- build-constraints.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index de5fee7e..58995b01 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4887,7 +4887,6 @@ skipped-tests: - test-framework # QuickCheck 2.10 - text # QuickCheck-2.11.3 - text-short # tasty 1.1 - - text-show-instances # quickcheck-instances 0.3.21, https://github.com/RyanGlScott/text-show-instances/issues/11 - these # via tasty-1.2 - tree-diff # trifecta 2 - vector # QuickCheck-2.11.3 @@ -5260,7 +5259,6 @@ expected-test-failures: - squeal-postgresql # https://github.com/fpco/stackage/issues/3180 - text-icu # https://github.com/bos/text-icu/issues/32 - text-ldap # https://github.com/khibino/haskell-text-ldap/issues/1 - - text-show-instances # https://github.com/RyanGlScott/text-show-instances/issues/11 - unicode-transforms # https://github.com/harendra-kumar/unicode-transforms/issues/15 - vector-algorithms # http://hub.darcs.net/dolio/vector-algorithms/issue/9 - vivid-supercollider # https://github.com/commercialhaskell/stackage/issues/4250 From 3731363555f2cc40fb74fba0c0519a2599e7da99 Mon Sep 17 00:00:00 2001 From: "Scott N. Walck" Date: Mon, 3 Jun 2019 21:49:22 -0400 Subject: [PATCH 0317/2682] add TypeCompose to nightly --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index de5fee7e..78893a9b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -85,6 +85,7 @@ packages: "Scott N. Walck @walck": - cyclotomic - learn-physics < 0 + - TypeCompose "Phil de Joux @philderbeast": - siggy-chardust From 236b60f82e67bdc9844dcc1ac758b4e39ce9e88b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20B=C3=A4renz?= Date: Tue, 4 Jun 2019 18:41:46 +0200 Subject: [PATCH 0318/2682] Reenable rhine and rhine-gloss --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index de5fee7e..dfdb5ddb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -106,8 +106,8 @@ packages: "Manuel Bärenz @turion": - dunai - - rhine < 0 - - rhine-gloss < 0 + - rhine + - rhine-gloss - dunai-core - finite-typelits From 0f46e52fad440451843860f268ec23a8a76a4f1c Mon Sep 17 00:00:00 2001 From: thielema Date: Tue, 4 Jun 2019 18:44:11 +0200 Subject: [PATCH 0319/2682] Update build-constraints.yaml re-enable hsshellscript --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index de5fee7e..459248f5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -274,7 +274,7 @@ packages: - explicit-exception - fixed-length - gnuplot - - group-by-date < 0 # build failure with GHC 8.4 via hsshellscript + - group-by-date - guarded-allocation - iff - interpolation @@ -333,6 +333,7 @@ packages: - linear-circuit # Not a maintainer - ix-shapable + - hsshellscript - hyper "Jeremy Barisch-Rooney @barischrooneyj": @@ -4365,7 +4366,6 @@ packages: - json-builder < 0 # build failure with GHC 8.4 https://github.com/lpsmith/json-builder/issues/2 - type-combinators < 0 # build failure with GHC 8.4 https://github.com/kylcarte/type-combinators/issues/8 - HaXml < 0 # build failure with GHC 8.4 - - hsshellscript < 0 # build failure with GHC 8.4 - preprocessor-tools < 0 # build failure with GHC 8.4 - tinytemplate < 0 # build failure with GHC 8.4 - wai-route < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build From 6fcea871ac357eeedd20a6b5806aa43f674bb587 Mon Sep 17 00:00:00 2001 From: Robert Date: Wed, 5 Jun 2019 11:51:48 +0200 Subject: [PATCH 0320/2682] Add configurator-pg. https://hackage.haskell.org/package/configurator-pg https://github.com/robx/configurator-pg --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index de5fee7e..7bcf1dfb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -10,6 +10,9 @@ cabal-format-version: "2.4" # Constraints for brand new builds packages: + "Robert Vollmert @robx": + - configurator-pg + "Sandy Maguire @isovector": - polysemy - polysemy-plugin From 7e4e1eba7ef8f5b36aea12153fb5ae7a5891d7b7 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 5 Jun 2019 14:53:51 -0400 Subject: [PATCH 0321/2682] reintroduce learn-physics (fixed merge conflict) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 937e9210..3c514f2a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -87,7 +87,7 @@ packages: "Scott N. Walck @walck": - cyclotomic - - learn-physics < 0 + - learn-physics - TypeCompose "Phil de Joux @philderbeast": From e7bded7d40f5bf323b3ec4ec82913fa2c6bdea34 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 5 Jun 2019 15:08:24 -0400 Subject: [PATCH 0322/2682] Add not-gloss and spatial-math under @walck --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3c514f2a..22b41bb3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -90,6 +90,10 @@ packages: - learn-physics - TypeCompose + # @ghorn + - not-gloss + - spatial-math + "Phil de Joux @philderbeast": - siggy-chardust - detour-via-sci From ec4ecc34cee5c26a43ff7ea71dd1ed528f67964c Mon Sep 17 00:00:00 2001 From: Lennart Spitzner Date: Thu, 6 Jun 2019 13:47:53 +0200 Subject: [PATCH 0323/2682] Re-enable multistate --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 22b41bb3..c5b0481e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4415,7 +4415,6 @@ packages: - llvm-hs-pretty < 0 - med-module < 0 - monad-recorder < 0 - - multistate < 0 - o-clock < 0 - teardown < 0 - typography-geometry < 0 From 3d54d9d35aea6a9fdeddf9d86d8b7a8a5ce8d1a2 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 6 Jun 2019 13:31:18 -0400 Subject: [PATCH 0324/2682] Unconstrain mime-mail, disable HaskellNet, see #4463 --- build-constraints.yaml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c5b0481e..e18d05f9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1385,8 +1385,8 @@ packages: - snowflake "Leza M. Lutonda @lemol": - - HaskellNet - - HaskellNet-SSL + - HaskellNet < 0 # mime-mail-0.5 + - HaskellNet-SSL < 0 # mime-mail-0.5 via HaskellNet "Jens Petersen @juhp": - cabal-rpm @@ -4561,9 +4561,6 @@ packages: # https://github.com/simonmichael/hledger/issues/983 - easytest < 0.3 - # https://github.com/commercialhaskell/stackage/issues/4463 - - mime-mail < 0.5.0 - # https://github.com/commercialhaskell/stackage/issues/4484 - hslogger < 1.3.0.0 From 4a90d036fe542a67f1a29bfc524dfe189a98c352 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 6 Jun 2019 13:45:58 -0400 Subject: [PATCH 0325/2682] Unconstrain connection, socks, block various. see #4494 --- build-constraints.yaml | 27 ++++++++++++--------------- 1 file changed, 12 insertions(+), 15 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e18d05f9..c88ac3de 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -101,7 +101,7 @@ packages: "Matthew Ahrens @mpahrens": - forkable-monad - - butter + - butter < 0 # connection-0.5 via network-simple "Iris Ward @AdituV": - typenums @@ -939,8 +939,8 @@ packages: - tardis - yesod-gitrev # @mr's packages - - ftp-client - - ftp-client-conduit + - ftp-client < 0 # connection-0.3.0 + - ftp-client-conduit < 0 # connection-0.3.0 "Daniel Díaz dhelta.diaz@gmail.com @Daniel-Diaz": - bimap-server @@ -1432,13 +1432,13 @@ packages: - di-monad - exinst - flay - - network-simple - - network-simple-tls + - network-simple < 0 # connection-0.3.0 + - network-simple-tls < 0 # connection-0.3 via network-simple - pipes-aeson - pipes-attoparsec - pipes-binary - - pipes-network - - pipes-network-tls + - pipes-network < 0 # connection-0.3 via network-simple + - pipes-network-tls < 0 # connection-0.3 via network-simple - safe-money < 0 - vector-bytes-instances - xmlbf-xeno @@ -1484,8 +1484,8 @@ packages: - bitcoin-types - hexstring - network-attoparsec - - network-anonymous-i2p - - network-anonymous-tor + - network-anonymous-i2p < 0 # connection-0.3 via network-simple + - network-anonymous-tor < 0 # connection-0.3 via network-simple "Timothy Jones @zmthy": - http-media @@ -2542,7 +2542,7 @@ packages: "Sebastian Dröge slomo@coaxion.net @sdroege": - conduit-iconv - - conduit-connection + - conduit-connection < 0 # connection-0.3.0 "Andrew Rademacher @AndrewRademacher": - aeson-casing @@ -2847,7 +2847,7 @@ packages: - merkle-tree - oblivious-transfer - pairing - - libraft + - libraft < 0 # connection-0.3 via network-simple "Daishi Nakajima @nakaji-dayo": - api-field-json-th @@ -4564,10 +4564,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4484 - hslogger < 1.3.0.0 - # https://github.com/commercialhaskell/stackage/issues/4494 - - connection < 0.3 - - socks < 0.6 - # https://github.com/commercialhaskell/stackage/issues/4504 - th-abstraction < 0.3.0.0 - polysemy < 0.2.2 @@ -4867,6 +4863,7 @@ skipped-tests: - lattices # via tasty-1.2 - makefile # GHC 8.2 - mmtf # via hspec-2.7.0 + - network-attoparsec # connection-0.3 via network-simple - next-ref # hspec 2.3 - partial-order # HUnit 1.6 - psqueues # via QuickCheck-2.12.6.1 From d2317def7571e632622bd9078b5aadc01660743b Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 6 Jun 2019 13:59:04 -0400 Subject: [PATCH 0326/2682] Block smtp-mail per jhickner/smtp-mail#24 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c88ac3de..5db1f3c3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2157,7 +2157,7 @@ packages: - monad-logger-prefix - monad-metrics # - ekg-cloudwatch # http-conduit 2.3 via amazonka - - smtp-mail + - smtp-mail < 0 # https://github.com/jhickner/smtp-mail/issues/24#issuecomment-499601949 - liboath-hs - servant-quickcheck < 0 - esqueleto From 052698c15e083ad2551a0aba323407a246f32f19 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 6 Jun 2019 14:13:34 -0400 Subject: [PATCH 0327/2682] Unconstrain th-abstraction (#4504) and aeson (#4512) --- build-constraints.yaml | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5db1f3c3..bead24db 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -141,7 +141,7 @@ packages: - buchhaltung < 0 # GHC 8.4 build failure "Tom McLaughlin @thomasjm": - - aeson-typescript + - aeson-typescript < 0 # th-abstraction-0.3 "Paulo Tanaka @paulot": # on behalf of Bryan O'Sullivan @bos: @@ -4564,14 +4564,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4484 - hslogger < 1.3.0.0 - # https://github.com/commercialhaskell/stackage/issues/4504 - - th-abstraction < 0.3.0.0 - - polysemy < 0.2.2 - - polysemy-zoo > 0.1.2.0 - - # https://github.com/commercialhaskell/stackage/issues/4512 - - aeson < 1.4.3.0 - # https://github.com/commercialhaskell/stackage/issues/4519 - case-insensitive < 1.2.1 From 6339f4467d4ca3113cbcec0f6c39b00dce06e9ae Mon Sep 17 00:00:00 2001 From: Lennart Spitzner Date: Fri, 7 Jun 2019 14:13:59 +0200 Subject: [PATCH 0328/2682] Re-enable butcher --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index bead24db..8801ba58 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4420,7 +4420,6 @@ packages: - typography-geometry < 0 # transitive dependencies of packages failing to build - - butcher < 0 - capataz < 0 - componentm < 0 - componentm-devel < 0 From c009c29adb7b75ca0c8dc38086dbfbc071bfa85c Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Fri, 7 Jun 2019 13:24:56 -0400 Subject: [PATCH 0329/2682] Add constraint "fixed < 0.3" per #4613 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index bead24db..a10fe3cd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4672,6 +4672,9 @@ packages: - ghc-lib < 0.20190603 - ghc-lib-parser < 0.20190603 + # https://github.com/commercialhaskell/stackage/issues/4613 + - fixed < 0.3 + # end of packages # Package flags are applied to individual packages, and override the values of From 67df2491e60d2b92bc7ae31d05ea845f104ee5c7 Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Sat, 8 Jun 2019 08:38:53 +0100 Subject: [PATCH 0330/2682] add rg --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index a10fe3cd..04432db6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3307,6 +3307,7 @@ packages: - regex-with-pcre - possibly - enum-text + - rg "Elliot Cameron @3noch": [] From e4c2fcffa1499f523c40b5116f3f946b3dfeb3b8 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sat, 8 Jun 2019 10:12:25 -0400 Subject: [PATCH 0331/2682] Constrain gi-cairo per #4615 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index a10fe3cd..366e5fe5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4675,6 +4675,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4613 - fixed < 0.3 + # https://github.com/commercialhaskell/stackage/issues/4615 + - gi-cairo < 1.0.20 + # end of packages # Package flags are applied to individual packages, and override the values of From e913886476b17228317b86daf375fc798dd8fb35 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sat, 8 Jun 2019 10:16:29 -0400 Subject: [PATCH 0332/2682] Expect benchmark failure per isovector/polysemy#92 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 366e5fe5..d110769a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5339,6 +5339,7 @@ expected-benchmark-failures: - cryptohash # https://github.com/vincenthz/hs-cryptohash/pull/43 - http2 - lz4 # https://github.com/fpco/stackage/issues/3510 + - polysemy # https://github.com/isovector/polysemy/issues/92 - thyme - xmlgen # https://github.com/skogsbaer/xmlgen/issues/6 From 425fe7d46c24eb69e26c5d06868ad63bdb3bd944 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sat, 8 Jun 2019 10:25:27 -0400 Subject: [PATCH 0333/2682] Expect test failure per isovector/polysemy#93 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d110769a..4cb53d6a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4985,6 +4985,7 @@ skipped-tests: - uri-bytestring # Could not deduce (SOP.All (SOP.All Arbitrary) xs) arising from a use of ‘SOP.hcpure’ - cron # Could not deduce (SOP.All (SOP.All Arbitrary) xss) arising from a use of ‘SOP.hcpure’ - config-ini # https://github.com/aisamanra/config-ini/issues/22 + - polysemy-plugin # https://github.com/isovector/polysemy/issues/93 # Runtime issues - blank-canvas # Never finishes https://github.com/ku-fpg/blank-canvas/issues/73 From 1011e9cde4c0a2446f9172f4c786f3e4af518dd9 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sat, 8 Jun 2019 10:31:27 -0400 Subject: [PATCH 0334/2682] Expect test failure per debug-ito/greskell#1 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4cb53d6a..40570b90 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5228,6 +5228,7 @@ expected-test-failures: - bitx-bitcoin # https://github.com/tebello-thejane/bitx.hs/issues/4 - courier # https://github.com/hargettp/courier/issues/19 - download # https://github.com/fpco/stackage/issues/2811 + - greskell-core # https://github.com/debug-ito/greskell/issues/1 - haskell-tools-demo # https://github.com/haskell-tools/haskell-tools/issues/624 - http-link-header # https://github.com/myfreeweb/http-link-header/issues/7 - rando # https://github.com/commercialhaskell/stackage/issues/4249 From baa260b9ad52d30faf8387b40647ef5eb0bc0662 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sat, 8 Jun 2019 10:39:23 -0400 Subject: [PATCH 0335/2682] Block webdriver per kallisti-dev/hs-webdriver#155 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 40570b90..7adfe6d0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2511,7 +2511,7 @@ packages: - nfc < 0 # build failure with GHC 8.4 "Adam Curtis @kallisti-dev": - - webdriver + - webdriver < 0 # https://github.com/kallisti-dev/hs-webdriver/issues/155 "Michael Schröder @mcschroeder": - ctrie From ea1c4f64593d24141df8fbaf780befe4a3a70548 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sat, 8 Jun 2019 10:50:10 -0400 Subject: [PATCH 0336/2682] Remove duplication --- build-constraints.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 76c7d827..84fd5d72 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2510,8 +2510,6 @@ packages: - blake2 - nfc < 0 # build failure with GHC 8.4 - "Adam Curtis @kallisti-dev": - - webdriver < 0 # https://github.com/kallisti-dev/hs-webdriver/issues/155 "Michael Schröder @mcschroeder": - ctrie @@ -3477,7 +3475,7 @@ packages: - distributed-process-monad-control < 0 # GHC 8.4 via distributed-process "Adam Curtis @kallisti-dev": - - webdriver + - webdriver < 0 # https://github.com/kallisti-dev/hs-webdriver/issues/155 - cond "Naoto Shimazaki @nshimaza": From bca636afccf871af26fc505d85664c466bb985ed Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sat, 8 Jun 2019 11:05:50 -0400 Subject: [PATCH 0337/2682] Expect test failures per #4512 --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 84fd5d72..fd38ff86 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5238,6 +5238,10 @@ expected-test-failures: - hakyll # https://github.com/jaspervdj/hakyll/issues/682 - hpack-dhall # https://github.com/BlockScope/hpack-dhall/issues/25 - bv-little # https://github.com/commercialhaskell/stackage/issues/4544 + # aeson assertion failures https://github.com/commercialhaskell/stackage/issues/4512 + - hpack + - dhall-json + - kawhi # Compilation failures - ListLike # No issue tracker, e-mail sent to maintainer From 442b37bbe0b54e445e1f6d39e0d7a5996d7bb23d Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sat, 8 Jun 2019 11:06:50 -0400 Subject: [PATCH 0338/2682] expect test failure for polysemy-zoo --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index fd38ff86..c71cedee 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5259,6 +5259,7 @@ expected-test-failures: - perf # https://github.com/fpco/stackage/pull/2859 - picosat # https://github.com/fpco/stackage/pull/2382 - pkcs10 # https://github.com/fcomb/pkcs10-hs/issues/2 + - polysemy-zoo # TODO: add link here - sourcemap # https://github.com/chrisdone/sourcemap/issues/3 - squeal-postgresql # https://github.com/fpco/stackage/issues/3180 - text-icu # https://github.com/bos/text-icu/issues/32 From 1b34f1490ebf1ae172a1119cad643ef4688ae2e9 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sat, 8 Jun 2019 15:45:54 -0400 Subject: [PATCH 0339/2682] Unconstrain gi-cairo, see #4615 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c71cedee..0b7779f2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4674,9 +4674,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4613 - fixed < 0.3 - # https://github.com/commercialhaskell/stackage/issues/4615 - - gi-cairo < 1.0.20 - # end of packages # Package flags are applied to individual packages, and override the values of From eab8caafad5457bea9a454788ba1da5724fe73b0 Mon Sep 17 00:00:00 2001 From: Daniel Campoverde Date: Sat, 8 Jun 2019 14:49:46 -0500 Subject: [PATCH 0340/2682] Add graphite --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0b7779f2..d880166b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3449,6 +3449,7 @@ packages: - currencies - alerts - yesod-alerts + - graphite "José Lorenzo Rodríguez @lorenzo": - wrecker < 0 # GHC 8.4 via ansigraph From 4f7692f71c5c1d89e7c946bfbb1fb141500f1eb8 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sat, 8 Jun 2019 15:59:20 -0400 Subject: [PATCH 0341/2682] Restore network-simple and revdeps, see #4494 --- build-constraints.yaml | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0b7779f2..dd23e2fd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -101,7 +101,7 @@ packages: "Matthew Ahrens @mpahrens": - forkable-monad - - butter < 0 # connection-0.5 via network-simple + - butter "Iris Ward @AdituV": - typenums @@ -1432,13 +1432,13 @@ packages: - di-monad - exinst - flay - - network-simple < 0 # connection-0.3.0 - - network-simple-tls < 0 # connection-0.3 via network-simple + - network-simple + - network-simple-tls - pipes-aeson - pipes-attoparsec - pipes-binary - - pipes-network < 0 # connection-0.3 via network-simple - - pipes-network-tls < 0 # connection-0.3 via network-simple + - pipes-network + - pipes-network-tls - safe-money < 0 - vector-bytes-instances - xmlbf-xeno @@ -1484,8 +1484,8 @@ packages: - bitcoin-types - hexstring - network-attoparsec - - network-anonymous-i2p < 0 # connection-0.3 via network-simple - - network-anonymous-tor < 0 # connection-0.3 via network-simple + - network-anonymous-i2p + - network-anonymous-tor "Timothy Jones @zmthy": - http-media @@ -2845,7 +2845,7 @@ packages: - merkle-tree - oblivious-transfer - pairing - - libraft < 0 # connection-0.3 via network-simple + - libraft "Daishi Nakajima @nakaji-dayo": - api-field-json-th @@ -4857,7 +4857,6 @@ skipped-tests: - lattices # via tasty-1.2 - makefile # GHC 8.2 - mmtf # via hspec-2.7.0 - - network-attoparsec # connection-0.3 via network-simple - next-ref # hspec 2.3 - partial-order # HUnit 1.6 - psqueues # via QuickCheck-2.12.6.1 From 1afa6427086f34b94093d6932f703f2b0fe8fd9b Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sat, 8 Jun 2019 16:17:31 -0400 Subject: [PATCH 0342/2682] Block per solatis/haskell-network-anonymous-tor#14 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index dd23e2fd..ef4a772b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1485,7 +1485,7 @@ packages: - hexstring - network-attoparsec - network-anonymous-i2p - - network-anonymous-tor + - network-anonymous-tor < 0 # build failure w/ socks 0.6, see https://github.com/solatis/haskell-network-anonymous-tor/issues/14 "Timothy Jones @zmthy": - http-media From ecafd8fd32f9ab1052450f8fe0a3866c82baae90 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sat, 8 Jun 2019 16:28:44 -0400 Subject: [PATCH 0343/2682] Expect test failure per dhall-lang/dhall-haskell#996 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ef4a772b..56f6aa05 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5212,6 +5212,7 @@ expected-test-failures: # Missing test files in sdist # Hopefully gets fixed in the next release... - crypto-pubkey # https://github.com/vincenthz/hs-crypto-pubkey/issues/23 + - dhall-json # https://github.com/dhall-lang/dhall-haskell/issues/996 - doctest-discover # 0.1.0.9 https://github.com/karun012/doctest-discover/issues/22 - graylog # 0.1.0.1 https://github.com/fpco/stackage/pull/1254 - tomland # https://github.com/kowainik/tomland/issues/141 @@ -5236,7 +5237,6 @@ expected-test-failures: - bv-little # https://github.com/commercialhaskell/stackage/issues/4544 # aeson assertion failures https://github.com/commercialhaskell/stackage/issues/4512 - hpack - - dhall-json - kawhi # Compilation failures From afbf3162c9070202d707d0679286a34bb031cbb7 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sat, 8 Jun 2019 16:30:39 -0400 Subject: [PATCH 0344/2682] Expect test failure per isovector/polysemy-zoo#21 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 56f6aa05..a06d5c7e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5255,7 +5255,7 @@ expected-test-failures: - perf # https://github.com/fpco/stackage/pull/2859 - picosat # https://github.com/fpco/stackage/pull/2382 - pkcs10 # https://github.com/fcomb/pkcs10-hs/issues/2 - - polysemy-zoo # TODO: add link here + - polysemy-zoo # https://github.com/isovector/polysemy-zoo/issues/21 - sourcemap # https://github.com/chrisdone/sourcemap/issues/3 - squeal-postgresql # https://github.com/fpco/stackage/issues/3180 - text-icu # https://github.com/bos/text-icu/issues/32 From 02868013ea0503a253233c1714ecdaf67faddd15 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sat, 8 Jun 2019 16:31:56 -0400 Subject: [PATCH 0345/2682] Reorganize comments about #4512 --- build-constraints.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a06d5c7e..5bc8e541 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5235,9 +5235,8 @@ expected-test-failures: - hakyll # https://github.com/jaspervdj/hakyll/issues/682 - hpack-dhall # https://github.com/BlockScope/hpack-dhall/issues/25 - bv-little # https://github.com/commercialhaskell/stackage/issues/4544 - # aeson assertion failures https://github.com/commercialhaskell/stackage/issues/4512 - - hpack - - kawhi + - hpack # https://github.com/commercialhaskell/stackage/issues/4512 + - kawhi # https://github.com/commercialhaskell/stackage/issues/4512 # Compilation failures - ListLike # No issue tracker, e-mail sent to maintainer From dfc4eb86f168c8587d3821f5f3da7cf178ab9314 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sun, 9 Jun 2019 15:45:25 -0400 Subject: [PATCH 0346/2682] Constrain parser-combinators per #4617 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5bc8e541..40eec18d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4674,6 +4674,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4613 - fixed < 0.3 + # https://github.com/commercialhaskell/stackage/issues/4617 + - parser-combinators < 1.1.0 + # end of packages # Package flags are applied to individual packages, and override the values of From 632f108af9dadba435d2e7d94efd9fd1179c0191 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sun, 9 Jun 2019 22:50:44 -0400 Subject: [PATCH 0347/2682] Unconstrain ghc-lib[-parser], closes #4613 --- build-constraints.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index bc757e30..45cdab66 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4668,10 +4668,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4604 - inline-c < 0.8 - # https://github.com/commercialhaskell/stackage/issues/4605 - - ghc-lib < 0.20190603 - - ghc-lib-parser < 0.20190603 - # https://github.com/commercialhaskell/stackage/issues/4613 - fixed < 0.3 From ced5d81bc58d5e03e78c57d2fa45eb32662a5eee Mon Sep 17 00:00:00 2001 From: Matthieu Monsch <1216372+mtth@users.noreply.github.com> Date: Mon, 10 Jun 2019 18:33:25 -0700 Subject: [PATCH 0348/2682] Add tracing https://hackage.haskell.org/package/tracing --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 45cdab66..964cd341 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -10,6 +10,9 @@ cabal-format-version: "2.4" # Constraints for brand new builds packages: + "Matthieu Monsch @mtth": + - tracing + "Robert Vollmert @robx": - configurator-pg From 2d660c0efaee7ca5c0f7abedfbe5a786f05ee12f Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 11 Jun 2019 05:30:20 +0000 Subject: [PATCH 0349/2682] hw-balancedparens < 0.2.1.0 (#4619) --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 45cdab66..f86a3082 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4674,6 +4674,8 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4617 - parser-combinators < 1.1.0 + # https://github.com/commercialhaskell/stackage/issues/4619 + - hw-balancedparens < 0.2.1.0 # end of packages # Package flags are applied to individual packages, and override the values of From af724ae767a7dd593374a107ba67a3698915fc01 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 11 Jun 2019 05:42:42 +0000 Subject: [PATCH 0350/2682] juhp add hkgr and simple-cabal --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4a2ff696..d626b29e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1396,8 +1396,10 @@ packages: - fedora-dists - fedora-haskell-tools - fedora-img-dl + - hkgr - http-directory - rpmbuild-order + - simple-cabal - simple-cmd - simple-cmd-args From aa4e382344c531986c0767308cd6a4e6ea7c1e5a Mon Sep 17 00:00:00 2001 From: Dmitry Dzhus Date: Tue, 11 Jun 2019 10:27:46 +0100 Subject: [PATCH 0351/2682] Unblock simple-vec3 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d626b29e..8303caec 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3666,7 +3666,7 @@ packages: "Dmitry Dzhus @dzhus": - csg < 0 # via QuickCheck https://github.com/commercialhaskell/stackage/issues/4444 - - simple-vec3 < 0 # via QuickCheck https://github.com/commercialhaskell/stackage/issues/4444 + - simple-vec3 - static-text - th-nowq From 9591af70e1684c0604e4f465b04e023faad779e9 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 12 Jun 2019 04:17:10 +0000 Subject: [PATCH 0352/2682] nonempty-containers < 0.3.0.0 (#4557) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8303caec..a93d6340 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4617,6 +4617,7 @@ packages: - hedgehog-fn < 1.0 - tasty-hedgehog < 1.0 - tomland < 1.0.1.0 + - nonempty-containers < 0.3.0.0 # https://github.com/commercialhaskell/stackage/issues/4564 - primitive < 0.7.0.0 From 645675f453727f5546afd0d0a4d89ee729cd378f Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 12 Jun 2019 04:18:06 +0000 Subject: [PATCH 0353/2682] move dbus upperbound under network<3.0 (#4599) --- build-constraints.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a93d6340..c374cd45 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4562,6 +4562,7 @@ packages: - hsdev < 0.3.3.0 - network-bsd < 2.8.1.0 - MissingH < 1.4.2.0 + - dbus < 1.2.8 # https://github.com/commercialhaskell/stackage/issues/4599 # https://github.com/simonmichael/hledger/issues/983 - easytest < 0.3 @@ -4665,9 +4666,6 @@ packages: - tls < 1.5.0 - tls-debug < 0.4.6 - # https://github.com/commercialhaskell/stackage/issues/4599 - - dbus < 1.2.8 - # https://github.com/commercialhaskell/stackage/issues/4600 - StateVar < 1.2 From df033635d81f7328fa90ad303b87227061ab4a56 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 12 Jun 2019 04:18:24 +0000 Subject: [PATCH 0354/2682] move xml-conduit upperbound under network and dbus (#4570) --- build-constraints.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c374cd45..eba98c6a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4563,6 +4563,7 @@ packages: - network-bsd < 2.8.1.0 - MissingH < 1.4.2.0 - dbus < 1.2.8 # https://github.com/commercialhaskell/stackage/issues/4599 + - xml-conduit < 1.9 # https://github.com/commercialhaskell/stackage/issues/4570 # https://github.com/simonmichael/hledger/issues/983 - easytest < 0.3 @@ -4633,9 +4634,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4569 - cryptonite < 0.26 - # https://github.com/commercialhaskell/stackage/issues/4570 - - xml-conduit < 1.9 - # https://github.com/commercialhaskell/stackage/issues/4575 - data-accessor < 0.2.3 From 71c0bac57cef739485528813864f9fb5556fa7ca Mon Sep 17 00:00:00 2001 From: Vladislav Zavialov Date: Thu, 13 Jun 2019 09:44:20 +0300 Subject: [PATCH 0355/2682] Add 'shower' --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 094ba177..3e9f35be 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2083,6 +2083,7 @@ packages: - union - named - inj + - shower "Stack Builders stackage@stackbuilders.com @stackbuilders": - atomic-write From 49433e9987800e3880625dfe4125f53b1ede45bd Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 13 Jun 2019 10:59:37 -0400 Subject: [PATCH 0356/2682] Expect bench build success per isovector/polysemy#92 --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 094ba177..5e482c55 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5343,7 +5343,6 @@ expected-benchmark-failures: - cryptohash # https://github.com/vincenthz/hs-cryptohash/pull/43 - http2 - lz4 # https://github.com/fpco/stackage/issues/3510 - - polysemy # https://github.com/isovector/polysemy/issues/92 - thyme - xmlgen # https://github.com/skogsbaer/xmlgen/issues/6 From a735b03a2cf1f5d2d0b40cb9e43b0a1ddd796140 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 13 Jun 2019 11:13:58 -0400 Subject: [PATCH 0357/2682] Unskip tests per isovector/polysemy#93 --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 094ba177..c951cdb1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4983,7 +4983,6 @@ skipped-tests: - uri-bytestring # Could not deduce (SOP.All (SOP.All Arbitrary) xs) arising from a use of ‘SOP.hcpure’ - cron # Could not deduce (SOP.All (SOP.All Arbitrary) xss) arising from a use of ‘SOP.hcpure’ - config-ini # https://github.com/aisamanra/config-ini/issues/22 - - polysemy-plugin # https://github.com/isovector/polysemy/issues/93 # Runtime issues - blank-canvas # Never finishes https://github.com/ku-fpg/blank-canvas/issues/73 From 0c26152252e8ef38a2da43badc9e859f56c18a8d Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 13 Jun 2019 11:20:59 -0400 Subject: [PATCH 0358/2682] Expect test success per isovector/polysemy-zoo#21 --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 094ba177..5df8d5cf 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5257,7 +5257,6 @@ expected-test-failures: - perf # https://github.com/fpco/stackage/pull/2859 - picosat # https://github.com/fpco/stackage/pull/2382 - pkcs10 # https://github.com/fcomb/pkcs10-hs/issues/2 - - polysemy-zoo # https://github.com/isovector/polysemy-zoo/issues/21 - sourcemap # https://github.com/chrisdone/sourcemap/issues/3 - squeal-postgresql # https://github.com/fpco/stackage/issues/3180 - text-icu # https://github.com/bos/text-icu/issues/32 From 76709dbe3578aa48d4991f3b498dbb2dfb1d3dc8 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 13 Jun 2019 11:28:12 -0400 Subject: [PATCH 0359/2682] Expect test success per debug-ito/greskell#1 --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 094ba177..7fbae8ca 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5227,7 +5227,6 @@ expected-test-failures: - bitx-bitcoin # https://github.com/tebello-thejane/bitx.hs/issues/4 - courier # https://github.com/hargettp/courier/issues/19 - download # https://github.com/fpco/stackage/issues/2811 - - greskell-core # https://github.com/debug-ito/greskell/issues/1 - haskell-tools-demo # https://github.com/haskell-tools/haskell-tools/issues/624 - http-link-header # https://github.com/myfreeweb/http-link-header/issues/7 - rando # https://github.com/commercialhaskell/stackage/issues/4249 From e8ffb4926812df0d82d966990048ad1e56d8e213 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 13 Jun 2019 11:31:03 -0400 Subject: [PATCH 0360/2682] Re-enable webdriver per kallisti-dev/hs-webdriver#155 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 094ba177..77ed22d2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3481,7 +3481,7 @@ packages: - distributed-process-monad-control < 0 # GHC 8.4 via distributed-process "Adam Curtis @kallisti-dev": - - webdriver < 0 # https://github.com/kallisti-dev/hs-webdriver/issues/155 + - webdriver - cond "Naoto Shimazaki @nshimaza": From d360f9b7774de8e30876430f73afcf3c42d99a25 Mon Sep 17 00:00:00 2001 From: Elben Shira Date: Thu, 13 Jun 2019 15:58:23 -1000 Subject: [PATCH 0361/2682] Add pencil. --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 094ba177..9f9d6928 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3885,6 +3885,9 @@ packages: "Venkateswara Rao Mandela @vmandela": - pandoc-csv2table + "Elben Shira @elben": + - pencil + "Grandfathered dependencies": - Boolean - ChasingBottoms < 0 # due to QuickCheck, https://github.com/commercialhaskell/stackage/issues/4444 From 7296f80d49f8545ecc116e29947b4fb177f1d423 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 14 Jun 2019 08:43:21 +0000 Subject: [PATCH 0362/2682] revert "StateVar < 1.2" (#4600) --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 094ba177..bd6dde70 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4663,9 +4663,6 @@ packages: - tls < 1.5.0 - tls-debug < 0.4.6 - # https://github.com/commercialhaskell/stackage/issues/4600 - - StateVar < 1.2 - # https://github.com/commercialhaskell/stackage/issues/4604 - inline-c < 0.8 From a106022c3864b5e3cc25b821c6b3a25ae8a855e9 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 14 Jun 2019 08:58:09 +0000 Subject: [PATCH 0363/2682] allow skylighting 0.8 (#4590) --- build-constraints.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4f0dd9ca..30189a43 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4646,10 +4646,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4588 - systemd < 2 - # https://github.com/commercialhaskell/stackage/issues/4590 - - skylighting < 0.8 - - skylighting-core < 0.8 - # https://github.com/commercialhaskell/stackage/issues/4591 - servant-elm < 0.6 From 89d52fd2e8e1ce59925136e7639ab549f5ab8a9a Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 14 Jun 2019 09:12:34 +0000 Subject: [PATCH 0364/2682] stack < 2.1.1 (#4628) indirectly needs http-client < 0.6 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 30189a43..2168d87d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4671,6 +4671,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4619 - hw-balancedparens < 0.2.1.0 + + # https://github.com/commercialhaskell/stackage/issues/4628 + - stack < 2.1.1 # end of packages # Package flags are applied to individual packages, and override the values of From 6a15dd3714f5588c18e83decdac1291e4ec496b5 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 14 Jun 2019 09:20:44 +0000 Subject: [PATCH 0365/2682] revert 'parser-combinators < 1.1.0' (#4617) --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6b22bea2..99371ec6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4666,9 +4666,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4613 - fixed < 0.3 - # https://github.com/commercialhaskell/stackage/issues/4617 - - parser-combinators < 1.1.0 - # https://github.com/commercialhaskell/stackage/issues/4619 - hw-balancedparens < 0.2.1.0 From c0e0a8bea9bb29fe5364c1eaeb710aa36fb8ca39 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 14 Jun 2019 12:11:10 -0700 Subject: [PATCH 0366/2682] Ignore some revisions and close #4628 --- build-constraints.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index fa37b7ba..243405c7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4671,9 +4671,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4619 - hw-balancedparens < 0.2.1.0 - - # https://github.com/commercialhaskell/stackage/issues/4628 - - stack < 2.1.1 # end of packages # Package flags are applied to individual packages, and override the values of @@ -5816,6 +5813,8 @@ no-revisions: - foundation - gauge - stack +- http-download +- pantry-tmp # https://github.com/commercialhaskell/stackage/issues/3706: - hledger - hledger-lib From 09ebd2b047b1451c744c918b65f14bf96db167d3 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 14 Jun 2019 12:32:49 -0700 Subject: [PATCH 0367/2682] Add some new Stack deps --- build-constraints.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 243405c7..8ad70aaf 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -566,6 +566,11 @@ packages: - http-conduit - githash + - pantry-tmp + - http-download + - hi-file-parser + - rio-prettyprint + "Omari Norman @massysett": - rainbow - rainbox @@ -5815,6 +5820,8 @@ no-revisions: - stack - http-download - pantry-tmp +- rio-prettyprint +- hi-file-parser # https://github.com/commercialhaskell/stackage/issues/3706: - hledger - hledger-lib From 4ab4608d6d446efc062482fedc80964b42455cf1 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 14 Jun 2019 12:34:34 -0700 Subject: [PATCH 0368/2682] Missing grandfathered package --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8ad70aaf..116007a0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4256,6 +4256,7 @@ packages: - system-filepath - tabular - tar + - tasty-lua - tasty-th - tdigest - temporary From c5c9e0ea215f8e8507a64b72dc10781150199ca5 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 16 Jun 2019 05:23:18 -0700 Subject: [PATCH 0369/2682] Use Stack 1.9.3 in the build script (unpack compatibility) --- automated/build.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/automated/build.sh b/automated/build.sh index c2b21131..48046dae 100755 --- a/automated/build.sh +++ b/automated/build.sh @@ -94,8 +94,9 @@ then docker run $ARGS_UPLOAD $IMAGE /bin/bash -c "exec stackage-curator check-target-available --target $TARGET" fi -# Get latest stack -curl -L https://www.stackage.org/stack/linux-x86_64 | tar xz --wildcards --strip-components=1 -C $EXTRA_BIN_DIR '*/stack' +# Get latest compatible stack +curl -L https://github.com/commercialhaskell/stack/releases/download/v1.9.3/stack-1.9.3-linux-x86_64-static.tar.gz | tar xz --wildcards --strip-components=1 -C $EXTRA_BIN_DIR '*/stack' + # Determine the new build plan unless NOPLAN is set # From 42662ba432801a98935c15a5061f518b1344af1b Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 16 Jun 2019 05:23:18 -0700 Subject: [PATCH 0370/2682] Use Stack 1.9.3 in the build script (unpack compatibility) --- automated/build.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/automated/build.sh b/automated/build.sh index c2b21131..48046dae 100755 --- a/automated/build.sh +++ b/automated/build.sh @@ -94,8 +94,9 @@ then docker run $ARGS_UPLOAD $IMAGE /bin/bash -c "exec stackage-curator check-target-available --target $TARGET" fi -# Get latest stack -curl -L https://www.stackage.org/stack/linux-x86_64 | tar xz --wildcards --strip-components=1 -C $EXTRA_BIN_DIR '*/stack' +# Get latest compatible stack +curl -L https://github.com/commercialhaskell/stack/releases/download/v1.9.3/stack-1.9.3-linux-x86_64-static.tar.gz | tar xz --wildcards --strip-components=1 -C $EXTRA_BIN_DIR '*/stack' + # Determine the new build plan unless NOPLAN is set # From e57670b5729ac837d16f50bda038ccaed38502f2 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 17 Jun 2019 16:58:09 +0000 Subject: [PATCH 0371/2682] drop 'stack < 2.1.1' and allow pantry-tmp tests to fail (#4628) the failures are due to selinux or something? --- build-constraints.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index fa37b7ba..d259fbc3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4671,9 +4671,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4619 - hw-balancedparens < 0.2.1.0 - - # https://github.com/commercialhaskell/stackage/issues/4628 - - stack < 2.1.1 # end of packages # Package flags are applied to individual packages, and override the values of @@ -5177,6 +5174,7 @@ expected-test-failures: - odbc # "Need ODBC_TEST_CONNECTION_STRING environment variable" - opaleye # PostgreSQL - pandoc-pyplot # requires DISPLAY for tcltk + - pantry-tmp # https://github.com/commercialhaskell/stackage/issues/4628 - persistent-redis # redis - https://github.com/fpco/stackage/pull/1581 - pipes-mongodb - postgresql-query # PostgreSQL From a89bf59116a01bfa771a0226ef90d69c8e96901e Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 17 Jun 2019 17:36:08 +0000 Subject: [PATCH 0372/2682] temporarily allow pandoc tests to fail (jgm/pandoc#5582) --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d259fbc3..019d4ea5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5319,6 +5319,8 @@ expected-test-failures: # https://github.com/Bodigrim/exp-pairs/issues/16 - exp-pairs + # https://github.com/jgm/pandoc/issues/5582 + - pandoc # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 89f58a649a3869909ff8b74f1edaafb2ac9afad6 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 17 Jun 2019 17:40:02 +0000 Subject: [PATCH 0373/2682] Revert "drop 'stack < 2.1.1' (#4628)" for stack2nix This reverts part of commit e57670b5729ac837d16f50bda038ccaed38502f2. --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 019d4ea5..a4ef224c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4671,6 +4671,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4619 - hw-balancedparens < 0.2.1.0 + + # https://github.com/commercialhaskell/stackage/issues/4628 + - stack < 2.1.1 # end of packages # Package flags are applied to individual packages, and override the values of From 776786be173b1f29c833c6d3635617010a908003 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 17 Jun 2019 17:51:01 +0000 Subject: [PATCH 0374/2682] tasty-lua < 0.2.0 (hslua/tasty-lua#1) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index a4ef224c..096399c7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4674,6 +4674,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4628 - stack < 2.1.1 + + # https://github.com/hslua/tasty-lua/issues/1 + - tasty-lua < 0.2.0 # end of packages # Package flags are applied to individual packages, and override the values of From 157a9e8199b536f029e1e00c46454082a76daa60 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 17 Jun 2019 17:55:48 +0000 Subject: [PATCH 0375/2682] move tasty-lua into expected-test-failures (hslua/tasty-lua#1) --- build-constraints.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 096399c7..c0fdd5de 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4674,9 +4674,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4628 - stack < 2.1.1 - - # https://github.com/hslua/tasty-lua/issues/1 - - tasty-lua < 0.2.0 # end of packages # Package flags are applied to individual packages, and override the values of @@ -5220,6 +5217,7 @@ expected-test-failures: - graylog # 0.1.0.1 https://github.com/fpco/stackage/pull/1254 - tomland # https://github.com/kowainik/tomland/issues/141 - safe-json # 0.1.0 https://github.com/Vlix/safe-json/issues/1 + - tasty-lua # https://github.com/hslua/tasty-lua/issues/1 # Assertion failures, these can be real bugs or just limitations # in the test cases. @@ -5740,6 +5738,7 @@ tell-me-when-its-released: - point-octree-0.5.5.3 # re-enable test and then we can resolve https://github.com/fpco/lts-haskell/issues/27 - yarr-1.4.0.2 # Re-enable package https://github.com/fpco/stackage/issues/1876 - exp-pairs-0.2.0.0 # remove from expected-test-failures, https://github.com/Bodigrim/exp-pairs/issues/16 +- tasty-lua < 0.2.0 # https://github.com/hslua/tasty-lua/issues/1 # Packages which should be hidden after registering, to avoid module name # conflicts. This is intended for at least two use cases: From a2e69bcf61a05d7c651e5f8664c3b4828a729324 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 17 Jun 2019 17:58:39 +0000 Subject: [PATCH 0376/2682] correct tasty-lua in tell-me-when-its-released --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c0fdd5de..92f75863 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5738,7 +5738,7 @@ tell-me-when-its-released: - point-octree-0.5.5.3 # re-enable test and then we can resolve https://github.com/fpco/lts-haskell/issues/27 - yarr-1.4.0.2 # Re-enable package https://github.com/fpco/stackage/issues/1876 - exp-pairs-0.2.0.0 # remove from expected-test-failures, https://github.com/Bodigrim/exp-pairs/issues/16 -- tasty-lua < 0.2.0 # https://github.com/hslua/tasty-lua/issues/1 +- tasty-lua-0.2.0 # https://github.com/hslua/tasty-lua/issues/1 # Packages which should be hidden after registering, to avoid module name # conflicts. This is intended for at least two use cases: From 26b4b84ea108e58752e4c312db2128181c3517a5 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 20 Jun 2019 07:06:21 +0300 Subject: [PATCH 0377/2682] Add time-manager --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 92f75863..1aac885a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -566,6 +566,8 @@ packages: - http-conduit - githash + - time-manager + "Omari Norman @massysett": - rainbow - rainbox From ffb718ad3a10c3f9a715a3d1e867a41f6a667480 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 20 Jun 2019 07:10:56 +0300 Subject: [PATCH 0378/2682] New tasty-lua is available hslua/tasty-lua#1 --- build-constraints.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 419ce4e0..44b6a7c9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5221,7 +5221,6 @@ expected-test-failures: - graylog # 0.1.0.1 https://github.com/fpco/stackage/pull/1254 - tomland # https://github.com/kowainik/tomland/issues/141 - safe-json # 0.1.0 https://github.com/Vlix/safe-json/issues/1 - - tasty-lua # https://github.com/hslua/tasty-lua/issues/1 # Assertion failures, these can be real bugs or just limitations # in the test cases. @@ -5742,7 +5741,6 @@ tell-me-when-its-released: - point-octree-0.5.5.3 # re-enable test and then we can resolve https://github.com/fpco/lts-haskell/issues/27 - yarr-1.4.0.2 # Re-enable package https://github.com/fpco/stackage/issues/1876 - exp-pairs-0.2.0.0 # remove from expected-test-failures, https://github.com/Bodigrim/exp-pairs/issues/16 -- tasty-lua-0.2.0 # https://github.com/hslua/tasty-lua/issues/1 # Packages which should be hidden after registering, to avoid module name # conflicts. This is intended for at least two use cases: From b7bedcb3d5e11127a0023d918cca427eb1b813ca Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 20 Jun 2019 07:35:14 +0300 Subject: [PATCH 0379/2682] Add some more grandfathered deps --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 44b6a7c9..2262cc23 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4012,6 +4012,7 @@ packages: - data-msgpack-types - data-serializer - data-textual + - dec - deepseq-generics - deferred-folds - dense-linear-algebra @@ -4214,6 +4215,7 @@ packages: - safecopy - scientific - securemem + - selective - serialise - servant-client-core - servant-swagger-ui From 9561add40fd2bb7269c1f6d5439111e0323cee17 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 20 Jun 2019 07:36:00 +0300 Subject: [PATCH 0380/2682] More servant bounds --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2262cc23..e33abfe4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4667,6 +4667,8 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4594 - servant < 0.16.1 - servant-server < 0.16.1 + - servant-cli < 0.1.0.1 + - singleton-bool < 0.1.5 # https://github.com/commercialhaskell/stackage/issues/4596 - tls < 1.5.0 From 5c7ff7877836350f35fba50517d4847487ab46eb Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 20 Jun 2019 07:36:20 +0300 Subject: [PATCH 0381/2682] microlens bounds for #4632 --- build-constraints.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index e33abfe4..5d131701 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4682,6 +4682,13 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4619 - hw-balancedparens < 0.2.1.0 + + # https://github.com/commercialhaskell/stackage/issues/4632 + - microlens < 0.4.11 + - microlens-mtl < 0.2 + - microlens-platform < 0.4 + - microlens-ghc < 0.4.11 + - microlens-th < 0.4.3 # end of packages # Package flags are applied to individual packages, and override the values of From b1f1b1d8c43846563b4a4681a0dc9308430a52ed Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 20 Jun 2019 07:36:30 +0300 Subject: [PATCH 0382/2682] hw-packed-vector bound for #4633 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5d131701..c9a79f84 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4689,6 +4689,9 @@ packages: - microlens-platform < 0.4 - microlens-ghc < 0.4.11 - microlens-th < 0.4.3 + + # https://github.com/commercialhaskell/stackage/issues/4633 + - hw-packed-vector < 0.1 # end of packages # Package flags are applied to individual packages, and override the values of From c229918437a10ab63f5fa514e40440828a90195b Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 20 Jun 2019 07:37:13 +0300 Subject: [PATCH 0383/2682] Remove unused Gitlab config --- .gitlab-ci.yml | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 9a45da61..00000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,15 +0,0 @@ -image: fpco/stack-build:lts-12.8 - -cache: - paths: - - $HOME/.stack - - $HOME/.stackage/curator/cache - -stages: - - build - -build: - stage: build - script: - # Edit etc/ci-script.sh to change GHC version - - ./etc/ci-script.sh From 5d14a9abbbbd491beed5e5dac55dc2e8f3c9ddd9 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 20 Jun 2019 07:37:36 +0300 Subject: [PATCH 0384/2682] Only check with new curator tool --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 61a5a326..b37bd3b2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,7 +12,7 @@ addons: matrix: include: - - env: CHECK_SCRIPT="./etc/ci-script.sh" + #- env: CHECK_SCRIPT="./etc/ci-script.sh" - env: CHECK_SCRIPT="./etc/curator-2-check.sh" # Edit etc/ci-script.sh to change GHC version From 4debafa77233e6fbbb6cd18ef220760b810d6df4 Mon Sep 17 00:00:00 2001 From: Kirill Zaborsky Date: Thu, 20 Jun 2019 12:12:20 +0300 Subject: [PATCH 0385/2682] Break some new dependency cycles --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index c9a79f84..a98a7072 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5078,6 +5078,7 @@ skipped-tests: - clock - js-flot - js-jquery + - splitmix # Requires filesystem access - json-autotype @@ -5624,6 +5625,7 @@ skipped-benchmarks: - nanospec - scientific - vector-binary-instances + - clock # end of skipped-benchmarks From 13492e62b0073cb297de397eab2e2b3aa82721f0 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 21 Jun 2019 05:45:35 +0300 Subject: [PATCH 0386/2682] Upper bound on http2 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index a98a7072..5ae70b82 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4692,6 +4692,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4633 - hw-packed-vector < 0.1 + + # New http2 not supported by Warp yet + - http2 < 2 # end of packages # Package flags are applied to individual packages, and override the values of From 3433b88dc168c6ba37eae409c50fd647e9fb6fe3 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 21 Jun 2019 12:47:50 +0000 Subject: [PATCH 0387/2682] Switch nightly over to the new curator tool --- automated/build-next.sh | 26 ++++++++++++++++++++++++++ automated/run-nightly.sh | 6 +++--- 2 files changed, 29 insertions(+), 3 deletions(-) diff --git a/automated/build-next.sh b/automated/build-next.sh index 3fe33c4e..ec6fa26f 100755 --- a/automated/build-next.sh +++ b/automated/build-next.sh @@ -150,5 +150,31 @@ docker run $ARGS_UPLOAD $IMAGE /bin/bash -c "stackage-curator upload-docs --targ # FIXME - add back "stackage-curator hackage-distro --target $TARGET" when we will be ready to publish # information about the new snapshots on Hackage +$BINDIR/stackage-curator legacy-bulk --stackage-snapshots dot-stackage/curator/stackage-snapshots/ --lts-haskell dot-stackage/curator/lts-haskell/ --stackage-nightly dot-stackage/curator/stackage-nightly/ + +( + +if [ $SHORTNAME = "lts" ] +then + cd dot-stackage/curator/lts-haskell +else + cd dot-stackage/curator/stackage-nightly +fi + +git add *.yaml +git diff-index --quiet HEAD && echo No changes && exit 0 +git config user.name "Stackage build server" +git config user.email "michael@snoyman.com" +git commit -a -m "More conversions $(date)" + +if [ $SHORTNAME = "lts" ] +then + GIT_SSH_COMMAND="ssh -i $ROOT/ssh-lts/id_rsa" git push origin master +else + GIT_SSH_COMMAND="ssh -i $ROOT/ssh-nightly/id_rsa" git push origin master +fi + +) + echo -n "Completed at " date diff --git a/automated/run-nightly.sh b/automated/run-nightly.sh index adb03b0e..7b7ca37a 100755 --- a/automated/run-nightly.sh +++ b/automated/run-nightly.sh @@ -3,11 +3,11 @@ cd "$(dirname "${BASH_SOURCE[0]}")" while true; do - ./build.sh nightly-$(date -u +%F) + ./build-next.sh nightly-$(date -u +%F) date - ./new-stackage-format/convert.sh - date + #./new-stackage-format/convert.sh > /dev/null 2> /dev/null + #date sleep 30m echo From 42e58d6f9d6be4acef9c9a1f0b0d2ee360c9c675 Mon Sep 17 00:00:00 2001 From: Kirill Zaborsky Date: Sat, 22 Jun 2019 11:09:33 +0300 Subject: [PATCH 0388/2682] Die on build failure hidden by pipe --- automated/build-next.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automated/build-next.sh b/automated/build-next.sh index ec6fa26f..8cb3c365 100755 --- a/automated/build-next.sh +++ b/automated/build-next.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -set -eu +x +set -eu +x -o pipefail ROOT=$(cd $(dirname $0) ; pwd) TARGET=$1 From baaf6770666624b0d61da5a1d79b3e1a823542df Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 23 Jun 2019 19:32:15 -0700 Subject: [PATCH 0389/2682] Disable tests for blaze-collonade for now (#4639) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5ae70b82..d1b79207 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5346,6 +5346,9 @@ expected-test-failures: # https://github.com/jgm/pandoc/issues/5582 - pandoc + + # Internal errors with move to the new curator tool? + - blaze-collonade # https://github.com/commercialhaskell/stackage/issues/4639 # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From c2373be6d37a9399d8733644070c80170bca9908 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 23 Jun 2019 20:13:43 -0700 Subject: [PATCH 0390/2682] Move blaze-collonade tests to skipped-tests section (#4639) --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d1b79207..10112a08 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5088,6 +5088,9 @@ skipped-tests: # Requires running pg-harness-server - peregrin + + # Internal errors with move to the new curator tool? + - blaze-collonade # https://github.com/commercialhaskell/stackage/issues/4639 # end of skipped-tests # Tests listed in expected-test-failures configure correctly but may fail to run @@ -5346,9 +5349,6 @@ expected-test-failures: # https://github.com/jgm/pandoc/issues/5582 - pandoc - - # Internal errors with move to the new curator tool? - - blaze-collonade # https://github.com/commercialhaskell/stackage/issues/4639 # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 1bafd11534ee85f9269533b5cd4a679e30d8d4b8 Mon Sep 17 00:00:00 2001 From: CristhianMotoche Date: Mon, 24 Jun 2019 15:21:17 -0500 Subject: [PATCH 0391/2682] Add hspec-golden --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 10112a08..5f26e533 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2096,6 +2096,7 @@ packages: - dbcleaner - dotenv - hapistrano + - hspec-golden - inflections - stache - scalendar < 0 From ee9a8ea4756ffbe9752b67d3bb9fae90f49bac8d Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Mon, 24 Jun 2019 18:24:20 -0700 Subject: [PATCH 0392/2682] Disable tests for ghc-exactprint (#4642) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 10112a08..3e10a9d8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5349,6 +5349,9 @@ expected-test-failures: # https://github.com/jgm/pandoc/issues/5582 - pandoc + + # https://github.com/commercialhaskell/stackage/issues/4642 + - ghc-exactprint # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 1369144d2094c054c69792220e4287ebf964f10a Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Mon, 24 Jun 2019 18:26:12 -0700 Subject: [PATCH 0393/2682] Expect test failure for world-peace (#4643) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3e10a9d8..ca509582 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5352,6 +5352,9 @@ expected-test-failures: # https://github.com/commercialhaskell/stackage/issues/4642 - ghc-exactprint + + # https://github.com/commercialhaskell/stackage/issues/4643 + - world-peace # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From ee42d461c1494cdfdd4810a54f93f0d465d02bcc Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Mon, 24 Jun 2019 18:28:53 -0700 Subject: [PATCH 0394/2682] Expect triplesec test failure (#4644) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ca509582..1f7ed008 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5355,6 +5355,9 @@ expected-test-failures: # https://github.com/commercialhaskell/stackage/issues/4643 - world-peace + + # https://github.com/commercialhaskell/stackage/issues/4644 + - triplesec # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From e69a782903721d6578e4bb0ff3132a1068aa00ed Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Mon, 24 Jun 2019 23:57:47 -0700 Subject: [PATCH 0395/2682] Upper bound warp, #4645 --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1f7ed008..596f9f5d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4695,6 +4695,10 @@ packages: # New http2 not supported by Warp yet - http2 < 2 + + # https://github.com/commercialhaskell/stackage/issues/4645 but see + # also http2 < 2 bound above + - warp < 3.3.0 # end of packages # Package flags are applied to individual packages, and override the values of From cfa05ead517f58e77a4ce9691674fc8fc0b6977b Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 25 Jun 2019 00:10:05 -0700 Subject: [PATCH 0396/2682] Expect test failures for singletons (#4646) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 596f9f5d..b8c8ac96 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5362,6 +5362,9 @@ expected-test-failures: # https://github.com/commercialhaskell/stackage/issues/4644 - triplesec + + # https://github.com/commercialhaskell/stackage/issues/4646 + - singletons # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From bf4d24901b449c850ac62ed3a25db1450bcc5735 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 25 Jun 2019 00:13:25 -0700 Subject: [PATCH 0397/2682] Upper bound tls-session-manager (#4647) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index b8c8ac96..aeeca207 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4699,6 +4699,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4645 but see # also http2 < 2 bound above - warp < 3.3.0 + + # https://github.com/commercialhaskell/stackage/issues/4647 + - tls-session-manager < 0.0.2.0 # end of packages # Package flags are applied to individual packages, and override the values of From 38ba6bba4b5e4081a8fe06e2423a0024063e1ad5 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 25 Jun 2019 00:16:16 -0700 Subject: [PATCH 0398/2682] Disable tests for tasty-discover (#4648) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index aeeca207..15da6584 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5098,6 +5098,7 @@ skipped-tests: # Internal errors with move to the new curator tool? - blaze-collonade # https://github.com/commercialhaskell/stackage/issues/4639 + - tasty-discover # https://github.com/commercialhaskell/stackage/issues/4648 # end of skipped-tests # Tests listed in expected-test-failures configure correctly but may fail to run From 4b2c120ddf4166ad222529919b518166292eff54 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 25 Jun 2019 00:17:50 -0700 Subject: [PATCH 0399/2682] Disable tests for show-prettyprint (#4649) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 15da6584..377c43ce 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5099,6 +5099,7 @@ skipped-tests: # Internal errors with move to the new curator tool? - blaze-collonade # https://github.com/commercialhaskell/stackage/issues/4639 - tasty-discover # https://github.com/commercialhaskell/stackage/issues/4648 + - show-prettyprint # https://github.com/commercialhaskell/stackage/issues/4649 # end of skipped-tests # Tests listed in expected-test-failures configure correctly but may fail to run From 7888c506c9877cfb78b66c5014ddd85ca153d0ac Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 25 Jun 2019 00:19:57 -0700 Subject: [PATCH 0400/2682] Disable tests for servant-ruby (#4650) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 377c43ce..db5fc50f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5100,6 +5100,7 @@ skipped-tests: - blaze-collonade # https://github.com/commercialhaskell/stackage/issues/4639 - tasty-discover # https://github.com/commercialhaskell/stackage/issues/4648 - show-prettyprint # https://github.com/commercialhaskell/stackage/issues/4649 + - servant-ruby # https://github.com/commercialhaskell/stackage/issues/4650 # end of skipped-tests # Tests listed in expected-test-failures configure correctly but may fail to run From d44cebc6b3428236f35a31ca0fc364e4523da712 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 25 Jun 2019 00:22:10 -0700 Subject: [PATCH 0401/2682] Disable tests for prettyprinter (#4651) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index db5fc50f..d4be4406 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5101,6 +5101,7 @@ skipped-tests: - tasty-discover # https://github.com/commercialhaskell/stackage/issues/4648 - show-prettyprint # https://github.com/commercialhaskell/stackage/issues/4649 - servant-ruby # https://github.com/commercialhaskell/stackage/issues/4650 + - prettyprinter # https://github.com/commercialhaskell/stackage/issues/4651 # end of skipped-tests # Tests listed in expected-test-failures configure correctly but may fail to run From 46cd65675a28bac2dcc893a045009cc0cee25580 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 25 Jun 2019 00:23:45 -0700 Subject: [PATCH 0402/2682] Disable tests for pretty-simple (#4652) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d4be4406..bede31a6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5102,6 +5102,7 @@ skipped-tests: - show-prettyprint # https://github.com/commercialhaskell/stackage/issues/4649 - servant-ruby # https://github.com/commercialhaskell/stackage/issues/4650 - prettyprinter # https://github.com/commercialhaskell/stackage/issues/4651 + - pretty-simple # https://github.com/commercialhaskell/stackage/issues/4652 # end of skipped-tests # Tests listed in expected-test-failures configure correctly but may fail to run From 01651ce8e7b59ff0034f2f4f3986c0d835095e67 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 25 Jun 2019 00:25:26 -0700 Subject: [PATCH 0403/2682] Disable password-instances tests (#4653) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index bede31a6..17686e44 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5103,6 +5103,7 @@ skipped-tests: - servant-ruby # https://github.com/commercialhaskell/stackage/issues/4650 - prettyprinter # https://github.com/commercialhaskell/stackage/issues/4651 - pretty-simple # https://github.com/commercialhaskell/stackage/issues/4652 + - password-instances # https://github.com/commercialhaskell/stackage/issues/4653 # end of skipped-tests # Tests listed in expected-test-failures configure correctly but may fail to run From 9f8c04086aa81e4e0e19d4b9d77fe904b34eafc2 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 25 Jun 2019 00:27:08 -0700 Subject: [PATCH 0404/2682] Disable tests for password (#4654) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 17686e44..7da9079b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5104,6 +5104,7 @@ skipped-tests: - prettyprinter # https://github.com/commercialhaskell/stackage/issues/4651 - pretty-simple # https://github.com/commercialhaskell/stackage/issues/4652 - password-instances # https://github.com/commercialhaskell/stackage/issues/4653 + - password # https://github.com/commercialhaskell/stackage/issues/4654 # end of skipped-tests # Tests listed in expected-test-failures configure correctly but may fail to run From ed83e9d1deffd20ddcac82e2f448660b45637b34 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 25 Jun 2019 00:29:28 -0700 Subject: [PATCH 0405/2682] Remove mbox-utility (#4655) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7da9079b..42a051af 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -295,7 +295,7 @@ packages: - markov-chain - midi - midi-music-box - - mbox-utility + - mbox-utility < 0 # https://github.com/commercialhaskell/stackage/issues/4655 - med-module - monoid-transformer - non-empty From 363c362857482eaa0f31310539191e5c1ff917b6 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 25 Jun 2019 06:08:48 -0700 Subject: [PATCH 0406/2682] Upper bound hw-rankselect (#4657) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 42a051af..23343fb1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4702,6 +4702,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4647 - tls-session-manager < 0.0.2.0 + + # https://github.com/commercialhaskell/stackage/issues/4657 + - hw-rankselect < 0.13.1.0 # end of packages # Package flags are applied to individual packages, and override the values of From e52729c897b37137e878d9e3b21f8306fe6dc1f1 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 25 Jun 2019 06:17:09 -0700 Subject: [PATCH 0407/2682] Disable tests for #4658, #4659 and #4660 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 23343fb1..5205fea6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5108,6 +5108,9 @@ skipped-tests: - pretty-simple # https://github.com/commercialhaskell/stackage/issues/4652 - password-instances # https://github.com/commercialhaskell/stackage/issues/4653 - password # https://github.com/commercialhaskell/stackage/issues/4654 + - human-readable-duration # https://github.com/commercialhaskell/stackage/issues/4658 + - heterocephalus # https://github.com/commercialhaskell/stackage/issues/4659 + - fmt # https://github.com/commercialhaskell/stackage/issues/4660 # end of skipped-tests # Tests listed in expected-test-failures configure correctly but may fail to run From 6ad1665247ab746293f4855b85a8c6828ca58f62 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 25 Jun 2019 06:19:29 -0700 Subject: [PATCH 0408/2682] Disable tests for haskell-gi (#4661) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5205fea6..c377f7f8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5111,6 +5111,7 @@ skipped-tests: - human-readable-duration # https://github.com/commercialhaskell/stackage/issues/4658 - heterocephalus # https://github.com/commercialhaskell/stackage/issues/4659 - fmt # https://github.com/commercialhaskell/stackage/issues/4660 + - haskell-gi # https://github.com/commercialhaskell/stackage/issues/4661 # end of skipped-tests # Tests listed in expected-test-failures configure correctly but may fail to run From 5f9921dd671419461e789b460f67c40025205ba2 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 25 Jun 2019 06:24:20 -0700 Subject: [PATCH 0409/2682] Upper bound simple-cmd for #4662 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c377f7f8..91601bbd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1406,7 +1406,7 @@ packages: - http-directory - rpmbuild-order - simple-cabal - - simple-cmd + - simple-cmd < 0.2.0.1 # https://github.com/commercialhaskell/stackage/issues/4662 - simple-cmd-args - darcs < 0 From c17dd2fd45776abb0a80f140d9d11175b65a2a90 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 25 Jun 2019 07:00:56 -0700 Subject: [PATCH 0410/2682] Disable tests for libraft (#4664) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 91601bbd..df2d731f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5112,6 +5112,7 @@ skipped-tests: - heterocephalus # https://github.com/commercialhaskell/stackage/issues/4659 - fmt # https://github.com/commercialhaskell/stackage/issues/4660 - haskell-gi # https://github.com/commercialhaskell/stackage/issues/4661 + - libraft # https://github.com/commercialhaskell/stackage/issues/4664 # end of skipped-tests # Tests listed in expected-test-failures configure correctly but may fail to run From c91ac48c5da2359a5e399c2f3ecb1e389242f34e Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 25 Jun 2019 07:07:11 -0700 Subject: [PATCH 0411/2682] Disable stack2nix due to build failure (#4665) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index df2d731f..2327b14a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3652,7 +3652,7 @@ packages: - cachix < 0 - cachix-api - elm2nix - - stack2nix + - stack2nix < 0 # https://github.com/commercialhaskell/stackage/issues/4665 - mixpanel-client < 0 # https://github.com/domenkozar/mixpanel-client/issues/3 - pretty-sop - servant-auth From 09624bc745b9de70e40efbf75adc74357d725e5f Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 25 Jun 2019 07:08:09 -0700 Subject: [PATCH 0412/2682] Actually disable fedora-haskell-tools for #4662 instead of simple-cmd --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2327b14a..911b5f9c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1400,13 +1400,13 @@ packages: "Jens Petersen @juhp": - cabal-rpm - fedora-dists - - fedora-haskell-tools + - fedora-haskell-tools < 0.2.0.1 # https://github.com/commercialhaskell/stackage/issues/4662 - fedora-img-dl - hkgr - http-directory - rpmbuild-order - simple-cabal - - simple-cmd < 0.2.0.1 # https://github.com/commercialhaskell/stackage/issues/4662 + - simple-cmd - simple-cmd-args - darcs < 0 From 37da9449d2dbf040f327c7df94de955d1fd9cfa7 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 25 Jun 2019 07:08:52 -0700 Subject: [PATCH 0413/2682] Properly disable fedora-haskell-tools (#4662) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 911b5f9c..fdde3e33 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1400,7 +1400,7 @@ packages: "Jens Petersen @juhp": - cabal-rpm - fedora-dists - - fedora-haskell-tools < 0.2.0.1 # https://github.com/commercialhaskell/stackage/issues/4662 + - fedora-haskell-tools < 0 # https://github.com/commercialhaskell/stackage/issues/4662 - fedora-img-dl - hkgr - http-directory From 8c21191647498dadbcbcbc28045d6026f0506d22 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 25 Jun 2019 07:11:57 -0700 Subject: [PATCH 0414/2682] Disable cabal-rpm due to #4666" --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index fdde3e33..8b4b4ecb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1398,7 +1398,7 @@ packages: - HaskellNet-SSL < 0 # mime-mail-0.5 via HaskellNet "Jens Petersen @juhp": - - cabal-rpm + - cabal-rpm < 0 # https://github.com/commercialhaskell/stackage/issues/4666 - fedora-dists - fedora-haskell-tools < 0 # https://github.com/commercialhaskell/stackage/issues/4662 - fedora-img-dl From b3f1a7c82106cb446f45736d5b76376a86b38752 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 25 Jun 2019 07:16:57 -0700 Subject: [PATCH 0415/2682] disable tests for #4667, #4668 and #4669 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8b4b4ecb..1e2b7e07 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5113,6 +5113,9 @@ skipped-tests: - fmt # https://github.com/commercialhaskell/stackage/issues/4660 - haskell-gi # https://github.com/commercialhaskell/stackage/issues/4661 - libraft # https://github.com/commercialhaskell/stackage/issues/4664 + - bugsnag-haskell # https://github.com/commercialhaskell/stackage/issues/4667 + - hint # https://github.com/commercialhaskell/stackage/issues/4668 + - envelope # https://github.com/commercialhaskell/stackage/issues/4669 # end of skipped-tests # Tests listed in expected-test-failures configure correctly but may fail to run From e056a93991ad5b19bd1a12619c52eda23eaa3876 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 25 Jun 2019 07:22:30 -0700 Subject: [PATCH 0416/2682] Disable tests for algebraic-graphs (#4670) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1e2b7e07..cfdffbef 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5116,6 +5116,7 @@ skipped-tests: - bugsnag-haskell # https://github.com/commercialhaskell/stackage/issues/4667 - hint # https://github.com/commercialhaskell/stackage/issues/4668 - envelope # https://github.com/commercialhaskell/stackage/issues/4669 + - algebraic-graphs # https://github.com/commercialhaskell/stackage/issues/4670 # end of skipped-tests # Tests listed in expected-test-failures configure correctly but may fail to run From a2c88df346ce3ebee5c532ef46fa7af70fe99c55 Mon Sep 17 00:00:00 2001 From: Sandy Maguire Date: Wed, 26 Jun 2019 01:41:02 -0400 Subject: [PATCH 0417/2682] Add unagi-chan to Sandy Maguire's maintainership --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index cfdffbef..f2c476d9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -24,6 +24,7 @@ packages: - interpolatedstring-qq2 - prospect - do-notation + - unagi-chan "William Yao @williamyaoh": - string-interpolate From 2303368fee837597af7deca1d14e193dfa0d3afb Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 26 Jun 2019 11:27:00 +0300 Subject: [PATCH 0418/2682] Disable polysemy-plugin polysemy-research/polysemy#132 --- build-constraints.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f2c476d9..48765676 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -18,8 +18,11 @@ packages: "Sandy Maguire @isovector": - polysemy - - polysemy-plugin - - polysemy-zoo + + # https://github.com/polysemy-research/polysemy/issues/132 + # - polysemy-plugin + #- polysemy-zoo + - ecstasy - interpolatedstring-qq2 - prospect From 388ebd666827b3a4c73d5646cf56b9b072ddc543 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 26 Jun 2019 10:04:41 +0000 Subject: [PATCH 0419/2682] Get AWS creds from aws.sh --- automated/build-next.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/automated/build-next.sh b/automated/build-next.sh index 8cb3c365..79edd3ba 100755 --- a/automated/build-next.sh +++ b/automated/build-next.sh @@ -5,6 +5,8 @@ set -eu +x -o pipefail ROOT=$(cd $(dirname $0) ; pwd) TARGET=$1 +source aws.sh + # For nightly-YYYY-MM-DD, tag should be nightly # For lts-X.Y, tag should be ltsX SHORTNAME=$(echo $TARGET | cut -d- -f 1) @@ -79,7 +81,7 @@ ARGS_PREBUILD="$ARGS_COMMON -u $USERID -e HOME=$HOME -v $CABAL_DIR:$HOME/.cabal ARGS_BUILD="$ARGS_COMMON -v $CABAL_DIR:$HOME/.cabal:ro -v $GHC_DIR:$HOME/.ghc:ro" # instance-data is an undocumented feature of S3 used by amazonka, # see https://github.com/brendanhay/amazonka/issues/271 -ARGS_UPLOAD="$ARGS_COMMON -u $USERID -e HOME=$HOME -v $HACKAGE_CREDS:/hackage-creds:ro -v $DOT_STACKAGE_DIR:$HOME/.stackage -v $SSH_DIR:$HOME/.ssh:ro -v $GITCONFIG:$HOME/.gitconfig:ro -v $CABAL_DIR:$HOME/.cabal:ro --add-host instance-data:169.254.169.254" +ARGS_UPLOAD="$ARGS_COMMON -u $USERID -e HOME=$HOME -v $HACKAGE_CREDS:/hackage-creds:ro -v $DOT_STACKAGE_DIR:$HOME/.stackage -v $SSH_DIR:$HOME/.ssh:ro -v $GITCONFIG:$HOME/.gitconfig:ro -v $CABAL_DIR:$HOME/.cabal:ro -e AWS_ACCESS_KEY_ID=$AWS_ACCESS_KEY_ID -e AWS_SECRET_ACCESS_KEY=$AWS_SECRET_ACCESS_KEY" # Make sure we actually need this snapshot. We only check this for LTS releases # since, for nightlies, we'd like to run builds even if they are unnecessary to From f126d778a443c688013a61da8d954a945c05cec9 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 26 Jun 2019 19:03:15 +0300 Subject: [PATCH 0420/2682] Revert "Disable polysemy-plugin polysemy-research/polysemy#132" This reverts commit 2303368fee837597af7deca1d14e193dfa0d3afb. --- build-constraints.yaml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 48765676..f2c476d9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -18,11 +18,8 @@ packages: "Sandy Maguire @isovector": - polysemy - - # https://github.com/polysemy-research/polysemy/issues/132 - # - polysemy-plugin - #- polysemy-zoo - + - polysemy-plugin + - polysemy-zoo - ecstasy - interpolatedstring-qq2 - prospect From 43dfe450573eaa92be2d1cd29d5120940a501638 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 26 Jun 2019 16:04:10 +0000 Subject: [PATCH 0421/2682] Extended dockerignore --- .dockerignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.dockerignore b/.dockerignore index 383463ca..6be57529 100644 --- a/.dockerignore +++ b/.dockerignore @@ -6,3 +6,5 @@ cabal.sandbox.config tarballs *.yaml .git +automated +.github From 3eb7e4de7173bed340dda28a85165b143f1b38a3 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 26 Jun 2019 16:04:23 +0000 Subject: [PATCH 0422/2682] Newer convert-old-stackage --- automated/new-stackage-format/convert.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automated/new-stackage-format/convert.sh b/automated/new-stackage-format/convert.sh index 87c21a69..beae82dc 100755 --- a/automated/new-stackage-format/convert.sh +++ b/automated/new-stackage-format/convert.sh @@ -4,7 +4,7 @@ set -eux if [[ ! -f convert ]] then - curl https://s3.amazonaws.com/www.snoyman.com/convert-old-stackage-f780174e2c84e4fb171f6526228d9243beb7fd71.bz2 > convert.bz2 + curl https://s3.amazonaws.com/www.snoyman.com/convert-old-stackage-c9c4d06b31cb7aafedd23aa316b8008c45e4d4dd.bz2 > convert.bz2 chmod +x convert.bz2 bunzip2 convert.bz2 fi From 1d243061369b655c0ca56bbba344d5982a7faa5d Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 26 Jun 2019 17:58:13 -0700 Subject: [PATCH 0423/2682] Upper bound hlint (#4673) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f2c476d9..a056c863 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4706,6 +4706,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4657 - hw-rankselect < 0.13.1.0 + + # https://github.com/commercialhaskell/stackage/issues/4673 + - hlint < 2.2 # end of packages # Package flags are applied to individual packages, and override the values of From b4535b2ecf5c743b770deeacd1f91ae6fb4049af Mon Sep 17 00:00:00 2001 From: David Baynard Date: Tue, 25 Jun 2019 00:08:02 +0100 Subject: [PATCH 0424/2682] Change my email To baynard.dev --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a056c863..ce7e3896 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3848,7 +3848,7 @@ packages: - servant-auth-wordpress - ca-province-codes - "David Baynard @dbaynard": + "David Baynard @dbaynard": - time-qq # see christian-marie/time-qq#3 - ucam-webauth - ucam-webauth-types From d28f8b7e8a5e979647caa214afedf9db99c6768b Mon Sep 17 00:00:00 2001 From: Pierre Radermecker Date: Tue, 25 Jun 2019 15:20:09 +0200 Subject: [PATCH 0425/2682] Re-enable language-puppet --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ce7e3896..e3ccbb5a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4454,7 +4454,6 @@ packages: - amazonka-core < 0 # via http-client-0.6.1 - github < 0 # via http-client-0.6.1 - hailgun < 0 # via http-client-0.6.1 - - language-puppet < 0 # via http-client-0.6.1 - mbug < 0 # via http-client-0.6.1 - antiope-athena < 0 # via amazonka From 33d3cc6c7fa585cefc9d620dc9a5641d9b65d16b Mon Sep 17 00:00:00 2001 From: Emily Pillmore Date: Mon, 24 Jun 2019 01:21:28 -0400 Subject: [PATCH 0426/2682] Add 'lens-process' --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index e3ccbb5a..aa442eb3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -10,6 +10,9 @@ cabal-format-version: "2.4" # Constraints for brand new builds packages: + "Emily Pillmore @topos": + - lens-process + "Matthieu Monsch @mtth": - tracing From 63ca180c6ea2a77f846896d3f6b5259de72448cd Mon Sep 17 00:00:00 2001 From: Emily Pillmore Date: Mon, 24 Jun 2019 12:32:21 -0400 Subject: [PATCH 0427/2682] Add microlens-process --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index aa442eb3..2ee2eed7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -12,6 +12,7 @@ packages: "Emily Pillmore @topos": - lens-process + - microlens-process "Matthieu Monsch @mtth": - tracing From 2910f06c561316902c1e0001164f193c916d2930 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 27 Jun 2019 19:51:49 -0700 Subject: [PATCH 0428/2682] Merge #4637 --- build-constraints.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2ee2eed7..c663c151 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -10,10 +10,13 @@ cabal-format-version: "2.4" # Constraints for brand new builds packages: + "Chris Penner @ChrisPenner": + - lens-regex-pcre + "Emily Pillmore @topos": - lens-process - microlens-process - + "Matthieu Monsch @mtth": - tracing From e967fe65209c553ca52dcc713a43d2da46f1d007 Mon Sep 17 00:00:00 2001 From: Jose Lorenzo Rodriguez Date: Fri, 21 Jun 2019 11:11:36 +0200 Subject: [PATCH 0429/2682] Added hadolint --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index c663c151..00a612de 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3476,6 +3476,7 @@ packages: - language-docker - docker-build-cacher < 0 # GHC 8.4 via turtle - mysql-haskell-nem + - hadolint "Phil Ruffwind @Rufflewind": - blas-hs From 8d0cd17653a803a41d7741e5da2649afffb3efb7 Mon Sep 17 00:00:00 2001 From: Lennart Spitzner Date: Thu, 20 Jun 2019 11:11:43 +0200 Subject: [PATCH 0430/2682] Re-enable brittany --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 00a612de..4b146b62 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3108,7 +3108,7 @@ packages: - butcher - czipwith - data-tree-print - - brittany < 0 # via yaml-0.9.0 commercialhaskell/stackage#3823 + - brittany "Ryan Mulligan @ryantm": - HDBC-mysql From acee425532167a7cff2acb877d1990121dcf4a4f Mon Sep 17 00:00:00 2001 From: Justin Le Date: Wed, 19 Jun 2019 15:22:35 -0700 Subject: [PATCH 0431/2682] add functor-combinators to stackage --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4b146b62..2aff94e5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1948,6 +1948,7 @@ packages: - configurator-export - decidable - emd + - functor-combinators - hamilton - hmatrix-backprop - hmatrix-vector-sized From 8fdda27e05c1ba1c53cd21ea322df94a6ebd1950 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 27 Jun 2019 20:21:41 -0700 Subject: [PATCH 0432/2682] Revert "add functor-combinators to stackage" This reverts commit acee425532167a7cff2acb877d1990121dcf4a4f. --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2aff94e5..4b146b62 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1948,7 +1948,6 @@ packages: - configurator-export - decidable - emd - - functor-combinators - hamilton - hmatrix-backprop - hmatrix-vector-sized From 9bb8776c2a846c35372dc80761f33b6329397578 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Wed, 19 Jun 2019 13:31:54 -0700 Subject: [PATCH 0433/2682] Add gi-dbusmenu, gi-dbusmenugtk3, gi-gdkx11 and gi-xlib @garetxe has volunteered to be the maintainer: See https://github.com/haskell-gi/haskell-gi/issues/235 --- build-constraints.yaml | 6 +++++- debian-bootstrap.sh | 3 ++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4b146b62..f14ed007 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2917,14 +2917,18 @@ packages: - haskell-gi-base - gi-atk - gi-cairo - - gi-glib + - gi-dbusmenu + - gi-dbusmenugtk3 + - gi-gdkx11 - gi-gio + - gi-glib - gi-gobject - gi-gtk - gi-gtk-hs - gi-gtksource - gi-javascriptcore - gi-vte + - gi-xlib # - gi-webkit2 # GHC 8.4 "Brandon Simmons @jberryman": diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index bdd8f27d..c886d7ee 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -42,6 +42,7 @@ apt-get install -y \ gnupg \ gradle \ hscolour \ + libdbusmenu-gtk3-dev \ libadns1-dev \ libaio1 \ libalut-dev \ @@ -92,8 +93,8 @@ apt-get install -y \ libmysqlclient-dev \ libncurses5-dev \ libnfc-dev \ - liboath-dev \ libnotify-dev \ + liboath-dev \ libopenal-dev \ libopenmpi-dev \ libpango1.0-dev \ From c2d862d0cf83c96bb32fce3e00f1ca5793562fbd Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Wed, 19 Jun 2019 14:00:03 -0700 Subject: [PATCH 0434/2682] Add taffybar and dependencies --- build-constraints.yaml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f14ed007..edcca283 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3908,6 +3908,19 @@ packages: "Elben Shira @elben": - pencil + "Ivan Malison @IvanMalison": + - ConfigFile + - dbus-hslogger + - gi-cairo-connector + - gi-cairo-render + - gtk-sni-tray + - gtk-strut + - rate-limit + - status-notifier-item + - taffybar + - time-units + - xml-helpers + "Grandfathered dependencies": - Boolean - ChasingBottoms < 0 # due to QuickCheck, https://github.com/commercialhaskell/stackage/issues/4444 @@ -4432,7 +4445,6 @@ packages: # failed to build - Fin < 0 - HPDF < 0 - - broadcast-chan < 0 - df1 < 0 - di-handle < 0 - exinst < 0 From 227d11caa366055c777417e38404001d8bd67c6b Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 27 Jun 2019 20:35:41 -0700 Subject: [PATCH 0435/2682] Revert "Add taffybar and dependencies" This reverts commit c2d862d0cf83c96bb32fce3e00f1ca5793562fbd. --- build-constraints.yaml | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index edcca283..f14ed007 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3908,19 +3908,6 @@ packages: "Elben Shira @elben": - pencil - "Ivan Malison @IvanMalison": - - ConfigFile - - dbus-hslogger - - gi-cairo-connector - - gi-cairo-render - - gtk-sni-tray - - gtk-strut - - rate-limit - - status-notifier-item - - taffybar - - time-units - - xml-helpers - "Grandfathered dependencies": - Boolean - ChasingBottoms < 0 # due to QuickCheck, https://github.com/commercialhaskell/stackage/issues/4444 @@ -4445,6 +4432,7 @@ packages: # failed to build - Fin < 0 - HPDF < 0 + - broadcast-chan < 0 - df1 < 0 - di-handle < 0 - exinst < 0 From 98363acda36412d4ed0e5ecab88d2c0fc3da2f84 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 27 Jun 2019 20:35:41 -0700 Subject: [PATCH 0436/2682] Revert "Add gi-dbusmenu, gi-dbusmenugtk3, gi-gdkx11 and gi-xlib" This reverts commit 9bb8776c2a846c35372dc80761f33b6329397578. --- build-constraints.yaml | 6 +----- debian-bootstrap.sh | 3 +-- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f14ed007..4b146b62 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2917,18 +2917,14 @@ packages: - haskell-gi-base - gi-atk - gi-cairo - - gi-dbusmenu - - gi-dbusmenugtk3 - - gi-gdkx11 - - gi-gio - gi-glib + - gi-gio - gi-gobject - gi-gtk - gi-gtk-hs - gi-gtksource - gi-javascriptcore - gi-vte - - gi-xlib # - gi-webkit2 # GHC 8.4 "Brandon Simmons @jberryman": diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index c886d7ee..bdd8f27d 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -42,7 +42,6 @@ apt-get install -y \ gnupg \ gradle \ hscolour \ - libdbusmenu-gtk3-dev \ libadns1-dev \ libaio1 \ libalut-dev \ @@ -93,8 +92,8 @@ apt-get install -y \ libmysqlclient-dev \ libncurses5-dev \ libnfc-dev \ - libnotify-dev \ liboath-dev \ + libnotify-dev \ libopenal-dev \ libopenmpi-dev \ libpango1.0-dev \ From a11c68355cd7eaeeba7262efde3ffc4e0daac235 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 27 Jun 2019 20:43:08 -0700 Subject: [PATCH 0437/2682] Try all the internal errors tests at once --- build-constraints.yaml | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4b146b62..43fe018c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5111,23 +5111,23 @@ skipped-tests: - peregrin # Internal errors with move to the new curator tool? - - blaze-collonade # https://github.com/commercialhaskell/stackage/issues/4639 - - tasty-discover # https://github.com/commercialhaskell/stackage/issues/4648 - - show-prettyprint # https://github.com/commercialhaskell/stackage/issues/4649 - - servant-ruby # https://github.com/commercialhaskell/stackage/issues/4650 - - prettyprinter # https://github.com/commercialhaskell/stackage/issues/4651 - - pretty-simple # https://github.com/commercialhaskell/stackage/issues/4652 - - password-instances # https://github.com/commercialhaskell/stackage/issues/4653 - - password # https://github.com/commercialhaskell/stackage/issues/4654 - - human-readable-duration # https://github.com/commercialhaskell/stackage/issues/4658 - - heterocephalus # https://github.com/commercialhaskell/stackage/issues/4659 - - fmt # https://github.com/commercialhaskell/stackage/issues/4660 - - haskell-gi # https://github.com/commercialhaskell/stackage/issues/4661 - - libraft # https://github.com/commercialhaskell/stackage/issues/4664 - - bugsnag-haskell # https://github.com/commercialhaskell/stackage/issues/4667 - - hint # https://github.com/commercialhaskell/stackage/issues/4668 - - envelope # https://github.com/commercialhaskell/stackage/issues/4669 - - algebraic-graphs # https://github.com/commercialhaskell/stackage/issues/4670 + # blaze-collonade # https://github.com/commercialhaskell/stackage/issues/4639 + # tasty-discover # https://github.com/commercialhaskell/stackage/issues/4648 + # show-prettyprint # https://github.com/commercialhaskell/stackage/issues/4649 + # servant-ruby # https://github.com/commercialhaskell/stackage/issues/4650 + # prettyprinter # https://github.com/commercialhaskell/stackage/issues/4651 + # pretty-simple # https://github.com/commercialhaskell/stackage/issues/4652 + # password-instances # https://github.com/commercialhaskell/stackage/issues/4653 + # password # https://github.com/commercialhaskell/stackage/issues/4654 + # human-readable-duration # https://github.com/commercialhaskell/stackage/issues/4658 + # heterocephalus # https://github.com/commercialhaskell/stackage/issues/4659 + # fmt # https://github.com/commercialhaskell/stackage/issues/4660 + # haskell-gi # https://github.com/commercialhaskell/stackage/issues/4661 + # libraft # https://github.com/commercialhaskell/stackage/issues/4664 + # bugsnag-haskell # https://github.com/commercialhaskell/stackage/issues/4667 + # hint # https://github.com/commercialhaskell/stackage/issues/4668 + # envelope # https://github.com/commercialhaskell/stackage/issues/4669 + # algebraic-graphs # https://github.com/commercialhaskell/stackage/issues/4670 # end of skipped-tests # Tests listed in expected-test-failures configure correctly but may fail to run From 3eee5c1f4aa43b6833686232546194beb0b2c044 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 27 Jun 2019 21:33:26 -0700 Subject: [PATCH 0438/2682] Failing tests (pinging #4649, #4651, #4652, #4653, #4661, #4668, #4669, #4670) --- build-constraints.yaml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 43fe018c..9b94fae3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5113,21 +5113,21 @@ skipped-tests: # Internal errors with move to the new curator tool? # blaze-collonade # https://github.com/commercialhaskell/stackage/issues/4639 # tasty-discover # https://github.com/commercialhaskell/stackage/issues/4648 - # show-prettyprint # https://github.com/commercialhaskell/stackage/issues/4649 + - show-prettyprint # https://github.com/commercialhaskell/stackage/issues/4649 # servant-ruby # https://github.com/commercialhaskell/stackage/issues/4650 - # prettyprinter # https://github.com/commercialhaskell/stackage/issues/4651 - # pretty-simple # https://github.com/commercialhaskell/stackage/issues/4652 - # password-instances # https://github.com/commercialhaskell/stackage/issues/4653 + - prettyprinter # https://github.com/commercialhaskell/stackage/issues/4651 + - pretty-simple # https://github.com/commercialhaskell/stackage/issues/4652 + - password-instances # https://github.com/commercialhaskell/stackage/issues/4653 # password # https://github.com/commercialhaskell/stackage/issues/4654 # human-readable-duration # https://github.com/commercialhaskell/stackage/issues/4658 # heterocephalus # https://github.com/commercialhaskell/stackage/issues/4659 # fmt # https://github.com/commercialhaskell/stackage/issues/4660 - # haskell-gi # https://github.com/commercialhaskell/stackage/issues/4661 + - haskell-gi # https://github.com/commercialhaskell/stackage/issues/4661 # libraft # https://github.com/commercialhaskell/stackage/issues/4664 # bugsnag-haskell # https://github.com/commercialhaskell/stackage/issues/4667 - # hint # https://github.com/commercialhaskell/stackage/issues/4668 - # envelope # https://github.com/commercialhaskell/stackage/issues/4669 - # algebraic-graphs # https://github.com/commercialhaskell/stackage/issues/4670 + - hint # https://github.com/commercialhaskell/stackage/issues/4668 + - envelope # https://github.com/commercialhaskell/stackage/issues/4669 + - algebraic-graphs # https://github.com/commercialhaskell/stackage/issues/4670 # end of skipped-tests # Tests listed in expected-test-failures configure correctly but may fail to run From 51ac464b8cae3d6e830d340bf013b5d088a0b03c Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 27 Jun 2019 21:41:36 -0700 Subject: [PATCH 0439/2682] Two more tests that still fails (ping #4650 and #4654) --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9b94fae3..7ee53b5e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5114,11 +5114,11 @@ skipped-tests: # blaze-collonade # https://github.com/commercialhaskell/stackage/issues/4639 # tasty-discover # https://github.com/commercialhaskell/stackage/issues/4648 - show-prettyprint # https://github.com/commercialhaskell/stackage/issues/4649 - # servant-ruby # https://github.com/commercialhaskell/stackage/issues/4650 + - servant-ruby # https://github.com/commercialhaskell/stackage/issues/4650 - prettyprinter # https://github.com/commercialhaskell/stackage/issues/4651 - pretty-simple # https://github.com/commercialhaskell/stackage/issues/4652 - password-instances # https://github.com/commercialhaskell/stackage/issues/4653 - # password # https://github.com/commercialhaskell/stackage/issues/4654 + - password # https://github.com/commercialhaskell/stackage/issues/4654 # human-readable-duration # https://github.com/commercialhaskell/stackage/issues/4658 # heterocephalus # https://github.com/commercialhaskell/stackage/issues/4659 # fmt # https://github.com/commercialhaskell/stackage/issues/4660 From 7c0633e28c0c70a428f041ca412e9d0abdcbbd53 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 27 Jun 2019 21:58:43 -0700 Subject: [PATCH 0440/2682] Re-enable passing tests. Close #4639, close #4648, close #4658, close #4659, close #4660, close #4664, close #4667 --- build-constraints.yaml | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7ee53b5e..c97cba45 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5110,21 +5110,14 @@ skipped-tests: # Requires running pg-harness-server - peregrin - # Internal errors with move to the new curator tool? - # blaze-collonade # https://github.com/commercialhaskell/stackage/issues/4639 - # tasty-discover # https://github.com/commercialhaskell/stackage/issues/4648 + # Test errors with modules not being visible - show-prettyprint # https://github.com/commercialhaskell/stackage/issues/4649 - servant-ruby # https://github.com/commercialhaskell/stackage/issues/4650 - prettyprinter # https://github.com/commercialhaskell/stackage/issues/4651 - pretty-simple # https://github.com/commercialhaskell/stackage/issues/4652 - password-instances # https://github.com/commercialhaskell/stackage/issues/4653 - password # https://github.com/commercialhaskell/stackage/issues/4654 - # human-readable-duration # https://github.com/commercialhaskell/stackage/issues/4658 - # heterocephalus # https://github.com/commercialhaskell/stackage/issues/4659 - # fmt # https://github.com/commercialhaskell/stackage/issues/4660 - haskell-gi # https://github.com/commercialhaskell/stackage/issues/4661 - # libraft # https://github.com/commercialhaskell/stackage/issues/4664 - # bugsnag-haskell # https://github.com/commercialhaskell/stackage/issues/4667 - hint # https://github.com/commercialhaskell/stackage/issues/4668 - envelope # https://github.com/commercialhaskell/stackage/issues/4669 - algebraic-graphs # https://github.com/commercialhaskell/stackage/issues/4670 From ed77102c3ebd79df670c10c94fd13ebfa7394234 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 28 Jun 2019 06:35:53 -0700 Subject: [PATCH 0441/2682] Group hw-* blockers together, ping #4676, #4657, #4619 --- build-constraints.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c97cba45..b6143091 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4690,6 +4690,10 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4619 - hw-balancedparens < 0.2.1.0 + # https://github.com/commercialhaskell/stackage/issues/4676 + - hw-json < 1.1 + # https://github.com/commercialhaskell/stackage/issues/4657 + - hw-rankselect < 0.13.1.0 # https://github.com/commercialhaskell/stackage/issues/4632 - microlens < 0.4.11 @@ -4711,9 +4715,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4647 - tls-session-manager < 0.0.2.0 - # https://github.com/commercialhaskell/stackage/issues/4657 - - hw-rankselect < 0.13.1.0 - # https://github.com/commercialhaskell/stackage/issues/4673 - hlint < 2.2 # end of packages From 52b5acda9d241ce662e5550b4cb7e3615210031f Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 28 Jun 2019 06:41:30 -0700 Subject: [PATCH 0442/2682] Attempt testing parser-combinators-tests (#4540) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b6143091..5f98ef0b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2444,7 +2444,7 @@ packages: - modern-uri - pagination - parser-combinators - # parser-combinators-tests # https://github.com/commercialhaskell/stackage/issues/4540 + - parser-combinators-tests # https://github.com/commercialhaskell/stackage/issues/4540 - path - path-io - req From 40fb3d79a14d98782400fd0838d33c5d334ce7cd Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 28 Jun 2019 06:48:07 -0700 Subject: [PATCH 0443/2682] parser-combinators-tests cannot be tested due to dep issues #4540 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5f98ef0b..b6143091 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2444,7 +2444,7 @@ packages: - modern-uri - pagination - parser-combinators - - parser-combinators-tests # https://github.com/commercialhaskell/stackage/issues/4540 + # parser-combinators-tests # https://github.com/commercialhaskell/stackage/issues/4540 - path - path-io - req From 16c131382313e1215097b7ecbac80ccebd42b8cd Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 28 Jun 2019 17:49:16 -0700 Subject: [PATCH 0444/2682] Upper bound req (#4677) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b6143091..790dfe1d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2447,7 +2447,7 @@ packages: # parser-combinators-tests # https://github.com/commercialhaskell/stackage/issues/4540 - path - path-io - - req + - req < 2.1.0 # https://github.com/commercialhaskell/stackage/issues/4677 - req-conduit - stache - tagged-identity From 87f70f45ea969d6ae5f07acfb524d0e081969740 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 28 Jun 2019 21:29:39 -0700 Subject: [PATCH 0445/2682] Upper bound microlens-process (#4678) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 790dfe1d..0458d2c0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4701,6 +4701,7 @@ packages: - microlens-platform < 0.4 - microlens-ghc < 0.4.11 - microlens-th < 0.4.3 + - microlens-process < 0.2 # https://github.com/commercialhaskell/stackage/issues/4678 # https://github.com/commercialhaskell/stackage/issues/4633 - hw-packed-vector < 0.1 From afa3b628d372310509b1fbf08ee3bb1b49a5e6df Mon Sep 17 00:00:00 2001 From: Matthieu Monsch Date: Fri, 28 Jun 2019 21:44:34 -0700 Subject: [PATCH 0446/2682] Add more-containers https://hackage.haskell.org/package/more-containers --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 790dfe1d..9c514c4e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -18,6 +18,7 @@ packages: - microlens-process "Matthieu Monsch @mtth": + - more-containers - tracing "Robert Vollmert @robx": From 7d3198c262134804f4c2d78c9102fe4190ae3305 Mon Sep 17 00:00:00 2001 From: ARATA Mizuki Date: Mon, 1 Jul 2019 15:42:34 +0900 Subject: [PATCH 0447/2682] Add unboxing-vector --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index a056c863..f9942fa4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3896,6 +3896,9 @@ packages: "Elben Shira @elben": - pencil + "ARATA Mizuki @minoki": + - unboxing-vector + "Grandfathered dependencies": - Boolean - ChasingBottoms < 0 # due to QuickCheck, https://github.com/commercialhaskell/stackage/issues/4444 From 3852cbfee7df23f70f742d87ebab8e0cfa975f41 Mon Sep 17 00:00:00 2001 From: Julien Debon Date: Mon, 1 Jul 2019 09:17:14 +0200 Subject: [PATCH 0448/2682] Add librdkafka to the debian bootstrap Closes #4656. --- debian-bootstrap.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index bdd8f27d..dd06d03d 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -275,6 +275,12 @@ echo /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/server > /etc/ld.so.conf.d/ echo /usr/lib/llvm-3.7/lib > /etc/ld.so.conf.d/llvm.conf ldconfig + +# Install librdkafka (Apache Kafka C/C++ library) +wget -qO - https://packages.confluent.io/deb/5.2/archive.key | apt-key add - +add-apt-repository "deb https://packages.confluent.io/deb/5.2 stable main" +apt-get update && apt install -y librdkafka-dev + # EOF: don't build anything below this line # Cleanup From 84988b5d50110e5ab79f142ed546d37c0284ab15 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 1 Jul 2019 15:39:12 +0300 Subject: [PATCH 0449/2682] bulletproofs upper bound for #4682 --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0458d2c0..b556bde4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2860,7 +2860,8 @@ packages: - repline - picosat < 0 - aos-signature - - bulletproofs + # https://github.com/commercialhaskell/stackage/issues/4682 + - bulletproofs < 1 - pedersen-commitment - merkle-tree - oblivious-transfer From 38bae62da920d64ebfeacfd3e6eed23a12aef903 Mon Sep 17 00:00:00 2001 From: Harendra Kumar Date: Thu, 21 Mar 2019 01:50:06 +0530 Subject: [PATCH 0450/2682] Add bench-show --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index b556bde4..cdd1768a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -438,6 +438,7 @@ packages: - unboxed-ref "Harendra Kumar @harendra-kumar": + - bench-show - monad-recorder - packcheck - streamly From 2c0ec521912021cc2436cd96387706cfa23d13c1 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 2 Jul 2019 08:24:49 +0300 Subject: [PATCH 0451/2682] Exclude two packages for kowainik/typerep-map#77 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index b556bde4..7cae62af 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4649,6 +4649,9 @@ packages: - stm-hamt < 0 - stm-containers < 0 + - typerep-map < 0 # https://github.com/kowainik/typerep-map/issues/77 + - co-log < 0 + # https://github.com/commercialhaskell/stackage/issues/4568 - prettyprinter < 1.3.0 From 6aaafdc130fe3be8c48d1cba7d82baccc5501735 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 2 Jul 2019 08:34:31 +0300 Subject: [PATCH 0452/2682] Upper bound on haskell-lsp for #4684 --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7cae62af..e268e1d0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4722,6 +4722,10 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4673 - hlint < 2.2 + + # https://github.com/commercialhaskell/stackage/issues/4684 + - haskell-lsp < 0.15 + - haskell-lsp-types < 0.15 # end of packages # Package flags are applied to individual packages, and override the values of From 894f99cdb48f86fa839737a04e2e192b4b584f2a Mon Sep 17 00:00:00 2001 From: Dmitrii Kovanikov Date: Tue, 2 Jul 2019 14:14:36 +0800 Subject: [PATCH 0453/2682] Return typerep-map back --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e268e1d0..ccdb4f1d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4649,9 +4649,6 @@ packages: - stm-hamt < 0 - stm-containers < 0 - - typerep-map < 0 # https://github.com/kowainik/typerep-map/issues/77 - - co-log < 0 - # https://github.com/commercialhaskell/stackage/issues/4568 - prettyprinter < 1.3.0 From 04f9c2e09cdbfc12e5bd47f560e6febcb69a0555 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 2 Jul 2019 09:49:04 +0300 Subject: [PATCH 0454/2682] Upper bound due to test suite failure --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ccdb4f1d..6f579c8f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3109,7 +3109,7 @@ packages: - butcher - czipwith - data-tree-print - - brittany + - brittany < 0.12 # https://github.com/lspitzner/brittany/issues/245 "Ryan Mulligan @ryantm": - HDBC-mysql From d06ff03c1efdd290da8bb9979c7e4096868d563e Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 2 Jul 2019 10:06:23 +0300 Subject: [PATCH 0455/2682] Expect test failure for brittany for now --- build-constraints.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6f579c8f..ed9d7546 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3109,7 +3109,7 @@ packages: - butcher - czipwith - data-tree-print - - brittany < 0.12 # https://github.com/lspitzner/brittany/issues/245 + - brittany "Ryan Mulligan @ryantm": - HDBC-mysql @@ -5398,6 +5398,9 @@ expected-test-failures: # https://github.com/commercialhaskell/stackage/issues/4646 - singletons + + # https://github.com/lspitzner/brittany/issues/245 + - brittany # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From d50100b772fb142b652b424305c6256c99508b8f Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 2 Jul 2019 10:14:12 +0300 Subject: [PATCH 0456/2682] Expect more test failure --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ed9d7546..3cb5f409 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5401,6 +5401,9 @@ expected-test-failures: # https://github.com/lspitzner/brittany/issues/245 - brittany + + # Cannot reproduce locally, looks like it may be a bug in Stack or curator + - shake-language-c # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 99c9a9504c1d8902b378850f6bde5249fee9ee87 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 2 Jul 2019 18:45:17 +0300 Subject: [PATCH 0457/2682] Reenable parser-combinators-tests and close #4540 --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3cb5f409..eb9d6daa 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2437,14 +2437,14 @@ packages: - identicon - lame - megaparsec - - megaparsec-tests < 0 # via QuickCheck https://github.com/commercialhaskell/stackage/issues/4444 + - megaparsec-tests - mmark - mmark-cli - mmark-ext - modern-uri - pagination - parser-combinators - # parser-combinators-tests # https://github.com/commercialhaskell/stackage/issues/4540 + - parser-combinators-tests - path - path-io - req < 2.1.0 # https://github.com/commercialhaskell/stackage/issues/4677 From 3d20ae0bf226f877c982112dfc8d05c46f90505d Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 3 Jul 2019 12:05:00 +0300 Subject: [PATCH 0458/2682] Remove upper bounds and close #4557 --- build-constraints.yaml | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 86e23f9b..50ab9e37 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3678,7 +3678,7 @@ packages: "Andre Van Der Merwe @andrevdm": - bhoogle < 0 - - hyraxAbif + - hyraxAbif < 0 # hedgehog, https://github.com/commercialhaskell/stackage/issues/4557#issuecomment-508008224 "David Millar-Durrant @DavidM-D": - indexed-list-literals @@ -4639,14 +4639,6 @@ packages: - persistent-template < 2.7.0 - persistent-typed-db < 0.1.0.0 - # https://github.com/commercialhaskell/stackage/issues/4557 - - hedgehog < 1.0 - - registry < 0.1.5.0 - - hedgehog-fn < 1.0 - - tasty-hedgehog < 1.0 - - tomland < 1.0.1.0 - - nonempty-containers < 0.3.0.0 - # https://github.com/commercialhaskell/stackage/issues/4564 - primitive < 0.7.0.0 - primitive-extras < 0.8 From f10385bc56c9bcffdaedd9f9dc9b1db899611053 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 3 Jul 2019 15:07:13 +0300 Subject: [PATCH 0459/2682] Drop axel axellang/axel#24 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 50ab9e37..d92bf500 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -89,7 +89,7 @@ packages: - parsec-numbers "Joshua Grosso @jgrosso": - - axel + - axel < 0 # https://github.com/axellang/axel/issues/24 "Varun Gandhi @theindigamer": - edit < 0 From 6af4e97af818c6cecdee8b623a396824a729f33e Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 3 Jul 2019 15:07:27 +0300 Subject: [PATCH 0460/2682] Drop rng-utils #4686 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d92bf500..07cdef3c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2727,7 +2727,7 @@ packages: "Ozgun Ataman ozgun.ataman@soostone.com @ozataman": - string-conv - - rng-utils + - rng-utils < 0 # https://github.com/commercialhaskell/stackage/issues/4686 - ua-parser - hs-GeoIP - retry From c9640899f5215980c511f0dea157e08c924d075d Mon Sep 17 00:00:00 2001 From: Sergey Vinokurov Date: Wed, 3 Jul 2019 18:02:42 +0100 Subject: [PATCH 0461/2682] Add sexp-grammar and invertible-grammar back --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 07cdef3c..c65236c1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3714,8 +3714,8 @@ packages: - tasty-ant-xml "Eugene Smolanka @esmolanka": - - sexp-grammar < 0 - - invertible-grammar < 0 + - sexp-grammar + - invertible-grammar "Maximilian Tagher @MaxGabriel": - aeson-iproute From ee5e5a43c7de9e76b68377edf94935b35bcb59d4 Mon Sep 17 00:00:00 2001 From: Sandy Maguire Date: Wed, 3 Jul 2019 14:26:36 -0400 Subject: [PATCH 0462/2682] Add type-errors to Sandy Maguire's maintainership --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 07cdef3c..2ca5698d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -33,6 +33,7 @@ packages: - prospect - do-notation - unagi-chan + - type-errors "William Yao @williamyaoh": - string-interpolate From 85e67babdf668325a5522e4eb02485e3683433ea Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 4 Jul 2019 07:37:16 +0300 Subject: [PATCH 0463/2682] Remove upper bounds and close #4684 --- build-constraints.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 07cdef3c..981c904c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4716,10 +4716,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4673 - hlint < 2.2 - - # https://github.com/commercialhaskell/stackage/issues/4684 - - haskell-lsp < 0.15 - - haskell-lsp-types < 0.15 # end of packages # Package flags are applied to individual packages, and override the values of From 0c3fc9362485fa1ed8f96ec0ad21779090a90730 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 4 Jul 2019 07:45:48 +0300 Subject: [PATCH 0464/2682] Don't expect test failure lspitzner/brittany#245 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 981c904c..7ede31db 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5392,9 +5392,6 @@ expected-test-failures: # https://github.com/commercialhaskell/stackage/issues/4646 - singletons - # https://github.com/lspitzner/brittany/issues/245 - - brittany - # Cannot reproduce locally, looks like it may be a bug in Stack or curator - shake-language-c # end of expected-test-failures From 94ed4b7265de937a4bc27e99d5abd01e549dff19 Mon Sep 17 00:00:00 2001 From: Chris Martin Date: Thu, 4 Jul 2019 01:44:17 -0600 Subject: [PATCH 0465/2682] Add aws-cloudfront-signed-cookies --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3b01fbce..9fa04bd0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3531,6 +3531,7 @@ packages: - path-text-utf8 "Type Classes @argumatronic @chris-martin": + - aws-cloudfront-signed-cookies - stripe-concepts - stripe-signature - stripe-scotty From 1050f395d48a04ff53c49f2c5139215a8cde55f3 Mon Sep 17 00:00:00 2001 From: Chris Martin Date: Thu, 4 Jul 2019 01:50:09 -0600 Subject: [PATCH 0466/2682] Remove "--solver" from testing instructions Addresses #4689 --- MAINTAINERS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MAINTAINERS.md b/MAINTAINERS.md index 901e8d7f..00d09c6f 100644 --- a/MAINTAINERS.md +++ b/MAINTAINERS.md @@ -35,7 +35,7 @@ If you want to be proactive or if CI fails, you can make sure that your package # Build from the tarball on Hackage to check for missing files $ stack unpack yourpackage && cd yourpackage-* # Generate a pristine stack.yaml, adding any missing extra-deps -$ rm -f stack.yaml && stack init --resolver nightly --solver +$ rm -f stack.yaml && stack init --resolver nightly # Build, generate docs, test, and build benchmarks $ stack build --resolver nightly --haddock --test --bench --no-run-benchmarks ``` From 65072f6fa852aab678dc11abc58792cbf9b4fecf Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 5 Jul 2019 16:22:51 +0300 Subject: [PATCH 0467/2682] Upper bound on optparse-applicative for #4693 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9fa04bd0..0befc4b3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4718,6 +4718,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4673 - hlint < 2.2 + + # https://github.com/commercialhaskell/stackage/issues/4693 + - optparse-applicative < 0.15 # end of packages # Package flags are applied to individual packages, and override the values of From f458802d92fbdac5d092fe052c2f9fb5aa2f9850 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 5 Jul 2019 16:26:25 +0300 Subject: [PATCH 0468/2682] polysemy upper bounds for #4694 --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0befc4b3..8bf0e6d7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4721,6 +4721,10 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4693 - optparse-applicative < 0.15 + + # https://github.com/commercialhaskell/stackage/issues/4694 + - polysemy < 0.6 + - polysemy-plugin < 0.2.2 # end of packages # Package flags are applied to individual packages, and override the values of From f72c8504f7bc639db8f6fba74abfae6291becd41 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 5 Jul 2019 16:26:55 +0300 Subject: [PATCH 0469/2682] Add back hyraxAbif --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8bf0e6d7..3840123c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3680,7 +3680,7 @@ packages: "Andre Van Der Merwe @andrevdm": - bhoogle < 0 - - hyraxAbif < 0 # hedgehog, https://github.com/commercialhaskell/stackage/issues/4557#issuecomment-508008224 + - hyraxAbif "David Millar-Durrant @DavidM-D": - indexed-list-literals From a32ef349cc9a7995bc81002a9be10c75bdd90aa1 Mon Sep 17 00:00:00 2001 From: Sandy Maguire Date: Fri, 5 Jul 2019 09:37:26 -0400 Subject: [PATCH 0470/2682] Add loopbreaker to Sandy Maguire's maintainership Fixes #4694 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3840123c..ec17c30b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -34,6 +34,7 @@ packages: - do-notation - unagi-chan - type-errors + - loopbreaker "William Yao @williamyaoh": - string-interpolate From e5b733ae369fada878fa1ad112957f8e57265dcd Mon Sep 17 00:00:00 2001 From: Guru Devanla Date: Sat, 6 Jul 2019 07:46:42 -0700 Subject: [PATCH 0471/2682] Added new package - pandoc-markdown-ghci-filter A pandoc filter that evaluates code in markdown and auto-embeds the output. --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3840123c..401855ce 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3652,6 +3652,7 @@ packages: "Guru Devanla @gdevanla": - pptable - cassava-records + - pandoc-markdown-ghci-filter "Lucas David Traverso @ludat": - map-syntax < 0 # GHC 8.4 via base-4.11.0.0 From 56ecd580b83cc4af62adcf05d114b03a74e0d0d4 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 7 Jul 2019 09:31:16 +0300 Subject: [PATCH 0472/2682] Remove upper bounds and close #4694 --- build-constraints.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ec17c30b..98d9920b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4722,10 +4722,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4693 - optparse-applicative < 0.15 - - # https://github.com/commercialhaskell/stackage/issues/4694 - - polysemy < 0.6 - - polysemy-plugin < 0.2.2 # end of packages # Package flags are applied to individual packages, and override the values of From 5b039a8c34f5e45d18ab448075577550901c9eb9 Mon Sep 17 00:00:00 2001 From: thielema Date: Sun, 7 Jul 2019 11:43:32 +0200 Subject: [PATCH 0473/2682] Update build-constraints.yaml board-games added --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8908729d..d7e3b75e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -276,6 +276,7 @@ packages: - apportionment - audacity - bibtex + - board-games - buffer-pipe - calendar-recycling - checksum From 46f5a90cd6e431b0e797768d078827dcfe419158 Mon Sep 17 00:00:00 2001 From: "(cdep)illabout" Date: Mon, 8 Jul 2019 13:54:35 +0900 Subject: [PATCH 0474/2682] Re-enable servant-checked-exceptions. --- build-constraints.yaml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d7e3b75e..be2b4cc5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2277,19 +2277,16 @@ packages: - irc "Dennis Gosnell @cdepillabout": - - emailaddress < 0 # opaleye - envelope - from-sum - hailgun - - hailgun-simple < 0 # via hailgun - natural-transformation - # - opaleye-trans # product-profunctors 0.9 - password - password-instances - pretty-simple - read-env-var - - servant-checked-exceptions < 0 # https://github.com/cdepillabout/servant-checked-exceptions/issues/29 - - servant-checked-exceptions-core < 0 # servant 0.16 + - servant-checked-exceptions + - servant-checked-exceptions-core - servant-rawm < 0 # https://github.com/cdepillabout/servant-rawm/issues/9 - servant-static-th - termonad < 0 From 149f0c8efd9d128e5853c4999c45e8de58beda4a Mon Sep 17 00:00:00 2001 From: Stephen Diehl Date: Mon, 8 Jul 2019 13:54:58 +0100 Subject: [PATCH 0475/2682] Add galois-field --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d7e3b75e..def102c0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2872,6 +2872,7 @@ packages: - oblivious-transfer - pairing - libraft + - galois-field "Daishi Nakajima @nakaji-dayo": - api-field-json-th From ca1134afea89251e3d2ffb4830695f7017643129 Mon Sep 17 00:00:00 2001 From: Bodigrim Date: Tue, 9 Jul 2019 00:06:34 +0100 Subject: [PATCH 0476/2682] Add poly --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d7e3b75e..978879c6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2988,6 +2988,7 @@ packages: - quickcheck-classes - arithmoi - bitvec + - poly "Ashley Yakeley @AshleyYakeley": - countable From 40498b8b1b3f5c6c93698f15ad7cc5f320192424 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Tue, 9 Jul 2019 11:43:21 +0200 Subject: [PATCH 0477/2682] Remove microlens-process upper bound, closes #4678 --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d7e3b75e..29881425 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4704,7 +4704,6 @@ packages: - microlens-platform < 0.4 - microlens-ghc < 0.4.11 - microlens-th < 0.4.3 - - microlens-process < 0.2 # https://github.com/commercialhaskell/stackage/issues/4678 # https://github.com/commercialhaskell/stackage/issues/4633 - hw-packed-vector < 0.1 From 5af97d59b20a3a0b3a2ee5738e363e456defb413 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Tue, 9 Jul 2019 11:47:52 +0200 Subject: [PATCH 0478/2682] Re-enable show-prettyprint tests, closes #4649 --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 29881425..564fc531 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5118,7 +5118,6 @@ skipped-tests: - peregrin # Test errors with modules not being visible - - show-prettyprint # https://github.com/commercialhaskell/stackage/issues/4649 - servant-ruby # https://github.com/commercialhaskell/stackage/issues/4650 - prettyprinter # https://github.com/commercialhaskell/stackage/issues/4651 - pretty-simple # https://github.com/commercialhaskell/stackage/issues/4652 From 62312201a2cebf76560afd516222a88ba2561849 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Tue, 9 Jul 2019 11:50:12 +0200 Subject: [PATCH 0479/2682] Re-enable prettyprinter tests, closes #4651 --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 564fc531..aef7b146 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5119,7 +5119,6 @@ skipped-tests: # Test errors with modules not being visible - servant-ruby # https://github.com/commercialhaskell/stackage/issues/4650 - - prettyprinter # https://github.com/commercialhaskell/stackage/issues/4651 - pretty-simple # https://github.com/commercialhaskell/stackage/issues/4652 - password-instances # https://github.com/commercialhaskell/stackage/issues/4653 - password # https://github.com/commercialhaskell/stackage/issues/4654 From ce45d19d26399312069984918cf58c0c37d5dbdb Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Tue, 9 Jul 2019 11:52:05 +0200 Subject: [PATCH 0480/2682] Re-enable triplesec tests, closes #4644 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index aef7b146..05e01139 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5391,9 +5391,6 @@ expected-test-failures: # https://github.com/commercialhaskell/stackage/issues/4643 - world-peace - # https://github.com/commercialhaskell/stackage/issues/4644 - - triplesec - # https://github.com/commercialhaskell/stackage/issues/4646 - singletons From a7b3d0848c0968481d0adf7a08502bd8c4b2ebb3 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Tue, 9 Jul 2019 12:02:58 +0200 Subject: [PATCH 0481/2682] Re-enable hint tests, closes #4668 --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c65ff428..75b91a3b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5122,7 +5122,6 @@ skipped-tests: - password-instances # https://github.com/commercialhaskell/stackage/issues/4653 - password # https://github.com/commercialhaskell/stackage/issues/4654 - haskell-gi # https://github.com/commercialhaskell/stackage/issues/4661 - - hint # https://github.com/commercialhaskell/stackage/issues/4668 - envelope # https://github.com/commercialhaskell/stackage/issues/4669 - algebraic-graphs # https://github.com/commercialhaskell/stackage/issues/4670 # end of skipped-tests From 8d1bc96e9188bd01617949824664cb2158aaa55a Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Tue, 9 Jul 2019 12:07:27 +0200 Subject: [PATCH 0482/2682] generic-lens < 1.2.0.0 #4702 --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 75b91a3b..03927292 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4722,6 +4722,10 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4693 - optparse-applicative < 0.15 + + # https://github.com/commercialhaskell/stackage/issues/4702 + - generic-lens < 1.2.0.0 + # end of packages # Package flags are applied to individual packages, and override the values of From 821c342f266898832e6e6d189972872cb8cf4687 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Tue, 9 Jul 2019 12:09:05 +0200 Subject: [PATCH 0483/2682] tomland < 1.1.0.0 #4703 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 03927292..2abcd11d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4726,6 +4726,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4702 - generic-lens < 1.2.0.0 + # https://github.com/commercialhaskell/stackage/issues/4703 + - tomland < 1.1.0.0 + # end of packages # Package flags are applied to individual packages, and override the values of From 5641a69e2bfe224c077aa18e91027f31c5556143 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Tue, 9 Jul 2019 12:26:42 +0200 Subject: [PATCH 0484/2682] New local curator check & instructions --- .gitignore | 3 +++ CURATORS.md | 24 ++++++++++++------------ check | 12 ++++++++++-- 3 files changed, 25 insertions(+), 14 deletions(-) diff --git a/.gitignore b/.gitignore index 9f5a7d4b..eeec85d5 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,6 @@ lts-*.yaml *.swp check-plan.yaml *~ +/constraints.yaml +/snapshot.yaml +/snapshot-incomplete.yaml diff --git a/CURATORS.md b/CURATORS.md index 0ac5ca24..ccf5ce9b 100644 --- a/CURATORS.md +++ b/CURATORS.md @@ -18,8 +18,8 @@ This section sketches out at a high level how the entire Stackage build/curation process works: * [build-constraints.yaml](https://github.com/commercialhaskell/stackage/blob/master/build-constraints.yaml) specifies packages to be included in Stackage -* [stackage-curator](http://www.stackage.org/package/stackage-curator) combines build-constraints.yaml with the current state of Hackage to create a build plan for a Stackage Nightly -* stackage-curator can check that build plan to ensure all version bounds are consistent +* [curator](https://github.com/commercialhaskell/stack/tree/master/subs/curator) combines build-constraints.yaml with the current state of Hackage to create a build plan for a Stackage Nightly +* `curator` can check that build plan to ensure all version bounds are consistent * The [Travis job](https://github.com/commercialhaskell/stackage/blob/master/.travis.yml) performs these two steps to provide immediate feedback on pull requests * Docker Hub [builds](https://github.com/commercialhaskell/stackage/blob/master/Dockerfile) a [Docker image](https://hub.docker.com/r/commercialhaskell/stackage/) for running builds * The stackage-build server (described below) is able to run automated builds using the [build.sh script](https://github.com/commercialhaskell/stackage/blob/master/automated/build.sh) @@ -72,7 +72,7 @@ Most common technique, just prevent a new version of a library from being included immediately. This also applies to when only benchmarks and tests are affected. -* Copy the stackage-curator output and create a new issue, see e.g +* Copy the `curator` output and create a new issue, see e.g https://github.com/commercialhaskell/stackage/issues/2108 * Add a new entry under the "stackage upper bounds" section of `build-constraints.yaml`. For the above example it would be @@ -84,7 +84,7 @@ https://github.com/commercialhaskell/stackage/issues/2108 ``` * Commit (message e.g. "Upper bound for #2108") -* Optionally: Verify with `stackage-curator check` locally +* Optionally: Verify with `./check` locally * Push * Verify that everything works on the build server (you can restart the build or wait for it to to run again) @@ -110,7 +110,7 @@ new package may appear if its dependencies were part of this issue but have been updated since the last time we checked. We want to give these new packages ample time to be upgraded. -If stackage-curator is happy commit the change ("Remove upper bounds +If `curator` is happy commit the change ("Remove upper bounds and close #X"). After doing this the next nightly build may fail because some packages didn't have an upper bound in place, but compilation failed. In this case revert the previous commit so any @@ -367,30 +367,30 @@ We do not run the full stackage build locally as that might take too much time. However, some steps on the other hand are much faster to do yourself, e.g. verifying constraints without building anything. -To get started, install `stackage-curator` via Git, or [the Linux binary]: +To get started, install `curator` via Git: ``` -$ git clone git@github.com:fpco/stackage-curator.git -$ cd stackage-curator && stack install +$ git clone git@github.com:commercialhaskell/stack.git +$ cd stack && stack install curator ``` -It is a good idea to upgrade `stackage-curator` at the start of your week. +It is a good idea to upgrade `curator` at the start of your week. Then, clone the stackage repo, get the latest packages and run dependency resolution: ``` $ git clone git@github.com:commercialhaskell/stackage.git -$ stack update && stackage-curator check +$ cd stackage +$ ./check ``` This can be used to make sure all version bounds are in place, including for test suites and benchmarks, to check whether bounds can be lifted, and to get [tell-me-when-its-released] notifications. -`stackage-curator` does not build anything, so you wont see any compilation +`curator` does not build anything, so you wont see any compilation errors for builds, tests and benchmarks. -[the Linux binary]: https://s3.amazonaws.com/stackage-travis/stackage-curator/stackage-curator.bz2 [tell-me-when-its-released]: https://github.com/commercialhaskell/stackage/blob/master/CURATORS.md#waiting-for-new-releases ## Adding new curators diff --git a/check b/check index b28ba8bb..93a215e9 100755 --- a/check +++ b/check @@ -1,6 +1,14 @@ -#!/bin/sh +#!/bin/bash # Convenience script for checking constraints locally cd `dirname $0` -exec stack exec --resolver ghc-8.6.5 stackage-curator check + +export GHCVER=$(sed -n "s/^ghc-version: \"\(.*\)\"/\1/p" "build-constraints.yaml") + +NIGHTLY="nightly-$(date +%Y-%m-%d)" +curator update && + curator constraints --target=$NIGHTLY && + curator snapshot-incomplete && + curator snapshot && + stack --resolver ghc-$GHCVER exec curator check-snapshot From 08b460770fc79a6aac55767b7e73c39cf2a4b6d0 Mon Sep 17 00:00:00 2001 From: Chris Martin Date: Tue, 9 Jul 2019 13:17:10 -0600 Subject: [PATCH 0485/2682] re-enable safe-money --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2abcd11d..ed7b76d9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1463,7 +1463,7 @@ packages: - pipes-binary - pipes-network - pipes-network-tls - - safe-money < 0 + - safe-money - vector-bytes-instances - xmlbf-xeno - xmlbf-xmlhtml < 0 # GHC 8.4 via xmlhtml via hspec-2.5.0 From c90c8940371e5d20a858f1c808f5892730923a7e Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Wed, 10 Jul 2019 12:56:31 +0200 Subject: [PATCH 0486/2682] Expect dhall tests to fail --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2abcd11d..971a89d9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5401,6 +5401,9 @@ expected-test-failures: # Cannot reproduce locally, looks like it may be a bug in Stack or curator - shake-language-c + + # https://github.com/commercialhaskell/stackage/issues/4706 + - dhall # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 7b47498e817d8ea8d752e045291dde52a3292777 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Wed, 10 Jul 2019 13:02:52 +0200 Subject: [PATCH 0487/2682] Expect blaze-colonnade tests to fail #4707 --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 971a89d9..47ac97c9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5404,6 +5404,10 @@ expected-test-failures: # https://github.com/commercialhaskell/stackage/issues/4706 - dhall + + # https://github.com/commercialhaskell/stackage/issues/4707 + - blaze-colonnade + # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 2241c6b5fea442f509d707137e47b520b1aba560 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Wed, 10 Jul 2019 13:16:16 +0200 Subject: [PATCH 0488/2682] Expect polysemy-zoo tests to fail #4708 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 47ac97c9..32e48573 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5408,6 +5408,9 @@ expected-test-failures: # https://github.com/commercialhaskell/stackage/issues/4707 - blaze-colonnade + # https://github.com/commercialhaskell/stackage/issues/4708 + - polysemy-zoo + # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 751d94d99554fd50ca330d7892f97fbd272dd134 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Wed, 10 Jul 2019 13:39:58 +0200 Subject: [PATCH 0489/2682] base-unicode-symbols < 0.2.4 #4709 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 32e48573..35b6d2e0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4729,6 +4729,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4703 - tomland < 1.1.0.0 + # https://github.com/commercialhaskell/stackage/issues/4709 + - base-unicode-symbols < 0.2.4 + # end of packages # Package flags are applied to individual packages, and override the values of From c8f53466ec68359a0692d17024350fc08c14c1e2 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Wed, 10 Jul 2019 15:36:37 +0200 Subject: [PATCH 0490/2682] Issue Cleanup. Close #4523, close #4580, close #4588, close #4591, close #4592, close #4613, close #4647. --- build-constraints.yaml | 39 ++++++++------------------------------- 1 file changed, 8 insertions(+), 31 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index eda453b8..cba624dc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4048,6 +4048,7 @@ packages: - easytest - ed25519 - edit-distance + - elm-bridge - enclosed-exceptions - entropy - erf @@ -4068,6 +4069,7 @@ packages: - fmlist - friendly-time - functor-classes-compat + - functor-combinators - generic-arbitrary - generics-sop-lens - ghc-compact @@ -4313,6 +4315,7 @@ packages: - tonatona - transformers-base - tree-diff + - trivial-constraint - true-name - tuple-th - type-fun @@ -4592,8 +4595,9 @@ packages: - hsdev < 0.3.3.0 - network-bsd < 2.8.1.0 - MissingH < 1.4.2.0 - - dbus < 1.2.8 # https://github.com/commercialhaskell/stackage/issues/4599 - - xml-conduit < 1.9 # https://github.com/commercialhaskell/stackage/issues/4570 + - dbus < 1.2.8 + - xml-conduit < 1.9 + - systemd < 2 # https://github.com/simonmichael/hledger/issues/983 - easytest < 0.3 @@ -4604,9 +4608,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4519 - case-insensitive < 1.2.1 - # https://github.com/commercialhaskell/stackage/issues/4523 - - doctest < 0.16.1 - # https://github.com/commercialhaskell/stackage/issues/4527 - generics-sop < 0.5 - sop-core < 0.5 @@ -4662,22 +4663,7 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4579 - quickcheck-classes < 0.6.2.0 - # https://github.com/commercialhaskell/stackage/issues/4580 - - http-api-data < 0.4.1 - - # https://github.com/commercialhaskell/stackage/issues/4588 - - systemd < 2 - - # https://github.com/commercialhaskell/stackage/issues/4591 - - servant-elm < 0.6 - - # https://github.com/commercialhaskell/stackage/issues/4592 - - swagger2 < 2.4 - # https://github.com/commercialhaskell/stackage/issues/4594 - - servant < 0.16.1 - - servant-server < 0.16.1 - - servant-cli < 0.1.0.1 - singleton-bool < 0.1.5 # https://github.com/commercialhaskell/stackage/issues/4596 @@ -4687,9 +4673,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4604 - inline-c < 0.8 - # https://github.com/commercialhaskell/stackage/issues/4613 - - fixed < 0.3 - # https://github.com/commercialhaskell/stackage/issues/4619 - hw-balancedparens < 0.2.1.0 # https://github.com/commercialhaskell/stackage/issues/4676 @@ -4707,15 +4690,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4633 - hw-packed-vector < 0.1 - # New http2 not supported by Warp yet - - http2 < 2 - - # https://github.com/commercialhaskell/stackage/issues/4645 but see - # also http2 < 2 bound above + # https://github.com/commercialhaskell/stackage/issues/4645 - warp < 3.3.0 - - # https://github.com/commercialhaskell/stackage/issues/4647 - - tls-session-manager < 0.0.2.0 + - http2 < 2 # https://github.com/commercialhaskell/stackage/issues/4673 - hlint < 2.2 From 2402b9825a82d66372b612a8ee15b7fe21d207f9 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Wed, 10 Jul 2019 15:40:37 +0200 Subject: [PATCH 0491/2682] Remove outdated safe-money flag --- build-constraints.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index cba624dc..e08cf598 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4802,10 +4802,6 @@ package-flags: # https://github.com/haskell/cabal/issues/4883 native-dns: false - # https://github.com/commercialhaskell/stackage/issues/3666 - safe-money: - serialise: false - # https://github.com/fpco/stackage/issues/3619 transformers-compat: five-three: true From ee3406637b84384439333ac059dd1eee260eb1ee Mon Sep 17 00:00:00 2001 From: Brandon Chinn Date: Wed, 10 Jul 2019 19:49:29 +0200 Subject: [PATCH 0492/2682] Add th-test-utils --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index e08cf598..2892d511 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3913,6 +3913,9 @@ packages: "ARATA Mizuki @minoki": - unboxing-vector + + "Brandon Chinn @brandon-leapyear": + - th-test-utils "Grandfathered dependencies": - Boolean From efa66d942565d2b658c1286c4ae1e14d2dfb35da Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Thu, 11 Jul 2019 00:04:43 +0200 Subject: [PATCH 0493/2682] Disable hledger-api due to build failure --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e08cf598..1affdf50 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1186,7 +1186,7 @@ packages: - hledger - hledger-ui < 0 # via brick, via data-clist, via QuickCheck https://github.com/commercialhaskell/stackage/issues/4444 - hledger-web - - hledger-api + - hledger-api < 0 # build failure against swagger2 # - quickbench - regex-compat-tdfa From 7a131921bf5e75d7d9bb86e5e5b70d31eaf4daa9 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Thu, 11 Jul 2019 12:24:53 +0200 Subject: [PATCH 0494/2682] Re-enable polysemy-zoo tests, closes #4708 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6f5224fe..42973baf 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5387,9 +5387,6 @@ expected-test-failures: # https://github.com/commercialhaskell/stackage/issues/4707 - blaze-colonnade - # https://github.com/commercialhaskell/stackage/issues/4708 - - polysemy-zoo - # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 28b833ea9e12409fb641c87b457ff7dbb4d38831 Mon Sep 17 00:00:00 2001 From: Akshay Mankar Date: Thu, 11 Jul 2019 19:11:49 +0100 Subject: [PATCH 0495/2682] Add jsonpath --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 42973baf..f4cddc78 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3917,6 +3917,9 @@ packages: "Brandon Chinn @brandon-leapyear": - th-test-utils + "Akshay Mankar @akshaymankar": + - jsonpath + "Grandfathered dependencies": - Boolean - ChasingBottoms < 0 # due to QuickCheck, https://github.com/commercialhaskell/stackage/issues/4444 From da18dfa66af3b354bbf8e2d977f88eb21777c739 Mon Sep 17 00:00:00 2001 From: Andrew Cowie Date: Fri, 12 Jul 2019 23:29:49 +1000 Subject: [PATCH 0496/2682] Replace unbeliever package with core-text, core-data, core-program --- build-constraints.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 42973baf..12e6a4dc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2348,7 +2348,9 @@ packages: - http-common - http-streams - locators - - unbeliever + - core-text + - core-data + - core-program "Sean Hunt Date: Fri, 12 Jul 2019 16:02:58 +0200 Subject: [PATCH 0497/2682] trivial-constraint < 0.6.0.0 #4713 --- build-constraints.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5ceaabab..4318bee8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3915,7 +3915,7 @@ packages: "ARATA Mizuki @minoki": - unboxing-vector - + "Brandon Chinn @brandon-leapyear": - th-test-utils @@ -4717,6 +4717,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4709 - base-unicode-symbols < 0.2.4 + # https://github.com/commercialhaskell/stackage/issues/4713 + - trivial-constraint < 0.6.0.0 + # end of packages # Package flags are applied to individual packages, and override the values of From 01d64b5df69e1b3720a75eecc3f95a4138c6ed57 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sun, 14 Jul 2019 00:46:36 +0200 Subject: [PATCH 0498/2682] Add pantry and mega-sdist for newest stack --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4318bee8..ed4fb333 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -580,7 +580,9 @@ packages: - githash - time-manager + - pantry - pantry-tmp + - mega-sdist - http-download - hi-file-parser - rio-prettyprint @@ -5229,6 +5231,7 @@ expected-test-failures: - odbc # "Need ODBC_TEST_CONNECTION_STRING environment variable" - opaleye # PostgreSQL - pandoc-pyplot # requires DISPLAY for tcltk + - pantry # https://github.com/commercialhaskell/stackage/issues/4628 - pantry-tmp # https://github.com/commercialhaskell/stackage/issues/4628 - persistent-redis # redis - https://github.com/fpco/stackage/pull/1581 - pipes-mongodb @@ -5892,6 +5895,7 @@ no-revisions: - gauge - stack - http-download +- pantry - pantry-tmp - rio-prettyprint - hi-file-parser From 69ca4fc578e92f216e8fea6358b134f6acb85dd4 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sun, 14 Jul 2019 00:47:38 +0200 Subject: [PATCH 0499/2682] Remove trivial-constraint upper bound, closes #4713 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ed4fb333..91e1dece 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4719,9 +4719,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4709 - base-unicode-symbols < 0.2.4 - # https://github.com/commercialhaskell/stackage/issues/4713 - - trivial-constraint < 0.6.0.0 - # end of packages # Package flags are applied to individual packages, and override the values of From 7b448d46407a4f8e3a83e6c6cc4fe0fdd25f6c87 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sun, 14 Jul 2019 01:05:50 +0200 Subject: [PATCH 0500/2682] Upgrade req and disable req-url-extra, closes #4677 --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 91e1dece..12746787 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -259,7 +259,7 @@ packages: "Richard Cook @rcook": - hidden-char - oset - - req-url-extra + - req-url-extra < 0 # req < 2.1.0 - sexpr-parser "Vanessa McHale @vmchale": @@ -2453,7 +2453,7 @@ packages: - parser-combinators-tests - path - path-io - - req < 2.1.0 # https://github.com/commercialhaskell/stackage/issues/4677 + - req - req-conduit - stache - tagged-identity From e37d0471df5b9d174da5d03acffc782fcf037bdc Mon Sep 17 00:00:00 2001 From: Emanuel Borsboom Date: Sun, 14 Jul 2019 09:59:01 -0700 Subject: [PATCH 0501/2682] Remove 'pantry-tmp' It has been replaced by `pantry`, and will no longer get updated. --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 12746787..a971ef36 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -581,7 +581,6 @@ packages: - time-manager - pantry - - pantry-tmp - mega-sdist - http-download - hi-file-parser @@ -5229,7 +5228,6 @@ expected-test-failures: - opaleye # PostgreSQL - pandoc-pyplot # requires DISPLAY for tcltk - pantry # https://github.com/commercialhaskell/stackage/issues/4628 - - pantry-tmp # https://github.com/commercialhaskell/stackage/issues/4628 - persistent-redis # redis - https://github.com/fpco/stackage/pull/1581 - pipes-mongodb - postgresql-query # PostgreSQL @@ -5893,7 +5891,6 @@ no-revisions: - stack - http-download - pantry -- pantry-tmp - rio-prettyprint - hi-file-parser # https://github.com/commercialhaskell/stackage/issues/3706: From 68c57f92513a974d7ce497fc97ce97c2a812e4ba Mon Sep 17 00:00:00 2001 From: Dmitrii Kovanikov Date: Mon, 15 Jul 2019 14:55:04 +0800 Subject: [PATCH 0502/2682] Add type-errors-pretty --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 12746787..a3884c59 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3468,6 +3468,9 @@ packages: - tomland - typerep-map + "Dmitrii Kovanikov @chshersh": + - type-errors-pretty + "Holmusk @arbus": - elm-street From c034b91316a748b5ffdf4f5dc7a82d815f4716c5 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 15 Jul 2019 19:52:20 +0200 Subject: [PATCH 0503/2682] rio < 0.1.11.0 for #4716 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 12746787..140fa58e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4719,6 +4719,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4709 - base-unicode-symbols < 0.2.4 + # https://github.com/commercialhaskell/stackage/issues/4716 + - rio < 0.1.11.0 + # end of packages # Package flags are applied to individual packages, and override the values of From 5697d180f08365e2762fb786f2851bcd8fbb7ca1 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Tue, 16 Jul 2019 03:52:43 +0100 Subject: [PATCH 0504/2682] update issue link for easytest --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 50b0380a..6e97d03a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4611,7 +4611,7 @@ packages: - xml-conduit < 1.9 - systemd < 2 - # https://github.com/simonmichael/hledger/issues/983 + # https://github.com/simonmichael/hledger/pull/987 - easytest < 0.3 # https://github.com/commercialhaskell/stackage/issues/4484 From cbbf7caa78721c6a692e8c9a85f1e434aedd8634 Mon Sep 17 00:00:00 2001 From: Ryan Scott Date: Tue, 16 Jul 2019 11:00:08 -0400 Subject: [PATCH 0505/2682] Make myself the maintainer of ordered-containers The next version of `th-desugar` will depend on the `ordered-containers` library (goldfirere/th-desugar#120). I believe Stackage requires that all dependencies explicitly be listed out in `build-constraints.yaml` nowadays, so I'm preemptively adding `ordered-containers` now so that there aren't issues once the next `th-desugar` release happens. --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6e97d03a..ee63fc13 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2169,6 +2169,7 @@ packages: - monad-par - monad-par-extras - mtl-compat + - ordered-containers - proxied - singleton-nats - text-show From 78655fad0f7d39d2aed47e8260d72867247ff5a6 Mon Sep 17 00:00:00 2001 From: Moritz Kiefer Date: Tue, 16 Jul 2019 19:53:04 +0200 Subject: [PATCH 0506/2682] Add llvm-hs back to stackage --- build-constraints.yaml | 2 +- debian-bootstrap.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ee63fc13..87d2c4ae 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3053,7 +3053,7 @@ packages: "Moritz Kiefer @cocreature": - lrucaching - - llvm-hs < 0 # https://github.com/commercialhaskell/stackage/issues/4238 + - llvm-hs - llvm-hs-pure "Thierry Bourrillon @tbourrillon": diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index dd06d03d..1b5a6433 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -165,11 +165,11 @@ ACCEPT_EULA=Y apt-get install msodbcsql17 -y locale-gen en_US.UTF-8 -# llvm-7.0 for llvm-hs (separate since it needs wget) +# llvm-8.0 for llvm-hs (separate since it needs wget) wget -O - http://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - \ && add-apt-repository "deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-7 main" \ && apt-get update \ - && apt-get install -y llvm-7 + && apt-get install -y llvm-8 # Buggy versions of ld.bfd fail to link some Haskell packages: # https://sourceware.org/bugzilla/show_bug.cgi?id=17689. Gold is From 09258003cc6879bc69d2a5188cc4369e77bdae3f Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Tue, 16 Jul 2019 15:22:07 -0700 Subject: [PATCH 0507/2682] Remove upper bound for rio, closes #4716 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 87d2c4ae..8c2dcd29 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4722,9 +4722,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4709 - base-unicode-symbols < 0.2.4 - # https://github.com/commercialhaskell/stackage/issues/4716 - - rio < 0.1.11.0 - # end of packages # Package flags are applied to individual packages, and override the values of From 3772ea1a3142f05dae44412750e36da2bbbefed0 Mon Sep 17 00:00:00 2001 From: Matt Parsons Date: Tue, 16 Jul 2019 18:04:32 -0600 Subject: [PATCH 0508/2682] Add persistent-pagination --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8c2dcd29..25130e5b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2190,6 +2190,7 @@ packages: - esqueleto - persistent-typed-db - persistent-qq + - persistent-pagination "Matthew Pickering @mpickering": - refact From 0938c7e8205f6efbc4de42d2770542552ccd0db5 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Wed, 17 Jul 2019 06:51:51 -0700 Subject: [PATCH 0509/2682] Expect codec-beam test failure --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 25130e5b..0c3f1ac1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5398,6 +5398,9 @@ expected-test-failures: # https://github.com/commercialhaskell/stackage/issues/4707 - blaze-colonnade + # https://github.com/commercialhaskell/stackage/issues/4721 + - codec-beam + # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 33f775ebb85daf002e1965edefc48125de5b874e Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Wed, 17 Jul 2019 06:57:41 -0700 Subject: [PATCH 0510/2682] Expect test failure for tasty-discover --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0c3f1ac1..ac8b60da 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5401,6 +5401,9 @@ expected-test-failures: # https://github.com/commercialhaskell/stackage/issues/4721 - codec-beam + # https://github.com/commercialhaskell/stackage/issues/4722 + - tasty-discover + # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 681ca3f5276ba335f4793a48a543c6ba2118efad Mon Sep 17 00:00:00 2001 From: Amit Levy Date: Wed, 17 Jul 2019 15:30:29 -0400 Subject: [PATCH 0511/2682] Re-enable simple web framework Build failure for simple-templates fixed in version >=0.9 which should resolve build failures for dependent `simple and `simple-postgresql-orm` --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ac8b60da..751dbf54 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2668,9 +2668,9 @@ packages: - dawg-ord < 0 "Amit Levy @alevy": - - simple < 0 # GHC 8.4 via simple-templates - - simple-templates < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build - - simple-session < 0 # GHC 8.4 via simple + - simple + - simple-templates + - simple-session - postgresql-orm "Sergey Astanin @astanin": From 3440db5005ccba0b5e11e1e46aab76cd712078a8 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Wed, 17 Jul 2019 21:12:40 -0700 Subject: [PATCH 0512/2682] Remove upper bound for tomland, closes #4703 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 751dbf54..8be5c36a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4717,9 +4717,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4702 - generic-lens < 1.2.0.0 - # https://github.com/commercialhaskell/stackage/issues/4703 - - tomland < 1.1.0.0 - # https://github.com/commercialhaskell/stackage/issues/4709 - base-unicode-symbols < 0.2.4 From 89c547602d030b52c8339fdf5b9d2f06ff0960d1 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Thu, 18 Jul 2019 21:28:27 -0700 Subject: [PATCH 0513/2682] Add an upper bound for chronos, #4724 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8be5c36a..554015a7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4720,6 +4720,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4709 - base-unicode-symbols < 0.2.4 + # https://github.com/commercialhaskell/stackage/issues/4724 + - chronos < 1.0.6 + # end of packages # Package flags are applied to individual packages, and override the values of From 23cbfa71f58e76abe7642774f0ba9a9c6f5682d5 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Thu, 18 Jul 2019 22:30:42 -0700 Subject: [PATCH 0514/2682] Remove upper bound for chronos, closes #4724 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 554015a7..8be5c36a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4720,9 +4720,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4709 - base-unicode-symbols < 0.2.4 - # https://github.com/commercialhaskell/stackage/issues/4724 - - chronos < 1.0.6 - # end of packages # Package flags are applied to individual packages, and override the values of From 55d563de419800d3cbba6816533ca7de16d67a2a Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Fri, 19 Jul 2019 08:56:15 -0700 Subject: [PATCH 0515/2682] Add upper bounds for lens-family packages, #4725 --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8be5c36a..e8dfa9c7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4720,6 +4720,10 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4709 - base-unicode-symbols < 0.2.4 + # https://github.com/commercialhaskell/stackage/issues/4725 + - lens-family < 2 + - lens-family-core < 2 + # end of packages # Package flags are applied to individual packages, and override the values of From 69806ed08a92ac87619ed7e1307ee95e7ce4839f Mon Sep 17 00:00:00 2001 From: Matthieu Monsch Date: Sat, 29 Jun 2019 15:03:25 -0700 Subject: [PATCH 0516/2682] Add flags-applicative http://hackage.haskell.org/package/flags-applicative --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index e8dfa9c7..f521847f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -18,6 +18,7 @@ packages: - microlens-process "Matthieu Monsch @mtth": + - flags-applicative - more-containers - tracing From d4143f1845f26e8e99d0a1a8134d6ff535ab98b2 Mon Sep 17 00:00:00 2001 From: Kofi Gumbs Date: Sun, 21 Jul 2019 20:19:34 -0500 Subject: [PATCH 0517/2682] Fix erlang installation --- debian-bootstrap.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index 1b5a6433..a78ba4c9 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -217,10 +217,9 @@ echo "/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/server/" > /etc/ld.so.conf && ldconfig # Install erlang/otp platform and its dependencies -ERLANG_VERSION="20.2.2" -ERLANG_DEB_FILE="esl-erlang_21.2-1~ubuntu~bionic_amd64.deb" +ERLANG_DEB_FILE="esl-erlang_21.1-1~ubuntu~bionic_amd64.deb" pushd /tmp \ - && wget http://packages.erlang-solutions.com/site/esl/esl-erlang/FLAVOUR_1_general/${ERLANG_DEB_FILE} \ + && wget https://packages.erlang-solutions.com/erlang/debian/pool/${ERLANG_DEB_FILE} \ && (dpkg -i ${ERLANG_DEB_FILE}; apt-get install -yf) \ && rm ${ERLANG_DEB_FILE} \ && popd From c8989fb8dd181f066de313b86733e3cc22b84339 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Sun, 21 Jul 2019 21:06:51 -0700 Subject: [PATCH 0518/2682] Don't expect a test failure for codec-beam, #4721 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f521847f..6575835c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5400,9 +5400,6 @@ expected-test-failures: # https://github.com/commercialhaskell/stackage/issues/4707 - blaze-colonnade - # https://github.com/commercialhaskell/stackage/issues/4721 - - codec-beam - # https://github.com/commercialhaskell/stackage/issues/4722 - tasty-discover From 102b561fcfa1c64d97a0abb4782220397cfcea98 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 22 Jul 2019 05:22:05 +0000 Subject: [PATCH 0519/2682] dl-fedora replaced fedora-img-dl --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6575835c..f26acd4b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1414,9 +1414,9 @@ packages: "Jens Petersen @juhp": - cabal-rpm < 0 # https://github.com/commercialhaskell/stackage/issues/4666 + - dl-fedora - fedora-dists - fedora-haskell-tools < 0 # https://github.com/commercialhaskell/stackage/issues/4662 - - fedora-img-dl - hkgr - http-directory - rpmbuild-order From 14ab526bca8f06f258d98323fe88994d137aa41e Mon Sep 17 00:00:00 2001 From: Alejandro Serrano Date: Mon, 22 Jul 2019 09:08:03 +0200 Subject: [PATCH 0520/2682] Add `wl-pprint` --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f26acd4b..008e70ea 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1249,6 +1249,7 @@ packages: - kind-generics - kind-generics-th - simplistic-generics + - wl-pprint "Matvey Aksenov @supki": - terminal-size From 304306a5504f6aad2409254b332f7dbae46dc35e Mon Sep 17 00:00:00 2001 From: YongJoon Joe Date: Tue, 23 Jul 2019 10:27:32 +0900 Subject: [PATCH 0521/2682] Add doldol and ENIG --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f26acd4b..855007d0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -10,6 +10,10 @@ cabal-format-version: "2.4" # Constraints for brand new builds packages: + "YongJoon Joe @QuietJoon": + - doldol + - ENIG + "Chris Penner @ChrisPenner": - lens-regex-pcre From f6435e831990ae88e24f72b226b1f2696db401c3 Mon Sep 17 00:00:00 2001 From: YongJoon Joe Date: Tue, 23 Jul 2019 10:44:50 +0900 Subject: [PATCH 0522/2682] Corret typo in email address for YongJoon Joe --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 855007d0..83d13dc5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -10,7 +10,7 @@ cabal-format-version: "2.4" # Constraints for brand new builds packages: - "YongJoon Joe @QuietJoon": + "YongJoon Joe @QuietJoon": - doldol - ENIG From 33a148b7eeb61ac2375ee3fcffe49101744e40b2 Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Tue, 23 Jul 2019 07:52:27 +0100 Subject: [PATCH 0523/2682] fix curator clone+install instructions --- CURATORS.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CURATORS.md b/CURATORS.md index ccf5ce9b..91ecfd3b 100644 --- a/CURATORS.md +++ b/CURATORS.md @@ -370,8 +370,8 @@ yourself, e.g. verifying constraints without building anything. To get started, install `curator` via Git: ``` -$ git clone git@github.com:commercialhaskell/stack.git -$ cd stack && stack install curator +$ git clone git@github.com:commercialhaskell/curator.git +$ cd curator && stack install curator ``` It is a good idea to upgrade `curator` at the start of your week. From 1cd80fc83c8ef688ef25a64a0580bd9ac20a243d Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Tue, 23 Jul 2019 19:02:56 +0100 Subject: [PATCH 0524/2682] ghc-lib-parser-8.8.0.20190723 (fixes #4731) --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index b5618e01..81b97a5b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4730,6 +4730,10 @@ packages: - lens-family < 2 - lens-family-core < 2 + # https://github.com/commercialhaskell/stackage/issues/4731 + - ghc-lib-parser < 8.8.0.20190723 + - ghc-lib < 8.8.0.20190723 + # end of packages # Package flags are applied to individual packages, and override the values of From 5a9092df631b045b4ac9799067da32b203ad16f2 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Wed, 24 Jul 2019 17:55:36 +0100 Subject: [PATCH 0525/2682] re-enable data-clist and dependers brick, hledger-ui, etc. (#4542) data-clist-0.1.2.3 now allows current QuickCheck. --- build-constraints.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 81b97a5b..a2865a2c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1190,7 +1190,7 @@ packages: # - hledger-lib - hledger - - hledger-ui < 0 # via brick, via data-clist, via QuickCheck https://github.com/commercialhaskell/stackage/issues/4444 + - hledger-ui - hledger-web - hledger-api < 0 # build failure against swagger2 # @@ -3225,7 +3225,7 @@ packages: - scheduler "Hans-Peter Deifel @hpdeifel": - - hledger-iadd < 0 # via brick, via data-clist, via QuickCheck https://github.com/commercialhaskell/stackage/issues/4444 + - hledger-iadd "Roy Levien @orome": - crypto-enigma @@ -3253,7 +3253,7 @@ packages: "Mitsutoshi Aoe @maoe": - influxdb - sensu-run < 0 # GHC 8.4 via base-4.11.0.0 - - viewprof < 0 # via brick, via data-clist, via QuickCheck https://github.com/commercialhaskell/stackage/issues/4444 + - viewprof "Dylan Simon @dylex": - postgresql-typed @@ -3982,7 +3982,7 @@ packages: - blaze-svg - blaze-textual - boring - - brick < 0 # via data-clist, via QuickCheck https://github.com/commercialhaskell/stackage/issues/4444 + - brick - buffer-builder - byteable - bytestring-builder @@ -4037,7 +4037,7 @@ packages: - data-binary-ieee754 - data-bword - data-checked - - data-clist < 0 # via QuickCheck https://github.com/commercialhaskell/stackage/issues/4444 + - data-clist - data-default - data-default-class - data-default-instances-containers From 3e54aa66e2015d5764ea92b1f34482115b430f9e Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Thu, 25 Jul 2019 07:17:53 +0100 Subject: [PATCH 0526/2682] tests failing to build for polysemy-plugin-0.2.2.0 (#4733) --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 81b97a5b..a0a4ae01 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5036,6 +5036,8 @@ skipped-tests: - uri-bytestring # Could not deduce (SOP.All (SOP.All Arbitrary) xs) arising from a use of ‘SOP.hcpure’ - cron # Could not deduce (SOP.All (SOP.All Arbitrary) xss) arising from a use of ‘SOP.hcpure’ - config-ini # https://github.com/aisamanra/config-ini/issues/22 + - polysemy-plugin # https://github.com/commercialhaskell/stackage/issues/4733 + # Runtime issues - blank-canvas # Never finishes https://github.com/ku-fpg/blank-canvas/issues/73 From c9ce3dd9e26e48fa46e74fe887bd00015ef11888 Mon Sep 17 00:00:00 2001 From: Alexey Kuleshevich Date: Thu, 25 Jul 2019 16:35:02 +0300 Subject: [PATCH 0527/2682] Add new package massiv-test --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index a0a4ae01..a9971ce5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3222,6 +3222,7 @@ packages: # - hip # lens 4.16 via diagrams/chart - massiv - massiv-io + - massiv-test - scheduler "Hans-Peter Deifel @hpdeifel": From 6f0a5e3c822432e2f6f0eb77e4575b102ecd87aa Mon Sep 17 00:00:00 2001 From: Daniel YU Date: Sat, 27 Jul 2019 20:38:44 +0800 Subject: [PATCH 0528/2682] Add boots --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index a0a4ae01..33a0fd21 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3205,6 +3205,7 @@ packages: - yam-redis - menshen - crc32c + - boots "Tom Nielsen @glutamate": - plotlyhs From b2304d72c04bf8d3d82ae6b2d89261c1068ca194 Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Mon, 29 Jul 2019 01:04:43 +0100 Subject: [PATCH 0529/2682] constrain parser-combinators-1.2.0 and add some packages --- build-constraints.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index a0a4ae01..7d70c810 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3342,6 +3342,11 @@ packages: - possibly - enum-text - rg + - columnar + - enum-text-rio + - fmt-for-rio + - no-value + - optparse-enum "Elliot Cameron @3noch": [] @@ -4734,6 +4739,10 @@ packages: - ghc-lib-parser < 8.8.0.20190723 - ghc-lib < 8.8.0.20190723 + # https://github.com/commercialhaskell/stackage/issues/4737 + - parser-combinators < 1.2.0 + - parser-combinators-tests < 1.2.0 + # end of packages # Package flags are applied to individual packages, and override the values of From dd573dac6a1f074f916f9f48bfb9641d4041a69f Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Mon, 29 Jul 2019 19:39:23 +0100 Subject: [PATCH 0530/2682] restrict bounds for dhall{,-bash,-json} and doctemplates --- build-constraints.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index cee4e669..85fef0a4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4745,6 +4745,13 @@ packages: - parser-combinators < 1.2.0 - parser-combinators-tests < 1.2.0 + - dhall < 1.25.0 + - dhall-bash < 1.0.22 + - dhall-json < 1.4.0 + + - doctemplates < 0.3 + + # end of packages # Package flags are applied to individual packages, and override the values of From c592b2adec14053e0fa9d0363487823595a017e5 Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Mon, 29 Jul 2019 19:41:03 +0100 Subject: [PATCH 0531/2682] link dhall issue --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 85fef0a4..017f418b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4745,10 +4745,12 @@ packages: - parser-combinators < 1.2.0 - parser-combinators-tests < 1.2.0 + # https://github.com/commercialhaskell/stackage/issues/4740 - dhall < 1.25.0 - dhall-bash < 1.0.22 - dhall-json < 1.4.0 + # https://github.com/commercialhaskell/stackage/issues/4739 - doctemplates < 0.3 From 07938bc0dcfb5d4edd337a8eb76a662e0b03a864 Mon Sep 17 00:00:00 2001 From: Gabriel Gonzalez Date: Mon, 29 Jul 2019 11:47:49 -0700 Subject: [PATCH 0532/2682] Remove `dhall-text` from Stackage The `dhall-text` package is deprecated now, superseded by the `dhall text` subcommand provided by the `dhall` package --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 017f418b..5bba7868 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1000,7 +1000,6 @@ packages: - dhall-bash - dhall-json # - dhall-nix # deriving-compat via hnix - - dhall-text "Andrew Thaddeus Martin @andrewthad": - colonnade From 3f3a25a0b175f06a6ca029f6d8f4350c34a21e81 Mon Sep 17 00:00:00 2001 From: Daniel YU Date: Tue, 30 Jul 2019 22:20:30 +0800 Subject: [PATCH 0533/2682] remove yam and yam-* --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a0a4ae01..833197bb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3200,9 +3200,6 @@ packages: - salak-yaml - salak-toml - tensors - - yam - - yam-datasource - - yam-redis - menshen - crc32c From 1ed18fbb040a677f09ecde458c2e8fe00dcae407 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 31 Jul 2019 00:37:37 -0400 Subject: [PATCH 0534/2682] Add constraint "monoidal-containers < 0.5" per #4743 --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 017f418b..f2496c2e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4753,6 +4753,8 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4739 - doctemplates < 0.3 + # https://github.com/commercialhaskell/stackage/issues/4743 + - monoidal-containers < 0.5 # end of packages From afc33c844ad3db15bece46b204e4fd15f196da8c Mon Sep 17 00:00:00 2001 From: Alexander Bondarenko <486682+dpwiz@users.noreply.github.com> Date: Thu, 1 Aug 2019 09:39:45 +0300 Subject: [PATCH 0535/2682] Github username update (For those who into it) Old KB proof: https://gist.github.com/dpwiz/2e011d156ca7aee10143d314fc8db379 New: https://gist.github.com/dpwiz/2d7d502b59094b94103c7830814a87e8 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3de2b36a..eb57e5e3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1763,7 +1763,7 @@ packages: - cubicspline - maximal-cliques - "Alexander Bondarenko @wiz": + "Alexander Bondarenko @dpwiz": - hedn - soap - soap-tls From 34f35ce5ef7fbab57abf9899394028a951419807 Mon Sep 17 00:00:00 2001 From: mchaver Date: Sat, 3 Aug 2019 20:22:53 +0200 Subject: [PATCH 0536/2682] Update build-contraints.yaml Add quickcheck-arbitrary-template under mchaver@gmail.com --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3de2b36a..c47e2b4e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -432,6 +432,7 @@ packages: "James M.C. Haver II @mchaver": - quickcheck-arbitrary-adt - hspec-golden-aeson + - quickcheck-arbitrary-template "Winter Han @winterland1989": - if From 2050005eafcb45149c306da8b173adbd84046680 Mon Sep 17 00:00:00 2001 From: 0xd34df00d <0xd34df00d@gmail.com> Date: Sat, 3 Aug 2019 17:49:49 -0400 Subject: [PATCH 0537/2682] Add can-i-haz --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3de2b36a..7e485a67 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3790,6 +3790,7 @@ packages: - web3 "Georg Rudoy <0xd34df00d@gmail.com> @0xd34df00d": + - can-i-haz - enum-subset-generate "Trevis Elser @telser": From 4e2d25ddc2e7a9b8a00adc9f1d4d6dfc26fce8ae Mon Sep 17 00:00:00 2001 From: thielema Date: Sun, 4 Aug 2019 12:02:50 +0200 Subject: [PATCH 0538/2682] re-add mbox-utility --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3de2b36a..11fed075 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -312,7 +312,7 @@ packages: - markov-chain - midi - midi-music-box - - mbox-utility < 0 # https://github.com/commercialhaskell/stackage/issues/4655 + - mbox-utility - med-module - monoid-transformer - non-empty From 43c6ba3a351e7e3f87464f2afca771bd6dd5e1d7 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sun, 4 Aug 2019 10:15:06 -0700 Subject: [PATCH 0539/2682] Add constraints per #4594, #4749, #4750 --- build-constraints.yaml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3de2b36a..a46a07ff 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4686,9 +4686,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4579 - quickcheck-classes < 0.6.2.0 - # https://github.com/commercialhaskell/stackage/issues/4594 - - singleton-bool < 0.1.5 - # https://github.com/commercialhaskell/stackage/issues/4596 - tls < 1.5.0 - tls-debug < 0.4.6 @@ -4752,6 +4749,13 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4743 - monoidal-containers < 0.5 + # https://github.com/commercialhaskell/stackage/issues/4749 + - call-stack < 0.2.0 + + # https://github.com/commercialhaskell/stackage/issues/4750 + - gi-gdk < 4 + - gi-gtk < 4 + # end of packages # Package flags are applied to individual packages, and override the values of From e579f6ee290fcf9c8d868315e45419d015d37046 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Mon, 5 Aug 2019 14:23:13 -0700 Subject: [PATCH 0540/2682] Add constraints per #4753 --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index a46a07ff..0c0d1c38 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4756,6 +4756,10 @@ packages: - gi-gdk < 4 - gi-gtk < 4 + # https://github.com/commercialhaskell/stackage/issues/4753 + - dependent-map < 0.3 + - dependent-sum-template < 0.1 + # end of packages # Package flags are applied to individual packages, and override the values of From ab6076e973ee3370fea55d8caca6654c6daa7029 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Mon, 5 Aug 2019 14:26:35 -0700 Subject: [PATCH 0541/2682] Add constraints per #4754 --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0c0d1c38..b1e33d91 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4760,6 +4760,10 @@ packages: - dependent-map < 0.3 - dependent-sum-template < 0.1 + # https://github.com/commercialhaskell/stackage/issues/4754 + - extrapolate < 0.4 + - speculate < 0.4 + # end of packages # Package flags are applied to individual packages, and override the values of From d90fc1f103c7e18fe332956cd55a2ff099c06753 Mon Sep 17 00:00:00 2001 From: Rudy Matela Date: Mon, 5 Aug 2019 19:11:08 -0300 Subject: [PATCH 0542/2682] Add express ... and remove constraints for "speculate" and "extrapolate", fixing #4754. --- build-constraints.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b1e33d91..c6ddf5dd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2274,6 +2274,7 @@ packages: - leancheck - leancheck-instances - fitspec + - express - speculate - extrapolate - percent-format @@ -4760,10 +4761,6 @@ packages: - dependent-map < 0.3 - dependent-sum-template < 0.1 - # https://github.com/commercialhaskell/stackage/issues/4754 - - extrapolate < 0.4 - - speculate < 0.4 - # end of packages # Package flags are applied to individual packages, and override the values of From bcff5238708f695c502f78c32e076e318cedd95d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Mon, 5 Aug 2019 11:20:03 +0200 Subject: [PATCH 0543/2682] Add cachix, mixpanel-client, netrc --- build-constraints.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b1e33d91..2c91a2a2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3682,11 +3682,11 @@ packages: - transformers-fix "Domen Kozar @domenkozar": - - cachix < 0 + - cachix - cachix-api - elm2nix - - stack2nix < 0 # https://github.com/commercialhaskell/stackage/issues/4665 - - mixpanel-client < 0 # https://github.com/domenkozar/mixpanel-client/issues/3 + - mixpanel-client + - netrc - pretty-sop - servant-auth - servant-auth-server @@ -4507,7 +4507,6 @@ packages: - antiope-s3 < 0 # via amazonka - antiope-sns < 0 # via amazonka - antiope-sqs < 0 # via amazonka - - cachix-api < 0 # via amazonka - confcrypt < 0 # via amazonka - amazonka-apigateway < 0 # via amazonka-core - amazonka-application-autoscaling < 0 # via amazonka-core @@ -4941,6 +4940,7 @@ skipped-tests: - ip # hspec 2.5 https://github.com/andrewthad/haskell-ip/issues/33 - language-ecmascript # testing-feat 1.1.0.0 - lattices # via tasty-1.2 + - netrc # via tasty-1.2 - makefile # GHC 8.2 - mmtf # via hspec-2.7.0 - next-ref # hspec 2.3 From 911405ec0e40d14b8ff242e97c2b82da4d8aa974 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Wed, 7 Aug 2019 02:22:50 +0000 Subject: [PATCH 0544/2682] Disable cachix and mixpanel-client Both packages fail to build (per comment in #4752) --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 23172cb2..231317b3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3683,10 +3683,10 @@ packages: - transformers-fix "Domen Kozar @domenkozar": - - cachix + - cachix < 0 # #4752 - cachix-api - elm2nix - - mixpanel-client + - mixpanel-client < 0 # #4752 - netrc - pretty-sop - servant-auth From 9d4be54fdeaf228f977040b81416094c5c034000 Mon Sep 17 00:00:00 2001 From: Michel Boucey Date: Wed, 7 Aug 2019 22:57:20 +0200 Subject: [PATCH 0545/2682] Add new package gothic --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 231317b3..43636c9c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2039,6 +2039,7 @@ packages: - glabrous - google-oauth2-jwt - IPv6DB < 0 + - gothic "koral koral@mailoo.org @k0ral": - atom-conduit < 0 From c4cbd552861d590e2af8d6cc7cc579df39cde210 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Thu, 8 Aug 2019 01:02:07 +0000 Subject: [PATCH 0546/2682] Re-enable mixpanel-client --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 231317b3..6005b580 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3686,7 +3686,7 @@ packages: - cachix < 0 # #4752 - cachix-api - elm2nix - - mixpanel-client < 0 # #4752 + - mixpanel-client - netrc - pretty-sop - servant-auth From 8ae696b5a45a66a3de69df80588c62bf7e6ee4fe Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Thu, 8 Aug 2019 01:08:07 +0000 Subject: [PATCH 0547/2682] Skip either-prime tests #4757 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6005b580..ecd3ebc5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5166,6 +5166,7 @@ skipped-tests: - haskell-gi # https://github.com/commercialhaskell/stackage/issues/4661 - envelope # https://github.com/commercialhaskell/stackage/issues/4669 - algebraic-graphs # https://github.com/commercialhaskell/stackage/issues/4670 + - either-both # https://github.com/commercialhaskell/stackage/issues/4757 # end of skipped-tests # Tests listed in expected-test-failures configure correctly but may fail to run From 173f8da9e5afdf6bfef7970f543bc4b10de5757a Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Fri, 9 Aug 2019 01:34:04 +0000 Subject: [PATCH 0548/2682] Adds upper bound to esqueleto --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ecd3ebc5..d8c5c221 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4667,6 +4667,9 @@ packages: - persistent-sqlite < 2.10 - persistent-template < 2.7.0 - persistent-typed-db < 0.1.0.0 + + # Needs persistent >= 2.10, currently blocked by any of #4550 #4551 #4552 #4553 + - esqueleto < 3.1.0 # https://github.com/commercialhaskell/stackage/issues/4564 - primitive < 0.7.0.0 From a80129294da8d488c688f54c7f32e938464104a3 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Fri, 9 Aug 2019 01:45:14 +0000 Subject: [PATCH 0549/2682] Drops packages blocking persistent-2.10.0 Related to #4550 #4551 #4552 #4553 --- build-constraints.yaml | 22 ++++------------------ 1 file changed, 4 insertions(+), 18 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d8c5c221..27d8c7c5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -513,7 +513,7 @@ packages: - persistent-postgresql - persistent-sqlite - persistent-template - # persistent-test # https://github.com/commercialhaskell/stackage/pull/4492 + - persistent-test # https://github.com/commercialhaskell/stackage/pull/4492 # - stackage-curator # http-conduit 2.3 via amazonka - store - wai-websockets @@ -2921,7 +2921,7 @@ packages: # - eventful-dynamodb # http-conduit 2.3 via amazonka - eventful-memory - eventful-postgresql < 0 # GHC 8.4 via persistent-postgresql - - eventful-sql-common + - eventful-sql-common < 0 # persistent 2.10.0 #4551 - eventful-sqlite - eventful-test-helpers - stratosphere @@ -3385,7 +3385,7 @@ packages: - mnist-idx "Naushadh @naushadh": - - persistent-mysql-haskell + - persistent-mysql-haskell < 0 # persistent 2.10.0 #4550 "Moritz Schulte @mtesseract": - async-refresh @@ -3741,7 +3741,7 @@ packages: "Maximilian Tagher @MaxGabriel": - aeson-iproute - - persistent-iproute + - persistent-iproute < 0 # persistent-2.10.0 #4553 "Damian Nadales @capitanbatata": - hierarchy < 0 @@ -4657,20 +4657,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4541 - dependent-sum < 0.5 - # causes build failure in persistent-mysql-haskell https://github.com/commercialhaskell/stackage/issues/4550 - # causes build failure in eventful-sql-common https://github.com/commercialhaskell/stackage/issues/4551 - # causes build failure in persistent-test https://github.com/commercialhaskell/stackage/issues/4552 - # causes build failure in persistent-iproute https://github.com/commercialhaskell/stackage/issues/4553 - - persistent < 2.10 - - persistent-mysql < 2.10 - - persistent-postgresql < 2.10 - - persistent-sqlite < 2.10 - - persistent-template < 2.7.0 - - persistent-typed-db < 0.1.0.0 - - # Needs persistent >= 2.10, currently blocked by any of #4550 #4551 #4552 #4553 - - esqueleto < 3.1.0 - # https://github.com/commercialhaskell/stackage/issues/4564 - primitive < 0.7.0.0 - primitive-extras < 0.8 From e35fed54f2187212f7493b62553e8817b000a058 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Fri, 9 Aug 2019 01:49:05 +0000 Subject: [PATCH 0550/2682] Drops eventful-common via #4551 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 27d8c7c5..830397b7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2922,7 +2922,7 @@ packages: - eventful-memory - eventful-postgresql < 0 # GHC 8.4 via persistent-postgresql - eventful-sql-common < 0 # persistent 2.10.0 #4551 - - eventful-sqlite + - eventful-sqlite < 0 # persistent 2.10.0 via eventful-sql-common - eventful-test-helpers - stratosphere - sum-type-boilerplate From 37f04c772bf4cb9eb25841a09c794e96afa53d92 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Fri, 9 Aug 2019 23:52:29 +0000 Subject: [PATCH 0551/2682] Disable pairing #4758 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 830397b7..2e692649 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2878,7 +2878,7 @@ packages: - pedersen-commitment - merkle-tree - oblivious-transfer - - pairing + - pairing < 0 # #4758 - libraft - galois-field From f9bc0b31621e7040b829efb1857bec9a6a9a0489 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sat, 10 Aug 2019 00:15:28 +0000 Subject: [PATCH 0552/2682] skip bugsnag-haskell test suite #4759 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2e692649..a8a234a4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5156,6 +5156,7 @@ skipped-tests: - envelope # https://github.com/commercialhaskell/stackage/issues/4669 - algebraic-graphs # https://github.com/commercialhaskell/stackage/issues/4670 - either-both # https://github.com/commercialhaskell/stackage/issues/4757 + - bugsnag-haskell # https://github.com/commercialhaskell/stackage/issues/4759 # end of skipped-tests # Tests listed in expected-test-failures configure correctly but may fail to run From 21ae44b27c95f1ba1a4119ee71aadae489baeb40 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sat, 10 Aug 2019 00:19:01 +0000 Subject: [PATCH 0553/2682] Disable persistent-template benchmarks #4760 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index a8a234a4..64303b4d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5656,6 +5656,7 @@ skipped-benchmarks: - extensible # via freer-effects https://github.com/fumieval/extensible/issues/12 - hw-bits # https://github.com/haskell-works/hw-bits/issues/8 - hslua # https://github.com/commercialhaskell/stackage/issues/4526 + - persistent-template # https://github.com/commercialhaskell/stackage/issues/4760 # Cyclic dependencies - cassava From e0cdb09465ec2e4c3d4516136e4a444e1a1ce396 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sat, 10 Aug 2019 00:21:13 +0000 Subject: [PATCH 0554/2682] Restrict Cabal to versions prior to 3.0 #4761 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 64303b4d..d61394c5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2757,7 +2757,7 @@ packages: - xlsx-tabular "Mikhail Glushenkov @23Skidoo": - - Cabal + - Cabal < 3.0 # https://github.com/commercialhaskell/stackage/issues/4761 - cabal-install # - pointful # haskell-src-exts From 84f8a1f8d0710a3e9c178a8a1a4a98fdefabb869 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sat, 10 Aug 2019 00:25:13 +0000 Subject: [PATCH 0555/2682] Fixes typo --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d61394c5..b4749119 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2757,7 +2757,7 @@ packages: - xlsx-tabular "Mikhail Glushenkov @23Skidoo": - - Cabal < 3.0 # https://github.com/commercialhaskell/stackage/issues/4761 + - Cabal < 3 # https://github.com/commercialhaskell/stackage/issues/4761 - cabal-install # - pointful # haskell-src-exts From 4ef0122527864defd5fddf9f68c94620a5768f32 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sun, 11 Aug 2019 14:15:58 +0000 Subject: [PATCH 0556/2682] Disable persistent-postgresql and -mysql tests persistent-postgresql (#4763) and persistent-mysql (#4764) have test suites that fail due to connection errors --- build-constraints.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index b4749119..1521fb5e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5436,6 +5436,11 @@ expected-test-failures: # https://github.com/commercialhaskell/stackage/issues/4722 - tasty-discover + + # https://github.com/commercialhaskell/stackage/issues/4764 + - persistent-mysql + # https://github.com/commercialhaskell/stackage/issues/4763 + - persistent-postgresql # end of expected-test-failures From 0a6d54fa09abf05481270f52b1d344b046066d30 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sun, 11 Aug 2019 14:42:07 +0000 Subject: [PATCH 0557/2682] Disables mixpanel-client --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1521fb5e..5c9d421d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3686,7 +3686,7 @@ packages: - cachix < 0 # #4752 - cachix-api - elm2nix - - mixpanel-client + - mixpanel-client < 0 - netrc - pretty-sop - servant-auth From 3be2dc31a0228c6ec928624ca99bb8a4bbe4d8b5 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Mon, 12 Aug 2019 02:24:09 +0000 Subject: [PATCH 0558/2682] Restricts upper bound unagi-chan #4765 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f493775f..2f492124 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -37,7 +37,7 @@ packages: - interpolatedstring-qq2 - prospect - do-notation - - unagi-chan + - unagi-chan < 0.4.1.1 # #4765 - type-errors - loopbreaker From 7bc42ef9133435bb9c923f59d4f5537f1ade958f Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Mon, 12 Aug 2019 02:30:03 +0000 Subject: [PATCH 0559/2682] Re-enable raaz and naqsha --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2f492124..c262d2ba 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1119,8 +1119,8 @@ packages: - opensource "Piyush P Kurur @piyush-kurur": - - raaz < 0 # GHC 8.4 via base-4.11.0.0 - - naqsha < 0 # GHC 8.4 via base-4.11.0.0 + - raaz + - naqsha "Joey Hess @joeyh": # - git-annex # conduit 1.3 From 83b8993b1e6bfa27d7c3597a823918394f24a193 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Mon, 12 Aug 2019 02:30:25 +0000 Subject: [PATCH 0560/2682] Re-enable git-annex --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c262d2ba..4f06a5f3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1123,7 +1123,7 @@ packages: - naqsha "Joey Hess @joeyh": - # - git-annex # conduit 1.3 + - git-annex - concurrent-output - mountpoints - disk-free-space From e539d5414b65d108e846ccf4438c450b3f01b3b7 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Mon, 12 Aug 2019 02:35:17 +0000 Subject: [PATCH 0561/2682] Re-disables git-annex --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4f06a5f3..cb2665a5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1123,7 +1123,7 @@ packages: - naqsha "Joey Hess @joeyh": - - git-annex + # - git-annex # Depends on many packages not tracked by Stackage - concurrent-output - mountpoints - disk-free-space From 17f6a31dfe125201bb0c6e6d4da11be93763f81f Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Mon, 12 Aug 2019 02:44:47 +0000 Subject: [PATCH 0562/2682] Skip raaz benchmarks (compilation failure) #4766 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index cb2665a5..6128ed1c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5456,6 +5456,7 @@ expected-benchmark-failures: - cryptohash # https://github.com/vincenthz/hs-cryptohash/pull/43 - http2 - lz4 # https://github.com/fpco/stackage/issues/3510 + - raaz # https://github.com/commercialhaskell/stackage/issues/4766 - thyme - xmlgen # https://github.com/skogsbaer/xmlgen/issues/6 From a90e8fab0dc2d68e456df6ab3a4229dc42c119d8 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 13 Aug 2019 07:42:00 +0000 Subject: [PATCH 0563/2682] Regenerate LTS snapshots when using NOPLAN --- automated/build-next.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/automated/build-next.sh b/automated/build-next.sh index 79edd3ba..e9124566 100755 --- a/automated/build-next.sh +++ b/automated/build-next.sh @@ -117,6 +117,8 @@ then else docker run $ARGS_PREBUILD $IMAGE /bin/bash -c "stackage-curator update && stackage-curator constraints --target $TARGET && stackage-curator snapshot-incomplete && stackage-curator snapshot" fi +else + docker run $ARGS_PREBUILD $IMAGE /bin/bash -c "stackage-curator snapshot" fi From 3ec057ea5c656946673696c6e83e9e6d2eb590bf Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 14 Aug 2019 15:27:48 +0200 Subject: [PATCH 0564/2682] add functor-products functor-products (not present) depended on by: - [ ] decidable-0.2.0.0 (-any). Justin Le @mstksg. @mstksg. Used by: library - [ ] list-witnesses-0.1.2.0 (-any). Justin Le @mstksg. @mstksg. Used by: library --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6128ed1c..74f26166 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1960,6 +1960,7 @@ packages: - configurator-export - decidable - emd + - functor-products - hamilton - hmatrix-backprop - hmatrix-vector-sized From f83d876313df2b8123be2afd47d01a19a4f207ba Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 14 Aug 2019 16:15:07 +0200 Subject: [PATCH 0565/2682] ./check: snapshot-incomplete needs --target --- check | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/check b/check index 93a215e9..6ae134e0 100755 --- a/check +++ b/check @@ -9,6 +9,6 @@ export GHCVER=$(sed -n "s/^ghc-version: \"\(.*\)\"/\1/p" "build-constraints.yaml NIGHTLY="nightly-$(date +%Y-%m-%d)" curator update && curator constraints --target=$NIGHTLY && - curator snapshot-incomplete && + curator snapshot-incomplete --target=$NIGHTLY && curator snapshot && stack --resolver ghc-$GHCVER exec curator check-snapshot From c048561505874762df6b328f2b2e3d63eee89ed5 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 14 Aug 2019 16:16:49 +0200 Subject: [PATCH 0566/2682] wai-extra < 3.0.27.0 for hoath2 (#4767) --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 74f26166..896a76ed 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4753,6 +4753,8 @@ packages: - dependent-map < 0.3 - dependent-sum-template < 0.1 + # https://github.com/commercialhaskell/stackage/issues/4767 + - wai-extra < 3.0.27.0 # end of packages # Package flags are applied to individual packages, and override the values of From 67a1200670f53130c1796cbc28cf23455636e372 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 14 Aug 2019 16:17:33 +0200 Subject: [PATCH 0567/2682] move wai-extra under @snoyberg --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 896a76ed..423f569d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -516,6 +516,7 @@ packages: - persistent-test # https://github.com/commercialhaskell/stackage/pull/4492 # - stackage-curator # http-conduit 2.3 via amazonka - store + - wai-extra - wai-websockets - warp-tls - yesod @@ -4376,7 +4377,6 @@ packages: - wai-app-static - wai-conduit - wai-eventsource - - wai-extra - wai-handler-launch - wai-logger - wai-session From 4e3c43feed3561117c68ce91fb990fdb0014f28e Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 16 Aug 2019 08:28:09 +0200 Subject: [PATCH 0568/2682] apecs-gloss-0.2.2 failed to build (jonascarpay/apecs#51) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 423f569d..4aa15aae 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4755,6 +4755,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4767 - wai-extra < 3.0.27.0 + + # https://github.com/jonascarpay/apecs/issues/51 + - apecs-gloss < 0.2.2 # end of packages # Package flags are applied to individual packages, and override the values of From 883d6790c9b2d3a504db4398b5c8fac2e32e6ec5 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 16 Aug 2019 08:37:42 +0200 Subject: [PATCH 0569/2682] try apecs-gloss-0.2.0 (jonascarpay/apecs#51) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4aa15aae..08974106 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4757,7 +4757,7 @@ packages: - wai-extra < 3.0.27.0 # https://github.com/jonascarpay/apecs/issues/51 - - apecs-gloss < 0.2.2 + - apecs-gloss < 0.2.1 # end of packages # Package flags are applied to individual packages, and override the values of From b2254c987a565668c2fa32e4bae9b9235354409f Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 16 Aug 2019 09:05:46 +0200 Subject: [PATCH 0570/2682] try apecs-physics < 0.4.3 instead (jonascarpay/apecs#51) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 08974106..084206c3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4757,7 +4757,7 @@ packages: - wai-extra < 3.0.27.0 # https://github.com/jonascarpay/apecs/issues/51 - - apecs-gloss < 0.2.1 + - apecs-physics < 0.4.3 # end of packages # Package flags are applied to individual packages, and override the values of From 7232d804564a7dfbfaea6e869fa3b037424ca941 Mon Sep 17 00:00:00 2001 From: "(cdep)illabout" Date: Fri, 16 Aug 2019 23:10:20 +0900 Subject: [PATCH 0571/2682] Re-enable servant-rawm. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 084206c3..b85178a2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2300,7 +2300,7 @@ packages: - read-env-var - servant-checked-exceptions - servant-checked-exceptions-core - - servant-rawm < 0 # https://github.com/cdepillabout/servant-rawm/issues/9 + - servant-rawm - servant-static-th - termonad < 0 - world-peace From 3412c43d5c681f2c719c5192b4f582837eb5f7c1 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 18 Aug 2019 13:57:54 +0200 Subject: [PATCH 0572/2682] Revert "wai-extra < 3.0.27.0 for hoath2 (#4767)" This reverts commit c048561505874762df6b328f2b2e3d63eee89ed5. --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 084206c3..d3b7a8a4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4753,9 +4753,6 @@ packages: - dependent-map < 0.3 - dependent-sum-template < 0.1 - # https://github.com/commercialhaskell/stackage/issues/4767 - - wai-extra < 3.0.27.0 - # https://github.com/jonascarpay/apecs/issues/51 - apecs-physics < 0.4.3 # end of packages From dc6561d28d58bc5d6f5d13236fa49394501f5f3b Mon Sep 17 00:00:00 2001 From: "(cdep)illabout" Date: Mon, 19 Aug 2019 13:40:11 +0900 Subject: [PATCH 0573/2682] Reenable termonad --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d3b7a8a4..2bc52ba9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2302,7 +2302,7 @@ packages: - servant-checked-exceptions-core - servant-rawm < 0 # https://github.com/cdepillabout/servant-rawm/issues/9 - servant-static-th - - termonad < 0 + - termonad - world-peace - xml-html-qq - xml-indexed-cursor From a2a8f128d271a0a750511c5bd5fc6dc542870c75 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 20 Aug 2019 01:02:04 +0200 Subject: [PATCH 0574/2682] debian-bootstrap.sh: try using llvm-8 from updates https://packages.ubuntu.com/bionic-updates/llvm-8 --- debian-bootstrap.sh | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index a78ba4c9..6b9cde36 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -131,6 +131,7 @@ apt-get install -y \ libzstd-dev \ libzmq3-dev \ llvm-6.0 \ + llvm-8 \ locales \ m4 \ minisat \ @@ -165,12 +166,6 @@ ACCEPT_EULA=Y apt-get install msodbcsql17 -y locale-gen en_US.UTF-8 -# llvm-8.0 for llvm-hs (separate since it needs wget) -wget -O - http://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - \ - && add-apt-repository "deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-7 main" \ - && apt-get update \ - && apt-get install -y llvm-8 - # 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 20abdef4fc435164b2a93e84579cf4f01e9599b5 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 20 Aug 2019 01:06:05 +0200 Subject: [PATCH 0575/2682] debian-bootstrap.sh: termonad needs pcre2-8 https://packages.ubuntu.com/bionic/libpcre2-dev --- debian-bootstrap.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index 6b9cde36..b12ae29e 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -98,6 +98,7 @@ apt-get install -y \ libopenmpi-dev \ libpango1.0-dev \ libpcap0.8-dev \ + libpcre2-dev \ libpq-dev \ libprotobuf-dev \ libre2-dev \ From b4e1ffeb73843f13cc129a61e92f6a9fcfe256af Mon Sep 17 00:00:00 2001 From: hainq Date: Thu, 22 Aug 2019 09:26:57 +0700 Subject: [PATCH 0576/2682] re-enable persistent-mongoDB --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ae5ef2cd..444ea219 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -556,7 +556,7 @@ packages: - hybrid-vectors - indents - language-c - - persistent-mongoDB < 0 # GHC 8.4 via mongoDB + - persistent-mongoDB - pretty-class - th-expand-syns - th-lift From 7189a4e818113980352fca02ee90efea2bed50fd Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 22 Aug 2019 10:24:47 +0300 Subject: [PATCH 0577/2682] Expect test failure for persistent-mongoDB --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 444ea219..b13d047b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5443,6 +5443,9 @@ expected-test-failures: # https://github.com/commercialhaskell/stackage/issues/4763 - persistent-postgresql + # Requires a running server + - persistent-mongoDB + # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 5fd96471ce696ae671391db9ac731df21566ed28 Mon Sep 17 00:00:00 2001 From: TobiReinhart <43352762+TobiReinhart@users.noreply.github.com> Date: Thu, 22 Aug 2019 11:38:34 +0200 Subject: [PATCH 0578/2682] add sparse-tensor --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index b13d047b..578ce99d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -9,6 +9,8 @@ cabal-format-version: "2.4" # Constraints for brand new builds packages: + "Tobias Reinhart @TobiReinhart": + - sparse-tensor "YongJoon Joe @QuietJoon": - doldol From ea8e545ace704ed0544c445551e9846ca588097b Mon Sep 17 00:00:00 2001 From: Stephan Schiffels Date: Thu, 22 Aug 2019 13:03:41 +0200 Subject: [PATCH 0579/2682] added sequence-formats and pipes-ordered-zip --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index bcb11895..9ce99927 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -10,6 +10,10 @@ cabal-format-version: "2.4" # Constraints for brand new builds packages: + "Stephan Schiffels @stschiff": + - sequence-formats + - pipes-ordered-zip + "YongJoon Joe @QuietJoon": - doldol - ENIG From 53759b4aabdb89d6fe20c26f565cb4681869cd08 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 23 Aug 2019 07:39:00 +0300 Subject: [PATCH 0580/2682] Upper bound on polyparse for #4775 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d277b41c..043c5884 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4761,6 +4761,9 @@ packages: # https://github.com/jonascarpay/apecs/issues/51 - apecs-physics < 0.4.3 + + # https://github.com/commercialhaskell/stackage/issues/4775 + - polyparse < 1.13 # end of packages # Package flags are applied to individual packages, and override the values of From c24c1eb72716410e87cf94e7ef4ae4723d8258d1 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 23 Aug 2019 07:58:27 +0300 Subject: [PATCH 0581/2682] Temporarily disable sequence-formats #4776 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 043c5884..f333e1a2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -13,7 +13,7 @@ packages: - sparse-tensor "Stephan Schiffels @stschiff": - - sequence-formats + # - sequence-formats https://github.com/commercialhaskell/stackage/issues/4776 - pipes-ordered-zip "YongJoon Joe @QuietJoon": From 26ad9a2afb18e3062cfe83c3049e7799dfeed62a Mon Sep 17 00:00:00 2001 From: Jonas Carpay Date: Fri, 23 Aug 2019 22:59:29 +0900 Subject: [PATCH 0582/2682] Drop apecs-physics constraint --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f333e1a2..f8ae97a6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4759,9 +4759,6 @@ packages: - dependent-map < 0.3 - dependent-sum-template < 0.1 - # https://github.com/jonascarpay/apecs/issues/51 - - apecs-physics < 0.4.3 - # https://github.com/commercialhaskell/stackage/issues/4775 - polyparse < 1.13 # end of packages From f2f57f7ec8d6185ed8a3436f8aba97f02eae4fd4 Mon Sep 17 00:00:00 2001 From: Simon Jakobi Date: Sat, 24 Aug 2019 01:36:45 +0200 Subject: [PATCH 0583/2682] build-constraints.yaml: Add hspec-parsec to my packages --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f8ae97a6..c58bae67 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -390,6 +390,7 @@ packages: - newtype-generics - bsb-http-chunked - coercible-utils + - hspec-parsec "Joe M @joe9": - logger-thread From 9166b65898110066050b9dcecf78b12457eba462 Mon Sep 17 00:00:00 2001 From: James Brock Date: Sun, 25 Aug 2019 05:55:45 +0900 Subject: [PATCH 0584/2682] Add new package replace-megaparsec --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f8ae97a6..1a8e0dd7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3948,6 +3948,9 @@ packages: "Akshay Mankar @akshaymankar": - jsonpath + + "James Brock @jamesdbrock": + - replace-megaparsec "Grandfathered dependencies": - Boolean From 530d5530ab30c3574b82ae45453160888c243f88 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 25 Aug 2019 09:26:44 +0300 Subject: [PATCH 0585/2682] Add back sequence-formats (closes #4776) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7f14ff0b..ee399050 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -13,7 +13,7 @@ packages: - sparse-tensor "Stephan Schiffels @stschiff": - # - sequence-formats https://github.com/commercialhaskell/stackage/issues/4776 + - sequence-formats - pipes-ordered-zip "YongJoon Joe @QuietJoon": From 4547eaed9ccdbfb57f63ec852bd3761604f2d31b Mon Sep 17 00:00:00 2001 From: Clint Adams Date: Sat, 10 Aug 2019 22:17:50 -0400 Subject: [PATCH 0586/2682] taking over debian and cabal-debian from David Fox --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f8ae97a6..ba474e20 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1124,6 +1124,8 @@ packages: - DAV - hopenpgp-tools - opensource + - debian + - cabal-debian "Piyush P Kurur @piyush-kurur": - raaz From 432deb74a54a350d46b2c16a7f0e803eb0df2593 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Mon, 26 Aug 2019 21:29:58 -0700 Subject: [PATCH 0587/2682] Upper bound sparse-tensor (#4780) --- build-constraints.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 58152fc3..10a42c99 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -15,7 +15,7 @@ packages: "Stephan Schiffels @stschiff": - sequence-formats - pipes-ordered-zip - + "YongJoon Joe @QuietJoon": - doldol - ENIG @@ -4767,6 +4767,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4775 - polyparse < 1.13 + + # https://github.com/commercialhaskell/stackage/issues/4780 + - sparse-tensor < 0.1 # end of packages # Package flags are applied to individual packages, and override the values of From 22b2d49776382e39a92650d3bacb4739a69ee60f Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 27 Aug 2019 11:38:30 +0300 Subject: [PATCH 0588/2682] Upper bound on cabal-install for #4761 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 10a42c99..d405a2b1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2771,7 +2771,7 @@ packages: "Mikhail Glushenkov @23Skidoo": - Cabal < 3 # https://github.com/commercialhaskell/stackage/issues/4761 - - cabal-install + - cabal-install < 3 # - pointful # haskell-src-exts "Lennart Kolmodin @kolmodin": From 5da38815aebf1f09b8fad5c7262a1280f62ade01 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 27 Aug 2019 08:27:49 +0000 Subject: [PATCH 0589/2682] build.sh changes on server --- automated/build.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/automated/build.sh b/automated/build.sh index 48046dae..769c2fcd 100755 --- a/automated/build.sh +++ b/automated/build.sh @@ -106,7 +106,7 @@ if [ "${NOPLAN:-}x" = "x" ] then if [ $SHORTNAME = "lts" ] then - docker run $ARGS_PREBUILD $IMAGE /bin/bash -c "exec stackage-curator create-plan --plan-file $PLAN_FILE --target $TARGET ${CONSTRAINTS:-}" + docker run $ARGS_PREBUILD $IMAGE /bin/bash -c "stack update && exec stackage-curator create-plan --plan-file $PLAN_FILE --target $TARGET ${CONSTRAINTS:-}" else docker run $ARGS_PREBUILD $IMAGE /bin/bash -c "stack update && exec stackage-curator create-plan --plan-file $PLAN_FILE --target $TARGET ${CONSTRAINTS:-}" fi @@ -146,3 +146,5 @@ docker run $ARGS_UPLOAD $IMAGE /bin/bash -c "stackage-curator upload-docs --targ echo -n "Completed at " date + +(cd new-stackage-format && ./convert.sh) From cd70ba89427d88b404a2d42eada13ff17c53717a Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 27 Aug 2019 08:28:05 +0000 Subject: [PATCH 0590/2682] Remove no-longer-used build.sh --- automated/build.sh | 150 --------------------------------------------- 1 file changed, 150 deletions(-) delete mode 100755 automated/build.sh diff --git a/automated/build.sh b/automated/build.sh deleted file mode 100755 index 769c2fcd..00000000 --- a/automated/build.sh +++ /dev/null @@ -1,150 +0,0 @@ -#!/usr/bin/env bash - -set -eu +x - -ROOT=$(cd $(dirname $0) ; pwd) -TARGET=$1 - -source aws.sh - -# For nightly-YYYY-MM-DD, tag should be nightly -# For lts-X.Y, tag should be ltsX -SHORTNAME=$(echo $TARGET | cut -d- -f 1) -if [ $SHORTNAME = "lts" ] -then - TAG=$(echo $TARGET | sed 's@^lts-\([0-9]*\)\.[0-9]*@lts\1@') -else - TAG=$SHORTNAME -fi - -IMAGE=commercialhaskell/stackage:$TAG - -PLAN_FILE=current-plan.yaml -DOCMAP_FILE=current-docmap.yaml - -CABAL_DIR=$ROOT/cabal -STACK_DIR=$ROOT/stack -GHC_DIR=$ROOT/ghc -DOT_STACKAGE_DIR=$ROOT/dot-stackage -WORKDIR=$ROOT/$TAG/work -EXTRA_BIN_DIR=$ROOT/extra-bin -SSH_DIR=$ROOT/ssh-$SHORTNAME -USERID=$(id -u) - -mkdir -p \ - "$CABAL_DIR" \ - "$STACK_DIR" \ - "$GHC_DIR" \ - "$DOT_STACKAGE_DIR" \ - "$WORKDIR" \ - "$EXTRA_BIN_DIR" \ - "$SSH_DIR" - -GITCONFIG=$ROOT/gitconfig -cat >$GITCONFIG <$SSH_DIR/known_hosts < Date: Tue, 27 Aug 2019 08:42:07 +0000 Subject: [PATCH 0591/2682] Better method for downloading curator and stack exes --- automated/build-next.sh | 46 +++++++++--------------- automated/new-stackage-format/convert.sh | 3 ++ 2 files changed, 19 insertions(+), 30 deletions(-) diff --git a/automated/build-next.sh b/automated/build-next.sh index e9124566..270651a0 100755 --- a/automated/build-next.sh +++ b/automated/build-next.sh @@ -63,20 +63,19 @@ require_400_file "$HACKAGE_CREDS" mkdir -p $ROOT/bin BINDIR=$(cd $ROOT/bin ; pwd) ( +CURATOR_EXES=95a207fb4d5bd2e2a255350ce18f55976344eeb71e6f27a25f63e8dba28a4cd1 cd $BINDIR -rm -f stackage-curator stackage-curator-2*.bz2 -CURATOR2=stackage-curator-2-f6258124cff9a7e92bcb5704164a70e149080e88 -wget "https://download.fpcomplete.com/stackage-curator-2/$CURATOR2.bz2" -bunzip2 "$CURATOR2.bz2" -chmod +x $CURATOR2 -mv $CURATOR2 stackage-curator -./stackage-curator --version +rm -f curator stack *.bz2 +wget "https://s3.amazonaws.com/download.fpcomplete.com/curator-exes/curator-exes-$CURATOR_EXES.tar.bz2" +tar xf "curator-exes-$CURATOR_EXES.tar.bz2" +echo curator: $(./curator --version) +echo stack: $(./stack --version) ) # We share pantry directory between snapshots while the other content in .stack # is stored separately (because e.g. Ubuntu releases between LTS and nightly # could differ). Also the order of binds is important. -ARGS_COMMON="--rm -v $WORKDIR:$HOME/work -w $HOME/work -v $BINDIR/stackage-curator:/usr/bin/stackage-curator:ro -v /etc/passwd:/etc/passwd:ro -v /etc/group:/etc/group:ro -v $BINDIR/stack:/usr/bin/stack:ro -v $STACK_DIR:$HOME/.stack -v $PANTRY_DIR:$HOME/.stack/pantry" +ARGS_COMMON="--rm -v $WORKDIR:$HOME/work -w $HOME/work -v $BINDIR/curator:/usr/bin/curator:ro -v /etc/passwd:/etc/passwd:ro -v /etc/group:/etc/group:ro -v $BINDIR/stack:/usr/bin/stack:ro -v $STACK_DIR:$HOME/.stack -v $PANTRY_DIR:$HOME/.stack/pantry" ARGS_PREBUILD="$ARGS_COMMON -u $USERID -e HOME=$HOME -v $CABAL_DIR:$HOME/.cabal -v $GHC_DIR:$HOME/.ghc -v $DOT_STACKAGE_DIR:$HOME/.stackage" ARGS_BUILD="$ARGS_COMMON -v $CABAL_DIR:$HOME/.cabal:ro -v $GHC_DIR:$HOME/.ghc:ro" # instance-data is an undocumented feature of S3 used by amazonka, @@ -89,21 +88,9 @@ ARGS_UPLOAD="$ARGS_COMMON -u $USERID -e HOME=$HOME -v $HACKAGE_CREDS:/hackage-cr # below for why this is safe.) if [ $SHORTNAME = "lts" ] then - docker run $ARGS_UPLOAD $IMAGE /bin/bash -c "exec stackage-curator check-target-available --target $TARGET" + docker run $ARGS_UPLOAD $IMAGE /bin/bash -c "exec curator check-target-available --target $TARGET" fi -# Get latest stack -( -cd $BINDIR -rm -f stack stack-*.bz2 -STACK=stack-f6258124cff9a7e92bcb5704164a70e149080e88 -wget "https://download.fpcomplete.com/stackage-curator-2/$STACK.bz2" -bunzip2 "$STACK.bz2" -chmod +x $STACK -mv $STACK stack -./stack --version -) - # Determine the new build plan unless NOPLAN is set # @@ -113,12 +100,12 @@ if [ "${NOPLAN:-}x" = "x" ] then if [ $SHORTNAME = "lts" ] then - docker run $ARGS_PREBUILD $IMAGE /bin/bash -c "stackage-curator constraints --target $TARGET && stackage-curator snapshot-incomplete && stackage-curator snapshot" + docker run $ARGS_PREBUILD $IMAGE /bin/bash -c "curator constraints --target $TARGET && curator snapshot-incomplete --target $TARGET && curator snapshot" else - docker run $ARGS_PREBUILD $IMAGE /bin/bash -c "stackage-curator update && stackage-curator constraints --target $TARGET && stackage-curator snapshot-incomplete && stackage-curator snapshot" + docker run $ARGS_PREBUILD $IMAGE /bin/bash -c "curator update && curator constraints --target $TARGET && curator snapshot-incomplete --target $TARGET && curator snapshot" fi else - docker run $ARGS_PREBUILD $IMAGE /bin/bash -c "stackage-curator snapshot" + docker run $ARGS_PREBUILD $IMAGE /bin/bash -c "curator snapshot" fi @@ -126,7 +113,7 @@ fi # # * Check that the snapshot is valid # * Fetch and unpack all needed tarballs (the build step does not have write access to the tarball directory) -docker run $ARGS_PREBUILD $IMAGE /bin/bash -c 'GHCVER=$(sed -n "s/^ghc-version: \(.*\)/\1/p" constraints.yaml) && stack setup ghc-$GHCVER --verbosity=error && stack exec --resolver=ghc-$GHCVER stackage-curator check-snapshot && stackage-curator unpack' +docker run $ARGS_PREBUILD $IMAGE /bin/bash -c 'GHCVER=$(sed -n "s/^ghc-version: \(.*\)/\1/p" constraints.yaml) && stack setup ghc-$GHCVER --verbosity=error && stack exec --resolver=ghc-$GHCVER curator check-snapshot && curator unpack' case $SHORTNAME in lts) JOBS=1 ;; @@ -136,25 +123,24 @@ esac # Now do the actual build. We need to first set the owner of the home directory # correctly, so we run the command as root, change owner, and then use sudo to # switch back to the current user -docker run $ARGS_BUILD $IMAGE nice -n 15 /bin/bash -c "chown $USER $HOME && exec sudo -E -u $USER env \"HOME=$HOME\" \"PATH=\$PATH\" stackage-curator build --jobs $JOBS" 2>&1 | tee "$SHORTNAME-build.log" +docker run $ARGS_BUILD $IMAGE nice -n 15 /bin/bash -c "chown $USER $HOME && exec sudo -E -u $USER env \"HOME=$HOME\" \"PATH=\$PATH\" curator build --jobs $JOBS" 2>&1 | tee "$SHORTNAME-build.log" # Make sure we actually need this snapshot. We used to perform this check # exclusively before building. Now we perform it after as well for the case of # nightly, where we don't perform this check beforehand. This is also slightly # safer, in case someone else already uploaded a specific snapshot while we # were building. -docker run $ARGS_UPLOAD $IMAGE /bin/bash -c "exec stackage-curator check-target-available --target $TARGET" +docker run $ARGS_UPLOAD $IMAGE /bin/bash -c "exec curator check-target-available --target $TARGET" # Successful build, so we need to: # # * Upload the docs to S3 # * Upload the new snapshot .yaml file to the appropriate Github repo, also upload its constraints # * Register as a new Hackage distro (currently disabled) -docker run $ARGS_UPLOAD $IMAGE /bin/bash -c "stackage-curator upload-docs --target $TARGET && exec stackage-curator upload-github --target $TARGET" -# FIXME - add back "stackage-curator hackage-distro --target $TARGET" when we will be ready to publish +docker run $ARGS_UPLOAD $IMAGE /bin/bash -c "curator upload-docs --target $TARGET && curator upload-github --target $TARGET && exec curator hackage-distro --target $TARGET" # information about the new snapshots on Hackage -$BINDIR/stackage-curator legacy-bulk --stackage-snapshots dot-stackage/curator/stackage-snapshots/ --lts-haskell dot-stackage/curator/lts-haskell/ --stackage-nightly dot-stackage/curator/stackage-nightly/ +$BINDIR/curator legacy-bulk --stackage-snapshots dot-stackage/curator/stackage-snapshots/ --lts-haskell dot-stackage/curator/lts-haskell/ --stackage-nightly dot-stackage/curator/stackage-nightly/ ( diff --git a/automated/new-stackage-format/convert.sh b/automated/new-stackage-format/convert.sh index beae82dc..092b293a 100755 --- a/automated/new-stackage-format/convert.sh +++ b/automated/new-stackage-format/convert.sh @@ -21,7 +21,10 @@ do fi done +( +export HOME=$(pwd) ./convert +) cd stackage-snapshots git add lts nightly From cc4e4ea13df1d6ded5b11dd69b288337759262d2 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 27 Aug 2019 14:49:29 +0300 Subject: [PATCH 0592/2682] Add curator-exes script/Dockerfile --- automated/build-next.sh | 1 + etc/curator-exes/.gitignore | 1 + etc/curator-exes/Dockerfile | 13 +++++++++++++ etc/curator-exes/README.md | 5 +++++ etc/curator-exes/run.sh | 11 +++++++++++ etc/curator-exes/stack.yaml | 22 ++++++++++++++++++++++ 6 files changed, 53 insertions(+) create mode 100644 etc/curator-exes/.gitignore create mode 100644 etc/curator-exes/Dockerfile create mode 100644 etc/curator-exes/README.md create mode 100755 etc/curator-exes/run.sh create mode 100644 etc/curator-exes/stack.yaml diff --git a/automated/build-next.sh b/automated/build-next.sh index 270651a0..ebac9bdd 100755 --- a/automated/build-next.sh +++ b/automated/build-next.sh @@ -63,6 +63,7 @@ require_400_file "$HACKAGE_CREDS" mkdir -p $ROOT/bin BINDIR=$(cd $ROOT/bin ; pwd) ( +# See etc/curator-exes/README.md CURATOR_EXES=95a207fb4d5bd2e2a255350ce18f55976344eeb71e6f27a25f63e8dba28a4cd1 cd $BINDIR rm -f curator stack *.bz2 diff --git a/etc/curator-exes/.gitignore b/etc/curator-exes/.gitignore new file mode 100644 index 00000000..ae3c1726 --- /dev/null +++ b/etc/curator-exes/.gitignore @@ -0,0 +1 @@ +/bin/ diff --git a/etc/curator-exes/Dockerfile b/etc/curator-exes/Dockerfile new file mode 100644 index 00000000..81f4dbd9 --- /dev/null +++ b/etc/curator-exes/Dockerfile @@ -0,0 +1,13 @@ +FROM fpco/stack-build:lts-14 + +# Prime the snapshot so rebuilds are faster +RUN mkdir -p /artifacts +RUN stack update +RUN stack build --no-install-ghc --resolver lts-13.28 --only-dependencies stack amazonka-s3 + +RUN git clone --depth 1 https://github.com/commercialhaskell/stack && \ + git clone --depth 1 https://github.com/commercialhaskell/curator + +COPY stack.yaml . + +RUN stack --no-install-ghc install --local-bin-path /artifacts diff --git a/etc/curator-exes/README.md b/etc/curator-exes/README.md new file mode 100644 index 00000000..150f7bda --- /dev/null +++ b/etc/curator-exes/README.md @@ -0,0 +1,5 @@ +Scripts to create and upload the curator-exes.tar.bz2 files. Make sure to +update the hash in automated/build-next.sh. + +NOTE: Depending on what's exactly on the master branches when running the +`./run.sh` script, the `stack.yaml` file may need some tweaks. diff --git a/etc/curator-exes/run.sh b/etc/curator-exes/run.sh new file mode 100755 index 00000000..de90f644 --- /dev/null +++ b/etc/curator-exes/run.sh @@ -0,0 +1,11 @@ +#!/usr/bin/env bash + +set -eux + +rm -rf bin +mkdir -p bin + +docker build . --tag curator-exes + +docker run --rm -v $(pwd)/bin:/output curator-exes cp /artifacts/* output +aws s3 cp curators-exes/* s3://download.fpcomplete.com/curator-exes/ diff --git a/etc/curator-exes/stack.yaml b/etc/curator-exes/stack.yaml new file mode 100644 index 00000000..08ac4d9e --- /dev/null +++ b/etc/curator-exes/stack.yaml @@ -0,0 +1,22 @@ +resolver: lts-13.28 + +packages: +- stack +- curator + +extra-deps: +- hi-file-parser-0.1.0.0@sha256:3fc95852035c8e0fa6d5f9d22e5108067c8f4816ac84675bddc971b20144a9ae,2317 +- http-download-0.1.0.0@sha256:b02d76d28364b74fb90d3ec3c46fd81f9d77bcf71fa40c1d341a7251a0fc40e8,2023 +- pantry-0.1.1.2@sha256:6f06556f8e934afd517559d6f3dae947db91ef3801ee4e5cee9916c83a0c4d52,4628 +- rio-prettyprint-0.1.0.0@sha256:764e1a357275c3c62d57c494d038feae01cf745788e7d0e97367ba793c9670c3,1359 +- ansi-terminal-0.9.1@sha256:48f53532d0f365ffa568c8cf0adc84c66f800a7d80d3329e4f04fa75392f4af1,3225 +- rio-0.1.12.0@sha256:a0b42682a455ffde6a4d894b135117e379aea7ed1810c2cfed471b8f5879968c,3633 +- unliftio-0.2.12@sha256:b089fbc2ff2628a963c2c4b12143f2020874e3e5144ffd6c62b25639a0ca1483,3325 + +- github: fpco/casa + commit: a0cd05c1a9ce33acbb1bdfb9324370f884916e88 + # sha256: 812e05de8f9abdbd1101fc94895dcfd5c35962c4d67a43cc20cbc06eb59ea1f0 + # size: 9508 + subdirs: + - casa-client + - casa-types From c30d4f1a19387e1fb9ce65e945221fa5c60bada4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20B=C3=A4renz?= Date: Wed, 21 Aug 2019 19:42:10 +0200 Subject: [PATCH 0593/2682] Add essence-of-live-coding and subpackages --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d405a2b1..fd116a0b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -143,6 +143,10 @@ packages: - rhine-gloss - dunai-core - finite-typelits + - essence-of-live-coding + - essence-of-live-coding-pulse + - essence-of-live-coding-gloss + - essence-of-live-coding-quickcheck "Paul Johnson @PaulJohnson": - geodetics From 9f1c175b4cf9e9a205d45c2570d7362943bcd17d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20B=C3=A4renz?= Date: Mon, 26 Aug 2019 15:34:23 +0200 Subject: [PATCH 0594/2682] Add pulse-simple --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index fd116a0b..3dcbc840 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -147,6 +147,7 @@ packages: - essence-of-live-coding-pulse - essence-of-live-coding-gloss - essence-of-live-coding-quickcheck + - pulse-simple "Paul Johnson @PaulJohnson": - geodetics From 19d336a0266702a91b8a335611ff096273a3a916 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 27 Aug 2019 06:40:40 -0700 Subject: [PATCH 0595/2682] Upper bound generic-deriving (#4781) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3dcbc840..cd0f76da 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4775,6 +4775,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4780 - sparse-tensor < 0.1 + + # https://github.com/commercialhaskell/stackage/issues/4781 + - generic-deriving < 1.13 # end of packages # Package flags are applied to individual packages, and override the values of From 7c4c575cb323d5d8a19b171c7ac012ae7bae0e3a Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 27 Aug 2019 16:12:07 -0700 Subject: [PATCH 0596/2682] Add more blockers for #4646 --- build-constraints.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index cd0f76da..434392a0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4778,6 +4778,11 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4781 - generic-deriving < 1.13 + + # https://github.com/commercialhaskell/stackage/issues/4646 + - singletons < 2.6 + - eliminators < 0.6 + - th-desugar < 1.10 # end of packages # Package flags are applied to individual packages, and override the values of From 2194a28929a548c1eb900e2b5f45c466f5afd49e Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 27 Aug 2019 16:13:54 -0700 Subject: [PATCH 0597/2682] Add comment link --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 434392a0..4f0dfba6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4779,7 +4779,7 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4781 - generic-deriving < 1.13 - # https://github.com/commercialhaskell/stackage/issues/4646 + # See https://github.com/commercialhaskell/stackage/issues/4646#issuecomment-525517773 - singletons < 2.6 - eliminators < 0.6 - th-desugar < 1.10 From dbe7778a32a3e170edd72458a76e1a2c445c31e2 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 27 Aug 2019 16:14:20 -0700 Subject: [PATCH 0598/2682] Remove upper bound for sparse-tensor. Fix #4780 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4f0dfba6..52c98ef8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4773,9 +4773,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4775 - polyparse < 1.13 - # https://github.com/commercialhaskell/stackage/issues/4780 - - sparse-tensor < 0.1 - # https://github.com/commercialhaskell/stackage/issues/4781 - generic-deriving < 1.13 From 534c5d4a6bf897dd83ef30d943bee68979c05c8f Mon Sep 17 00:00:00 2001 From: Guillaume Bouchard Date: Tue, 27 Aug 2019 19:33:23 +0200 Subject: [PATCH 0599/2682] add PyF --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 52c98ef8..8971ad4a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -86,6 +86,9 @@ packages: "Preetham Gujjula @pgujjula": - modular + "Guillaume Bouchard @guibou": + - PyF + "Erik Schnetter @eschnett": - mpi-hs From bb101e5d8c5fe142d71a0ebe25b9595373b26999 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 27 Aug 2019 16:23:50 -0700 Subject: [PATCH 0600/2682] Try unagi-chan --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8971ad4a..ef9e2939 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -43,7 +43,7 @@ packages: - interpolatedstring-qq2 - prospect - do-notation - - unagi-chan < 0.4.1.1 # #4765 + - unagi-chan # 0.4.1.1 # #4765 - type-errors - loopbreaker From f99e3e853cf63faedb1d78885014e911d4a3d2d4 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 28 Aug 2019 06:24:59 -0700 Subject: [PATCH 0601/2682] Remove PyF, #4783 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ef9e2939..0fc8361b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -86,9 +86,6 @@ packages: "Preetham Gujjula @pgujjula": - modular - "Guillaume Bouchard @guibou": - - PyF - "Erik Schnetter @eschnett": - mpi-hs From 1d4c6092e724cf5dddb61b72b26093a444dabf07 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 28 Aug 2019 06:31:18 -0700 Subject: [PATCH 0602/2682] Disable raaz tests due to #4784 --- build-constraints.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0fc8361b..bcf89e49 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5462,12 +5462,15 @@ expected-test-failures: # https://github.com/commercialhaskell/stackage/issues/4722 - tasty-discover - + # https://github.com/commercialhaskell/stackage/issues/4764 - persistent-mysql # https://github.com/commercialhaskell/stackage/issues/4763 - persistent-postgresql + # https://github.com/commercialhaskell/stackage/issues/4784 + - raaz + # Requires a running server - persistent-mongoDB From 28e4476e2f447b196ab205d2edc5c28a3eccbbe8 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 28 Aug 2019 06:40:43 -0700 Subject: [PATCH 0603/2682] unagi-chan issues fixed, close #4765 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index bcf89e49..c05aa81b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -43,7 +43,7 @@ packages: - interpolatedstring-qq2 - prospect - do-notation - - unagi-chan # 0.4.1.1 # #4765 + - unagi-chan - type-errors - loopbreaker From c581cbf4374807b1c828b5e5c757fbf06ebc0b7f Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 28 Aug 2019 16:02:16 -0700 Subject: [PATCH 0604/2682] Upper bound ghc-exactprint (#4785) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index c05aa81b..cbd19aef 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4780,6 +4780,9 @@ packages: - singletons < 2.6 - eliminators < 0.6 - th-desugar < 1.10 + + # https://github.com/commercialhaskell/stackage/issues/4785 + - ghc-exactprint < 0.6.2 # end of packages # Package flags are applied to individual packages, and override the values of From 7d40015514b6c0b6c5d046137d4a0a8b7be89662 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 29 Aug 2019 16:47:56 -0700 Subject: [PATCH 0605/2682] Upper bound shelly (#4786) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index cbd19aef..c8dda0ca 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4783,6 +4783,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4785 - ghc-exactprint < 0.6.2 + + # https://github.com/commercialhaskell/stackage/issues/4786 + - shelly < 1.9 # end of packages # Package flags are applied to individual packages, and override the values of From 73814360420c763561b9bcbe2726116075b02eb0 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 29 Aug 2019 17:52:01 -0700 Subject: [PATCH 0606/2682] Upper bound salak, #4787 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c8dda0ca..3d2e1116 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3214,7 +3214,7 @@ packages: - rawstring-qm "Daniel YU ": - - salak + - salak < 0.3.5.3 # https://github.com/commercialhaskell/stackage/issues/4787 - salak-yaml - salak-toml - tensors From 16bf6796bf8ac91158b83dc925546ed847c78b62 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 29 Aug 2019 22:46:34 -0700 Subject: [PATCH 0607/2682] Revert "Remove PyF, #4783" This reverts commit f99e3e853cf63faedb1d78885014e911d4a3d2d4. --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3d2e1116..b62e5fcc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -86,6 +86,9 @@ packages: "Preetham Gujjula @pgujjula": - modular + "Guillaume Bouchard @guibou": + - PyF + "Erik Schnetter @eschnett": - mpi-hs From cd788960f06b41eb302df7201dae32bba6a5212b Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 29 Aug 2019 22:50:51 -0700 Subject: [PATCH 0608/2682] Revert "Revert "Remove PyF, #4783"" This reverts commit 16bf6796bf8ac91158b83dc925546ed847c78b62. --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b62e5fcc..3d2e1116 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -86,9 +86,6 @@ packages: "Preetham Gujjula @pgujjula": - modular - "Guillaume Bouchard @guibou": - - PyF - "Erik Schnetter @eschnett": - mpi-hs From 0e4f79e1f28de4b63d7f88a22edc5ec89cba9f3a Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 30 Aug 2019 07:19:26 -0700 Subject: [PATCH 0609/2682] Try salak again, #4787 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3d2e1116..c8dda0ca 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3214,7 +3214,7 @@ packages: - rawstring-qm "Daniel YU ": - - salak < 0.3.5.3 # https://github.com/commercialhaskell/stackage/issues/4787 + - salak - salak-yaml - salak-toml - tensors From 8b4e28a527357bb5f5f9ca690764f522d71a8a2d Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 30 Aug 2019 17:25:09 -0700 Subject: [PATCH 0610/2682] Upper bound brick (#4789) and tmp-postgres (#4790) --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c8dda0ca..39a9e668 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3170,7 +3170,7 @@ packages: - clock-extras - next-ref < 0 - threads-extras < 0 - - tmp-postgres + - tmp-postgres < 0.3 # https://github.com/commercialhaskell/stackage/issues/4790 - pg-transact - hspec-pg-transact - postgresql-simple-queue @@ -4008,7 +4008,7 @@ packages: - blaze-svg - blaze-textual - boring - - brick + - brick < 0.48 # https://github.com/commercialhaskell/stackage/issues/4789 - buffer-builder - byteable - bytestring-builder From 69309cf95f2b648e3252440dd4a4fee6f8b22e38 Mon Sep 17 00:00:00 2001 From: Judah Jacobson Date: Sat, 31 Aug 2019 18:56:49 -0700 Subject: [PATCH 0611/2682] Add ghc-source-gen. --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 39a9e668..41bc19b1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3398,6 +3398,7 @@ packages: - pier-core < 0 - pier < 0 - haskeline + - ghc-source-gen "Christof Schramm ": - mnist-idx From 6ab3fe4201ad6a0ccb4ec858e0733f23a1a48357 Mon Sep 17 00:00:00 2001 From: Yair Chuchem Date: Fri, 30 Aug 2019 20:03:43 +0300 Subject: [PATCH 0612/2682] Add generic-constraints --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 41bc19b1..5dcbf6c8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -416,6 +416,7 @@ packages: - yeshql "Yair Chuchem @yairchu": + - generic-constraints - List - ListTree From 97c01773ccc982314335ccb3f8975f61c664419b Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 1 Sep 2019 20:53:02 -0700 Subject: [PATCH 0613/2682] Disable tests for hledger-lib (#4792) --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5dcbf6c8..f9a6f8af 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5482,6 +5482,8 @@ expected-test-failures: # Requires a running server - persistent-mongoDB + # https://github.com/commercialhaskell/stackage/issues/4792 + - hledger-lib # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 85bf68f54fc477f30808e301be8f2a87b95f48f9 Mon Sep 17 00:00:00 2001 From: Robbie McMichael <2044464+robbiemcmichael@users.noreply.github.com> Date: Mon, 2 Sep 2019 21:40:28 +1000 Subject: [PATCH 0614/2682] Add http-client-overrides --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f9a6f8af..a3d11560 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3962,6 +3962,9 @@ packages: "James Brock @jamesdbrock": - replace-megaparsec + "Robbie McMichael @robbiemcmichael": + - http-client-overrides + "Grandfathered dependencies": - Boolean - ChasingBottoms < 0 # due to QuickCheck, https://github.com/commercialhaskell/stackage/issues/4444 From 69ff59f30d3146a46b21b34ecd506b21083a551d Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Mon, 2 Sep 2019 12:43:32 -0700 Subject: [PATCH 0615/2682] re-enable hledger-lib tests, hledger-lib-1.15.1 should fix #4792 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f9a6f8af..566bd065 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5481,9 +5481,6 @@ expected-test-failures: # Requires a running server - persistent-mongoDB - - # https://github.com/commercialhaskell/stackage/issues/4792 - - hledger-lib # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 7a13ee4bde67c2f7e8b4b157e9371e3c638f0ab6 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Mon, 2 Sep 2019 12:44:13 -0700 Subject: [PATCH 0616/2682] drop hledger-api from stackage, it is superseded by hledger-web --- build-constraints.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 566bd065..7ea47bfd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1208,7 +1208,6 @@ packages: - hledger - hledger-ui - hledger-web - - hledger-api < 0 # build failure against swagger2 # - quickbench - regex-compat-tdfa @@ -5988,7 +5987,6 @@ no-revisions: - hledger-lib - hledger-ui - hledger-web -- hledger-api # Do not build these packages in parallel with others. Useful for high memory From 8d5acf129a00e38ae05afc510a9e504cb89d57b8 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Tue, 3 Sep 2019 13:35:26 +0200 Subject: [PATCH 0617/2682] emd upper bound for #4795 --- build-constraints.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7ea47bfd..ba7ee91c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3957,7 +3957,7 @@ packages: "Akshay Mankar @akshaymankar": - jsonpath - + "James Brock @jamesdbrock": - replace-megaparsec @@ -4787,6 +4787,10 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4786 - shelly < 1.9 + + # https://github.com/commercialhaskell/stackage/issues/4795 + - emd < 0.1.5.0 + # end of packages # Package flags are applied to individual packages, and override the values of From dabb4bc9b75497d37eafc99941b1f11019d76ed6 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Wed, 4 Sep 2019 00:06:36 +0200 Subject: [PATCH 0618/2682] jailbreak-cabal upper bound for #4796 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ba7ee91c..cc4ea786 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4791,6 +4791,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4795 - emd < 0.1.5.0 + # https://github.com/commercialhaskell/stackage/issues/4796 + - jailbreak-cabal < 1.3.5 + # end of packages # Package flags are applied to individual packages, and override the values of From a458c1c03b5c90e3d2fad170b0634d818e865b77 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Wed, 4 Sep 2019 17:15:34 +0200 Subject: [PATCH 0619/2682] sequence-formats upper bound for #4797 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index cc4ea786..6582a947 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4794,6 +4794,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4796 - jailbreak-cabal < 1.3.5 + # https://github.com/commercialhaskell/stackage/issues/4797 + - sequence-formats < 1.4.0 + # end of packages # Package flags are applied to individual packages, and override the values of From 26672575863e76504cd7e4916befe59946c609a4 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Wed, 4 Sep 2019 17:24:46 +0200 Subject: [PATCH 0620/2682] Use even lower sequence-formats #4797 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6582a947..f242540d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4795,7 +4795,7 @@ packages: - jailbreak-cabal < 1.3.5 # https://github.com/commercialhaskell/stackage/issues/4797 - - sequence-formats < 1.4.0 + - sequence-formats < 1.3.3 # end of packages From d424c41e645ee1696060f6147eb8c6a9c1a20433 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Wed, 4 Sep 2019 17:48:26 +0200 Subject: [PATCH 0621/2682] Revert "Revert "Revert "Remove PyF, #4783""" This reverts commit cd788960f06b41eb302df7201dae32bba6a5212b. --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f242540d..40ba33e6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -86,6 +86,9 @@ packages: "Preetham Gujjula @pgujjula": - modular + "Guillaume Bouchard @guibou": + - PyF + "Erik Schnetter @eschnett": - mpi-hs From b5d2c80deaa2c08e8f0023c5ef0e0aa40366c86a Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Wed, 4 Sep 2019 17:50:56 +0200 Subject: [PATCH 0622/2682] Remove shelly upper bound and close #4786 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 40ba33e6..7bd1a924 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4788,9 +4788,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4785 - ghc-exactprint < 0.6.2 - # https://github.com/commercialhaskell/stackage/issues/4786 - - shelly < 1.9 - # https://github.com/commercialhaskell/stackage/issues/4795 - emd < 0.1.5.0 From 207c4bb6ef78de873bf12ee604bd31be920318f6 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Wed, 4 Sep 2019 17:52:41 +0200 Subject: [PATCH 0623/2682] Remove emd upper bound and close #4795 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7bd1a924..fd8d4673 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4788,9 +4788,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4785 - ghc-exactprint < 0.6.2 - # https://github.com/commercialhaskell/stackage/issues/4795 - - emd < 0.1.5.0 - # https://github.com/commercialhaskell/stackage/issues/4796 - jailbreak-cabal < 1.3.5 From ecdc64e3e6ed474c02a12ff094390d2c51e47366 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Fri, 6 Sep 2019 11:47:24 +0200 Subject: [PATCH 0624/2682] Upper bounds for #4798 & #4799 --- build-constraints.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index fd8d4673..c3147771 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4794,6 +4794,12 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4797 - sequence-formats < 1.3.3 + # https://github.com/commercialhaskell/stackage/issues/4798 + - ansi-terminal < 0.10 + + # https://github.com/commercialhaskell/stackage/issues/4799 + - memory < 0.15 + # end of packages # Package flags are applied to individual packages, and override the values of From 22746238d4b0664aabade9278e11726353b39c19 Mon Sep 17 00:00:00 2001 From: Ryan Scott Date: Fri, 6 Sep 2019 07:19:00 -0400 Subject: [PATCH 0625/2682] Make myself the maintainer of type-equality The next version of `lens` (and possibly other libraries) will depend on the recently revamped [`type-equality`](http://hackage.haskell.org/package/type-equality) package. Since I co-maintain `type-equality`, I'm preemptively adding it to Stackage so that it's available when the next version of `lens` is released. --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 54b87e60..15e63465 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2202,6 +2202,7 @@ packages: - text-show-instances - th-abstraction - thread-local-storage + - type-equality "Kirill Zaborsky @qrilka": - xlsx From 1ea3020cb7382ae078e3befc23ccd6dbcbeaa7b8 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sat, 7 Sep 2019 16:33:31 +0200 Subject: [PATCH 0626/2682] Lots of upper bounds #4796 #4801 #4802 #4803 #4804 #4805 #4806 --- build-constraints.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 15e63465..a04459de 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4794,6 +4794,7 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4796 - jailbreak-cabal < 1.3.5 + - cabal2spec < 2.3 # https://github.com/commercialhaskell/stackage/issues/4797 - sequence-formats < 1.3.3 @@ -4804,6 +4805,25 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4799 - memory < 0.15 + # https://github.com/commercialhaskell/stackage/issues/4801 + - base-compat < 0.11 + + # https://github.com/commercialhaskell/stackage/issues/4802 + - base-compat-batteries < 0.11 + + # https://github.com/commercialhaskell/stackage/issues/4803 + - hspec-wai < 0.10.0 + - hspec-wai-json < 0.10.0 + + # https://github.com/commercialhaskell/stackage/issues/4804 + - lens < 4.18 + + # https://github.com/commercialhaskell/stackage/issues/4805 + - lens-aeson < 1.1 + + # https://github.com/commercialhaskell/stackage/issues/4806 + - trifecta < 2.1 + # end of packages # Package flags are applied to individual packages, and override the values of From 383e714fb52c87e80ca0a1669e101f3864fba38c Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sat, 7 Sep 2019 17:04:20 +0200 Subject: [PATCH 0627/2682] aeson upper bound for #4807 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index a04459de..f7467393 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4824,6 +4824,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4806 - trifecta < 2.1 + # https://github.com/commercialhaskell/stackage/issues/4807 + - aeson < 1.4.5.0 + # end of packages # Package flags are applied to individual packages, and override the values of From a291d5474365962e14fc050af215fe7aa0a27f9c Mon Sep 17 00:00:00 2001 From: Taylor Fausak Date: Sat, 7 Sep 2019 12:51:57 -0400 Subject: [PATCH 0628/2682] Add list-singleton package --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f7467393..d92ce5f5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1830,6 +1830,7 @@ packages: - github-release - json-feed - lackey + - list-singleton - ratel - ratel-wai - rattletrap From 25718af7ee7610f860ab9ad30cd04fe5288978b6 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sun, 8 Sep 2019 01:07:12 +0200 Subject: [PATCH 0629/2682] Re-introduce shelly upper bound #4786 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f7467393..476b6c0f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4792,6 +4792,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4785 - ghc-exactprint < 0.6.2 + # https://github.com/commercialhaskell/stackage/issues/4786 + - shelly < 1.9 + # https://github.com/commercialhaskell/stackage/issues/4796 - jailbreak-cabal < 1.3.5 - cabal2spec < 2.3 From c0bc783aa316f21c88ce192062d323e6e2cb152f Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sun, 8 Sep 2019 01:09:04 +0200 Subject: [PATCH 0630/2682] elm-street upper bound for #4809 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 476b6c0f..ccf2ecf8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4830,6 +4830,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4807 - aeson < 1.4.5.0 + # https://github.com/commercialhaskell/stackage/issues/4809 + - elm-street < 0.1.0.1 + # end of packages # Package flags are applied to individual packages, and override the values of From 23988c67ff3a9eb2a6c02a917543c0f178059f9a Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sun, 8 Sep 2019 01:13:07 +0200 Subject: [PATCH 0631/2682] Expect dns tests to fail #4810 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ccf2ecf8..27a43f02 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5526,6 +5526,9 @@ expected-test-failures: # Requires a running server - persistent-mongoDB + + # https://github.com/commercialhaskell/stackage/issues/4810 + - dns # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 4bdb4e4b0d61a045bc8bcd66f63e6bd6e743d042 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sun, 8 Sep 2019 01:20:42 +0200 Subject: [PATCH 0632/2682] polysemy upper bound for #4811 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 27a43f02..4442da90 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4833,6 +4833,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4809 - elm-street < 0.1.0.1 + # https://github.com/commercialhaskell/stackage/issues/4811 + - polysemy < 1.2.0.0 + # end of packages # Package flags are applied to individual packages, and override the values of From 307de173a0ed121c2862d20fcb0e4314f55f7dc5 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sun, 8 Sep 2019 01:24:41 +0200 Subject: [PATCH 0633/2682] llvm-hs and llvm-hs-pure upper bounds for #4812 --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4442da90..109ff083 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4836,6 +4836,10 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4811 - polysemy < 1.2.0.0 + # https://github.com/commercialhaskell/stackage/issues/4812 + - llvm-hs < 9 + - llvm-hs-pure < 9 + # end of packages # Package flags are applied to individual packages, and override the values of From c56758d70fed1396a4eac0f260408e10770977c9 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sun, 8 Sep 2019 02:27:17 +0200 Subject: [PATCH 0634/2682] elm-street < 0.1 for #4809 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 109ff083..cf44ea46 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4831,7 +4831,7 @@ packages: - aeson < 1.4.5.0 # https://github.com/commercialhaskell/stackage/issues/4809 - - elm-street < 0.1.0.1 + - elm-street < 0.1 # https://github.com/commercialhaskell/stackage/issues/4811 - polysemy < 1.2.0.0 From daefa483acd2587e5653d31eae2fbacdc04cbe8a Mon Sep 17 00:00:00 2001 From: Moritz Kiefer Date: Sun, 8 Sep 2019 06:52:22 +0200 Subject: [PATCH 0635/2682] Install LLVM 9.0 in the docker image This is required for the latest version of llvm-hs. --- build-constraints.yaml | 4 ---- debian-bootstrap.sh | 5 +++++ 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index cf44ea46..61a5efe8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4836,10 +4836,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4811 - polysemy < 1.2.0.0 - # https://github.com/commercialhaskell/stackage/issues/4812 - - llvm-hs < 9 - - llvm-hs-pure < 9 - # end of packages # Package flags are applied to individual packages, and override the values of diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index b12ae29e..6c460a80 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -165,6 +165,11 @@ curl https://packages.microsoft.com/config/debian/9/prod.list > /etc/apt/sources apt-get update ACCEPT_EULA=Y apt-get install msodbcsql17 -y +# llvm for llvm-hs +curl https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - +apt-get update +apt-get install llvm-9 -y + locale-gen en_US.UTF-8 # Buggy versions of ld.bfd fail to link some Haskell packages: From adf5eced5c825fd47eb581c93ddafaf417f49d00 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sun, 8 Sep 2019 16:57:58 +0200 Subject: [PATCH 0636/2682] Upper bounds for #4811 & #4814 --- build-constraints.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index cf44ea46..eead2038 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4835,11 +4835,16 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4811 - polysemy < 1.2.0.0 + - polysemy-zoo < 0.6 # https://github.com/commercialhaskell/stackage/issues/4812 - llvm-hs < 9 - llvm-hs-pure < 9 + # https://github.com/commercialhaskell/stackage/issues/4814 + - haskell-lsp < 0.16.0.0 + - haskell-lsp-types < 0.16.0.0 + # end of packages # Package flags are applied to individual packages, and override the values of From 7704c369212c0490559727169a832172195100c7 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sun, 8 Sep 2019 17:53:17 +0200 Subject: [PATCH 0637/2682] Expect brittany tests to fail #4815 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index eead2038..1c51a499 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5541,6 +5541,9 @@ expected-test-failures: # https://github.com/commercialhaskell/stackage/issues/4810 - dns + + # https://github.com/commercialhaskell/stackage/issues/4815 + - brittany # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 30ad53a5b0057f7ad7418b84a173b54c6b8ddc9d Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Sun, 8 Sep 2019 16:33:38 -0700 Subject: [PATCH 0638/2682] Remove upper bounds for haskell-lsp, closes #4814 --- build-constraints.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1c51a499..d74d41a5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4841,10 +4841,6 @@ packages: - llvm-hs < 9 - llvm-hs-pure < 9 - # https://github.com/commercialhaskell/stackage/issues/4814 - - haskell-lsp < 0.16.0.0 - - haskell-lsp-types < 0.16.0.0 - # end of packages # Package flags are applied to individual packages, and override the values of From be9c8509a439a3d240ac05602e910138486c8731 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 9 Sep 2019 15:59:28 +0200 Subject: [PATCH 0639/2682] Remove upper bounds and close #4740 --- build-constraints.yaml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d74d41a5..f063074a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4756,11 +4756,6 @@ packages: - parser-combinators < 1.2.0 - parser-combinators-tests < 1.2.0 - # https://github.com/commercialhaskell/stackage/issues/4740 - - dhall < 1.25.0 - - dhall-bash < 1.0.22 - - dhall-json < 1.4.0 - # https://github.com/commercialhaskell/stackage/issues/4739 - doctemplates < 0.3 From eac7e8c60add8ff5cd60956c1a964dedb08208b1 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 9 Sep 2019 16:09:03 +0200 Subject: [PATCH 0640/2682] Remove trifecta upper bound and close #4806 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f063074a..169ab1ff 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4819,9 +4819,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4805 - lens-aeson < 1.1 - # https://github.com/commercialhaskell/stackage/issues/4806 - - trifecta < 2.1 - # https://github.com/commercialhaskell/stackage/issues/4807 - aeson < 1.4.5.0 From 117d4a735c8da4fb45668ae52cf008e071b7ac04 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 9 Sep 2019 16:13:05 +0200 Subject: [PATCH 0641/2682] Change profunctors upper bound from < 5.4 to < 5.5 #4532 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 169ab1ff..9b426e4a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4680,7 +4680,7 @@ packages: - machines < 0.7 # https://github.com/commercialhaskell/stackage/issues/4532 - - profunctors < 5.4 + - profunctors < 5.5 # https://github.com/commercialhaskell/stackage/issues/4541 - dependent-sum < 0.5 From 56b4dd96dacd9f1746a591382a6ca3e47b22942d Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 9 Sep 2019 16:15:37 +0200 Subject: [PATCH 0642/2682] Remove upper bounds and close #4811 --- build-constraints.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9b426e4a..313dbf5a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4825,10 +4825,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4809 - elm-street < 0.1 - # https://github.com/commercialhaskell/stackage/issues/4811 - - polysemy < 1.2.0.0 - - polysemy-zoo < 0.6 - # https://github.com/commercialhaskell/stackage/issues/4812 - llvm-hs < 9 - llvm-hs-pure < 9 From 1fb836b9ef3da5beda37147e1fe2046b939c9e85 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 9 Sep 2019 17:50:59 +0200 Subject: [PATCH 0643/2682] Remove sequence-formats upper bound and close #4797 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 313dbf5a..9217a83f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4794,9 +4794,6 @@ packages: - jailbreak-cabal < 1.3.5 - cabal2spec < 2.3 - # https://github.com/commercialhaskell/stackage/issues/4797 - - sequence-formats < 1.3.3 - # https://github.com/commercialhaskell/stackage/issues/4798 - ansi-terminal < 0.10 From 90f72450a9b8317909e3619e75e127bb7bcf2d3d Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Mon, 9 Sep 2019 20:12:06 -0700 Subject: [PATCH 0644/2682] Add an upper bound for ansi-wl-pprint, #4816 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9217a83f..d229cc86 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4826,6 +4826,9 @@ packages: - llvm-hs < 9 - llvm-hs-pure < 9 + # https://github.com/commercialhaskell/stackage/issues/4816 + - ansi-wl-pprint < 0.6.9 + # end of packages # Package flags are applied to individual packages, and override the values of From f562e28566a8116a56310b24f415ece80249746e Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Tue, 10 Sep 2019 08:56:19 -0700 Subject: [PATCH 0645/2682] Remove ansi-wl-pprint uppper bound Add upper bound for trifecta, #4816 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d229cc86..64bace3a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4827,7 +4827,7 @@ packages: - llvm-hs-pure < 9 # https://github.com/commercialhaskell/stackage/issues/4816 - - ansi-wl-pprint < 0.6.9 + - trifecta < 2.1 # end of packages From b01a7d70614e4e72ddbe06a371ed46e91e9b67bf Mon Sep 17 00:00:00 2001 From: Felix Paulusma Date: Tue, 10 Sep 2019 18:06:05 +0200 Subject: [PATCH 0646/2682] safe-json-1.0.0's tests work now The new version has working tests which include the `.json` files it needs to do so in the `sdist`. --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 64bace3a..cb2dbf5c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5382,7 +5382,6 @@ expected-test-failures: - doctest-discover # 0.1.0.9 https://github.com/karun012/doctest-discover/issues/22 - graylog # 0.1.0.1 https://github.com/fpco/stackage/pull/1254 - tomland # https://github.com/kowainik/tomland/issues/141 - - safe-json # 0.1.0 https://github.com/Vlix/safe-json/issues/1 # Assertion failures, these can be real bugs or just limitations # in the test cases. From ffa24cfc7b23dece22544f9654c3c77dc243b820 Mon Sep 17 00:00:00 2001 From: Stephan Schiffels Date: Wed, 11 Sep 2019 09:55:17 +0200 Subject: [PATCH 0647/2682] add sequenceTools --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 64bace3a..84fd3994 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -15,6 +15,7 @@ packages: "Stephan Schiffels @stschiff": - sequence-formats - pipes-ordered-zip + - sequenceTools "YongJoon Joe @QuietJoon": - doldol From 542678f212a0b1d816c9d401440f6ec47493ffa7 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Wed, 11 Sep 2019 06:45:27 -0700 Subject: [PATCH 0648/2682] Update build-constraints.yaml --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index cdb2500d..4312caeb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4822,9 +4822,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4809 - elm-street < 0.1 - # https://github.com/commercialhaskell/stackage/issues/4811 - - polysemy < 1.2.0.0 - # https://github.com/commercialhaskell/stackage/issues/4816 - trifecta < 2.1 From 22c37405e84bcbcb6027463552c4d08c2f9b8307 Mon Sep 17 00:00:00 2001 From: James Brock Date: Wed, 11 Sep 2019 22:57:33 +0900 Subject: [PATCH 0649/2682] Add replace-attoparsec --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 711bb2f9..97e07d6a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3969,6 +3969,9 @@ packages: "Robbie McMichael @robbiemcmichael": - http-client-overrides + "James Brock @jamesdbrock": + - replace-attoparsec + "Grandfathered dependencies": - Boolean - ChasingBottoms < 0 # due to QuickCheck, https://github.com/commercialhaskell/stackage/issues/4444 From 371a928f26a7c81acebf7c3b0d8713d3ab223f27 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Wed, 11 Sep 2019 09:26:44 -0700 Subject: [PATCH 0650/2682] Revert "Install LLVM 9.0 in the docker image" --- build-constraints.yaml | 4 ++++ debian-bootstrap.sh | 5 ----- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5bce8397..711bb2f9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4823,6 +4823,10 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4809 - elm-street < 0.1 + # https://github.com/commercialhaskell/stackage/issues/4812 + - llvm-hs < 9 + - llvm-hs-pure < 9 + # https://github.com/commercialhaskell/stackage/issues/4816 - trifecta < 2.1 diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index 6c460a80..b12ae29e 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -165,11 +165,6 @@ curl https://packages.microsoft.com/config/debian/9/prod.list > /etc/apt/sources apt-get update ACCEPT_EULA=Y apt-get install msodbcsql17 -y -# llvm for llvm-hs -curl https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - -apt-get update -apt-get install llvm-9 -y - locale-gen en_US.UTF-8 # Buggy versions of ld.bfd fail to link some Haskell packages: From 90cb03edb514782ef149e0a9b57a4d3063cc7e47 Mon Sep 17 00:00:00 2001 From: Moritz Kiefer Date: Wed, 11 Sep 2019 20:36:47 +0200 Subject: [PATCH 0651/2682] Install LLVM 9.0 in the docker image and upgrade llvm-hs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fixes #4812 I’m very sorry for the broken earlier attempt in #4813. This time I’ve built the full docker image and did the `stack unpack; stack build …` dance in the docker image so hopefully I didn’t screw it up again. --- build-constraints.yaml | 4 ---- debian-bootstrap.sh | 6 ++++++ 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 97e07d6a..aa00b4bc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4826,10 +4826,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4809 - elm-street < 0.1 - # https://github.com/commercialhaskell/stackage/issues/4812 - - llvm-hs < 9 - - llvm-hs-pure < 9 - # https://github.com/commercialhaskell/stackage/issues/4816 - trifecta < 2.1 diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index b12ae29e..0e2ce841 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -165,6 +165,12 @@ curl https://packages.microsoft.com/config/debian/9/prod.list > /etc/apt/sources apt-get update ACCEPT_EULA=Y apt-get install msodbcsql17 -y +# llvm for llvm-hs +curl https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - +add-apt-repository "deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-9 main" +apt-get update +apt-get install llvm-9-dev -y + locale-gen en_US.UTF-8 # Buggy versions of ld.bfd fail to link some Haskell packages: From 6757425652702d9563ecd6ac51cb20ed8dc3c51d Mon Sep 17 00:00:00 2001 From: James Brock Date: Thu, 12 Sep 2019 22:09:17 +0900 Subject: [PATCH 0652/2682] Remove duplicate name I entered my name again when I added my second package. Fixed. --- build-constraints.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index aa00b4bc..a2be27af 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3965,13 +3965,11 @@ packages: "James Brock @jamesdbrock": - replace-megaparsec + - replace-attoparsec "Robbie McMichael @robbiemcmichael": - http-client-overrides - "James Brock @jamesdbrock": - - replace-attoparsec - "Grandfathered dependencies": - Boolean - ChasingBottoms < 0 # due to QuickCheck, https://github.com/commercialhaskell/stackage/issues/4444 From dfdd0920b187dac7493158d6c0c5378735f86cc5 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Thu, 12 Sep 2019 09:00:46 -0700 Subject: [PATCH 0653/2682] Add upper bounds for universe and universe-dependent-sum #4823 --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index a2be27af..4e731a82 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4827,6 +4827,10 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4816 - trifecta < 2.1 + # https://github.com/commercialhaskell/stackage/issues/4823 + - universe < 1.2 + - universe-dependent-sum < 1.2 + # end of packages # Package flags are applied to individual packages, and override the values of From e63b52cadfb5da1eada8e3185b49b66648ba79ea Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Thu, 12 Sep 2019 09:16:45 -0700 Subject: [PATCH 0654/2682] Add upper bounds for bindings-GLFW, #4824 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4e731a82..cbcec23e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4831,6 +4831,9 @@ packages: - universe < 1.2 - universe-dependent-sum < 1.2 + # https://github.com/commercialhaskell/stackage/issues/4824 + - bindings-GLFW < 3.3 + # end of packages # Package flags are applied to individual packages, and override the values of From 4056a7cef98761f09685903a48a46f460367f693 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Fri, 13 Sep 2019 06:49:59 -0700 Subject: [PATCH 0655/2682] Remove upper bounds for sop-core, generics-sop, closes #4527 --- build-constraints.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index cbcec23e..5a750285 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4662,10 +4662,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4519 - case-insensitive < 1.2.1 - # https://github.com/commercialhaskell/stackage/issues/4527 - - generics-sop < 0.5 - - sop-core < 0.5 - # https://github.com/commercialhaskell/stackage/issues/4529 - hashable < 1.3 From e0ffccefff16ea1385c89da75b61ba4085dbbb19 Mon Sep 17 00:00:00 2001 From: Louis Pan Date: Sat, 14 Sep 2019 09:15:00 +1000 Subject: [PATCH 0656/2682] louispan: removed troublesome and unused packages --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5a750285..c219689c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3284,13 +3284,13 @@ packages: - zip-stream "Louis Pan @louispan": - - alternators + - alternators < 0 - arrow-extras - data-diverse - data-diverse-lens - ghcjs-base-stub < 0 - - glaze - - glazier + - glaze < 0 + - glazier < 0 - glazier-react < 0 - glazier-react-widget < 0 - javascript-extras < 0 From 02dfb56726f371155b5df0e1088b55a616ce96fb Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Fri, 13 Sep 2019 19:04:48 -0700 Subject: [PATCH 0657/2682] Add upper bound for safecopy, #4829 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5a750285..28e49919 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4830,6 +4830,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4824 - bindings-GLFW < 3.3 + # https://github.com/commercialhaskell/stackage/issues/4829 + - safecopy < 0.10 + # end of packages # Package flags are applied to individual packages, and override the values of From 8282b8a220830e8145b85614da24420ced5dc996 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Sat, 14 Sep 2019 12:18:23 -0700 Subject: [PATCH 0658/2682] Expect test failure for reanimate, #4830 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 30af6d71..9f7e83bb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5387,6 +5387,7 @@ expected-test-failures: - doctest-discover # 0.1.0.9 https://github.com/karun012/doctest-discover/issues/22 - graylog # 0.1.0.1 https://github.com/fpco/stackage/pull/1254 - tomland # https://github.com/kowainik/tomland/issues/141 + - reanimate # https://github.com/commercialhaskell/stackage/issues/4830 # Assertion failures, these can be real bugs or just limitations # in the test cases. From b23f95e2f3f10f57233c13c631fd127793c4fcaa Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Sun, 15 Sep 2019 10:43:59 -0700 Subject: [PATCH 0659/2682] Add upper bound for first-class-families, #4831 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9f7e83bb..9c2e5ea8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4834,6 +4834,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4829 - safecopy < 0.10 + # https://github.com/commercialhaskell/stackage/issues/4831 + - first-class-families < 0.6 + # end of packages # Package flags are applied to individual packages, and override the values of From e4faed00dd1cdc92909d762aa5c13a85ec99e1ba Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Sun, 15 Sep 2019 10:45:10 -0700 Subject: [PATCH 0660/2682] Add upper bound for path-io, #4832 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9c2e5ea8..9f940746 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4837,6 +4837,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4831 - first-class-families < 0.6 + # https://github.com/commercialhaskell/stackage/issues/4832 + - path-io < 1.5 + # end of packages # Package flags are applied to individual packages, and override the values of From 4427dcf13083e8913b76372520116c36a38b25ba Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Sun, 15 Sep 2019 18:56:36 -0700 Subject: [PATCH 0661/2682] Remove upper bound for first-class-families, closes #4831 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9f940746..ed34068d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4834,9 +4834,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4829 - safecopy < 0.10 - # https://github.com/commercialhaskell/stackage/issues/4831 - - first-class-families < 0.6 - # https://github.com/commercialhaskell/stackage/issues/4832 - path-io < 1.5 From 8edb06a868345dfc2c097f71d69e835d5e1f7ac0 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Mon, 16 Sep 2019 06:46:33 -0700 Subject: [PATCH 0662/2682] Add upper bound for vector-sized, #4833 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ed34068d..bf51bb1d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4837,6 +4837,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4832 - path-io < 1.5 + # https://github.com/commercialhaskell/stackage/issues/4833 + - vector-sized < 1.4 + # end of packages # Package flags are applied to individual packages, and override the values of From f5d1776c9c5d311469f889d251faa97bdd62e625 Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Tue, 17 Sep 2019 23:05:26 +0100 Subject: [PATCH 0663/2682] vector-sized 1.4.0.0 (#4833) --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index bf51bb1d..f8a0af36 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4839,6 +4839,8 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4833 - vector-sized < 1.4 + - essence-of-live-coding < 0.1.0.2 + - rhine < 0.5.1.1 # end of packages From 3235173c7cea370ffe5c21fb9938d7aec710970f Mon Sep 17 00:00:00 2001 From: "(cdep)illabout" Date: Wed, 18 Sep 2019 11:55:19 +0900 Subject: [PATCH 0664/2682] Add the new print-console-colors package --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f8a0af36..5f90474a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2317,6 +2317,7 @@ packages: - password - password-instances - pretty-simple + - print-console-colors - read-env-var - servant-checked-exceptions - servant-checked-exceptions-core From e3939fd14218cff3667d2d5a57631be981a8ace1 Mon Sep 17 00:00:00 2001 From: Neil Mitchell Date: Wed, 18 Sep 2019 12:56:06 +0100 Subject: [PATCH 0665/2682] Add hie-bios --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f8a0af36..772fb21a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -642,6 +642,7 @@ packages: - filepattern - record-hasfield - rattle + - hie-bios "Digital Asset ": - ghc-lib From 05e1accdc1e63077b3d16b246c29c7b33f78d0ca Mon Sep 17 00:00:00 2001 From: Luke Clifton Date: Wed, 18 Sep 2019 21:16:17 +0800 Subject: [PATCH 0666/2682] Adding generic-monoid --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f8a0af36..f2f31c27 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -9,6 +9,9 @@ cabal-format-version: "2.4" # Constraints for brand new builds packages: + "Luke Clifton @luke-clifton": + - generic-monoid + "Tobias Reinhart @TobiReinhart": - sparse-tensor From a878d6fc48d75ca6d4decc6d8d4b3aedae9b72b0 Mon Sep 17 00:00:00 2001 From: Jared Tobin Date: Wed, 18 Sep 2019 15:26:13 -0230 Subject: [PATCH 0667/2682] add urbit-hob --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f8a0af36..ae35e00e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2511,6 +2511,7 @@ packages: - declarative - sampling - flat-mcmc + - urbit-hob "Facundo Domínguez @facundominguez": - distributed-process < 0 # GHC 8.4 via network-transport-tcp From 1b83dfcab72d99924ca2084d1672df77d4560706 Mon Sep 17 00:00:00 2001 From: Brandon Chinn Date: Thu, 19 Sep 2019 15:41:29 -0700 Subject: [PATCH 0668/2682] Add aeson-schemas --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f8a0af36..bc43ae12 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3959,6 +3959,7 @@ packages: - unboxing-vector "Brandon Chinn @brandon-leapyear": + - aeson-schemas - th-test-utils "Akshay Mankar @akshaymankar": From 28cef157645f2a3d5444782e2d6a95bae5cf0329 Mon Sep 17 00:00:00 2001 From: Ondrej Slamecka Date: Fri, 20 Sep 2019 20:21:25 +0100 Subject: [PATCH 0669/2682] Unblock servant-websockets --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f8a0af36..397ec7e5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3511,7 +3511,7 @@ packages: - elm-street "Lorenz Moesenlechner @moesenle": - - servant-websockets < 0 # https://github.com/moesenle/servant-websockets/issues/8 + - servant-websockets "Daniel Campoverde @alx741": - currencies From 2f8a05d5e6b653c75233945b98e5916488879037 Mon Sep 17 00:00:00 2001 From: Alex McLean Date: Mon, 23 Sep 2019 23:23:38 +0100 Subject: [PATCH 0670/2682] Restore tidal Tidal is one of the most popular haskell packages there is, so I'm puzzled to see it was removed from stackage (again!), citing this: https://github.com/commercialhaskell/stackage/issues/4408 This issue was closed long ago. I fixed it within hours at the time. I've just double checked, and tidal builds fine against lts-14.6 . --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f8a0af36..3033d2d4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2789,7 +2789,7 @@ packages: - binary-bits "Alex McLean @yaxu": - - tidal < 0 # transformers https://github.com/commercialhaskell/stackage/issues/4408 + - tidal - hosc "Kei Hibino @khibino": From db1bec26f7fa410f4ae38c40f21fd226617ab0dd Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Tue, 24 Sep 2019 12:00:13 +0100 Subject: [PATCH 0671/2682] fix various bounds issues --- build-constraints.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f8a0af36..22b648de 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4842,6 +4842,24 @@ packages: - essence-of-live-coding < 0.1.0.2 - rhine < 0.5.1.1 + # https://github.com/commercialhaskell/stackage/issues/4841 + - hackage-db < 2.1.0 + + # https://github.com/commercialhaskell/stackage/issues/4842 + - Diff < 0.4.0 + + # https://github.com/commercialhaskell/stackage/issues/4843 + - HsYAML < 0.2.0.0 + + # https://github.com/commercialhaskell/stackage/issues/4844 + - selda < 0.5.0.0 + + # https://github.com/commercialhaskell/stackage/issues/4845 + - string-qq < 0.0.4 + + # https://github.com/commercialhaskell/stackage/issues/4846 + - xmonad-contrib < 0.16 + # end of packages # Package flags are applied to individual packages, and override the values of From 6e10e89813b22e0c14666b0087da36565ce860e8 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Tue, 24 Sep 2019 16:33:50 -0700 Subject: [PATCH 0672/2682] wip --- build-constraints.yaml | 1932 +++++++++++++++++++++++++++++++++++----- 1 file changed, 1732 insertions(+), 200 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f8a0af36..fd31106e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1,6 +1,6 @@ -ghc-major-version: "8.6" +ghc-major-version: "8.8" # new curator is supposed to use exact GHC version -ghc-version: "8.6.5" +ghc-version: "8.8.1" # This affects which version of the Cabal file format we allow. We # should ensure that this is always no greater than the version @@ -2781,8 +2781,8 @@ packages: - xlsx-tabular "Mikhail Glushenkov @23Skidoo": - - Cabal < 3 # https://github.com/commercialhaskell/stackage/issues/4761 - - cabal-install < 3 + - Cabal + - cabal-install # - pointful # haskell-src-exts "Lennart Kolmodin @kolmodin": @@ -4640,207 +4640,1642 @@ packages: - serverless-haskell < 0 # via amazonka-core + "GHC 8.8 bounds failures": + - ShellCheck < 0 # via Cabal-3.0.0.0 + - cipher-aes128 < 0 # via Cabal-3.0.0.0 + - proto-lens-setup < 0 # via Cabal-3.0.0.0 + - dhall < 0 # via Diff-0.4.0 + - language-ecmascript < 0 # via Diff-0.4.0 + - pandoc < 0 # via Diff-0.4.0 + - pandoc < 0 # via HsYAML-0.2.0.0 + - dhall-json < 0 # via ansi-terminal-0.10 + - MissingH < 0 # via array-0.5.4.0 + - MissingH < 0 # via base-4.13.0.0 + - Strafunski-StrategyLib < 0 # via base-4.13.0.0 + - TotalMap < 0 # via base-4.13.0.0 + - active < 0 # via base-4.13.0.0 + - aeson-diff < 0 # via base-4.13.0.0 + - alarmclock < 0 # via base-4.13.0.0 + - asn1-encoding < 0 # via base-4.13.0.0 + - autoexporter < 0 # via base-4.13.0.0 + - avers < 0 # via base-4.13.0.0 + - bank-holidays-england < 0 # via base-4.13.0.0 + - base-noprelude < 0 # via base-4.13.0.0 + - benchpress < 0 # via base-4.13.0.0 + - bencode < 0 # via base-4.13.0.0 + - blaze-markup < 0 # via base-4.13.0.0 + - boolean-normal-forms < 0 # via base-4.13.0.0 + - brick < 0 # via base-4.13.0.0 + - brittany < 0 # via base-4.13.0.0 + - butcher < 0 # via base-4.13.0.0 + - bzlib < 0 # via base-4.13.0.0 + - cabal-install < 0 # via base-4.13.0.0 + - cborg-json < 0 # via base-4.13.0.0 + - circle-packing < 0 # via base-4.13.0.0 + - classyplate < 0 # via base-4.13.0.0 + - co-log < 0 # via base-4.13.0.0 + - co-log-core < 0 # via base-4.13.0.0 + - compact < 0 # via base-4.13.0.0 + - configurator-pg < 0 # via base-4.13.0.0 + - country < 0 # via base-4.13.0.0 + - crypto-enigma < 0 # via base-4.13.0.0 + - css-syntax < 0 # via base-4.13.0.0 + - cyclotomic < 0 # via base-4.13.0.0 + - data-tree-print < 0 # via base-4.13.0.0 + - dbus < 0 # via base-4.13.0.0 + - derulo < 0 # via base-4.13.0.0 + - diagrams-contrib < 0 # via base-4.13.0.0 + - diagrams-core < 0 # via base-4.13.0.0 + - diagrams-lib < 0 # via base-4.13.0.0 + - diagrams-postscript < 0 # via base-4.13.0.0 + - diagrams-rasterific < 0 # via base-4.13.0.0 + - diagrams-solve < 0 # via base-4.13.0.0 + - diagrams-svg < 0 # via base-4.13.0.0 + - doctest-driver-gen < 0 # via base-4.13.0.0 + - dual-tree < 0 # via base-4.13.0.0 + - dunai-core < 0 # via base-4.13.0.0 + - ekg < 0 # via base-4.13.0.0 + - ekg-core < 0 # via base-4.13.0.0 + - ekg-json < 0 # via base-4.13.0.0 + - ekg-statsd < 0 # via base-4.13.0.0 + - elm-street < 0 # via base-4.13.0.0 + - essence-of-live-coding < 0 # via base-4.13.0.0 + - essence-of-live-coding-gloss < 0 # via base-4.13.0.0 + - essence-of-live-coding-pulse < 0 # via base-4.13.0.0 + - essence-of-live-coding-quickcheck < 0 # via base-4.13.0.0 + - fclabels < 0 # via base-4.13.0.0 + - feed < 0 # via base-4.13.0.0 + - flow < 0 # via base-4.13.0.0 + - fold-debounce-conduit < 0 # via base-4.13.0.0 + - force-layout < 0 # via base-4.13.0.0 + - github-release < 0 # via base-4.13.0.0 + - gloss < 0 # via base-4.13.0.0 + - gloss-algorithms < 0 # via base-4.13.0.0 + - gloss-examples < 0 # via base-4.13.0.0 + - gloss-raster < 0 # via base-4.13.0.0 + - gloss-rendering < 0 # via base-4.13.0.0 + - greskell < 0 # via base-4.13.0.0 + - greskell-core < 0 # via base-4.13.0.0 + - greskell-websocket < 0 # via base-4.13.0.0 + - grouped-list < 0 # via base-4.13.0.0 + - hackage-security < 0 # via base-4.13.0.0 + - haddock-library < 0 # via base-4.13.0.0 + - haskell-src < 0 # via base-4.13.0.0 + - hedn < 0 # via base-4.13.0.0 + - hex < 0 # via base-4.13.0.0 + - hidden-char < 0 # via base-4.13.0.0 + - hledger < 0 # via base-4.13.0.0 + - hledger-lib < 0 # via base-4.13.0.0 + - hledger-ui < 0 # via base-4.13.0.0 + - hledger-web < 0 # via base-4.13.0.0 + - hspec-need-env < 0 # via base-4.13.0.0 + - http-media < 0 # via base-4.13.0.0 + - hyper < 0 # via base-4.13.0.0 + - ihaskell < 0 # via base-4.13.0.0 + - indentation-core < 0 # via base-4.13.0.0 + - indentation-parsec < 0 # via base-4.13.0.0 + - io-streams-haproxy < 0 # via base-4.13.0.0 + - json < 0 # via base-4.13.0.0 + - json-feed < 0 # via base-4.13.0.0 + - json-rpc-client < 0 # via base-4.13.0.0 + - json-rpc-server < 0 # via base-4.13.0.0 + - kraken < 0 # via base-4.13.0.0 + - lackey < 0 # via base-4.13.0.0 + - learn-physics < 0 # via base-4.13.0.0 + - lens-family-th < 0 # via base-4.13.0.0 + - loc < 0 # via base-4.13.0.0 + - monoid-extras < 0 # via base-4.13.0.0 + - monoidal-containers < 0 # via base-4.13.0.0 + - msgpack < 0 # via base-4.13.0.0 + - named < 0 # via base-4.13.0.0 + - naqsha < 0 # via base-4.13.0.0 + - oset < 0 # via base-4.13.0.0 + - palette < 0 # via base-4.13.0.0 + - partial-semigroup < 0 # via base-4.13.0.0 + - path-text-utf8 < 0 # via base-4.13.0.0 + - persistent < 0 # via base-4.13.0.0 + - proto-lens < 0 # via base-4.13.0.0 + - proto-lens-arbitrary < 0 # via base-4.13.0.0 + - proto-lens-optparse < 0 # via base-4.13.0.0 + - proto-lens-protobuf-types < 0 # via base-4.13.0.0 + - proto-lens-protoc < 0 # via base-4.13.0.0 + - proto-lens-runtime < 0 # via base-4.13.0.0 + - proto-lens-setup < 0 # via base-4.13.0.0 + - protolude < 0 # via base-4.13.0.0 + - pusher-http-haskell < 0 # via base-4.13.0.0 + - raaz < 0 # via base-4.13.0.0 + - ratel < 0 # via base-4.13.0.0 + - ratel-wai < 0 # via base-4.13.0.0 + - rattletrap < 0 # via base-4.13.0.0 + - reanimate < 0 # via base-4.13.0.0 + - regex-base < 0 # via base-4.13.0.0 + - repa < 0 # via base-4.13.0.0 + - repa-algorithms < 0 # via base-4.13.0.0 + - repa-io < 0 # via base-4.13.0.0 + - rethinkdb-client-driver < 0 # via base-4.13.0.0 + - rhine < 0 # via base-4.13.0.0 + - rhine-gloss < 0 # via base-4.13.0.0 + - salve < 0 # via base-4.13.0.0 + - servant-JuicyPixels < 0 # via base-4.13.0.0 + - servant-auth < 0 # via base-4.13.0.0 + - servant-auth-client < 0 # via base-4.13.0.0 + - servant-auth-docs < 0 # via base-4.13.0.0 + - servant-auth-server < 0 # via base-4.13.0.0 + - servant-auth-swagger < 0 # via base-4.13.0.0 + - sexpr-parser < 0 # via base-4.13.0.0 + - shellmet < 0 # via base-4.13.0.0 + - shower < 0 # via base-4.13.0.0 + - sized-grid < 0 # via base-4.13.0.0 + - slack-web < 0 # via base-4.13.0.0 + - smallcheck-series < 0 # via base-4.13.0.0 + - snap-server < 0 # via base-4.13.0.0 + - socks < 0 # via base-4.13.0.0 + - sqlite-simple < 0 # via base-4.13.0.0 + - statestack < 0 # via base-4.13.0.0 + - streaming < 0 # via base-4.13.0.0 + - strive < 0 # via base-4.13.0.0 + - summoner < 0 # via base-4.13.0.0 + - sv < 0 # via base-4.13.0.0 + - sv-core < 0 # via base-4.13.0.0 + - svg-builder < 0 # via base-4.13.0.0 + - swish < 0 # via base-4.13.0.0 + - termbox < 0 # via base-4.13.0.0 + - text-format < 0 # via base-4.13.0.0 + - threepenny-gui < 0 # via base-4.13.0.0 + - timer-wheel < 0 # via base-4.13.0.0 + - token-bucket < 0 # via base-4.13.0.0 + - tomland < 0 # via base-4.13.0.0 + - type-errors-pretty < 0 # via base-4.13.0.0 + - ucam-webauth < 0 # via base-4.13.0.0 + - ucam-webauth-types < 0 # via base-4.13.0.0 + - unagi-chan < 0 # via base-4.13.0.0 + - union < 0 # via base-4.13.0.0 + - vector-th-unbox < 0 # via base-4.13.0.0 + - viewprof < 0 # via base-4.13.0.0 + - wai-middleware-travisci < 0 # via base-4.13.0.0 + - web3 < 0 # via base-4.13.0.0 + - wild-bind < 0 # via base-4.13.0.0 + - wild-bind-x11 < 0 # via base-4.13.0.0 + - wuss < 0 # via base-4.13.0.0 + - aeson-pretty < 0 # via base-compat-0.11.0 + - algebraic-graphs < 0 # via base-compat-0.11.0 + - feed < 0 # via base-compat-0.11.0 + - gi-gtk-hs < 0 # via base-compat-0.11.0 + - pure-zlib < 0 # via base-compat-0.11.0 + - time-compat < 0 # via base-compat-0.11.0 + - wl-pprint-text < 0 # via base-compat-0.11.0 + - hledger < 0 # via base-compat-batteries-0.11.0 + - hledger-lib < 0 # via base-compat-batteries-0.11.0 + - hledger-ui < 0 # via base-compat-batteries-0.11.0 + - hoauth2 < 0 # via binary-0.8.7.0 + - hyraxAbif < 0 # via binary-0.8.7.0 + - GLFW-b < 0 # via bindings-GLFW-3.3.0.0 + - hyraxAbif < 0 # via bytestring-0.10.9.0 + - hw-hspec-hedgehog < 0 # via call-stack-0.2.0 + - xml-lens < 0 # via case-insensitive-1.2.1.0 + - sized-grid < 0 # via constraints-0.11.2 + - dependent-map < 0 # via constraints-extras + - dependent-sum < 0 # via constraints-extras + - dependent-sum-template < 0 # via constraints-extras + - MissingH < 0 # via containers-0.6.2.1 + - servant-kotlin < 0 # via containers-0.6.2.1 + - avers < 0 # via cryptonite-0.26 + - web3 < 0 # via cryptonite-0.26 + - beam-migrate < 0 # via dependent-map-0.3 + - lambdabot-core < 0 # via dependent-map-0.3 + - beam-migrate < 0 # via dependent-sum-0.6.2.0 + - lambdabot-core < 0 # via dependent-sum-0.6.2.0 + - MissingH < 0 # via directory-1.3.3.2 + - doctemplates < 0 # via doclayout + - pandoc < 0 # via doctemplates-0.6.1 + - hledger < 0 # via easytest-0.3 + - hledger-lib < 0 # via easytest-0.3 + - MissingH < 0 # via filepath-1.4.2.1 + - summoner < 0 # via generic-deriving-1.13 + - hw-eliasfano < 0 # via generic-lens-1.2.0.0 + - hw-ip < 0 # via generic-lens-1.2.0.0 + - hw-json < 0 # via generic-lens-1.2.0.0 + - hw-packed-vector < 0 # via generic-lens-1.2.0.0 + - hw-rankselect < 0 # via generic-lens-1.2.0.0 + - apply-refact < 0 # via ghc-8.8.1 + - brittany < 0 # via ghc-8.8.1 + - ghc-parser < 0 # via ghc-8.8.1 + - ghc-syntax-highlighter < 0 # via ghc-8.8.1 + - hint < 0 # via ghc-8.8.1 + - ihaskell < 0 # via ghc-8.8.1 + - loopbreaker < 0 # via ghc-8.8.1 + - hsdev < 0 # via ghc-boot-8.8.1 + - ihaskell < 0 # via ghc-boot-8.8.1 + - brittany < 0 # via ghc-boot-th-8.8.1 + - brittany < 0 # via ghc-exactprint-0.6.2 + - hlint < 0 # via ghc-lib-parser-8.8.1 + - gi-gtk-hs < 0 # via gi-gdk-4.0.1 + - gi-gtksource < 0 # via gi-gdk-4.0.1 + - gi-vte < 0 # via gi-gdk-4.0.1 + - gi-gtk < 0 # via gi-graphene + - gi-gtk < 0 # via gi-gsk + - gi-gtk-hs < 0 # via gi-gtk-4.0.1 + - gi-gtksource < 0 # via gi-gtk-4.0.1 + - gi-vte < 0 # via gi-gtk-4.0.1 + - beam-core < 0 # via hashable-1.3.0.0 + - beam-migrate < 0 # via hashable-1.3.0.0 + - beam-mysql < 0 # via hashable-1.3.0.0 + - beam-postgres < 0 # via hashable-1.3.0.0 + - beam-sqlite < 0 # via hashable-1.3.0.0 + - concurrent-supply < 0 # via hashable-1.3.0.0 + - core-data < 0 # via hashable-1.3.0.0 + - core-program < 0 # via hashable-1.3.0.0 + - core-text < 0 # via hashable-1.3.0.0 + - diagrams-contrib < 0 # via hashable-1.3.0.0 + - diagrams-lib < 0 # via hashable-1.3.0.0 + - diagrams-postscript < 0 # via hashable-1.3.0.0 + - diagrams-rasterific < 0 # via hashable-1.3.0.0 + - diagrams-svg < 0 # via hashable-1.3.0.0 + - gothic < 0 # via hashable-1.3.0.0 + - greskell-core < 0 # via hashable-1.3.0.0 + - haxl < 0 # via hashable-1.3.0.0 + - json-autotype < 0 # via hashable-1.3.0.0 + - language-puppet < 0 # via hashable-1.3.0.0 + - msgpack < 0 # via hashable-1.3.0.0 + - path < 0 # via hashable-1.3.0.0 + - protolude < 0 # via hashable-1.3.0.0 + - regex < 0 # via hashable-1.3.0.0 + - registry < 0 # via hashable-1.3.0.0 + - relude < 0 # via hashable-1.3.0.0 + - svg-builder < 0 # via hashable-1.3.0.0 + - swish < 0 # via hashable-1.3.0.0 + - threepenny-gui < 0 # via hashable-1.3.0.0 + - tomland < 0 # via hashable-1.3.0.0 + - ttl-hashtables < 0 # via hashable-1.3.0.0 + - union < 0 # via hashable-1.3.0.0 + - easytest < 0 # via hedgehog-1.0.1 + - hsdev < 0 # via hlint-2.2.2 + - language-puppet < 0 # via hslogger-1.3.0.0 + - hw-json < 0 # via hw-json-simple-cursor + - hw-json < 0 # via hw-json-standard-cursor + - hw-eliasfano < 0 # via hw-packed-vector-0.2.0.0 + - liboath-hs < 0 # via inline-c-0.8.0.1 + - diagrams-lib < 0 # via intervals-0.9 + - cayley-client < 0 # via lens-4.18.1 + - diagrams-contrib < 0 # via lens-4.18.1 + - diagrams-core < 0 # via lens-4.18.1 + - diagrams-lib < 0 # via lens-4.18.1 + - diagrams-postscript < 0 # via lens-4.18.1 + - diagrams-rasterific < 0 # via lens-4.18.1 + - diagrams-svg < 0 # via lens-4.18.1 + - force-layout < 0 # via lens-4.18.1 + - gothic < 0 # via lens-4.18.1 + - hw-mquery < 0 # via lens-4.18.1 + - json-autotype < 0 # via lens-4.18.1 + - lens-process < 0 # via lens-4.18.1 + - servant-auth-server < 0 # via lens-4.18.1 + - servant-kotlin < 0 # via lens-4.18.1 + - cayley-client < 0 # via lens-aeson-1.1 + - gothic < 0 # via lens-aeson-1.1 + - hsdev < 0 # via lens-aeson-1.1 + - lens-simple < 0 # via lens-family-2.0.0 + - proto-lens < 0 # via lens-family-2.0.0 + - proto-lens-arbitrary < 0 # via lens-family-2.0.0 + - proto-lens-protobuf-types < 0 # via lens-family-2.0.0 + - proto-lens-protoc < 0 # via lens-family-2.0.0 + - proto-lens-runtime < 0 # via lens-family-2.0.0 + - lens-simple < 0 # via lens-family-core-2.0.0 + - machines-binary < 0 # via machines-0.7 + - machines-directory < 0 # via machines-0.7 + - machines-io < 0 # via machines-0.7 + - language-puppet < 0 # via memory-0.15.0 + - mysql-haskell < 0 # via memory-0.15.0 + - servant-auth-server < 0 # via memory-0.15.0 + - web3 < 0 # via memory-0.15.0 + - vty < 0 # via microlens-0.4.11.2 + - web3 < 0 # via microlens-mtl-0.2.0.1 + - DAV < 0 # via network + - HTTP < 0 # via network + - HandsomeSoup < 0 # via network + - HsOpenSSL < 0 # via network + - IPv6Addr < 0 # via network + - MissingH < 0 # via network + - amqp < 0 # via network + - asif < 0 # via network + - atom-basic < 0 # via network + - avers < 0 # via network + - bitx-bitcoin < 0 # via network + - bson < 0 # via network + - bugsnag-haskell < 0 # via network + - cabal-install < 0 # via network + - conduit-extra < 0 # via network + - connection < 0 # via network + - connection-pool < 0 # via network + - courier < 0 # via network + - cql < 0 # via network + - cql-io < 0 # via network + - datadog < 0 # via network + - dbus < 0 # via network + - dns < 0 # via network + - ekg < 0 # via network + - ekg-statsd < 0 # via network + - flags-applicative < 0 # via network + - graylog < 0 # via network + - hOpenPGP < 0 # via network + - hackage-security < 0 # via network + - hasbolt < 0 # via network + - haskoin-core < 0 # via network + - hbeanstalk < 0 # via network + - hedis < 0 # via network + - hosc < 0 # via network + - hsdev < 0 # via network + - hsdns < 0 # via network + - hslogger < 0 # via network + - hstatsd < 0 # via network + - http-client < 0 # via network + - http-client-tls < 0 # via network + - http-common < 0 # via network + - http-conduit < 0 # via network + - http-reverse-proxy < 0 # via network + - http-streams < 0 # via network + - http2 < 0 # via network + - httpd-shed < 0 # via network + - hxt-http < 0 # via network + - influxdb < 0 # via network + - io-streams < 0 # via network + - io-streams-haproxy < 0 # via network + - iproute < 0 # via network + - lambdabot-core < 0 # via network + - lambdabot-irc-plugins < 0 # via network + - libmpd < 0 # via network + - libraft < 0 # via network + - microformats2-parser < 0 # via network + - mongoDB < 0 # via network + - mysql-haskell < 0 # via network + - network-anonymous-i2p < 0 # via network + - network-attoparsec < 0 # via network + - network-conduit-tls < 0 # via network + - network-multicast < 0 # via network + - network-simple < 0 # via network + - network-simple-tls < 0 # via network + - nvim-hs < 0 # via network + - oauthenticated < 0 # via network + - oeis < 0 # via network + - openssl-streams < 0 # via network + - pandoc < 0 # via network + - pandoc-citeproc < 0 # via network + - pantry < 0 # via network + - persistent-mongoDB < 0 # via network + - pinboard < 0 # via network + - pipes-network < 0 # via network + - pipes-network-tls < 0 # via network + - port-utils < 0 # via network + - postgresql-typed < 0 # via network + - rethinkdb-client-driver < 0 # via network + - scotty < 0 # via network + - sendfile < 0 # via network + - servant-http-streams < 0 # via network + - servant-multipart < 0 # via network + - servant-server < 0 # via network + - simple-sendfile < 0 # via network + - snap-core < 0 # via network + - snap-server < 0 # via network + - socket-activation < 0 # via network + - socks < 0 # via network + - sphinx < 0 # via network + - splice < 0 # via network + - store < 0 # via network + - streaming-commons < 0 # via network + - swagger2 < 0 # via network + - systemd < 0 # via network + - tcp-streams < 0 # via network + - tcp-streams-openssl < 0 # via network + - tls < 0 # via network + - tls-debug < 0 # via network + - tmp-postgres < 0 # via network + - tracing < 0 # via network + - vivid < 0 # via network + - wai < 0 # via network + - wai-app-static < 0 # via network + - wai-cli < 0 # via network + - wai-enforce-https < 0 # via network + - wai-extra < 0 # via network + - wai-logger < 0 # via network + - wai-middleware-throttle < 0 # via network + - wai-websockets < 0 # via network + - warp < 0 # via network + - warp-tls < 0 # via network + - warp-tls-uid < 0 # via network + - webdriver < 0 # via network + - websockets < 0 # via network + - ws < 0 # via network + - wuss < 0 # via network + - xenstore < 0 # via network + - xmonad-extras < 0 # via network + - yesod-bin < 0 # via network + - yesod-core < 0 # via network + - yesod-test < 0 # via network + - hslogger < 0 # via network-bsd + - httpd-shed < 0 # via network-bsd + - lambdabot-core < 0 # via network-bsd + - network-multicast < 0 # via network-bsd + - network-simple < 0 # via network-bsd + - MissingH < 0 # via old-time-1.1.0.3 + - bench-show < 0 # via optparse-applicative-0.15.1.0 + - diagrams-lib < 0 # via optparse-applicative-0.15.1.0 + - diagrams-rasterific < 0 # via optparse-applicative-0.15.1.0 + - diagrams-svg < 0 # via optparse-applicative-0.15.1.0 + - proto-lens-optparse < 0 # via optparse-applicative-0.15.1.0 + - wai-middleware-crowd < 0 # via optparse-applicative-0.15.1.0 + - paripari < 0 # via parser-combinators-1.2.0 + - hapistrano < 0 # via path-io-1.5.0 + - graphviz < 0 # via polyparse-1.13 + - core-data < 0 # via prettyprinter-1.3.0 + - core-program < 0 # via prettyprinter-1.3.0 + - core-text < 0 # via prettyprinter-1.3.0 + - dhall < 0 # via prettyprinter-1.3.0 + - dhall-json < 0 # via prettyprinter-1.3.0 + - invertible-grammar < 0 # via prettyprinter-1.3.0 + - sexp-grammar < 0 # via prettyprinter-1.3.0 + - quickcheck-classes < 0 # via primitive-addr + - primitive-extras < 0 # via primitive-unlifted + - MissingH < 0 # via process-1.6.5.1 + - blaze-colonnade < 0 # via profunctors-5.5 + - colonnade < 0 # via profunctors-5.5 + - invertible-grammar < 0 # via profunctors-5.5 + - proto-lens < 0 # via profunctors-5.5 + - quickcheck-classes < 0 # via quickcheck-classes-base + - ixset-typed < 0 # via safecopy-0.10.0 + - selda-postgresql < 0 # via selda-0.5.0.0 + - selda-sqlite < 0 # via selda-0.5.0.0 + - brittany < 0 # via semigroups-0.19.1 + - chronos < 0 # via semigroups-0.19.1 + - diagrams-contrib < 0 # via semigroups-0.19.1 + - diagrams-core < 0 # via semigroups-0.19.1 + - diagrams-lib < 0 # via semigroups-0.19.1 + - diagrams-postscript < 0 # via semigroups-0.19.1 + - diagrams-svg < 0 # via semigroups-0.19.1 + - direct-sqlite < 0 # via semigroups-0.19.1 + - greskell < 0 # via semigroups-0.19.1 + - greskell-core < 0 # via semigroups-0.19.1 + - invertible-grammar < 0 # via semigroups-0.19.1 + - registry < 0 # via semigroups-0.19.1 + - sexp-grammar < 0 # via semigroups-0.19.1 + - sqlite-simple < 0 # via semigroups-0.19.1 + - universe-dependent-sum < 0 # via some + - PyF < 0 # via template-haskell-2.15.0.0 + - avers < 0 # via template-haskell-2.15.0.0 + - classyplate < 0 # via template-haskell-2.15.0.0 + - core-program < 0 # via template-haskell-2.15.0.0 + - core-text < 0 # via template-haskell-2.15.0.0 + - data-accessor-template < 0 # via template-haskell-2.15.0.0 + - dbus < 0 # via template-haskell-2.15.0.0 + - dhall < 0 # via template-haskell-2.15.0.0 + - email-validate < 0 # via template-haskell-2.15.0.0 + - fclabels < 0 # via template-haskell-2.15.0.0 + - flow < 0 # via template-haskell-2.15.0.0 + - freer-simple < 0 # via template-haskell-2.15.0.0 + - hsdev < 0 # via template-haskell-2.15.0.0 + - interpolatedstring-qq2 < 0 # via template-haskell-2.15.0.0 + - invertible-grammar < 0 # via template-haskell-2.15.0.0 + - ixset-typed < 0 # via template-haskell-2.15.0.0 + - lens-family-th < 0 # via template-haskell-2.15.0.0 + - modern-uri < 0 # via template-haskell-2.15.0.0 + - quickcheck-arbitrary-template < 0 # via template-haskell-2.15.0.0 + - rank2classes < 0 # via template-haskell-2.15.0.0 + - rattletrap < 0 # via template-haskell-2.15.0.0 + - safecopy < 0 # via template-haskell-2.15.0.0 + - size-based < 0 # via template-haskell-2.15.0.0 + - stache < 0 # via template-haskell-2.15.0.0 + - static-text < 0 # via template-haskell-2.15.0.0 + - strive < 0 # via template-haskell-2.15.0.0 + - th-nowq < 0 # via template-haskell-2.15.0.0 + - th-test-utils < 0 # via template-haskell-2.15.0.0 + - threepenny-gui < 0 # via template-haskell-2.15.0.0 + - tz < 0 # via template-haskell-2.15.0.0 + - uri-bytestring < 0 # via template-haskell-2.15.0.0 + - vector-th-unbox < 0 # via template-haskell-2.15.0.0 + - web3 < 0 # via template-haskell-2.15.0.0 + - hyraxAbif < 0 # via text-1.2.4.0 + - sqlite-simple-errors < 0 # via text-1.2.4.0 + - universum < 0 # via text-1.2.4.0 + - HDBC < 0 # via time-1.9.3 + - MissingH < 0 # via time-1.9.3 + - cereal-time < 0 # via time-1.9.3 + - ekg < 0 # via time-1.9.3 + - ekg-statsd < 0 # via time-1.9.3 + - esqueleto < 0 # via time-1.9.3 + - feed < 0 # via time-1.9.3 + - fold-debounce < 0 # via time-1.9.3 + - gnuplot < 0 # via time-1.9.3 + - hapistrano < 0 # via time-1.9.3 + - haxl < 0 # via time-1.9.3 + - hquantlib-time < 0 # via time-1.9.3 + - hsdev < 0 # via time-1.9.3 + - hsexif < 0 # via time-1.9.3 + - irc-client < 0 # via time-1.9.3 + - irc-conduit < 0 # via time-1.9.3 + - libmpd < 0 # via time-1.9.3 + - pinboard < 0 # via time-1.9.3 + - postgresql-simple-migration < 0 # via time-1.9.3 + - req < 0 # via time-1.9.3 + - rhine < 0 # via time-1.9.3 + - safe-json < 0 # via time-1.9.3 + - servant-auth-client < 0 # via time-1.9.3 + - servant-auth-server < 0 # via time-1.9.3 + - servant-kotlin < 0 # via time-1.9.3 + - strive < 0 # via time-1.9.3 + - summoner < 0 # via time-1.9.3 + - th-nowq < 0 # via time-1.9.3 + - tz < 0 # via time-1.9.3 + - web3 < 0 # via time-1.9.3 + - wild-bind-x11 < 0 # via time-1.9.3 + - zip < 0 # via time-1.9.3 + - ztail < 0 # via time-1.9.3 + - mysql-haskell < 0 # via tls-1.5.1 + - universe < 0 # via universe-some + - universe-dependent-sum < 0 # via universe-some + - MissingH < 0 # via unix-2.7.2.2 + - beam-core < 0 # via vector-sized-1.4.0.0 + - elm-street < 0 # via warp-3.3.2 + - servant-auth-client < 0 # via warp-3.3.2 + - xmonad-extras < 0 # via xmonad-contrib-0.16 + + # round 2 + - netwire-input-glfw < 0 # via GLFW-b + - HDBC-mysql < 0 # via HDBC + - HDBC-session < 0 # via HDBC + - persistable-types-HDBC-pg < 0 # via HDBC + - relational-query-HDBC < 0 # via HDBC + - yeshql-hdbc < 0 # via HDBC + - MusicBrainz < 0 # via HTTP + - avwx < 0 # via HTTP + - gravatar < 0 # via HTTP + - pg-harness-client < 0 # via HTTP + - uri-templater < 0 # via HTTP + - HsOpenSSL-x509-system < 0 # via HsOpenSSL + - google-oauth2-jwt < 0 # via HsOpenSSL + - ses-html < 0 # via HsOpenSSL + - ip6addr < 0 # via IPv6Addr + - DBFunctor < 0 # via MissingH + - cryptocompare < 0 # via MissingH + - file-modules < 0 # via MissingH + - hadolint < 0 # via ShellCheck + - ipynb < 0 # via aeson-diff + - HTF < 0 # via aeson-pretty + - aws-cloudfront-signed-cookies < 0 # via aeson-pretty + - filter-logger < 0 # via aeson-pretty + - ginger < 0 # via aeson-pretty + - glabrous < 0 # via aeson-pretty + - groundhog-inspector < 0 # via aeson-pretty + - hpack-dhall < 0 # via aeson-pretty + - hspec-golden-aeson < 0 # via aeson-pretty + - hvega < 0 # via aeson-pretty + - kanji < 0 # via aeson-pretty + - log-base < 0 # via aeson-pretty + - lsp-test < 0 # via aeson-pretty + - sbp < 0 # via aeson-pretty + - servant-docs < 0 # via aeson-pretty + - servant-swagger < 0 # via aeson-pretty + - stratosphere < 0 # via aeson-pretty + - yesod-auth-oauth2 < 0 # via aeson-pretty + - asn1-parse < 0 # via asn1-encoding + - aws-cloudfront-signed-cookies < 0 # via asn1-encoding + - crypto-pubkey-openssh < 0 # via asn1-encoding + - crypto-pubkey-types < 0 # via asn1-encoding + - pkcs10 < 0 # via asn1-encoding + - x509 < 0 # via asn1-encoding + - x509-store < 0 # via asn1-encoding + - x509-validation < 0 # via asn1-encoding + - avers-api < 0 # via avers + - avers-server < 0 # via avers + - fib < 0 # via base-noprelude + - bencoding < 0 # via bencode + - Chart-diagrams < 0 # via blaze-markup + - SVGFonts < 0 # via blaze-markup + - ace < 0 # via blaze-markup + - blaze-html < 0 # via blaze-markup + - blaze-svg < 0 # via blaze-markup + - heterocephalus < 0 # via blaze-markup + - hoogle < 0 # via blaze-markup + - markdown < 0 # via blaze-markup + - plotlyhs < 0 # via blaze-markup + - servant-swagger-ui-core < 0 # via blaze-markup + - shakespeare < 0 # via blaze-markup + - trifecta < 0 # via blaze-markup + - xml-conduit < 0 # via blaze-markup + - xml-html-qq < 0 # via blaze-markup + - yesod < 0 # via blaze-markup + - yesod-alerts < 0 # via blaze-markup + - yesod-auth < 0 # via blaze-markup + - yesod-form < 0 # via blaze-markup + - yesod-form-bootstrap4 < 0 # via blaze-markup + - yesod-newsfeed < 0 # via blaze-markup + - yesod-paginator < 0 # via blaze-markup + - hledger-iadd < 0 # via brick + - bson-lens < 0 # via bson + - debian < 0 # via bzlib + - chronos-bench < 0 # via chronos + - qnap-decrypt < 0 # via cipher-aes128 + - MusicBrainz < 0 # via conduit-extra + - codec-rpm < 0 # via conduit-extra + - conduit-algorithms < 0 # via conduit-extra + - conduit-throttle < 0 # via conduit-extra + - conduit-zstd < 0 # via conduit-extra + - cpio-conduit < 0 # via conduit-extra + - cryptonite-conduit < 0 # via conduit-extra + - editor-open < 0 # via conduit-extra + - fb < 0 # via conduit-extra + - google-isbn < 0 # via conduit-extra + - hamtsolo < 0 # via conduit-extra + - haskell-spacegoo < 0 # via conduit-extra + - hoogle < 0 # via conduit-extra + - hopenpgp-tools < 0 # via conduit-extra + - html-conduit < 0 # via conduit-extra + - http-download < 0 # via conduit-extra + - hw-conduit-merges < 0 # via conduit-extra + - imagesize-conduit < 0 # via conduit-extra + - json-rpc < 0 # via conduit-extra + - markdown < 0 # via conduit-extra + - minio-hs < 0 # via conduit-extra + - monad-logger < 0 # via conduit-extra + - nqe < 0 # via conduit-extra + - nuxeo < 0 # via conduit-extra + - pager < 0 # via conduit-extra + - project-template < 0 # via conduit-extra + - qnap-decrypt < 0 # via conduit-extra + - req-conduit < 0 # via conduit-extra + - sbp < 0 # via conduit-extra + - serf < 0 # via conduit-extra + - shell-conduit < 0 # via conduit-extra + - stack < 0 # via conduit-extra + - stm-conduit < 0 # via conduit-extra + - tagstream-conduit < 0 # via conduit-extra + - tar-conduit < 0 # via conduit-extra + - xml-conduit < 0 # via conduit-extra + - yesod-auth < 0 # via conduit-extra + - zim-parser < 0 # via conduit-extra + - zip-stream < 0 # via conduit-extra + - configuration-tools < 0 # via connection + - eventstore < 0 # via connection + - hoogle < 0 # via connection + - minio-hs < 0 # via connection + - soap-tls < 0 # via connection + - credential-store < 0 # via dbus + - functor-combinators < 0 # via dependent-sum + - prim-uniq < 0 # via dependent-sum + - typelits-witnesses < 0 # via dependent-sum + - dhall-bash < 0 # via dhall + - hpack-dhall < 0 # via dhall + - verbosity < 0 # via dhall + - hpack-dhall < 0 # via dhall-json + - diagrams < 0 # via diagrams-contrib + - Chart-diagrams < 0 # via diagrams-core + - SVGFonts < 0 # via diagrams-core + - diagrams < 0 # via diagrams-core + - Chart-diagrams < 0 # via diagrams-lib + - SVGFonts < 0 # via diagrams-lib + - diagrams < 0 # via diagrams-lib + - midi-music-box < 0 # via diagrams-lib + - Chart-diagrams < 0 # via diagrams-postscript + - midi-music-box < 0 # via diagrams-postscript + - Chart-diagrams < 0 # via diagrams-svg + - diagrams < 0 # via diagrams-svg + - groundhog-sqlite < 0 # via direct-sqlite + - eventstore < 0 # via dns + - eventstore < 0 # via ekg-core + - monad-metrics < 0 # via ekg-core + - check-email < 0 # via email-validate + - mmark < 0 # via email-validate + - yesod-auth < 0 # via email-validate + - yesod-form < 0 # via email-validate + - persistent-pagination < 0 # via esqueleto + - persistent-typed-db < 0 # via esqueleto + - shake-language-c < 0 # via fclabels + - download < 0 # via feed + - shikensu < 0 # via flow + - polysemy < 0 # via freer-simple + - mmark-cli < 0 # via ghc-syntax-highlighter + - mmark-ext < 0 # via ghc-syntax-highlighter + - termonad < 0 # via gi-gtk + - termonad < 0 # via gi-vte + - apecs-gloss < 0 # via gloss + - graphite < 0 # via graphviz + - hopenpgp-tools < 0 # via graphviz + - hopenpgp-tools < 0 # via hOpenPGP + - stack < 0 # via hackage-security + - HTF < 0 # via haskell-src + - polysemy-zoo < 0 # via hedis + - protobuf < 0 # via hex + - haskintex < 0 # via hint + - hledger-iadd < 0 # via hledger-lib + - hledger-interest < 0 # via hledger-lib + - cacophony < 0 # via hlint + - dublincore-xml-conduit < 0 # via hlint + - sbv < 0 # via hlint + - wai-middleware-auth < 0 # via hoauth2 + - yesod-auth-oauth2 < 0 # via hoauth2 + - haskell-lsp < 0 # via hslogger + - aur < 0 # via http-client + - authenticate-oauth < 0 # via http-client + - aws-lambda-haskell-runtime < 0 # via http-client + - configuration-tools < 0 # via http-client + - eventstore < 0 # via http-client + - fb < 0 # via http-client + - gym-http-api < 0 # via http-client + - hopenpgp-tools < 0 # via http-client + - hpack < 0 # via http-client + - hsebaysdk < 0 # via http-client + - http-client-overrides < 0 # via http-client + - http-directory < 0 # via http-client + - http-download < 0 # via http-client + - kawhi < 0 # via http-client + - koofr-client < 0 # via http-client + - mime-mail-ses < 0 # via http-client + - minio-hs < 0 # via http-client + - opensource < 0 # via http-client + - pipes-http < 0 # via http-client + - planb-token-introspection < 0 # via http-client + - req-conduit < 0 # via http-client + - scalpel < 0 # via http-client + - servant-checked-exceptions < 0 # via http-client + - servant-cli < 0 # via http-client + - servant-client < 0 # via http-client + - servant-conduit < 0 # via http-client + - servant-machines < 0 # via http-client + - servant-pipes < 0 # via http-client + - servant-rawm < 0 # via http-client + - servant-tracing < 0 # via http-client + - soap < 0 # via http-client + - soap-tls < 0 # via http-client + - stack < 0 # via http-client + - textlocal < 0 # via http-client + - wai-middleware-auth < 0 # via http-client + - wai-slack-middleware < 0 # via http-client + - webex-teams-conduit < 0 # via http-client + - webex-teams-pipes < 0 # via http-client + - wreq < 0 # via http-client + - yesod-auth < 0 # via http-client + - yesod-auth-oauth2 < 0 # via http-client + - aur < 0 # via http-client-tls + - configuration-tools < 0 # via http-client-tls + - hopenpgp-tools < 0 # via http-client-tls + - hpack < 0 # via http-client-tls + - http-client-overrides < 0 # via http-client-tls + - http-directory < 0 # via http-client-tls + - koofr-client < 0 # via http-client-tls + - mime-mail-ses < 0 # via http-client-tls + - minio-hs < 0 # via http-client-tls + - opensource < 0 # via http-client-tls + - pipes-http < 0 # via http-client-tls + - planb-token-introspection < 0 # via http-client-tls + - scalpel < 0 # via http-client-tls + - soap-tls < 0 # via http-client-tls + - stack < 0 # via http-client-tls + - textlocal < 0 # via http-client-tls + - wai-middleware-auth < 0 # via http-client-tls + - wreq < 0 # via http-client-tls + - yesod-auth < 0 # via http-client-tls + - yesod-fb < 0 # via http-client-tls + - MusicBrainz < 0 # via http-conduit + - authenticate < 0 # via http-conduit + - cisco-spark-api < 0 # via http-conduit + - classy-prelude-yesod < 0 # via http-conduit + - cryptocompare < 0 # via http-conduit + - fb < 0 # via http-conduit + - google-isbn < 0 # via http-conduit + - hoogle < 0 # via http-conduit + - http-download < 0 # via http-conduit + - kawhi < 0 # via http-conduit + - line < 0 # via http-conduit + - mime-mail-ses < 0 # via http-conduit + - minio-hs < 0 # via http-conduit + - mmtf < 0 # via http-conduit + - nuxeo < 0 # via http-conduit + - oeis2 < 0 # via http-conduit + - stack < 0 # via http-conduit + - textlocal < 0 # via http-conduit + - wai-middleware-auth < 0 # via http-conduit + - webex-teams-api < 0 # via http-conduit + - webex-teams-conduit < 0 # via http-conduit + - webex-teams-pipes < 0 # via http-conduit + - yesod-auth < 0 # via http-conduit + - yesod-auth-hashdb < 0 # via http-conduit + - yesod-auth-oauth2 < 0 # via http-conduit + - yesod-fb < 0 # via http-conduit + - yesod-recaptcha2 < 0 # via http-conduit + - cachix-api < 0 # via http-media + - servant < 0 # via http-media + - servant-blaze < 0 # via http-media + - servant-cassava < 0 # via http-media + - servant-checked-exceptions-core < 0 # via http-media + - servant-client < 0 # via http-media + - servant-client-core < 0 # via http-media + - servant-conduit < 0 # via http-media + - servant-docs < 0 # via http-media + - servant-lucid < 0 # via http-media + - servant-machines < 0 # via http-media + - servant-pipes < 0 # via http-media + - servant-rawm < 0 # via http-media + - servant-static-th < 0 # via http-media + - servant-swagger < 0 # via http-media + - servant-swagger-ui-core < 0 # via http-media + - servant-xml < 0 # via http-media + - servant-yaml < 0 # via http-media + - wai-middleware-auth < 0 # via http-reverse-proxy + - ses-html < 0 # via http-streams + - board-games < 0 # via httpd-shed + - arbor-lru-cache < 0 # via hw-hspec-hedgehog + - bits-extra < 0 # via hw-hspec-hedgehog + - hw-dsv < 0 # via hw-hspec-hedgehog + - hw-fingertree < 0 # via hw-hspec-hedgehog + - hw-fingertree-strict < 0 # via hw-hspec-hedgehog + - hw-parser < 0 # via hw-hspec-hedgehog + - hw-simd < 0 # via hw-hspec-hedgehog + - hw-dsv < 0 # via hw-rankselect + - hw-simd < 0 # via hw-rankselect + - hw-succinct < 0 # via hw-rankselect + - lapack < 0 # via hyper + - mysql-haskell-nem < 0 # via io-streams + - unliftio-streams < 0 # via io-streams + - websockets-snap < 0 # via io-streams + - wire-streams < 0 # via io-streams + - aeson-iproute < 0 # via iproute + - radius < 0 # via iproute + - hopenpgp-tools < 0 # via ixset-typed + - rainbow < 0 # via lens-simple + - rainbox < 0 # via lens-simple + - polysemy < 0 # via loopbreaker + - mmark < 0 # via modern-uri + - mmark-ext < 0 # via modern-uri + - witherable < 0 # via monoidal-containers + - msgpack-aeson < 0 # via msgpack + - mysql-haskell-nem < 0 # via mysql-haskell + - butter < 0 # via network-simple + - nvim-hs-contrib < 0 # via nvim-hs + - pandoc-csv2table < 0 # via pandoc + - pandoc-markdown-ghci-filter < 0 # via pandoc + - pandoc-pyplot < 0 # via pandoc + - pencil < 0 # via pandoc + - mega-sdist < 0 # via pantry + - stack < 0 # via pantry + - attoparsec-path < 0 # via path + - aws-lambda-haskell-runtime < 0 # via path + - follow-file < 0 # via path + - genvalidity-path < 0 # via path + - http-download < 0 # via path + - mega-sdist < 0 # via path + - path-extra < 0 # via path + - path-io < 0 # via path + - rio-prettyprint < 0 # via path + - stack < 0 # via path + - urlpath < 0 # via path + - validity-path < 0 # via path + - classy-prelude-yesod < 0 # via persistent + - closed < 0 # via persistent + - password-instances < 0 # via persistent + - persistent-mysql < 0 # via persistent + - persistent-pagination < 0 # via persistent + - persistent-postgresql < 0 # via persistent + - persistent-qq < 0 # via persistent + - persistent-sqlite < 0 # via persistent + - persistent-template < 0 # via persistent + - persistent-test < 0 # via persistent + - persistent-typed-db < 0 # via persistent + - stack < 0 # via persistent + - tonatona-persistent-postgresql < 0 # via persistent + - tonatona-persistent-sqlite < 0 # via persistent + - yesod-auth < 0 # via persistent + - yesod-auth-hashdb < 0 # via persistent + - yesod-form < 0 # via persistent + - yesod-paginator < 0 # via persistent + - yesod-persistent < 0 # via persistent + - yesod-text-markdown < 0 # via persistent + - stm-hamt < 0 # via primitive-extras + - aos-signature < 0 # via protolude + - bulletproofs < 0 # via protolude + - cachix-api < 0 # via protolude + - galois-field < 0 # via protolude + - logger-thread < 0 # via protolude + - merkle-tree < 0 # via protolude + - minio-hs < 0 # via protolude + - oblivious-transfer < 0 # via protolude + - pedersen-commitment < 0 # via protolude + - avro < 0 # via pure-zlib + - bitvec < 0 # via quickcheck-classes + - poly < 0 # via quickcheck-classes + - yesod-paginator < 0 # via quickcheck-classes + - regex-with-pcre < 0 # via regex + - lens-regex < 0 # via regex-base + - regex-compat < 0 # via regex-base + - regex-compat-tdfa < 0 # via regex-base + - regex-pcre < 0 # via regex-base + - regex-pcre-builtin < 0 # via regex-base + - regex-pcre-text < 0 # via regex-base + - regex-posix < 0 # via regex-base + - regex-tdfa < 0 # via regex-base + - regex-tdfa-text < 0 # via regex-base + - regex-with-pcre < 0 # via regex-base + - scalpel-core < 0 # via regex-base + - yi-language < 0 # via regex-base + - datasets < 0 # via req + - elm2nix < 0 # via req + - req-conduit < 0 # via req + - approximate < 0 # via safecopy + - compensated < 0 # via safecopy + - filter-logger < 0 # via scotty + - line < 0 # via scotty + - pg-harness-server < 0 # via scotty + - stripe-scotty < 0 # via scotty + - cachix-api < 0 # via servant-auth + - cachix-api < 0 # via servant-auth-server + - cachix-api < 0 # via servant-auth-swagger + - avers-server < 0 # via servant-server + - servant-auth-wordpress < 0 # via servant-server + - servant-checked-exceptions < 0 # via servant-server + - servant-cli < 0 # via servant-server + - servant-conduit < 0 # via servant-server + - servant-js < 0 # via servant-server + - servant-lucid < 0 # via servant-server + - servant-machines < 0 # via servant-server + - servant-mock < 0 # via servant-server + - servant-pipes < 0 # via servant-server + - servant-rawm < 0 # via servant-server + - servant-static-th < 0 # via servant-server + - servant-swagger-ui < 0 # via servant-server + - servant-swagger-ui-core < 0 # via servant-server + - servant-swagger-ui-redoc < 0 # via servant-server + - servant-tracing < 0 # via servant-server + - servant-yaml < 0 # via servant-server + - tonatona-servant < 0 # via servant-server + - testing-feat < 0 # via size-based + - gingersnap < 0 # via snap-core + - snap-blaze < 0 # via snap-core + - websockets-snap < 0 # via snap-core + - websockets-snap < 0 # via snap-server + - mbtiles < 0 # via sqlite-simple + - mmark-cli < 0 # via stache + - mpi-hs < 0 # via store + - datasets < 0 # via streaming + - eventstore < 0 # via streaming + - streaming-attoparsec < 0 # via streaming + - streaming-bytestring < 0 # via streaming + - streaming-cassava < 0 # via streaming + - streaming-wai < 0 # via streaming + - conduit-algorithms < 0 # via streaming-commons + - datasets < 0 # via streaming-commons + - qnap-decrypt < 0 # via streaming-commons + - stack < 0 # via streaming-commons + - turtle < 0 # via streaming-commons + - wai-handler-launch < 0 # via streaming-commons + - yesod < 0 # via streaming-commons + - sv-cassava < 0 # via sv-core + - Chart-diagrams < 0 # via svg-builder + - cachix-api < 0 # via swagger2 + - servant-swagger < 0 # via swagger2 + - servant-swagger-ui < 0 # via swagger2 + - servant-swagger-ui-core < 0 # via swagger2 + - servant-swagger-ui-redoc < 0 # via swagger2 + - aeson < 0 # via time-compat + - hsemail < 0 # via time-compat + - http-api-data < 0 # via time-compat + - quickcheck-instances < 0 # via time-compat + - configuration-tools < 0 # via tls + - soap-tls < 0 # via tls + - stack < 0 # via tls + - tls-session-manager < 0 # via tls + - hspec-pg-transact < 0 # via tmp-postgres + - pg-transact < 0 # via tmp-postgres + - salak-toml < 0 # via tomland + - polysemy < 0 # via type-errors-pretty + - polysemy < 0 # via unagi-chan + - require < 0 # via universum + - tintin < 0 # via universum + - dublincore-xml-conduit < 0 # via uri-bytestring + - uri-bytestring-aeson < 0 # via uri-bytestring + - wai-middleware-auth < 0 # via uri-bytestring + - yesod-auth-oauth2 < 0 # via uri-bytestring + - Hoed < 0 # via vector-th-unbox + - dense-linear-algebra < 0 # via vector-th-unbox + - math-functions < 0 # via vector-th-unbox + - netpbm < 0 # via vector-th-unbox + - statistics < 0 # via vector-th-unbox + - thyme < 0 # via vector-th-unbox + - hamilton < 0 # via vty + - hledger-iadd < 0 # via vty + - avers-server < 0 # via wai + - bimap-server < 0 # via wai + - cisco-spark-api < 0 # via wai + - configuration-tools < 0 # via wai + - filter-logger < 0 # via wai + - fn < 0 # via wai + - hoogle < 0 # via wai + - hspec-wai < 0 # via wai + - line < 0 # via wai + - pipes-wai < 0 # via wai + - servant-auth-wordpress < 0 # via wai + - servant-checked-exceptions < 0 # via wai + - servant-conduit < 0 # via wai + - servant-lucid < 0 # via wai + - servant-machines < 0 # via wai + - servant-mock < 0 # via wai + - servant-pipes < 0 # via wai + - servant-rawm < 0 # via wai + - servant-static-th < 0 # via wai + - servant-tracing < 0 # via wai + - servant-yaml < 0 # via wai + - serversession-frontend-wai < 0 # via wai + - servius < 0 # via wai + - simple < 0 # via wai + - simple-session < 0 # via wai + - streaming-wai < 0 # via wai + - tonatona-servant < 0 # via wai + - wai-conduit < 0 # via wai + - wai-cors < 0 # via wai + - wai-eventsource < 0 # via wai + - wai-handler-launch < 0 # via wai + - wai-middleware-auth < 0 # via wai + - wai-middleware-caching < 0 # via wai + - wai-middleware-static < 0 # via wai + - wai-predicates < 0 # via wai + - wai-session < 0 # via wai + - wai-session-postgresql < 0 # via wai + - wai-slack-middleware < 0 # via wai + - wai-transformers < 0 # via wai + - web-routes-wai < 0 # via wai + - webex-teams-api < 0 # via wai + - webex-teams-conduit < 0 # via wai + - webex-teams-pipes < 0 # via wai + - yesod < 0 # via wai + - yesod-auth < 0 # via wai + - yesod-csp < 0 # via wai + - yesod-eventsource < 0 # via wai + - yesod-fb < 0 # via wai + - yesod-form < 0 # via wai + - yesod-gitrepo < 0 # via wai + - yesod-static < 0 # via wai + - servant-rawm < 0 # via wai-app-static + - servant-swagger-ui-core < 0 # via wai-app-static + - servius < 0 # via wai-app-static + - wai-middleware-auth < 0 # via wai-app-static + - yesod-static < 0 # via wai-app-static + - filter-logger < 0 # via wai-extra + - fn < 0 # via wai-extra + - hspec-wai < 0 # via wai-extra + - simple < 0 # via wai-extra + - simple-session < 0 # via wai-extra + - tonatona-servant < 0 # via wai-extra + - wai-middleware-auth < 0 # via wai-extra + - yesod < 0 # via wai-extra + - yesod-auth-hashdb < 0 # via wai-extra + - yesod-eventsource < 0 # via wai-extra + - yesod-persistent < 0 # via wai-extra + - yesod-static < 0 # via wai-extra + - filter-logger < 0 # via wai-logger + - hoogle < 0 # via wai-logger + - yesod < 0 # via wai-logger + - avers-server < 0 # via wai-websockets + - wai-transformers < 0 # via wai-websockets + - yesod-websockets < 0 # via wai-websockets + - bimap-server < 0 # via warp + - cisco-spark-api < 0 # via warp + - configuration-tools < 0 # via warp + - hoogle < 0 # via warp + - pg-harness-server < 0 # via warp + - servant-checked-exceptions < 0 # via warp + - servant-cli < 0 # via warp + - servant-conduit < 0 # via warp + - servant-js < 0 # via warp + - servant-lucid < 0 # via warp + - servant-machines < 0 # via warp + - servant-mock < 0 # via warp + - servant-pipes < 0 # via warp + - servant-rawm < 0 # via warp + - servant-static-th < 0 # via warp + - servant-tracing < 0 # via warp + - servant-yaml < 0 # via warp + - tonatona-servant < 0 # via warp + - wai-handler-launch < 0 # via warp + - wai-middleware-auth < 0 # via warp + - webex-teams-api < 0 # via warp + - webex-teams-conduit < 0 # via warp + - webex-teams-pipes < 0 # via warp + - yesod < 0 # via warp + - yesod-auth-oauth2 < 0 # via warp + - yesod-paginator < 0 # via warp + - configuration-tools < 0 # via warp-tls + - hoogle < 0 # via warp-tls + - avers-server < 0 # via websockets + - skews < 0 # via websockets + - wai-transformers < 0 # via websockets + - websockets-snap < 0 # via websockets + - yesod-websockets < 0 # via websockets + - elm-export < 0 # via wl-pprint-text + - galois-field < 0 # via wl-pprint-text + - servant-elm < 0 # via wl-pprint-text + - dom-parser < 0 # via xml-lens + - yesod < 0 # via yesod-core + - yesod-alerts < 0 # via yesod-core + - yesod-auth < 0 # via yesod-core + - yesod-auth-hashdb < 0 # via yesod-core + - yesod-auth-oauth2 < 0 # via yesod-core + - yesod-csp < 0 # via yesod-core + - yesod-eventsource < 0 # via yesod-core + - yesod-fb < 0 # via yesod-core + - yesod-form < 0 # via yesod-core + - yesod-form-bootstrap4 < 0 # via yesod-core + - yesod-gitrepo < 0 # via yesod-core + - yesod-gitrev < 0 # via yesod-core + - yesod-newsfeed < 0 # via yesod-core + - yesod-paginator < 0 # via yesod-core + - yesod-persistent < 0 # via yesod-core + - yesod-recaptcha2 < 0 # via yesod-core + - yesod-sitemap < 0 # via yesod-core + - yesod-static < 0 # via yesod-core + - yesod-text-markdown < 0 # via yesod-core + - yesod-websockets < 0 # via yesod-core + - yesod-auth-hashdb < 0 # via yesod-test + - yesod-csp < 0 # via yesod-test + - yesod-paginator < 0 # via yesod-test + - yesod-static < 0 # via yesod-test + + # round 3 + - debug < 0 # via Hoed + - aeson-attoparsec < 0 # via aeson + - aeson-better-errors < 0 # via aeson + - aeson-casing < 0 # via aeson + - aeson-compat < 0 # via aeson + - aeson-extra < 0 # via aeson + - aeson-generic-compat < 0 # via aeson + - aeson-picker < 0 # via aeson + - aeson-qq < 0 # via aeson + - aeson-utils < 0 # via aeson + - aeson-yak < 0 # via aeson + - api-field-json-th < 0 # via aeson + - base32string < 0 # via aeson + - base58string < 0 # via aeson + - base64-bytestring-type < 0 # via aeson + - binary-tagged < 0 # via aeson + - bower-json < 0 # via aeson + - ca-province-codes < 0 # via aeson + - cabal2nix < 0 # via aeson + - cfenv < 0 # via aeson + - chronologique < 0 # via aeson + - codec < 0 # via aeson + - composable-associations-aeson < 0 # via aeson + - criterion < 0 # via aeson + - criterion-measurement < 0 # via aeson + - cuckoo-filter < 0 # via aeson + - debug < 0 # via aeson + - deriveJsonNoPrefix < 0 # via aeson + - detour-via-sci < 0 # via aeson + - distribution-nixpkgs < 0 # via aeson + - distribution-opensuse < 0 # via aeson + - docopt < 0 # via aeson + - doctest-discover < 0 # via aeson + - elm-bridge < 0 # via aeson + - envelope < 0 # via aeson + - etc < 0 # via aeson + - eventful-core < 0 # via aeson + - eventful-test-helpers < 0 # via aeson + - fast-builder < 0 # via aeson + - forma < 0 # via aeson + - genvalidity-aeson < 0 # via aeson + - genvalidity-hspec-aeson < 0 # via aeson + - geojson < 0 # via aeson + - github-types < 0 # via aeson + - github-webhooks < 0 # via aeson + - groundhog < 0 # via aeson + - groundhog-postgresql < 0 # via aeson + - groundhog-th < 0 # via aeson + - hackage-db < 0 # via aeson + - haskell-lsp-types < 0 # via aeson + - haskell-names < 0 # via aeson + - hexstring < 0 # via aeson + - hinfo < 0 # via aeson + - hourglass-orphans < 0 # via aeson + - hruby < 0 # via aeson + - hschema-aeson < 0 # via aeson + - hslua-aeson < 0 # via aeson + - hspec-expectations-pretty-diff < 0 # via aeson + - hspec-wai-json < 0 # via aeson + - htoml < 0 # via aeson + - inline-r < 0 # via aeson + - insert-ordered-containers < 0 # via aeson + - interpolator < 0 # via aeson + - ip < 0 # via aeson + - ipython-kernel < 0 # via aeson + - jose < 0 # via aeson + - jose-jwt < 0 # via aeson + - json-alt < 0 # via aeson + - json-rpc-generic < 0 # via aeson + - jsonpath < 0 # via aeson + - jwt < 0 # via aeson + - katip < 0 # via aeson + - lens-aeson < 0 # via aeson + - lucid-extras < 0 # via aeson + - lxd-client-config < 0 # via aeson + - matplotlib < 0 # via aeson + - menshen < 0 # via aeson + - microlens-aeson < 0 # via aeson + - microstache < 0 # via aeson + - miso < 0 # via aeson + - monad-logger-json < 0 # via aeson + - mustache < 0 # via aeson + - ndjson-conduit < 0 # via aeson + - opaleye < 0 # via aeson + - pandoc-types < 0 # via aeson + - pipes-aeson < 0 # via aeson + - postgresql-binary < 0 # via aeson + - postgresql-orm < 0 # via aeson + - postgresql-simple < 0 # via aeson + - postgresql-simple-queue < 0 # via aeson + - pretty-simple < 0 # via aeson + - protocol-buffers < 0 # via aeson + - pushbullet-types < 0 # via aeson + - relapse < 0 # via aeson + - rigel-viz < 0 # via aeson + - selda-json < 0 # via aeson + - serversession < 0 # via aeson + - simple-templates < 0 # via aeson + - skylighting < 0 # via aeson + - skylighting-core < 0 # via aeson + - smoothie < 0 # via aeson + - sourcemap < 0 # via aeson + - state-codes < 0 # via aeson + - strict-base-types < 0 # via aeson + - stripe-wreq < 0 # via aeson + - swagger < 0 # via aeson + - template-toolkit < 0 # via aeson + - text-region < 0 # via aeson + - these < 0 # via aeson + - tree-diff < 0 # via aeson + - ua-parser < 0 # via aeson + - users < 0 # via aeson + - validity-aeson < 0 # via aeson + - weeder < 0 # via aeson + - winery < 0 # via aeson + - world-peace < 0 # via aeson + - xlsx-tabular < 0 # via aeson + - xml-to-json < 0 # via aeson + - yaml < 0 # via aeson + - hyperloglog < 0 # via approximate + - hw-rankselect-base < 0 # via bits-extra + - alerts < 0 # via blaze-html + - blaze-bootstrap < 0 # via blaze-html + - cheapskate < 0 # via blaze-html + - cheapskate-highlight < 0 # via blaze-html + - cheapskate-lucid < 0 # via blaze-html + - cmark-gfm < 0 # via blaze-html + - highlighting-kate < 0 # via blaze-html + - inliterate < 0 # via blaze-html + - skylighting < 0 # via blaze-html + - skylighting-core < 0 # via blaze-html + - barrier < 0 # via blaze-svg + - RSA < 0 # via crypto-pubkey-types + - crypto-pubkey < 0 # via crypto-pubkey-types + - cabal-debian < 0 # via debian + - xml-isogen < 0 # via dom-parser + - scheduler < 0 # via fib + - cabal2nix < 0 # via hpack + - cabal-debian < 0 # via hsemail + - distribution-opensuse < 0 # via hsemail + - mbox-utility < 0 # via hsemail + - postgresql-simple-queue < 0 # via hspec-pg-transact + - hspec-wai-json < 0 # via hspec-wai + - base64-bytestring-type < 0 # via http-api-data + - envelope < 0 # via http-api-data + - eventful-core < 0 # via http-api-data + - http-link-header < 0 # via http-api-data + - miso < 0 # via http-api-data + - pushbullet-types < 0 # via http-api-data + - dl-fedora < 0 # via http-directory + - hw-balancedparens < 0 # via hw-fingertree + - hmm-lapack < 0 # via lapack + - linear-circuit < 0 # via lapack + - magico < 0 # via lapack + - resistor-cube < 0 # via lapack + - cmark-gfm < 0 # via markdown + - bins < 0 # via math-functions + - mwc-random < 0 # via math-functions + - random-fu < 0 # via math-functions + - async-refresh < 0 # via monad-logger + - async-refresh-tokens < 0 # via monad-logger + - eventful-test-helpers < 0 # via monad-logger + - groundhog-mysql < 0 # via monad-logger + - logging-effect < 0 # via monad-logger + - monad-logger-json < 0 # via monad-logger + - monad-logger-prefix < 0 # via monad-logger + - monad-logger-syslog < 0 # via monad-logger + - rio-orphans < 0 # via monad-logger + - massiv-io < 0 # via netpbm + - relational-record < 0 # via persistable-types-HDBC-pg + - postgresql-simple-queue < 0 # via pg-transact + - inliterate < 0 # via plotlyhs + - polysemy-plugin < 0 # via polysemy + - attoparsec-uri < 0 # via quickcheck-instances + - caster < 0 # via quickcheck-instances + - commutative < 0 # via quickcheck-instances + - concise < 0 # via quickcheck-instances + - crypt-sha512 < 0 # via quickcheck-instances + - deferred-folds < 0 # via quickcheck-instances + - deque < 0 # via quickcheck-instances + - edit-distance-vector < 0 # via quickcheck-instances + - envy < 0 # via quickcheck-instances + - hschema-aeson < 0 # via quickcheck-instances + - hschema-quickcheck < 0 # via quickcheck-instances + - hslua < 0 # via quickcheck-instances + - hslua-aeson < 0 # via quickcheck-instances + - http-types < 0 # via quickcheck-instances + - interpolate < 0 # via quickcheck-instances + - jose < 0 # via quickcheck-instances + - katip < 0 # via quickcheck-instances + - monoid-subclasses < 0 # via quickcheck-instances + - natural-transformation < 0 # via quickcheck-instances + - parsers < 0 # via quickcheck-instances + - protobuf-simple < 0 # via quickcheck-instances + - strict-list < 0 # via quickcheck-instances + - string-conversions < 0 # via quickcheck-instances + - string-interpolate < 0 # via quickcheck-instances + - text-show < 0 # via quickcheck-instances + - text-show-instances < 0 # via quickcheck-instances + - tmapmvar < 0 # via quickcheck-instances + - winery < 0 # via quickcheck-instances + - xml-isogen < 0 # via quickcheck-instances + - xmlbf < 0 # via quickcheck-instances + - xmlbf-xeno < 0 # via quickcheck-instances + - yi-rope < 0 # via quickcheck-instances + - epub-metadata < 0 # via regex-compat-tdfa + - highlighting-kate < 0 # via regex-pcre-builtin + - html-email-validate < 0 # via regex-pcre-builtin + - pcre-utils < 0 # via regex-pcre-builtin + - skylighting < 0 # via regex-pcre-builtin + - skylighting-core < 0 # via regex-pcre-builtin + - template-toolkit < 0 # via regex-pcre-builtin + - dl-fedora < 0 # via regex-posix + - inline-c < 0 # via regex-posix + - language-haskell-extract < 0 # via regex-posix + - test-framework < 0 # via regex-posix + - test-framework-th < 0 # via regex-posix + - xml-to-json < 0 # via regex-posix + - cabal-debian < 0 # via regex-tdfa + - haskell-gi < 0 # via regex-tdfa + - katip < 0 # via regex-tdfa + - menshen < 0 # via regex-tdfa + - shelltestrunner < 0 # via regex-tdfa + - tasty-silver < 0 # via regex-tdfa + - relational-record < 0 # via relational-query-HDBC + - wikicfp-scraper < 0 # via scalpel-core + - miso < 0 # via servant + - servant-foreign < 0 # via servant + - miso < 0 # via servant-lucid + - state-codes < 0 # via shakespeare + - xml-hamlet < 0 # via shakespeare + - criterion < 0 # via statistics + - emd < 0 # via statistics + - stm-containers < 0 # via stm-hamt + - show-prettyprint < 0 # via trifecta + - bench < 0 # via turtle + - distribution-opensuse < 0 # via turtle + - singletons < 0 # via turtle + - emd < 0 # via typelits-witnesses + - stripe-wreq < 0 # via wreq + - jose < 0 # via x509 + - jwt < 0 # via x509 + - x509-system < 0 # via x509 + - jwt < 0 # via x509-store + - x509-system < 0 # via x509-store + - haskell-gi < 0 # via xml-conduit + - xlsx < 0 # via xml-conduit + - xml-conduit-parse < 0 # via xml-conduit + - xml-conduit-writer < 0 # via xml-conduit + - xml-hamlet < 0 # via xml-conduit + - xml-indexed-cursor < 0 # via xml-conduit + - xml-isogen < 0 # via xml-conduit + - yeshql < 0 # via yeshql-hdbc + + # round 4 + - bitcoin-types < 0 # via base58string + - JuicyPixels-extra < 0 # via criterion + - apecs < 0 # via criterion + - backprop < 0 # via criterion + - base64-bytestring < 0 # via criterion + - crypto-numbers < 0 # via criterion + - cryptohash < 0 # via criterion + - fmt < 0 # via criterion + - generic-data < 0 # via criterion + - generics-sop < 0 # via criterion + - hw-conduit < 0 # via criterion + - hw-excess < 0 # via criterion + - hw-prim < 0 # via criterion + - hw-streams < 0 # via criterion + - lucid < 0 # via criterion + - posix-paths < 0 # via criterion + - product-profunctors < 0 # via criterion + - random-bytestring < 0 # via criterion + - rdf < 0 # via criterion + - regex-applicative < 0 # via criterion + - replace-attoparsec < 0 # via criterion + - replace-megaparsec < 0 # via criterion + - salak < 0 # via criterion + - salak-yaml < 0 # via criterion + - simple-vec3 < 0 # via criterion + - tensors < 0 # via criterion + - terminal-progress-bar < 0 # via criterion + - word-wrap < 0 # via criterion + - zstd < 0 # via criterion + - text-builder < 0 # via deferred-folds + - quickbench < 0 # via docopt + - control-dsl < 0 # via doctest-discover + - fmt < 0 # via doctest-discover + - tonaparser < 0 # via envy + - eventful-memory < 0 # via eventful-core + - eventful-memory < 0 # via eventful-test-helpers + - gi-atk < 0 # via haskell-gi + - gi-cairo < 0 # via haskell-gi + - gi-gdk < 0 # via haskell-gi + - gi-gdkpixbuf < 0 # via haskell-gi + - gi-gio < 0 # via haskell-gi + - gi-glib < 0 # via haskell-gi + - gi-gobject < 0 # via haskell-gi + - gi-javascriptcore < 0 # via haskell-gi + - gi-pango < 0 # via haskell-gi + - bitcoin-block < 0 # via hexstring + - bitcoin-tx < 0 # via hexstring + - bitcoin-types < 0 # via hexstring + - hslua-module-system < 0 # via hslua + - hslua-module-text < 0 # via hslua + - tasty-lua < 0 # via hslua + - purescript-bridge < 0 # via hspec-expectations-pretty-diff + - s3-signer < 0 # via http-types + - web-routes < 0 # via http-types + - wordpress-auth < 0 # via http-types + - hw-excess < 0 # via hw-rankselect-base + - apecs-physics < 0 # via inline-c + - inline-c-cpp < 0 # via inline-c + - H < 0 # via inline-r + - fmt < 0 # via interpolate + - generics-eot < 0 # via interpolate + - attoparsec-ip < 0 # via ip + - mwc-probability-transition < 0 # via logging-effect + - incremental-parser < 0 # via monoid-subclasses + - timerep < 0 # via monoid-subclasses + - Spintax < 0 # via mwc-random + - backprop < 0 # via mwc-random + - conduit < 0 # via mwc-random + - foldl < 0 # via mwc-random + - metrics < 0 # via mwc-random + - monad-par < 0 # via mwc-random + - mono-traversable < 0 # via mwc-random + - mwc-probability < 0 # via mwc-random + - pipes-random < 0 # via mwc-random + - random-bytestring < 0 # via mwc-random + - random-source < 0 # via mwc-random + - sampling < 0 # via mwc-random + - sparse-linear-algebra < 0 # via mwc-random + - uncertain < 0 # via mwc-random + - vector-algorithms < 0 # via mwc-random + - hschema < 0 # via natural-transformation + - hschema-prettyprinter < 0 # via natural-transformation + - asciidiagram < 0 # via pandoc-types + - texmath < 0 # via pandoc-types + - conduit-parse < 0 # via parsers + - data-serializer < 0 # via parsers + - data-textual < 0 # via parsers + - network-ip < 0 # via parsers + - replace-attoparsec < 0 # via parsers + - time-parsers < 0 # via parsers + - hasql < 0 # via postgresql-binary + - dbcleaner < 0 # via postgresql-simple + - peregrin < 0 # via postgresql-simple + - postgresql-schema < 0 # via postgresql-simple + - postgresql-simple-url < 0 # via postgresql-simple + - postgresql-transactional < 0 # via postgresql-simple + - psql-helpers < 0 # via postgresql-simple + - users-postgresql-simple < 0 # via postgresql-simple + - protocol-buffers-descriptor < 0 # via protocol-buffers + - massiv < 0 # via scheduler + - massiv-test < 0 # via scheduler + - servant-ruby < 0 # via servant-foreign + - decidable < 0 # via singletons + - eliminators < 0 # via singletons + - functor-products < 0 # via singletons + - lens-typelevel < 0 # via singletons + - list-witnesses < 0 # via singletons + - singleton-nats < 0 # via singletons + - filecache < 0 # via strict-base-types + - pcre-heavy < 0 # via string-conversions + - secp256k1-haskell < 0 # via string-conversions + - bv-little < 0 # via text-show + - nonempty-containers < 0 # via these + - pipes-fluid < 0 # via these + - semialign < 0 # via these + - quickcheck-state-machine < 0 # via tree-diff + - users-postgresql-simple < 0 # via users + - users-test < 0 # via users + - dotenv < 0 # via yaml + - fakedata < 0 # via yaml + - frontmatter < 0 # via yaml + + # round 5 + - hmatrix-backprop < 0 # via backprop + - clientsession < 0 # via base64-bytestring + - dataurl < 0 # via base64-bytestring + - mime-mail < 0 # via base64-bytestring + - nonce < 0 # via base64-bytestring + - openpgp-asciiarmor < 0 # via base64-bytestring + - qrcode-juicypixels < 0 # via base64-bytestring + - scrypt < 0 # via base64-bytestring + - text-conversions < 0 # via base64-bytestring + - typed-process < 0 # via base64-bytestring + - binary-conduit < 0 # via conduit + - binary-ext < 0 # via conduit + - bzlib-conduit < 0 # via conduit + - cassava-conduit < 0 # via conduit + - cereal-conduit < 0 # via conduit + - classy-prelude-conduit < 0 # via conduit + - conduit-concurrent-map < 0 # via conduit + - conduit-iconv < 0 # via conduit + - errors-ext < 0 # via conduit + - fsnotify-conduit < 0 # via conduit + - libyaml < 0 # via conduit + - lzma-conduit < 0 # via conduit + - rocksdb-query < 0 # via conduit + - safeio < 0 # via conduit + - xls < 0 # via conduit + - executable-hash < 0 # via cryptohash + - locators < 0 # via cryptohash + - columnar < 0 # via fmt + - enum-text < 0 # via fmt + - enum-text-rio < 0 # via fmt + - optparse-enum < 0 # via fmt + - rg < 0 # via fmt + - cassava-records < 0 # via foldl + - pipes-extras < 0 # via foldl + - pipes-ordered-zip < 0 # via foldl + - sequence-formats < 0 # via foldl + - sequenceTools < 0 # via foldl + - generic-data-surgery < 0 # via generic-data + - boring < 0 # via generics-sop + - generics-sop-lens < 0 # via generics-sop + - getopt-generics < 0 # via generics-sop + - pretty-sop < 0 # via generics-sop + - records-sop < 0 # via generics-sop + - tuple-sop < 0 # via generics-sop + - hasql-optparse-applicative < 0 # via hasql + - hasql-pool < 0 # via hasql + - hasql-transaction < 0 # via hasql + - hw-bits < 0 # via hw-prim + - hw-json-simd < 0 # via hw-prim + - flat-mcmc < 0 # via monad-par + - binary-ext < 0 # via mono-traversable + - classy-prelude < 0 # via mono-traversable + - focuslist < 0 # via mono-traversable + - mono-traversable-instances < 0 # via mono-traversable + - mono-traversable-keys < 0 # via mono-traversable + - mutable-containers < 0 # via mono-traversable + - transaction < 0 # via mono-traversable + - unboxing-vector < 0 # via mono-traversable + - declarative < 0 # via mwc-probability + - flat-mcmc < 0 # via mwc-probability + - hasty-hamiltonian < 0 # via mwc-probability + - mcmc-types < 0 # via mwc-probability + - mighty-metropolis < 0 # via mwc-probability + - speedy-slice < 0 # via mwc-probability + - lens-regex-pcre < 0 # via pcre-heavy + - rvar < 0 # via random-source + - kleene < 0 # via regex-applicative + - regex-applicative-text < 0 # via regex-applicative + - abstract-deque-tests < 0 # via test-framework + - crypto-api-tests < 0 # via test-framework + - crypto-cipher-tests < 0 # via test-framework + - test-framework-hunit < 0 # via test-framework + - test-framework-leancheck < 0 # via test-framework + - test-framework-quickcheck2 < 0 # via test-framework + - test-framework-smallcheck < 0 # via test-framework + - tonatona < 0 # via tonaparser + - tonatona-logger < 0 # via tonaparser + - Rasterific < 0 # via vector-algorithms + - tdigest < 0 # via vector-algorithms + - web-routes-hsp < 0 # via web-routes + + # round 6 + - rasterific-svg < 0 # via Rasterific + - fmt-for-rio < 0 # via enum-text-rio + - monad-unlift-ref < 0 # via mutable-containers + - xeno < 0 # via mutable-containers + - pipes-category < 0 # via pipes-extras + - password < 0 # via scrypt + - rio < 0 # via typed-process + - tldr < 0 # via typed-process + + # round 7 + - pipes-misc < 0 # via pipes-category + - hi-file-parser < 0 # via rio + - tonalude < 0 # via rio + + "GHC upper bounds": # Need to always match the version shipped with GHC - Win32 == 2.6.1.0 "Stackage upper bounds": - # https://github.com/commercialhaskell/stackage/issues/4528 - - network < 3 - - hsdev < 0.3.3.0 - - network-bsd < 2.8.1.0 - - MissingH < 1.4.2.0 - - dbus < 1.2.8 - - xml-conduit < 1.9 - - systemd < 2 - - # https://github.com/simonmichael/hledger/pull/987 - - easytest < 0.3 - - # https://github.com/commercialhaskell/stackage/issues/4484 - - hslogger < 1.3.0.0 - - # https://github.com/commercialhaskell/stackage/issues/4519 - - case-insensitive < 1.2.1 - - # https://github.com/commercialhaskell/stackage/issues/4529 - - hashable < 1.3 - - # https://github.com/commercialhaskell/stackage/issues/4530 - - semigroups < 0.19 - - # https://github.com/commercialhaskell/stackage/issues/4531 - - constraints < 0.11 - - # https://github.com/commercialhaskell/stackage/issues/4534 - - intervals < 0.9 - - # https://github.com/commercialhaskell/stackage/issues/4533 - - machines < 0.7 - - # https://github.com/commercialhaskell/stackage/issues/4532 - - profunctors < 5.5 - - # https://github.com/commercialhaskell/stackage/issues/4541 - - dependent-sum < 0.5 - - # https://github.com/commercialhaskell/stackage/issues/4564 - - primitive < 0.7.0.0 - - primitive-extras < 0.8 - - primitive-unlifted < 0 - - stm-hamt < 0 - - stm-containers < 0 - - # https://github.com/commercialhaskell/stackage/issues/4568 - - prettyprinter < 1.3.0 - - # https://github.com/commercialhaskell/stackage/issues/4569 - - cryptonite < 0.26 - - # https://github.com/commercialhaskell/stackage/issues/4575 - - data-accessor < 0.2.3 - - # https://github.com/commercialhaskell/stackage/issues/4579 - - quickcheck-classes < 0.6.2.0 - - # https://github.com/commercialhaskell/stackage/issues/4596 - - tls < 1.5.0 - - tls-debug < 0.4.6 - - # https://github.com/commercialhaskell/stackage/issues/4604 - - inline-c < 0.8 - - # https://github.com/commercialhaskell/stackage/issues/4619 - - hw-balancedparens < 0.2.1.0 - # https://github.com/commercialhaskell/stackage/issues/4676 - - hw-json < 1.1 - # https://github.com/commercialhaskell/stackage/issues/4657 - - hw-rankselect < 0.13.1.0 - - # https://github.com/commercialhaskell/stackage/issues/4632 - - microlens < 0.4.11 - - microlens-mtl < 0.2 - - microlens-platform < 0.4 - - microlens-ghc < 0.4.11 - - microlens-th < 0.4.3 - - # https://github.com/commercialhaskell/stackage/issues/4633 - - hw-packed-vector < 0.1 - - # https://github.com/commercialhaskell/stackage/issues/4645 - - warp < 3.3.0 - - http2 < 2 - - # https://github.com/commercialhaskell/stackage/issues/4673 - - hlint < 2.2 - - # https://github.com/commercialhaskell/stackage/issues/4693 - - optparse-applicative < 0.15 - - # https://github.com/commercialhaskell/stackage/issues/4702 - - generic-lens < 1.2.0.0 - - # https://github.com/commercialhaskell/stackage/issues/4709 - - base-unicode-symbols < 0.2.4 - - # https://github.com/commercialhaskell/stackage/issues/4725 - - lens-family < 2 - - lens-family-core < 2 - - # https://github.com/commercialhaskell/stackage/issues/4731 - - ghc-lib-parser < 8.8.0.20190723 - - ghc-lib < 8.8.0.20190723 - - # https://github.com/commercialhaskell/stackage/issues/4737 - - parser-combinators < 1.2.0 - - parser-combinators-tests < 1.2.0 - - # https://github.com/commercialhaskell/stackage/issues/4739 - - doctemplates < 0.3 - - # https://github.com/commercialhaskell/stackage/issues/4743 - - monoidal-containers < 0.5 - - # https://github.com/commercialhaskell/stackage/issues/4749 - - call-stack < 0.2.0 - - # https://github.com/commercialhaskell/stackage/issues/4750 - - gi-gdk < 4 - - gi-gtk < 4 - - # https://github.com/commercialhaskell/stackage/issues/4753 - - dependent-map < 0.3 - - dependent-sum-template < 0.1 - - # https://github.com/commercialhaskell/stackage/issues/4775 - - polyparse < 1.13 - - # https://github.com/commercialhaskell/stackage/issues/4781 - - generic-deriving < 1.13 - - # See https://github.com/commercialhaskell/stackage/issues/4646#issuecomment-525517773 - - singletons < 2.6 - - eliminators < 0.6 - - th-desugar < 1.10 - - # https://github.com/commercialhaskell/stackage/issues/4785 - - ghc-exactprint < 0.6.2 - - # https://github.com/commercialhaskell/stackage/issues/4786 - - shelly < 1.9 - - # https://github.com/commercialhaskell/stackage/issues/4796 - - jailbreak-cabal < 1.3.5 - - cabal2spec < 2.3 - - # https://github.com/commercialhaskell/stackage/issues/4798 - - ansi-terminal < 0.10 - - # https://github.com/commercialhaskell/stackage/issues/4799 - - memory < 0.15 - - # https://github.com/commercialhaskell/stackage/issues/4801 - - base-compat < 0.11 - - # https://github.com/commercialhaskell/stackage/issues/4802 - - base-compat-batteries < 0.11 - - # https://github.com/commercialhaskell/stackage/issues/4803 - - hspec-wai < 0.10.0 - - hspec-wai-json < 0.10.0 - - # https://github.com/commercialhaskell/stackage/issues/4804 - - lens < 4.18 - - # https://github.com/commercialhaskell/stackage/issues/4805 - - lens-aeson < 1.1 - - # https://github.com/commercialhaskell/stackage/issues/4807 - - aeson < 1.4.5.0 - - # https://github.com/commercialhaskell/stackage/issues/4809 - - elm-street < 0.1 - - # https://github.com/commercialhaskell/stackage/issues/4816 - - trifecta < 2.1 - - # https://github.com/commercialhaskell/stackage/issues/4823 - - universe < 1.2 - - universe-dependent-sum < 1.2 - - # https://github.com/commercialhaskell/stackage/issues/4824 - - bindings-GLFW < 3.3 - - # https://github.com/commercialhaskell/stackage/issues/4829 - - safecopy < 0.10 - - # https://github.com/commercialhaskell/stackage/issues/4832 - - path-io < 1.5 - - # https://github.com/commercialhaskell/stackage/issues/4833 - - vector-sized < 1.4 - - essence-of-live-coding < 0.1.0.2 - - rhine < 0.5.1.1 + [] # end of packages @@ -4977,6 +6412,103 @@ skipped-tests: # Outdated dependencies # These can periodically be checked for updates; # just remove these lines and run `stackage-curator check' to verify. + + # test-framework per ghc 8.8 + - Decimal # via test-framework + - Diff # via test-framework + - ENIG # via test-framework + - Glob # via test-framework + - SHA # via test-framework + - abstract-deque-tests # via test-framework + - astro # via test-framework + - async # via test-framework + - base64-bytestring # via test-framework + - binary-bits # via test-framework + - bindings-GLFW # via test-framework + - blaze-builder # via test-framework + - blaze-textual # via test-framework + - c2hs # via test-framework + - cereal # via test-framework + - chaselev-deque # via test-framework + - cipher-aes # via test-framework + - cipher-blowfish # via test-framework + - cipher-camellia # via test-framework + - cipher-des # via test-framework + - cipher-rc4 # via test-framework + - concurrent-extra # via test-framework + - conduit-iconv # via test-framework + - configurator # via test-framework + - crypto-api-tests # via test-framework + - crypto-cipher-tests # via test-framework + - ctrie # via test-framework + - data-textual # via test-framework + - deepseq-generics # via test-framework + - doldol # via test-framework + - double-conversion # via test-framework + - either # via test-framework + - enummapset # via test-framework + - exception-transformers # via test-framework + - exceptions # via test-framework + - fingertree # via test-framework + - hashable # via test-framework + - haskey-btree # via test-framework + - hmatrix-morpheus # via test-framework + - irc # via test-framework + - language-c-quote # via test-framework + - largeword # via test-framework + - lens # via test-framework + - lifted-base # via test-framework + - linear # via test-framework + - lockfree-queue # via test-framework + - lzma-conduit # via test-framework + - messagepack # via test-framework + - minimorph # via test-framework + - miniutter # via test-framework + - mltool # via test-framework + - monad-memo # via test-framework + - monad-peel # via test-framework + - murmur3 # via test-framework + - nettle # via test-framework + - network-uri # via test-framework + - numbers # via test-framework + - parsec # via test-framework + - pem # via test-framework + - perfect-hash-generator # via test-framework + - persist # via test-framework + - pipes # via test-framework + - pipes-extras # via test-framework + - prefix-units # via test-framework + - pureMD5 # via test-framework + - range # via test-framework + - safeio # via test-framework + - saltine # via test-framework + - scrypt # via test-framework + - siphash # via test-framework + - spatial-math # via test-framework + - terminal-progress-bar # via test-framework + - test-framework-hunit # via test-framework + - test-framework-leancheck # via test-framework + - test-framework-quickcheck2 # via test-framework + - test-framework-smallcheck # via test-framework + - text-icu # via test-framework + - text-printer # via test-framework + - threads # via test-framework + - throttle-io-stream # via test-framework + - ttrie # via test-framework + - type-map # via test-framework + - tzdata # via test-framework + - unicode-show # via test-framework + - word24 # via test-framework + - zeromq4-patterns # via test-framework + - zstd # via test-framework + - ENIG # via test-framework-th + - doldol # via test-framework-th + - lens # via test-framework-th + - messagepack # via test-framework-th + - safeio # via test-framework-th + - tzdata # via test-framework-th + + # other dep issues - Cabal # GHC 8.4 via base-orphans-0.7, base-orphans-0.7 - DBFunctor # missing file test_options.csv - MissingH # testpack, quickcheck From 26679e50664740c529cca52ff1f01cd445668ba9 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Tue, 24 Sep 2019 16:34:50 -0700 Subject: [PATCH 0673/2682] Add constraint "cabal2nix < 2.15" --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 22b648de..e3999815 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4860,6 +4860,10 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4846 - xmonad-contrib < 0.16 + # requires Cabal 3 + - cabal2nix < 2.15.0 + + # end of packages # Package flags are applied to individual packages, and override the values of From 6243f71afc190033e647d5cac850c07f95b5b830 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 25 Sep 2019 15:41:08 -0700 Subject: [PATCH 0674/2682] More constraints that will be deleted soon anyways --- build-constraints.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index e3999815..d34fddbf 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4841,6 +4841,7 @@ packages: - vector-sized < 1.4 - essence-of-live-coding < 0.1.0.2 - rhine < 0.5.1.1 + - emd < 0.1.6.0 # https://github.com/commercialhaskell/stackage/issues/4841 - hackage-db < 2.1.0 @@ -4863,6 +4864,12 @@ packages: # requires Cabal 3 - cabal2nix < 2.15.0 + # breaks galois-field-0.4.1 + # https://github.com/adjoint-io/galois-field/issues/22 + - poly < 0.3.2.0 + + # misc. doesn't matter; these will be deleted soon anyways + - regex-base < 0.94.0.0 # end of packages From 25d0709d559ecde2694bfc1309173f99d41680cb Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 25 Sep 2019 16:35:30 -0700 Subject: [PATCH 0675/2682] Update everything to ghc 8.8.1 --- Dockerfile | 2 +- debian-bootstrap.sh | 12 ++++++------ etc/ci-script.sh | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1bd56971..fa3dc0c2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM fpco/pid1:18.04 ENV HOME /home/stackage ENV LANG en_US.UTF-8 -ENV GHCVER 8.6.5 +ENV GHCVER 8.8.1 # NOTE: also update debian-bootstrap.sh when cuda version changes ENV PATH /home/stackage/.stack/programs/x86_64-linux/ghc-$GHCVER/bin:/usr/local/cuda-10.0/bin:/usr/sbin:/usr/bin:/sbin:/bin diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index 0e2ce841..f2cc16dc 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -131,7 +131,7 @@ apt-get install -y \ libzip-dev \ libzstd-dev \ libzmq3-dev \ - llvm-6.0 \ + llvm-7.0 \ llvm-8 \ locales \ m4 \ @@ -183,9 +183,9 @@ update-alternatives --install "/usr/bin/ld" "ld" "/usr/bin/ld.bfd" 10 # This version is tracked here: # https://ghc.haskell.org/trac/ghc/wiki/Commentary/Compiler/Backends/LLVM/Installing # -# GHC 8.6 requires LLVM 6.0 tools (specifically, llc-6.0 and opt-6.0). -update-alternatives --install "/usr/bin/llc" "llc" "/usr/bin/llc-6.0" 50 -update-alternatives --install "/usr/bin/opt" "opt" "/usr/bin/opt-6.0" 50 +# GHC 8.8 requires LLVM 7.0 tools (?) (specifically, llc-7.0 and opt-7.0). +update-alternatives --install "/usr/bin/llc" "llc" "/usr/bin/llc-7.0" 50 +update-alternatives --install "/usr/bin/opt" "opt" "/usr/bin/opt-7.0" 50 # nodejs 10 (nodejs8 in bionic needs conflicting libssl10-dev) curl -sL https://deb.nodesource.com/setup_10.x | bash - @@ -257,8 +257,8 @@ apt-add-repository multiverse \ && apt-get update \ && apt-get install -y nvidia-cuda-dev -export CLANG_PURE_LLVM_LIB_DIR=/usr/lib/llvm-6.0/lib; -export CLANG_PURE_LLVM_INCLUDE_DIR=/usr/lib/llvm-6.0/include; +export CLANG_PURE_LLVM_LIB_DIR=/usr/lib/llvm-7.0/lib; +export CLANG_PURE_LLVM_INCLUDE_DIR=/usr/lib/llvm-7.0/include; # protoc, for proto-lens-combinators test suite # Instructions from: https://google.github.io/proto-lens/installing-protoc.html diff --git a/etc/ci-script.sh b/etc/ci-script.sh index 66e04114..192b2a9b 100755 --- a/etc/ci-script.sh +++ b/etc/ci-script.sh @@ -2,7 +2,7 @@ set -euxo pipefail -export GHCVER=8.6.5 +export GHCVER=8.8.1 # Download and unpack the stack executable mkdir -p ~/.local/bin From 13edc335303efbc6978c2088ad146c8e83db1eb8 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 25 Sep 2019 16:44:36 -0700 Subject: [PATCH 0676/2682] try llvm-7 instead of llvm-7.0 --- debian-bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index f2cc16dc..311b7f46 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -131,7 +131,7 @@ apt-get install -y \ libzip-dev \ libzstd-dev \ libzmq3-dev \ - llvm-7.0 \ + llvm-7 \ llvm-8 \ locales \ m4 \ From 21375573a848f0dd15151cdd0e00e4a77ae5064a Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 25 Sep 2019 17:08:44 -0700 Subject: [PATCH 0677/2682] llvm 7 pls --- debian-bootstrap.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index 311b7f46..29a4209d 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -257,8 +257,8 @@ apt-add-repository multiverse \ && apt-get update \ && apt-get install -y nvidia-cuda-dev -export CLANG_PURE_LLVM_LIB_DIR=/usr/lib/llvm-7.0/lib; -export CLANG_PURE_LLVM_INCLUDE_DIR=/usr/lib/llvm-7.0/include; +export CLANG_PURE_LLVM_LIB_DIR=/usr/lib/llvm-7/lib; +export CLANG_PURE_LLVM_INCLUDE_DIR=/usr/lib/llvm-7/include; # protoc, for proto-lens-combinators test suite # Instructions from: https://google.github.io/proto-lens/installing-protoc.html From 7f3f8b4f4b6b3ad04bb52a48e13e5bfda38ecea3 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 25 Sep 2019 17:27:55 -0700 Subject: [PATCH 0678/2682] more llvm 7 stuff --- debian-bootstrap.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index 29a4209d..f487b160 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -183,9 +183,9 @@ update-alternatives --install "/usr/bin/ld" "ld" "/usr/bin/ld.bfd" 10 # This version is tracked here: # https://ghc.haskell.org/trac/ghc/wiki/Commentary/Compiler/Backends/LLVM/Installing # -# GHC 8.8 requires LLVM 7.0 tools (?) (specifically, llc-7.0 and opt-7.0). -update-alternatives --install "/usr/bin/llc" "llc" "/usr/bin/llc-7.0" 50 -update-alternatives --install "/usr/bin/opt" "opt" "/usr/bin/opt-7.0" 50 +# GHC 8.8 requires LLVM 7 tools (?) (specifically, llc-7 and opt-7). +update-alternatives --install "/usr/bin/llc" "llc" "/usr/bin/llc-7" 50 +update-alternatives --install "/usr/bin/opt" "opt" "/usr/bin/opt-7" 50 # nodejs 10 (nodejs8 in bionic needs conflicting libssl10-dev) curl -sL https://deb.nodesource.com/setup_10.x | bash - From 7f5adb9a82c1bfea4b6ea3888278382851517d76 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 25 Sep 2019 18:06:45 -0700 Subject: [PATCH 0679/2682] Skip tests for base-orphans b/c cyclic dep hspec --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index c3483314..2ad44e4c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6414,6 +6414,9 @@ skipped-tests: # These can periodically be checked for updates; # just remove these lines and run `stackage-curator check' to verify. + # Cyclic dependencies + - base-orphans # via hspec + # test-framework per ghc 8.8 - Decimal # via test-framework - Diff # via test-framework From 33c842ddf91a199e5d08212587931d559f2c506b Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 25 Sep 2019 21:46:06 -0700 Subject: [PATCH 0680/2682] Block a bunch of ghc 8.8 build failures --- build-constraints.yaml | 62 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2ad44e4c..db19d240 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6269,6 +6269,68 @@ packages: - hi-file-parser < 0 # via rio - tonalude < 0 # via rio + "GHC 8.8-related build failures": + # MonadFail stuff + - generics-mrsop < 0 + - error-util < 0 + - binary-bits < 0 + - network-house < 0 + - persist < 0 + - frisby < 0 + - shortcut-links < 0 + - HCodecs < 0 + - mainland-pretty < 0 + - streamproc < 0 + - multipart < 0 + - structured-cli < 0 + - flexible-defaults < 0 + - exception-transformers < 0 + - exceptional < 0 + - true-name < 0 + - probability < 0 + - concurrency < 0 + - cron < 0 + - store-core < 0 + - bitcoin-script < 0 + - unbound-generics < 0 + - blas-hs < 0 + - cipher-blowfish < 0 + - data-msgpack-types < 0 + - HaTeX < 0 + - codo-notation < 0 + - open-witness < 0 + - FontyFruity < 0 + - yeshql-core < 0 + - pcf-font < 0 + + # Kind stuff + - vinyl < 0 + + # Template Haskell stuff + - data-dword < 0 + - hlibsass < 0 + - io-choice < 0 + - th-utilities < 0 + + # Data.Text instance of Lift + - language-docker < 0 + + # Cabal 3 + - cabal-file-th < 0 + - sandman < 0 + + # Misc + - cuda < 0 + - vault < 0 + - vivid-osc-tests < 0 + - flay < 0 + - barbies < 0 + - time-qq < 0 + - prettyprinter < 0 + - references < 0 + - interpolatedstring-perl6 < 0 + + "GHC upper bounds": # Need to always match the version shipped with GHC From d739f697f4db6b4a4af3b5dd9a816a3831e8ab1d Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 25 Sep 2019 21:48:23 -0700 Subject: [PATCH 0681/2682] typo --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index db19d240..3c0d0c40 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6322,7 +6322,7 @@ packages: # Misc - cuda < 0 - vault < 0 - - vivid-osc-tests < 0 + - vivid-osc < 0 - flay < 0 - barbies < 0 - time-qq < 0 From 8a3c1f64f919dce923c2c3f16084e0921bea541a Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 25 Sep 2019 21:52:37 -0700 Subject: [PATCH 0682/2682] Also block transitive deps of build failures --- build-constraints.yaml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3c0d0c40..73ae5854 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6330,6 +6330,33 @@ packages: - references < 0 - interpolatedstring-perl6 < 0 + # Round 2 build failure transitive deps + - cryptocipher < 0 # via cipher-blowfish + - dejafu < 0 # via concurrency + - cublas < 0 # via cuda + - cufft < 0 # via cuda + - cusparse < 0 # via cuda + - nvvm < 0 # via cuda + - data-msgpack < 0 # via data-msgpack-types + - exception-mtl < 0 # via exception-transformers + - language-c-quote < 0 # via exception-transformers + - hsass < 0 # via hlibsass + - language-c-quote < 0 # via mainland-pretty + - cgi < 0 # via multipart + - pcf-font-embed < 0 # via pcf-font + - emacs-module < 0 # via prettyprinter + - exp-pairs < 0 # via prettyprinter + - prettyprinter-ansi-terminal < 0 # via prettyprinter + - prettyprinter-compat-annotated-wl-pprint < 0 # via prettyprinter + - prettyprinter-compat-ansi-wl-pprint < 0 # via prettyprinter + - prettyprinter-compat-wl-pprint < 0 # via prettyprinter + - prettyprinter-convert-ansi-wl-pprint < 0 # via prettyprinter + - vivid-supercollider < 0 # via vivid-osc + + # Round 3 build failure transitive deps + - network-messagepack-rpc < 0 # via data-msgpack + - hunit-dejafu < 0 # via dejafu + - tasty-dejafu < 0 # via dejafu "GHC upper bounds": From 28d8b586946d077a95a695565154db19ce5d596c Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 25 Sep 2019 22:00:11 -0700 Subject: [PATCH 0683/2682] More build failures --- build-constraints.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 73ae5854..3a209aba 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6358,6 +6358,12 @@ packages: - hunit-dejafu < 0 # via dejafu - tasty-dejafu < 0 # via dejafu + # Some more failures + - present < 0 # MonadFail + - X11 < 0 # Cabal 3? + - HSet < 0 # Duplicate Hashable instance + - data-diverse-lens < 0 # "The liberal coverage condition fails" + "GHC upper bounds": # Need to always match the version shipped with GHC From 053c1fcc42bfd4da57eddff1c8bf1e3bfdb45555 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 25 Sep 2019 22:01:15 -0700 Subject: [PATCH 0684/2682] more removals --- build-constraints.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3a209aba..6198179d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6364,6 +6364,14 @@ packages: - HSet < 0 # Duplicate Hashable instance - data-diverse-lens < 0 # "The liberal coverage condition fails" + # Round 2 transitive from Some more failures + - Clipboard < 0 # via X11 + - Imlib < 0 # via X11 + - X11-xft < 0 # via X11 + - x11-xim < 0 # via X11 + - xmonad < 0 # via X11 + - xmonad-contrib < 0 # via X11 + "GHC upper bounds": # Need to always match the version shipped with GHC From 10d283dde5c325f2e5aa2dd7ab5a8671fe0eef8a Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 25 Sep 2019 22:09:02 -0700 Subject: [PATCH 0685/2682] Skip alex tests per ghc 8.8 issues --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6198179d..e6566fdf 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6517,6 +6517,9 @@ skipped-tests: # These can periodically be checked for updates; # just remove these lines and run `stackage-curator check' to verify. + # fails with ghc 8.8 + - alex # as of alex-3.2.4 + # Cyclic dependencies - base-orphans # via hspec From ed0b85863a235514b1e512fc855d74afc2a2c84d Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 26 Sep 2019 11:07:59 -0700 Subject: [PATCH 0686/2682] Unblock aeson and stuff --- build-constraints.yaml | 58 +++++++++++------------------------------- 1 file changed, 15 insertions(+), 43 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e6566fdf..97dcdcef 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4822,7 +4822,6 @@ packages: - feed < 0 # via base-compat-0.11.0 - gi-gtk-hs < 0 # via base-compat-0.11.0 - pure-zlib < 0 # via base-compat-0.11.0 - - time-compat < 0 # via base-compat-0.11.0 - wl-pprint-text < 0 # via base-compat-0.11.0 - hledger < 0 # via base-compat-batteries-0.11.0 - hledger-lib < 0 # via base-compat-batteries-0.11.0 @@ -5631,10 +5630,6 @@ packages: - servant-swagger-ui < 0 # via swagger2 - servant-swagger-ui-core < 0 # via swagger2 - servant-swagger-ui-redoc < 0 # via swagger2 - - aeson < 0 # via time-compat - - hsemail < 0 # via time-compat - - http-api-data < 0 # via time-compat - - quickcheck-instances < 0 # via time-compat - configuration-tools < 0 # via tls - soap-tls < 0 # via tls - stack < 0 # via tls @@ -5938,12 +5933,6 @@ packages: - mbox-utility < 0 # via hsemail - postgresql-simple-queue < 0 # via hspec-pg-transact - hspec-wai-json < 0 # via hspec-wai - - base64-bytestring-type < 0 # via http-api-data - - envelope < 0 # via http-api-data - - eventful-core < 0 # via http-api-data - - http-link-header < 0 # via http-api-data - - miso < 0 # via http-api-data - - pushbullet-types < 0 # via http-api-data - dl-fedora < 0 # via http-directory - hw-balancedparens < 0 # via hw-fingertree - hmm-lapack < 0 # via lapack @@ -5968,38 +5957,6 @@ packages: - postgresql-simple-queue < 0 # via pg-transact - inliterate < 0 # via plotlyhs - polysemy-plugin < 0 # via polysemy - - attoparsec-uri < 0 # via quickcheck-instances - - caster < 0 # via quickcheck-instances - - commutative < 0 # via quickcheck-instances - - concise < 0 # via quickcheck-instances - - crypt-sha512 < 0 # via quickcheck-instances - - deferred-folds < 0 # via quickcheck-instances - - deque < 0 # via quickcheck-instances - - edit-distance-vector < 0 # via quickcheck-instances - - envy < 0 # via quickcheck-instances - - hschema-aeson < 0 # via quickcheck-instances - - hschema-quickcheck < 0 # via quickcheck-instances - - hslua < 0 # via quickcheck-instances - - hslua-aeson < 0 # via quickcheck-instances - - http-types < 0 # via quickcheck-instances - - interpolate < 0 # via quickcheck-instances - - jose < 0 # via quickcheck-instances - - katip < 0 # via quickcheck-instances - - monoid-subclasses < 0 # via quickcheck-instances - - natural-transformation < 0 # via quickcheck-instances - - parsers < 0 # via quickcheck-instances - - protobuf-simple < 0 # via quickcheck-instances - - strict-list < 0 # via quickcheck-instances - - string-conversions < 0 # via quickcheck-instances - - string-interpolate < 0 # via quickcheck-instances - - text-show < 0 # via quickcheck-instances - - text-show-instances < 0 # via quickcheck-instances - - tmapmvar < 0 # via quickcheck-instances - - winery < 0 # via quickcheck-instances - - xml-isogen < 0 # via quickcheck-instances - - xmlbf < 0 # via quickcheck-instances - - xmlbf-xeno < 0 # via quickcheck-instances - - yi-rope < 0 # via quickcheck-instances - epub-metadata < 0 # via regex-compat-tdfa - highlighting-kate < 0 # via regex-pcre-builtin - html-email-validate < 0 # via regex-pcre-builtin @@ -6269,6 +6226,20 @@ packages: - hi-file-parser < 0 # via rio - tonalude < 0 # via rio + # Misc. Removed from above but must still be re-removed due to *another* issue + - attoparsec-uri < 0 # via attoparsec-ip + - string-interpolate < 0 # via criterion + - text-show < 0 # via criterion + - caster < 0 # via fast-builder + - deferred-folds < 0 # via foldl + - hschema-quickcheck < 0 # via hschema + - string-interpolate < 0 # via interpolatedstring-perl6 + - attoparsec-uri < 0 # via ip + - string-interpolate < 0 # via text-conversions + - xmlbf-xeno < 0 # via xeno + - text-show-instances < 0 # via text-show + + "GHC 8.8-related build failures": # MonadFail stuff - generics-mrsop < 0 @@ -6516,6 +6487,7 @@ skipped-tests: # Outdated dependencies # These can periodically be checked for updates; # just remove these lines and run `stackage-curator check' to verify. + - time-compat # base-compat 0.11 # fails with ghc 8.8 - alex # as of alex-3.2.4 From 134ef1f17af07503dca8ffeaca80ecf456db72a3 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 26 Sep 2019 11:20:59 -0700 Subject: [PATCH 0687/2682] Unblock criterion and stuff --- build-constraints.yaml | 39 ++++++++------------------------------- 1 file changed, 8 insertions(+), 31 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 97dcdcef..73beb1ab 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4810,7 +4810,6 @@ packages: - ucam-webauth-types < 0 # via base-4.13.0.0 - unagi-chan < 0 # via base-4.13.0.0 - union < 0 # via base-4.13.0.0 - - vector-th-unbox < 0 # via base-4.13.0.0 - viewprof < 0 # via base-4.13.0.0 - wai-middleware-travisci < 0 # via base-4.13.0.0 - web3 < 0 # via base-4.13.0.0 @@ -5148,7 +5147,6 @@ packages: - threepenny-gui < 0 # via template-haskell-2.15.0.0 - tz < 0 # via template-haskell-2.15.0.0 - uri-bytestring < 0 # via template-haskell-2.15.0.0 - - vector-th-unbox < 0 # via template-haskell-2.15.0.0 - web3 < 0 # via template-haskell-2.15.0.0 - hyraxAbif < 0 # via text-1.2.4.0 - sqlite-simple-errors < 0 # via text-1.2.4.0 @@ -5645,12 +5643,6 @@ packages: - uri-bytestring-aeson < 0 # via uri-bytestring - wai-middleware-auth < 0 # via uri-bytestring - yesod-auth-oauth2 < 0 # via uri-bytestring - - Hoed < 0 # via vector-th-unbox - - dense-linear-algebra < 0 # via vector-th-unbox - - math-functions < 0 # via vector-th-unbox - - netpbm < 0 # via vector-th-unbox - - statistics < 0 # via vector-th-unbox - - thyme < 0 # via vector-th-unbox - hamilton < 0 # via vty - hledger-iadd < 0 # via vty - avers-server < 0 # via wai @@ -5813,8 +5805,6 @@ packages: - chronologique < 0 # via aeson - codec < 0 # via aeson - composable-associations-aeson < 0 # via aeson - - criterion < 0 # via aeson - - criterion-measurement < 0 # via aeson - cuckoo-filter < 0 # via aeson - debug < 0 # via aeson - deriveJsonNoPrefix < 0 # via aeson @@ -5868,7 +5858,6 @@ packages: - matplotlib < 0 # via aeson - menshen < 0 # via aeson - microlens-aeson < 0 # via aeson - - microstache < 0 # via aeson - miso < 0 # via aeson - monad-logger-json < 0 # via aeson - mustache < 0 # via aeson @@ -5940,9 +5929,6 @@ packages: - magico < 0 # via lapack - resistor-cube < 0 # via lapack - cmark-gfm < 0 # via markdown - - bins < 0 # via math-functions - - mwc-random < 0 # via math-functions - - random-fu < 0 # via math-functions - async-refresh < 0 # via monad-logger - async-refresh-tokens < 0 # via monad-logger - eventful-test-helpers < 0 # via monad-logger @@ -5983,8 +5969,6 @@ packages: - miso < 0 # via servant-lucid - state-codes < 0 # via shakespeare - xml-hamlet < 0 # via shakespeare - - criterion < 0 # via statistics - - emd < 0 # via statistics - stm-containers < 0 # via stm-hamt - show-prettyprint < 0 # via trifecta - bench < 0 # via turtle @@ -6072,21 +6056,6 @@ packages: - mwc-probability-transition < 0 # via logging-effect - incremental-parser < 0 # via monoid-subclasses - timerep < 0 # via monoid-subclasses - - Spintax < 0 # via mwc-random - - backprop < 0 # via mwc-random - - conduit < 0 # via mwc-random - - foldl < 0 # via mwc-random - - metrics < 0 # via mwc-random - - monad-par < 0 # via mwc-random - - mono-traversable < 0 # via mwc-random - - mwc-probability < 0 # via mwc-random - - pipes-random < 0 # via mwc-random - - random-bytestring < 0 # via mwc-random - - random-source < 0 # via mwc-random - - sampling < 0 # via mwc-random - - sparse-linear-algebra < 0 # via mwc-random - - uncertain < 0 # via mwc-random - - vector-algorithms < 0 # via mwc-random - hschema < 0 # via natural-transformation - hschema-prettyprinter < 0 # via natural-transformation - asciidiagram < 0 # via pandoc-types @@ -6238,6 +6207,10 @@ packages: - string-interpolate < 0 # via text-conversions - xmlbf-xeno < 0 # via xeno - text-show-instances < 0 # via text-show + - random-fu < 0 # via random-source + - Hoed < 0 # via regex-tdfa + - Hoed < 0 # via regex-tdfa-text + - random-fu < 0 # via rvar "GHC 8.8-related build failures": @@ -6329,6 +6302,9 @@ packages: - hunit-dejafu < 0 # via dejafu - tasty-dejafu < 0 # via dejafu + # More build failure transitive deps + - random-source < 0 # via flexible-defaults + # Some more failures - present < 0 # MonadFail - X11 < 0 # Cabal 3? @@ -6496,6 +6472,7 @@ skipped-tests: - base-orphans # via hspec # test-framework per ghc 8.8 + - statistics # via test-framework - Decimal # via test-framework - Diff # via test-framework - ENIG # via test-framework From d4ceabcfc2d49f439851f120e30f34c51e1fde18 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 26 Sep 2019 11:22:27 -0700 Subject: [PATCH 0688/2682] Block xmlbf for build failure --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 73beb1ab..c83fd12f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6310,6 +6310,7 @@ packages: - X11 < 0 # Cabal 3? - HSet < 0 # Duplicate Hashable instance - data-diverse-lens < 0 # "The liberal coverage condition fails" + - xmlbf < 0 # MonadFail # Round 2 transitive from Some more failures - Clipboard < 0 # via X11 From b2c2e3b76cb1334d254f8c4882dc263e02d2b2d2 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 26 Sep 2019 11:34:00 -0700 Subject: [PATCH 0689/2682] Unblock stuff blocked by criterion --- build-constraints.yaml | 32 +------------------------------- 1 file changed, 1 insertion(+), 31 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c83fd12f..dd79d80c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5992,34 +5992,6 @@ packages: # round 4 - bitcoin-types < 0 # via base58string - - JuicyPixels-extra < 0 # via criterion - - apecs < 0 # via criterion - - backprop < 0 # via criterion - - base64-bytestring < 0 # via criterion - - crypto-numbers < 0 # via criterion - - cryptohash < 0 # via criterion - - fmt < 0 # via criterion - - generic-data < 0 # via criterion - - generics-sop < 0 # via criterion - - hw-conduit < 0 # via criterion - - hw-excess < 0 # via criterion - - hw-prim < 0 # via criterion - - hw-streams < 0 # via criterion - - lucid < 0 # via criterion - - posix-paths < 0 # via criterion - - product-profunctors < 0 # via criterion - - random-bytestring < 0 # via criterion - - rdf < 0 # via criterion - - regex-applicative < 0 # via criterion - - replace-attoparsec < 0 # via criterion - - replace-megaparsec < 0 # via criterion - - salak < 0 # via criterion - - salak-yaml < 0 # via criterion - - simple-vec3 < 0 # via criterion - - tensors < 0 # via criterion - - terminal-progress-bar < 0 # via criterion - - word-wrap < 0 # via criterion - - zstd < 0 # via criterion - text-builder < 0 # via deferred-folds - quickbench < 0 # via docopt - control-dsl < 0 # via doctest-discover @@ -6119,7 +6091,6 @@ packages: - conduit-iconv < 0 # via conduit - errors-ext < 0 # via conduit - fsnotify-conduit < 0 # via conduit - - libyaml < 0 # via conduit - lzma-conduit < 0 # via conduit - rocksdb-query < 0 # via conduit - safeio < 0 # via conduit @@ -6146,8 +6117,6 @@ packages: - hasql-optparse-applicative < 0 # via hasql - hasql-pool < 0 # via hasql - hasql-transaction < 0 # via hasql - - hw-bits < 0 # via hw-prim - - hw-json-simd < 0 # via hw-prim - flat-mcmc < 0 # via monad-par - binary-ext < 0 # via mono-traversable - classy-prelude < 0 # via mono-traversable @@ -6304,6 +6273,7 @@ packages: # More build failure transitive deps - random-source < 0 # via flexible-defaults + - backprop < 0 # via vinyl # Some more failures - present < 0 # MonadFail From f869fe08d6aaf46545bb892a4c9133d147ac58b8 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 26 Sep 2019 11:42:02 -0700 Subject: [PATCH 0690/2682] Unblock conduit revdeps and more --- build-constraints.yaml | 28 ---------------------------- 1 file changed, 28 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index dd79d80c..9553de3c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6081,20 +6081,6 @@ packages: - scrypt < 0 # via base64-bytestring - text-conversions < 0 # via base64-bytestring - typed-process < 0 # via base64-bytestring - - binary-conduit < 0 # via conduit - - binary-ext < 0 # via conduit - - bzlib-conduit < 0 # via conduit - - cassava-conduit < 0 # via conduit - - cereal-conduit < 0 # via conduit - - classy-prelude-conduit < 0 # via conduit - - conduit-concurrent-map < 0 # via conduit - - conduit-iconv < 0 # via conduit - - errors-ext < 0 # via conduit - - fsnotify-conduit < 0 # via conduit - - lzma-conduit < 0 # via conduit - - rocksdb-query < 0 # via conduit - - safeio < 0 # via conduit - - xls < 0 # via conduit - executable-hash < 0 # via cryptohash - locators < 0 # via cryptohash - columnar < 0 # via fmt @@ -6108,24 +6094,10 @@ packages: - sequence-formats < 0 # via foldl - sequenceTools < 0 # via foldl - generic-data-surgery < 0 # via generic-data - - boring < 0 # via generics-sop - - generics-sop-lens < 0 # via generics-sop - - getopt-generics < 0 # via generics-sop - - pretty-sop < 0 # via generics-sop - - records-sop < 0 # via generics-sop - - tuple-sop < 0 # via generics-sop - hasql-optparse-applicative < 0 # via hasql - hasql-pool < 0 # via hasql - hasql-transaction < 0 # via hasql - flat-mcmc < 0 # via monad-par - - binary-ext < 0 # via mono-traversable - - classy-prelude < 0 # via mono-traversable - - focuslist < 0 # via mono-traversable - - mono-traversable-instances < 0 # via mono-traversable - - mono-traversable-keys < 0 # via mono-traversable - - mutable-containers < 0 # via mono-traversable - - transaction < 0 # via mono-traversable - - unboxing-vector < 0 # via mono-traversable - declarative < 0 # via mwc-probability - flat-mcmc < 0 # via mwc-probability - hasty-hamiltonian < 0 # via mwc-probability From 91a048627011c4571e53779614998946cc7c4e44 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 26 Sep 2019 11:46:52 -0700 Subject: [PATCH 0691/2682] Unblock aeson revdeps --- build-constraints.yaml | 152 ++++++----------------------------------- 1 file changed, 22 insertions(+), 130 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9553de3c..5159df54 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5783,121 +5783,6 @@ packages: # round 3 - debug < 0 # via Hoed - - aeson-attoparsec < 0 # via aeson - - aeson-better-errors < 0 # via aeson - - aeson-casing < 0 # via aeson - - aeson-compat < 0 # via aeson - - aeson-extra < 0 # via aeson - - aeson-generic-compat < 0 # via aeson - - aeson-picker < 0 # via aeson - - aeson-qq < 0 # via aeson - - aeson-utils < 0 # via aeson - - aeson-yak < 0 # via aeson - - api-field-json-th < 0 # via aeson - - base32string < 0 # via aeson - - base58string < 0 # via aeson - - base64-bytestring-type < 0 # via aeson - - binary-tagged < 0 # via aeson - - bower-json < 0 # via aeson - - ca-province-codes < 0 # via aeson - - cabal2nix < 0 # via aeson - - cfenv < 0 # via aeson - - chronologique < 0 # via aeson - - codec < 0 # via aeson - - composable-associations-aeson < 0 # via aeson - - cuckoo-filter < 0 # via aeson - - debug < 0 # via aeson - - deriveJsonNoPrefix < 0 # via aeson - - detour-via-sci < 0 # via aeson - - distribution-nixpkgs < 0 # via aeson - - distribution-opensuse < 0 # via aeson - - docopt < 0 # via aeson - - doctest-discover < 0 # via aeson - - elm-bridge < 0 # via aeson - - envelope < 0 # via aeson - - etc < 0 # via aeson - - eventful-core < 0 # via aeson - - eventful-test-helpers < 0 # via aeson - - fast-builder < 0 # via aeson - - forma < 0 # via aeson - - genvalidity-aeson < 0 # via aeson - - genvalidity-hspec-aeson < 0 # via aeson - - geojson < 0 # via aeson - - github-types < 0 # via aeson - - github-webhooks < 0 # via aeson - - groundhog < 0 # via aeson - - groundhog-postgresql < 0 # via aeson - - groundhog-th < 0 # via aeson - - hackage-db < 0 # via aeson - - haskell-lsp-types < 0 # via aeson - - haskell-names < 0 # via aeson - - hexstring < 0 # via aeson - - hinfo < 0 # via aeson - - hourglass-orphans < 0 # via aeson - - hruby < 0 # via aeson - - hschema-aeson < 0 # via aeson - - hslua-aeson < 0 # via aeson - - hspec-expectations-pretty-diff < 0 # via aeson - - hspec-wai-json < 0 # via aeson - - htoml < 0 # via aeson - - inline-r < 0 # via aeson - - insert-ordered-containers < 0 # via aeson - - interpolator < 0 # via aeson - - ip < 0 # via aeson - - ipython-kernel < 0 # via aeson - - jose < 0 # via aeson - - jose-jwt < 0 # via aeson - - json-alt < 0 # via aeson - - json-rpc-generic < 0 # via aeson - - jsonpath < 0 # via aeson - - jwt < 0 # via aeson - - katip < 0 # via aeson - - lens-aeson < 0 # via aeson - - lucid-extras < 0 # via aeson - - lxd-client-config < 0 # via aeson - - matplotlib < 0 # via aeson - - menshen < 0 # via aeson - - microlens-aeson < 0 # via aeson - - miso < 0 # via aeson - - monad-logger-json < 0 # via aeson - - mustache < 0 # via aeson - - ndjson-conduit < 0 # via aeson - - opaleye < 0 # via aeson - - pandoc-types < 0 # via aeson - - pipes-aeson < 0 # via aeson - - postgresql-binary < 0 # via aeson - - postgresql-orm < 0 # via aeson - - postgresql-simple < 0 # via aeson - - postgresql-simple-queue < 0 # via aeson - - pretty-simple < 0 # via aeson - - protocol-buffers < 0 # via aeson - - pushbullet-types < 0 # via aeson - - relapse < 0 # via aeson - - rigel-viz < 0 # via aeson - - selda-json < 0 # via aeson - - serversession < 0 # via aeson - - simple-templates < 0 # via aeson - - skylighting < 0 # via aeson - - skylighting-core < 0 # via aeson - - smoothie < 0 # via aeson - - sourcemap < 0 # via aeson - - state-codes < 0 # via aeson - - strict-base-types < 0 # via aeson - - stripe-wreq < 0 # via aeson - - swagger < 0 # via aeson - - template-toolkit < 0 # via aeson - - text-region < 0 # via aeson - - these < 0 # via aeson - - tree-diff < 0 # via aeson - - ua-parser < 0 # via aeson - - users < 0 # via aeson - - validity-aeson < 0 # via aeson - - weeder < 0 # via aeson - - winery < 0 # via aeson - - world-peace < 0 # via aeson - - xlsx-tabular < 0 # via aeson - - xml-to-json < 0 # via aeson - - yaml < 0 # via aeson - hyperloglog < 0 # via approximate - hw-rankselect-base < 0 # via bits-extra - alerts < 0 # via blaze-html @@ -6072,15 +5957,6 @@ packages: # round 5 - hmatrix-backprop < 0 # via backprop - - clientsession < 0 # via base64-bytestring - - dataurl < 0 # via base64-bytestring - - mime-mail < 0 # via base64-bytestring - - nonce < 0 # via base64-bytestring - - openpgp-asciiarmor < 0 # via base64-bytestring - - qrcode-juicypixels < 0 # via base64-bytestring - - scrypt < 0 # via base64-bytestring - - text-conversions < 0 # via base64-bytestring - - typed-process < 0 # via base64-bytestring - executable-hash < 0 # via cryptohash - locators < 0 # via cryptohash - columnar < 0 # via fmt @@ -6128,18 +6004,12 @@ packages: - xeno < 0 # via mutable-containers - pipes-category < 0 # via pipes-extras - password < 0 # via scrypt - - rio < 0 # via typed-process - - tldr < 0 # via typed-process # round 7 - pipes-misc < 0 # via pipes-category - - hi-file-parser < 0 # via rio - - tonalude < 0 # via rio # Misc. Removed from above but must still be re-removed due to *another* issue - attoparsec-uri < 0 # via attoparsec-ip - - string-interpolate < 0 # via criterion - - text-show < 0 # via criterion - caster < 0 # via fast-builder - deferred-folds < 0 # via foldl - hschema-quickcheck < 0 # via hschema @@ -6152,6 +6022,27 @@ packages: - Hoed < 0 # via regex-tdfa - Hoed < 0 # via regex-tdfa-text - random-fu < 0 # via rvar + - codec < 0 # via binary-bits + - opaleye < 0 # via dotenv + - hschema-aeson < 0 # via hschema + - hschema-aeson < 0 # via hschema-prettyprinter + - hschema-aeson < 0 # via hschema-quickcheck + - inline-r < 0 # via inline-c + - postgresql-binary < 0 # via network-ip + - hschema-aeson < 0 # via prettyprinter + - winery < 0 # via prettyprinter + - hschema-aeson < 0 # via prettyprinter-ansi-terminal + - winery < 0 # via prettyprinter-ansi-terminal + - aeson-extra < 0 # via semialign + - inline-r < 0 # via singletons + - lxd-client-config < 0 # via test-framework + - pandoc-types < 0 # via test-framework + - lxd-client-config < 0 # via test-framework-hunit + - pandoc-types < 0 # via test-framework-hunit + - lxd-client-config < 0 # via test-framework-quickcheck2 + - pandoc-types < 0 # via test-framework-quickcheck2 + - fast-builder < 0 # via true-name + - xlsx-tabular < 0 # via xlsx "GHC 8.8-related build failures": @@ -6253,6 +6144,7 @@ packages: - HSet < 0 # Duplicate Hashable instance - data-diverse-lens < 0 # "The liberal coverage condition fails" - xmlbf < 0 # MonadFail + - apecs < 0 # Template Haskell changes # Round 2 transitive from Some more failures - Clipboard < 0 # via X11 From 6efdd99c0e393ca8777de239e005cf74b82af1a4 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 26 Sep 2019 12:04:50 -0700 Subject: [PATCH 0692/2682] Attempt to unblock network revdeps --- build-constraints.yaml | 423 ++++++++++++++++++++--------------------- 1 file changed, 210 insertions(+), 213 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5159df54..02f17bf2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3972,6 +3972,7 @@ packages: - http-client-overrides "Grandfathered dependencies": + - network - Boolean - ChasingBottoms < 0 # due to QuickCheck, https://github.com/commercialhaskell/stackage/issues/4444 - Decimal @@ -4830,7 +4831,6 @@ packages: - GLFW-b < 0 # via bindings-GLFW-3.3.0.0 - hyraxAbif < 0 # via bytestring-0.10.9.0 - hw-hspec-hedgehog < 0 # via call-stack-0.2.0 - - xml-lens < 0 # via case-insensitive-1.2.1.0 - sized-grid < 0 # via constraints-0.11.2 - dependent-map < 0 # via constraints-extras - dependent-sum < 0 # via constraints-extras @@ -4947,132 +4947,6 @@ packages: - web3 < 0 # via memory-0.15.0 - vty < 0 # via microlens-0.4.11.2 - web3 < 0 # via microlens-mtl-0.2.0.1 - - DAV < 0 # via network - - HTTP < 0 # via network - - HandsomeSoup < 0 # via network - - HsOpenSSL < 0 # via network - - IPv6Addr < 0 # via network - - MissingH < 0 # via network - - amqp < 0 # via network - - asif < 0 # via network - - atom-basic < 0 # via network - - avers < 0 # via network - - bitx-bitcoin < 0 # via network - - bson < 0 # via network - - bugsnag-haskell < 0 # via network - - cabal-install < 0 # via network - - conduit-extra < 0 # via network - - connection < 0 # via network - - connection-pool < 0 # via network - - courier < 0 # via network - - cql < 0 # via network - - cql-io < 0 # via network - - datadog < 0 # via network - - dbus < 0 # via network - - dns < 0 # via network - - ekg < 0 # via network - - ekg-statsd < 0 # via network - - flags-applicative < 0 # via network - - graylog < 0 # via network - - hOpenPGP < 0 # via network - - hackage-security < 0 # via network - - hasbolt < 0 # via network - - haskoin-core < 0 # via network - - hbeanstalk < 0 # via network - - hedis < 0 # via network - - hosc < 0 # via network - - hsdev < 0 # via network - - hsdns < 0 # via network - - hslogger < 0 # via network - - hstatsd < 0 # via network - - http-client < 0 # via network - - http-client-tls < 0 # via network - - http-common < 0 # via network - - http-conduit < 0 # via network - - http-reverse-proxy < 0 # via network - - http-streams < 0 # via network - - http2 < 0 # via network - - httpd-shed < 0 # via network - - hxt-http < 0 # via network - - influxdb < 0 # via network - - io-streams < 0 # via network - - io-streams-haproxy < 0 # via network - - iproute < 0 # via network - - lambdabot-core < 0 # via network - - lambdabot-irc-plugins < 0 # via network - - libmpd < 0 # via network - - libraft < 0 # via network - - microformats2-parser < 0 # via network - - mongoDB < 0 # via network - - mysql-haskell < 0 # via network - - network-anonymous-i2p < 0 # via network - - network-attoparsec < 0 # via network - - network-conduit-tls < 0 # via network - - network-multicast < 0 # via network - - network-simple < 0 # via network - - network-simple-tls < 0 # via network - - nvim-hs < 0 # via network - - oauthenticated < 0 # via network - - oeis < 0 # via network - - openssl-streams < 0 # via network - - pandoc < 0 # via network - - pandoc-citeproc < 0 # via network - - pantry < 0 # via network - - persistent-mongoDB < 0 # via network - - pinboard < 0 # via network - - pipes-network < 0 # via network - - pipes-network-tls < 0 # via network - - port-utils < 0 # via network - - postgresql-typed < 0 # via network - - rethinkdb-client-driver < 0 # via network - - scotty < 0 # via network - - sendfile < 0 # via network - - servant-http-streams < 0 # via network - - servant-multipart < 0 # via network - - servant-server < 0 # via network - - simple-sendfile < 0 # via network - - snap-core < 0 # via network - - snap-server < 0 # via network - - socket-activation < 0 # via network - - socks < 0 # via network - - sphinx < 0 # via network - - splice < 0 # via network - - store < 0 # via network - - streaming-commons < 0 # via network - - swagger2 < 0 # via network - - systemd < 0 # via network - - tcp-streams < 0 # via network - - tcp-streams-openssl < 0 # via network - - tls < 0 # via network - - tls-debug < 0 # via network - - tmp-postgres < 0 # via network - - tracing < 0 # via network - - vivid < 0 # via network - - wai < 0 # via network - - wai-app-static < 0 # via network - - wai-cli < 0 # via network - - wai-enforce-https < 0 # via network - - wai-extra < 0 # via network - - wai-logger < 0 # via network - - wai-middleware-throttle < 0 # via network - - wai-websockets < 0 # via network - - warp < 0 # via network - - warp-tls < 0 # via network - - warp-tls-uid < 0 # via network - - webdriver < 0 # via network - - websockets < 0 # via network - - ws < 0 # via network - - wuss < 0 # via network - - xenstore < 0 # via network - - xmonad-extras < 0 # via network - - yesod-bin < 0 # via network - - yesod-core < 0 # via network - - yesod-test < 0 # via network - - hslogger < 0 # via network-bsd - - httpd-shed < 0 # via network-bsd - - lambdabot-core < 0 # via network-bsd - - network-multicast < 0 # via network-bsd - - network-simple < 0 # via network-bsd - MissingH < 0 # via old-time-1.1.0.3 - bench-show < 0 # via optparse-applicative-0.15.1.0 - diagrams-lib < 0 # via optparse-applicative-0.15.1.0 @@ -5503,14 +5377,11 @@ packages: - witherable < 0 # via monoidal-containers - msgpack-aeson < 0 # via msgpack - mysql-haskell-nem < 0 # via mysql-haskell - - butter < 0 # via network-simple - nvim-hs-contrib < 0 # via nvim-hs - pandoc-csv2table < 0 # via pandoc - pandoc-markdown-ghci-filter < 0 # via pandoc - pandoc-pyplot < 0 # via pandoc - pencil < 0 # via pandoc - - mega-sdist < 0 # via pantry - - stack < 0 # via pantry - attoparsec-path < 0 # via path - aws-lambda-haskell-runtime < 0 # via path - follow-file < 0 # via path @@ -5628,10 +5499,6 @@ packages: - servant-swagger-ui < 0 # via swagger2 - servant-swagger-ui-core < 0 # via swagger2 - servant-swagger-ui-redoc < 0 # via swagger2 - - configuration-tools < 0 # via tls - - soap-tls < 0 # via tls - - stack < 0 # via tls - - tls-session-manager < 0 # via tls - hspec-pg-transact < 0 # via tmp-postgres - pg-transact < 0 # via tmp-postgres - salak-toml < 0 # via tomland @@ -5645,57 +5512,6 @@ packages: - yesod-auth-oauth2 < 0 # via uri-bytestring - hamilton < 0 # via vty - hledger-iadd < 0 # via vty - - avers-server < 0 # via wai - - bimap-server < 0 # via wai - - cisco-spark-api < 0 # via wai - - configuration-tools < 0 # via wai - - filter-logger < 0 # via wai - - fn < 0 # via wai - - hoogle < 0 # via wai - - hspec-wai < 0 # via wai - - line < 0 # via wai - - pipes-wai < 0 # via wai - - servant-auth-wordpress < 0 # via wai - - servant-checked-exceptions < 0 # via wai - - servant-conduit < 0 # via wai - - servant-lucid < 0 # via wai - - servant-machines < 0 # via wai - - servant-mock < 0 # via wai - - servant-pipes < 0 # via wai - - servant-rawm < 0 # via wai - - servant-static-th < 0 # via wai - - servant-tracing < 0 # via wai - - servant-yaml < 0 # via wai - - serversession-frontend-wai < 0 # via wai - - servius < 0 # via wai - - simple < 0 # via wai - - simple-session < 0 # via wai - - streaming-wai < 0 # via wai - - tonatona-servant < 0 # via wai - - wai-conduit < 0 # via wai - - wai-cors < 0 # via wai - - wai-eventsource < 0 # via wai - - wai-handler-launch < 0 # via wai - - wai-middleware-auth < 0 # via wai - - wai-middleware-caching < 0 # via wai - - wai-middleware-static < 0 # via wai - - wai-predicates < 0 # via wai - - wai-session < 0 # via wai - - wai-session-postgresql < 0 # via wai - - wai-slack-middleware < 0 # via wai - - wai-transformers < 0 # via wai - - web-routes-wai < 0 # via wai - - webex-teams-api < 0 # via wai - - webex-teams-conduit < 0 # via wai - - webex-teams-pipes < 0 # via wai - - yesod < 0 # via wai - - yesod-auth < 0 # via wai - - yesod-csp < 0 # via wai - - yesod-eventsource < 0 # via wai - - yesod-fb < 0 # via wai - - yesod-form < 0 # via wai - - yesod-gitrepo < 0 # via wai - - yesod-static < 0 # via wai - servant-rawm < 0 # via wai-app-static - servant-swagger-ui-core < 0 # via wai-app-static - servius < 0 # via wai-app-static @@ -5719,34 +5535,6 @@ packages: - avers-server < 0 # via wai-websockets - wai-transformers < 0 # via wai-websockets - yesod-websockets < 0 # via wai-websockets - - bimap-server < 0 # via warp - - cisco-spark-api < 0 # via warp - - configuration-tools < 0 # via warp - - hoogle < 0 # via warp - - pg-harness-server < 0 # via warp - - servant-checked-exceptions < 0 # via warp - - servant-cli < 0 # via warp - - servant-conduit < 0 # via warp - - servant-js < 0 # via warp - - servant-lucid < 0 # via warp - - servant-machines < 0 # via warp - - servant-mock < 0 # via warp - - servant-pipes < 0 # via warp - - servant-rawm < 0 # via warp - - servant-static-th < 0 # via warp - - servant-tracing < 0 # via warp - - servant-yaml < 0 # via warp - - tonatona-servant < 0 # via warp - - wai-handler-launch < 0 # via warp - - wai-middleware-auth < 0 # via warp - - webex-teams-api < 0 # via warp - - webex-teams-conduit < 0 # via warp - - webex-teams-pipes < 0 # via warp - - yesod < 0 # via warp - - yesod-auth-oauth2 < 0 # via warp - - yesod-paginator < 0 # via warp - - configuration-tools < 0 # via warp-tls - - hoogle < 0 # via warp-tls - avers-server < 0 # via websockets - skews < 0 # via websockets - wai-transformers < 0 # via websockets @@ -6043,6 +5831,215 @@ packages: - pandoc-types < 0 # via test-framework-quickcheck2 - fast-builder < 0 # via true-name - xlsx-tabular < 0 # via xlsx + - postgresql-typed < 0 # via HDBC + - tcp-streams-openssl < 0 # via HsOpenSSL-x509-system + - pandoc-citeproc < 0 # via HsYAML-aeson + - http2 < 0 # via aeson-pretty + - microformats2-parser < 0 # via aeson-pretty + - pandoc-citeproc < 0 # via aeson-pretty + - hOpenPGP < 0 # via asn1-encoding + - tls < 0 # via asn1-encoding + - ws < 0 # via attoparsec-uri + - microformats2-parser < 0 # via blaze-html + - persistent-mongoDB < 0 # via blaze-html + - wai-app-static < 0 # via blaze-html + - yesod-core < 0 # via blaze-html + - yesod-test < 0 # via blaze-html + - microformats2-parser < 0 # via blaze-markup + - wai-app-static < 0 # via blaze-markup + - yesod-core < 0 # via blaze-markup + - hOpenPGP < 0 # via bzlib + - xml-lens < 0 # via case-insensitive-1.2.1.0 + - libraft < 0 # via concurrency + - pantry < 0 # via cryptonite-conduit + - libraft < 0 # via dejafu + - libraft < 0 # via ekg + - libraft < 0 # via ekg-core + - pantry < 0 # via hackage-security + - hasbolt < 0 # via hex + - pantry < 0 # via hpack + - scotty < 0 # via hspec-wai + - microformats2-parser < 0 # via html-conduit + - yesod-test < 0 # via html-conduit + - pantry < 0 # via http-download + - servant-http-streams < 0 # via http-media + - servant-multipart < 0 # via http-media + - servant-server < 0 # via http-media + - swagger2 < 0 # via http-media + - asif < 0 # via hw-hspec-hedgehog + - asif < 0 # via hw-ip + - hOpenPGP < 0 # via incremental-parser + - hOpenPGP < 0 # via ixset-typed + - lambdabot-irc-plugins < 0 # via lambdabot-core + - yesod-core < 0 # via monad-logger + - libraft < 0 # via monad-metrics + - bson < 0 # via network-3.1.1.0 + - hslogger < 0 # via network-3.1.1.0 + - mongoDB < 0 # via network-3.1.1.0 + - openssl-streams < 0 # via network-3.1.1.0 + - socket-activation < 0 # via network-3.1.1.0 + - tcp-streams-openssl < 0 # via network-3.1.1.0 + - wai-cli < 0 # via network-3.1.1.0 + - websockets < 0 # via network-3.1.1.0 + - hslogger < 0 # via network-bsd + - httpd-shed < 0 # via network-bsd + - network-multicast < 0 # via network-bsd + - network-simple < 0 # via network-bsd + - pandoc-citeproc < 0 # via pandoc + - pandoc-citeproc < 0 # via pandoc-types + - nvim-hs < 0 # via path + - pantry < 0 # via path + - nvim-hs < 0 # via path-io + - pantry < 0 # via path-io + - microformats2-parser < 0 # via pcre-heavy + - pantry < 0 # via persistent + - persistent-mongoDB < 0 # via persistent + - persistent-mongoDB < 0 # via persistent-qq + - pantry < 0 # via persistent-sqlite + - pantry < 0 # via persistent-template + - persistent-mongoDB < 0 # via persistent-template + - persistent-mongoDB < 0 # via persistent-test + - postgresql-typed < 0 # via postgresql-binary + - libraft < 0 # via postgresql-simple-url + - hOpenPGP < 0 # via prettyprinter + - nvim-hs < 0 # via prettyprinter + - nvim-hs < 0 # via prettyprinter-ansi-terminal + - yesod-bin < 0 # via project-template + - libraft < 0 # via protolude + - libraft < 0 # via quickcheck-state-machine + - scotty < 0 # via regex-compat + - snap-core < 0 # via regex-posix + - pantry < 0 # via rio-orphans + - pantry < 0 # via rio-prettyprint + - haskoin-core < 0 # via secp256k1-haskell + - servant-http-streams < 0 # via servant + - servant-multipart < 0 # via servant + - servant-server < 0 # via servant + - servant-http-streams < 0 # via servant-client-core + - servant-multipart < 0 # via servant-docs + - servant-multipart < 0 # via servant-foreign + - yesod-bin < 0 # via shakespeare + - yesod-core < 0 # via shakespeare + - wai-predicates < 0 # via singletons + - connection < 0 # via socks + - network-simple < 0 # via socks + - store < 0 # via store-core + - pantry < 0 # via tar-conduit + - libraft < 0 # via tasty-dejafu + - servant-http-streams < 0 # via tdigest + - HTTP < 0 # via test-framework + - IPv6Addr < 0 # via test-framework + - bson < 0 # via test-framework + - courier < 0 # via test-framework + - hedis < 0 # via test-framework + - io-streams < 0 # via test-framework + - oeis < 0 # via test-framework + - openssl-streams < 0 # via test-framework + - snap-core < 0 # via test-framework + - tcp-streams < 0 # via test-framework + - tcp-streams-openssl < 0 # via test-framework + - HTTP < 0 # via test-framework-hunit + - IPv6Addr < 0 # via test-framework-hunit + - courier < 0 # via test-framework-hunit + - hedis < 0 # via test-framework-hunit + - io-streams < 0 # via test-framework-hunit + - oeis < 0 # via test-framework-hunit + - openssl-streams < 0 # via test-framework-hunit + - snap-core < 0 # via test-framework-hunit + - tcp-streams < 0 # via test-framework-hunit + - tcp-streams-openssl < 0 # via test-framework-hunit + - bson < 0 # via test-framework-quickcheck2 + - io-streams < 0 # via test-framework-quickcheck2 + - snap-core < 0 # via test-framework-quickcheck2 + - pantry < 0 # via th-utilities + - store < 0 # via th-utilities + - wai-middleware-throttle < 0 # via token-bucket + - serversession-frontend-wai < 0 # via vault + - wai < 0 # via vault + - wai-extra < 0 # via vault + - wai-predicates < 0 # via vault + - wai-session < 0 # via vault + - warp < 0 # via vault + - vivid < 0 # via vivid-osc + - vivid < 0 # via vivid-supercollider + - web-routes-wai < 0 # via web-routes + - ws < 0 # via wuss + - connection < 0 # via x509 + - network-simple-tls < 0 # via x509 + - postgresql-typed < 0 # via x509 + - tcp-streams < 0 # via x509 + - tls < 0 # via x509 + - tls-debug < 0 # via x509 + - warp-tls-uid < 0 # via x509 + - connection < 0 # via x509-store + - network-simple-tls < 0 # via x509-store + - postgresql-typed < 0 # via x509-store + - tcp-streams < 0 # via x509-store + - tls < 0 # via x509-store + - tls-debug < 0 # via x509-store + - connection < 0 # via x509-system + - network-simple-tls < 0 # via x509-system + - tcp-streams < 0 # via x509-system + - tls-debug < 0 # via x509-system + - connection < 0 # via x509-validation + - network-simple-tls < 0 # via x509-validation + - postgresql-typed < 0 # via x509-validation + - tls < 0 # via x509-validation + - tls-debug < 0 # via x509-validation + - DAV < 0 # via xml-conduit + - pandoc-citeproc < 0 # via xml-conduit + - xml-lens < 0 # via xml-conduit + - yesod-test < 0 # via xml-conduit + - DAV < 0 # via xml-hamlet + - HandsomeSoup < 0 # via HTTP + - hxt-http < 0 # via HTTP + - amqp < 0 # via connection + - http-client-tls < 0 # via connection + - http-conduit < 0 # via connection + - network-conduit-tls < 0 # via connection + - http-streams < 0 # via io-streams + - butter < 0 # via network-simple + - network-anonymous-i2p < 0 # via network-simple + - network-attoparsec < 0 # via network-simple + - pipes-network < 0 # via network-simple + - pipes-network-tls < 0 # via network-simple + - pipes-network-tls < 0 # via network-simple-tls + - http-streams < 0 # via openssl-streams + - http-client-tls < 0 # via tls + - network-conduit-tls < 0 # via tls + - pipes-network-tls < 0 # via tls + - tls-session-manager < 0 # via tls + - warp-tls < 0 # via tls + - bimap-server < 0 # via wai + - bugsnag-haskell < 0 # via wai + - http-conduit < 0 # via wai + - http-reverse-proxy < 0 # via wai + - pipes-wai < 0 # via wai + - wai-conduit < 0 # via wai + - wai-cors < 0 # via wai + - wai-enforce-https < 0 # via wai + - wai-eventsource < 0 # via wai + - wai-logger < 0 # via wai + - wai-middleware-caching < 0 # via wai + - wai-middleware-static < 0 # via wai + - wai-session-postgresql < 0 # via wai + - wai-websockets < 0 # via wai + - warp-tls < 0 # via wai + - wai-websockets < 0 # via wai-app-static + - wai-enforce-https < 0 # via wai-extra + - wai-session-postgresql < 0 # via wai-session + - bimap-server < 0 # via warp + - bugsnag-haskell < 0 # via warp + - http-conduit < 0 # via warp + - http-reverse-proxy < 0 # via warp + - wai-enforce-https < 0 # via warp + - wai-websockets < 0 # via warp + - warp-tls < 0 # via warp + - wai-websockets < 0 # via websockets + - bugsnag-haskell < 0 # via yesod-core + - bitx-bitcoin < 0 # via http-client-tls + - datadog < 0 # via http-client-tls + - oauthenticated < 0 # via http-client-tls "GHC 8.8-related build failures": From 045059345cd27c92ad55676535e748e0b60e62ce Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 26 Sep 2019 12:14:51 -0700 Subject: [PATCH 0693/2682] Block some more build failures --- build-constraints.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 02f17bf2..4bd7c19c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6142,6 +6142,13 @@ packages: - data-diverse-lens < 0 # "The liberal coverage condition fails" - xmlbf < 0 # MonadFail - apecs < 0 # Template Haskell changes + - aeson-qq < 0 # MonadFail + - conduit-iconv < 0 # MonadFail + - docopt < 0 # MonadFail + - groundhog < 0 # MonadFail + - github-webhooks < 0 # unknown + - protocol-buffers < 0 # MonadFail + - mustache < 0 # Lift Text # Round 2 transitive from Some more failures - Clipboard < 0 # via X11 From 1a426759cd771f20f5337fd626dfa531d4fe6c97 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 26 Sep 2019 12:17:14 -0700 Subject: [PATCH 0694/2682] Remove build failure transitive deps --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4bd7c19c..cd0e7e59 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6157,6 +6157,8 @@ packages: - x11-xim < 0 # via X11 - xmonad < 0 # via X11 - xmonad-contrib < 0 # via X11 + - groundhog-postgresql < 0 # via groundhog + - groundhog-th < 0 # via groundhog "GHC upper bounds": From 3bdbd44eb7c4ea3856511425e19be1f18e1550e7 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 26 Sep 2019 12:40:29 -0700 Subject: [PATCH 0695/2682] Block more build failures --- build-constraints.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index cd0e7e59..831b2ee1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6149,6 +6149,14 @@ packages: - github-webhooks < 0 # unknown - protocol-buffers < 0 # MonadFail - mustache < 0 # Lift Text + - hspec-expectations-pretty-diff < 0 # unknown + - graylog < 0 # Couldn't find module Network.BSD + - hbeanstalk < 0 # sClose not in scope + - hstatsd < 0 # sClose not in scope + - xenstore < 0 # sClose not in scope + - cql < 0 # Template Haskell changes + - sphinx < 0 # Could not find module Network + - systemd < 0 # socketToFd is ambiguous # Round 2 transitive from Some more failures - Clipboard < 0 # via X11 @@ -6159,6 +6167,7 @@ packages: - xmonad-contrib < 0 # via X11 - groundhog-postgresql < 0 # via groundhog - groundhog-th < 0 # via groundhog + - cql-io < 0 # via cql "GHC upper bounds": From e0e0ed6ec29f63727f8744cf91f0520f51fc328c Mon Sep 17 00:00:00 2001 From: Bodigrim Date: Thu, 26 Sep 2019 22:00:52 +0100 Subject: [PATCH 0696/2682] Unblock quickcheck-classes --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 831b2ee1..024217f5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3018,7 +3018,9 @@ packages: - fast-digits - chimera - quadratic-irrational + - primitive-addr - quickcheck-classes + - quickcheck-classes-base - arithmoi - bitvec - poly From fe54590d52aa2220649b0b0ed7d96e2e2641b8f1 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 26 Sep 2019 18:25:08 -0700 Subject: [PATCH 0697/2682] Unblock revdeps of conduit-extra --- build-constraints.yaml | 54 ++++++++++-------------------------------- 1 file changed, 13 insertions(+), 41 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 831b2ee1..c6d4e2fc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4743,7 +4743,6 @@ packages: - kraken < 0 # via base-4.13.0.0 - lackey < 0 # via base-4.13.0.0 - learn-physics < 0 # via base-4.13.0.0 - - lens-family-th < 0 # via base-4.13.0.0 - loc < 0 # via base-4.13.0.0 - monoid-extras < 0 # via base-4.13.0.0 - monoidal-containers < 0 # via base-4.13.0.0 @@ -5006,7 +5005,6 @@ packages: - interpolatedstring-qq2 < 0 # via template-haskell-2.15.0.0 - invertible-grammar < 0 # via template-haskell-2.15.0.0 - ixset-typed < 0 # via template-haskell-2.15.0.0 - - lens-family-th < 0 # via template-haskell-2.15.0.0 - modern-uri < 0 # via template-haskell-2.15.0.0 - quickcheck-arbitrary-template < 0 # via template-haskell-2.15.0.0 - rank2classes < 0 # via template-haskell-2.15.0.0 @@ -5143,45 +5141,6 @@ packages: - debian < 0 # via bzlib - chronos-bench < 0 # via chronos - qnap-decrypt < 0 # via cipher-aes128 - - MusicBrainz < 0 # via conduit-extra - - codec-rpm < 0 # via conduit-extra - - conduit-algorithms < 0 # via conduit-extra - - conduit-throttle < 0 # via conduit-extra - - conduit-zstd < 0 # via conduit-extra - - cpio-conduit < 0 # via conduit-extra - - cryptonite-conduit < 0 # via conduit-extra - - editor-open < 0 # via conduit-extra - - fb < 0 # via conduit-extra - - google-isbn < 0 # via conduit-extra - - hamtsolo < 0 # via conduit-extra - - haskell-spacegoo < 0 # via conduit-extra - - hoogle < 0 # via conduit-extra - - hopenpgp-tools < 0 # via conduit-extra - - html-conduit < 0 # via conduit-extra - - http-download < 0 # via conduit-extra - - hw-conduit-merges < 0 # via conduit-extra - - imagesize-conduit < 0 # via conduit-extra - - json-rpc < 0 # via conduit-extra - - markdown < 0 # via conduit-extra - - minio-hs < 0 # via conduit-extra - - monad-logger < 0 # via conduit-extra - - nqe < 0 # via conduit-extra - - nuxeo < 0 # via conduit-extra - - pager < 0 # via conduit-extra - - project-template < 0 # via conduit-extra - - qnap-decrypt < 0 # via conduit-extra - - req-conduit < 0 # via conduit-extra - - sbp < 0 # via conduit-extra - - serf < 0 # via conduit-extra - - shell-conduit < 0 # via conduit-extra - - stack < 0 # via conduit-extra - - stm-conduit < 0 # via conduit-extra - - tagstream-conduit < 0 # via conduit-extra - - tar-conduit < 0 # via conduit-extra - - xml-conduit < 0 # via conduit-extra - - yesod-auth < 0 # via conduit-extra - - zim-parser < 0 # via conduit-extra - - zip-stream < 0 # via conduit-extra - configuration-tools < 0 # via connection - eventstore < 0 # via connection - hoogle < 0 # via connection @@ -6040,6 +5999,19 @@ packages: - bitx-bitcoin < 0 # via http-client-tls - datadog < 0 # via http-client-tls - oauthenticated < 0 # via http-client-tls + - conduit-throttle < 0 # via test-framework + - conduit-zstd < 0 # via test-framework + - stm-conduit < 0 # via test-framework + - conduit-throttle < 0 # via test-framework-hunit + - conduit-zstd < 0 # via test-framework-hunit + - stm-conduit < 0 # via test-framework-hunit + - stm-conduit < 0 # via test-framework-quickcheck2 + - conduit-zstd < 0 # via test-framework-th + - html-conduit < 0 # via xml-conduit + - tagstream-conduit < 0 # via xml-conduit + - hamtsolo < 0 # via stm-conduit + - json-rpc < 0 # via stm-conduit + - nqe < 0 # via stm-conduit "GHC 8.8-related build failures": From 0e4ae04116624ec359a178c25dd8920845fea141 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 26 Sep 2019 18:27:04 -0700 Subject: [PATCH 0698/2682] unblock misc --- build-constraints.yaml | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c6d4e2fc..d8d75a40 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5711,22 +5711,11 @@ packages: - enum-text-rio < 0 # via fmt - optparse-enum < 0 # via fmt - rg < 0 # via fmt - - cassava-records < 0 # via foldl - - pipes-extras < 0 # via foldl - - pipes-ordered-zip < 0 # via foldl - - sequence-formats < 0 # via foldl - - sequenceTools < 0 # via foldl - generic-data-surgery < 0 # via generic-data - hasql-optparse-applicative < 0 # via hasql - hasql-pool < 0 # via hasql - hasql-transaction < 0 # via hasql - flat-mcmc < 0 # via monad-par - - declarative < 0 # via mwc-probability - - flat-mcmc < 0 # via mwc-probability - - hasty-hamiltonian < 0 # via mwc-probability - - mcmc-types < 0 # via mwc-probability - - mighty-metropolis < 0 # via mwc-probability - - speedy-slice < 0 # via mwc-probability - lens-regex-pcre < 0 # via pcre-heavy - rvar < 0 # via random-source - kleene < 0 # via regex-applicative @@ -5758,7 +5747,6 @@ packages: # Misc. Removed from above but must still be re-removed due to *another* issue - attoparsec-uri < 0 # via attoparsec-ip - caster < 0 # via fast-builder - - deferred-folds < 0 # via foldl - hschema-quickcheck < 0 # via hschema - string-interpolate < 0 # via interpolatedstring-perl6 - attoparsec-uri < 0 # via ip From e8f4e67ad3b92f50077a08a8d3dff8112dacc4ed Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 26 Sep 2019 18:31:22 -0700 Subject: [PATCH 0699/2682] unblock misc --- build-constraints.yaml | 35 ++++++++--------------------------- 1 file changed, 8 insertions(+), 27 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d8d75a40..4e9feb77 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5444,13 +5444,6 @@ packages: - streaming-bytestring < 0 # via streaming - streaming-cassava < 0 # via streaming - streaming-wai < 0 # via streaming - - conduit-algorithms < 0 # via streaming-commons - - datasets < 0 # via streaming-commons - - qnap-decrypt < 0 # via streaming-commons - - stack < 0 # via streaming-commons - - turtle < 0 # via streaming-commons - - wai-handler-launch < 0 # via streaming-commons - - yesod < 0 # via streaming-commons - sv-cassava < 0 # via sv-core - Chart-diagrams < 0 # via svg-builder - cachix-api < 0 # via swagger2 @@ -5603,9 +5596,6 @@ packages: - xml-hamlet < 0 # via shakespeare - stm-containers < 0 # via stm-hamt - show-prettyprint < 0 # via trifecta - - bench < 0 # via turtle - - distribution-opensuse < 0 # via turtle - - singletons < 0 # via turtle - emd < 0 # via typelits-witnesses - stripe-wreq < 0 # via wreq - jose < 0 # via x509 @@ -5682,12 +5672,6 @@ packages: - massiv < 0 # via scheduler - massiv-test < 0 # via scheduler - servant-ruby < 0 # via servant-foreign - - decidable < 0 # via singletons - - eliminators < 0 # via singletons - - functor-products < 0 # via singletons - - lens-typelevel < 0 # via singletons - - list-witnesses < 0 # via singletons - - singleton-nats < 0 # via singletons - filecache < 0 # via strict-base-types - pcre-heavy < 0 # via string-conversions - secp256k1-haskell < 0 # via string-conversions @@ -5769,7 +5753,6 @@ packages: - hschema-aeson < 0 # via prettyprinter-ansi-terminal - winery < 0 # via prettyprinter-ansi-terminal - aeson-extra < 0 # via semialign - - inline-r < 0 # via singletons - lxd-client-config < 0 # via test-framework - pandoc-types < 0 # via test-framework - lxd-client-config < 0 # via test-framework-hunit @@ -5867,7 +5850,6 @@ packages: - servant-multipart < 0 # via servant-foreign - yesod-bin < 0 # via shakespeare - yesod-core < 0 # via shakespeare - - wai-predicates < 0 # via singletons - connection < 0 # via socks - network-simple < 0 # via socks - store < 0 # via store-core @@ -5988,18 +5970,14 @@ packages: - datadog < 0 # via http-client-tls - oauthenticated < 0 # via http-client-tls - conduit-throttle < 0 # via test-framework - - conduit-zstd < 0 # via test-framework - - stm-conduit < 0 # via test-framework - conduit-throttle < 0 # via test-framework-hunit - - conduit-zstd < 0 # via test-framework-hunit - - stm-conduit < 0 # via test-framework-hunit - - stm-conduit < 0 # via test-framework-quickcheck2 - - conduit-zstd < 0 # via test-framework-th - html-conduit < 0 # via xml-conduit - tagstream-conduit < 0 # via xml-conduit - - hamtsolo < 0 # via stm-conduit - - json-rpc < 0 # via stm-conduit - - nqe < 0 # via stm-conduit + - decidable < 0 # via vinyl + - functor-products < 0 # via vinyl + - list-witnesses < 0 # via vinyl + - wai-handler-launch < 0 # via wai + - wai-handler-launch < 0 # via warp "GHC 8.8-related build failures": @@ -6282,6 +6260,9 @@ skipped-tests: - base-orphans # via hspec # test-framework per ghc 8.8 + - stm-conduit # via test-framework + - conduit-zstd # via test-framework + - conduit-algorithms # via test-framework - statistics # via test-framework - Decimal # via test-framework - Diff # via test-framework From 18b4539787702cd4d542c57c20afeda84e3784fd Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 26 Sep 2019 18:34:07 -0700 Subject: [PATCH 0700/2682] Unblock revdeps of monad-logger --- build-constraints.yaml | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4e9feb77..cfcbf4ed 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5554,15 +5554,6 @@ packages: - magico < 0 # via lapack - resistor-cube < 0 # via lapack - cmark-gfm < 0 # via markdown - - async-refresh < 0 # via monad-logger - - async-refresh-tokens < 0 # via monad-logger - - eventful-test-helpers < 0 # via monad-logger - - groundhog-mysql < 0 # via monad-logger - - logging-effect < 0 # via monad-logger - - monad-logger-json < 0 # via monad-logger - - monad-logger-prefix < 0 # via monad-logger - - monad-logger-syslog < 0 # via monad-logger - - rio-orphans < 0 # via monad-logger - massiv-io < 0 # via netpbm - relational-record < 0 # via persistable-types-HDBC-pg - postgresql-simple-queue < 0 # via pg-transact @@ -5801,7 +5792,6 @@ packages: - hOpenPGP < 0 # via incremental-parser - hOpenPGP < 0 # via ixset-typed - lambdabot-irc-plugins < 0 # via lambdabot-core - - yesod-core < 0 # via monad-logger - libraft < 0 # via monad-metrics - bson < 0 # via network-3.1.1.0 - hslogger < 0 # via network-3.1.1.0 @@ -6106,6 +6096,8 @@ packages: - groundhog-postgresql < 0 # via groundhog - groundhog-th < 0 # via groundhog - cql-io < 0 # via cql + - groundhog-mysql < 0 # via groundhog + - logging-effect < 0 # via prettyprinter "GHC upper bounds": From e10a12cf7e00baa23de5562e4a3d69c873caabcd Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 26 Sep 2019 18:43:41 -0700 Subject: [PATCH 0701/2682] Unblock regex-base --- build-constraints.yaml | 23 ++++++++++------------- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index cfcbf4ed..63941a3d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4768,7 +4768,6 @@ packages: - ratel-wai < 0 # via base-4.13.0.0 - rattletrap < 0 # via base-4.13.0.0 - reanimate < 0 # via base-4.13.0.0 - - regex-base < 0 # via base-4.13.0.0 - repa < 0 # via base-4.13.0.0 - repa-algorithms < 0 # via base-4.13.0.0 - repa-io < 0 # via base-4.13.0.0 @@ -5388,18 +5387,16 @@ packages: - poly < 0 # via quickcheck-classes - yesod-paginator < 0 # via quickcheck-classes - regex-with-pcre < 0 # via regex - - lens-regex < 0 # via regex-base - - regex-compat < 0 # via regex-base - - regex-compat-tdfa < 0 # via regex-base - - regex-pcre < 0 # via regex-base - - regex-pcre-builtin < 0 # via regex-base - - regex-pcre-text < 0 # via regex-base - - regex-posix < 0 # via regex-base - - regex-tdfa < 0 # via regex-base - - regex-tdfa-text < 0 # via regex-base - - regex-with-pcre < 0 # via regex-base - - scalpel-core < 0 # via regex-base - - yi-language < 0 # via regex-base + - regex-compat < 0 # via regex-base-0.94.0.0 + - regex-pcre < 0 # via regex-base-0.94.0.0 + - regex-pcre-text < 0 # via regex-base-0.94.0.0 + - regex-posix < 0 # via regex-base-0.94.0.0 + - regex-tdfa < 0 # via regex-base-0.94.0.0 + - yi-language < 0 # via regex-base-0.94.0.0 + - lens-regex < 0 # via regex-posix + - regex-compat-tdfa < 0 # via regex-tdfa + - regex-tdfa-text < 0 # via regex-tdfa + - scalpel-core < 0 # via regex-tdfa - datasets < 0 # via req - elm2nix < 0 # via req - req-conduit < 0 # via req From 1dc80154cbea49ce610a094e3424acae6cbeb848 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 26 Sep 2019 18:45:32 -0700 Subject: [PATCH 0702/2682] Unblock quickcheck-classes & revdeps --- build-constraints.yaml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8f90e114..ac24f0b3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4964,14 +4964,12 @@ packages: - dhall-json < 0 # via prettyprinter-1.3.0 - invertible-grammar < 0 # via prettyprinter-1.3.0 - sexp-grammar < 0 # via prettyprinter-1.3.0 - - quickcheck-classes < 0 # via primitive-addr - primitive-extras < 0 # via primitive-unlifted - MissingH < 0 # via process-1.6.5.1 - blaze-colonnade < 0 # via profunctors-5.5 - colonnade < 0 # via profunctors-5.5 - invertible-grammar < 0 # via profunctors-5.5 - proto-lens < 0 # via profunctors-5.5 - - quickcheck-classes < 0 # via quickcheck-classes-base - ixset-typed < 0 # via safecopy-0.10.0 - selda-postgresql < 0 # via selda-0.5.0.0 - selda-sqlite < 0 # via selda-0.5.0.0 @@ -5385,9 +5383,6 @@ packages: - oblivious-transfer < 0 # via protolude - pedersen-commitment < 0 # via protolude - avro < 0 # via pure-zlib - - bitvec < 0 # via quickcheck-classes - - poly < 0 # via quickcheck-classes - - yesod-paginator < 0 # via quickcheck-classes - regex-with-pcre < 0 # via regex - regex-compat < 0 # via regex-base-0.94.0.0 - regex-pcre < 0 # via regex-base-0.94.0.0 From 6eb5e6dc390616786da9f0f61bb04912d8b9c302 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 26 Sep 2019 18:51:45 -0700 Subject: [PATCH 0703/2682] Block some more build failures --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index b3cf7402..77dfceb5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6079,6 +6079,9 @@ packages: - cql < 0 # Template Haskell changes - sphinx < 0 # Could not find module Network - systemd < 0 # socketToFd is ambiguous + - cassava-records < 0 # MonadFail + - haskell-spacegoo < 0 # MonadFail + - lens-typelevel < 0 # Wrong category of family instance (wat) # Round 2 transitive from Some more failures - Clipboard < 0 # via X11 From 22b2327fc796bde49b427f6b94f829b39634e854 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 26 Sep 2019 19:02:26 -0700 Subject: [PATCH 0704/2682] Block build failure regex-pcre-builtin --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 69c655b9..ac90b259 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6084,6 +6084,7 @@ packages: - cassava-records < 0 # MonadFail - haskell-spacegoo < 0 # MonadFail - lens-typelevel < 0 # Wrong category of family instance (wat) + - regex-pcre-builtin < 0 # MonadFail # Round 2 transitive from Some more failures - Clipboard < 0 # via X11 From 39a27b360ffd6443cb1e8833759cf8808047a31b Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 26 Sep 2019 19:11:17 -0700 Subject: [PATCH 0705/2682] skip bitvec haddocks per #4848 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 64a82c75..6908036c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6973,6 +6973,7 @@ skipped-haddocks: - sparkle # Java function failures tweag/sparkle#144 - polysemy-zoo # Needs polysemy-plugin GHC plugin - haskell-lsp-types # 0.13.0.0 https://github.com/commercialhaskell/stackage/issues/4563#issuecomment-493899809 +- bitvec # https://github.com/commercialhaskell/stackage/issues/4848 # end of skipped-haddocks # Benchmarks which should not be built. Note that Stackage builds benchmarks but does not run them. From 3d8adbdb6330834b8e8196309e57775f42ee7893 Mon Sep 17 00:00:00 2001 From: Ryan Scott Date: Fri, 27 Sep 2019 07:26:01 -0400 Subject: [PATCH 0706/2682] Remove base-orphans' test suite from skipped-tests `base-orphans` was mysteriously listed in the `skipped-tests` category due to cyclic dependencies. Despite this, I am unable to observe the supposed cyclic dependencies when I build it locally. As a result, I'm going to optimistically remove it from this category. --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6908036c..96cd1e4c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6250,9 +6250,6 @@ skipped-tests: # fails with ghc 8.8 - alex # as of alex-3.2.4 - # Cyclic dependencies - - base-orphans # via hspec - # test-framework per ghc 8.8 - stm-conduit # via test-framework - conduit-zstd # via test-framework From 6efb0bc8d124af6d113b84084cad84f7d7cefac9 Mon Sep 17 00:00:00 2001 From: Ryan Scott Date: Fri, 27 Sep 2019 09:28:06 -0400 Subject: [PATCH 0707/2682] Reenable vault `vault` was listed in `"GHC 8.8-related build failures"`, but that is much too restrictive, since the library actually builds without issue on GHC 8.8. The only part that doesn't build correctly is its Haddocks, which is due to a Haddock bug (reported upstream at haskell/haddock#1091). I've listed `vault` in `expected-haddock-failures` as a result. --- build-constraints.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6908036c..4c63a546 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6020,7 +6020,6 @@ packages: # Misc - cuda < 0 - - vault < 0 - vivid-osc < 0 - flay < 0 - barbies < 0 @@ -6965,6 +6964,9 @@ expected-haddock-failures: - bins - emd - hmatrix-backprop + + # https://github.com/haskell/haddock/issues/1091 + - vault # end of expected-haddock-failures # For packages with haddock issues From f64f5c13b4939d03d722e5fc39d805b27392e4e0 Mon Sep 17 00:00:00 2001 From: Ryan Scott Date: Fri, 27 Sep 2019 10:22:01 -0400 Subject: [PATCH 0708/2682] Remove the deprecated gc package The `gc` package is now deprecated (see its Hackage page). As co-maintainer, I'd like to remove it from Stackage. --- build-constraints.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6908036c..1124d61e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -809,7 +809,6 @@ packages: - fixed - folds - free - - gc - gl - graphs - half @@ -6446,7 +6445,6 @@ skipped-tests: - dotenv - enum-subset-generate - folds - - gc - generic-lens - geojson - github-types From c693874f27862401f54516200d7004511250c05a Mon Sep 17 00:00:00 2001 From: Tomas Carnecky Date: Fri, 27 Sep 2019 16:24:16 +0200 Subject: [PATCH 0709/2682] Reenable rethinkdb-client-driver, avers and publicsuffix --- build-constraints.yaml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6908036c..ae50cb77 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1509,7 +1509,7 @@ packages: - kraken - libinfluxdb < 0 # GHC 8.4 via base-4.11.0.0 - mole < 0 # GHC 8.4 via base-4.11.0.0 - - publicsuffix < 0 + - publicsuffix - rethinkdb-client-driver - snap-blaze @@ -4665,7 +4665,6 @@ packages: - alarmclock < 0 # via base-4.13.0.0 - asn1-encoding < 0 # via base-4.13.0.0 - autoexporter < 0 # via base-4.13.0.0 - - avers < 0 # via base-4.13.0.0 - bank-holidays-england < 0 # via base-4.13.0.0 - base-noprelude < 0 # via base-4.13.0.0 - benchpress < 0 # via base-4.13.0.0 @@ -4777,7 +4776,6 @@ packages: - repa < 0 # via base-4.13.0.0 - repa-algorithms < 0 # via base-4.13.0.0 - repa-io < 0 # via base-4.13.0.0 - - rethinkdb-client-driver < 0 # via base-4.13.0.0 - rhine < 0 # via base-4.13.0.0 - rhine-gloss < 0 # via base-4.13.0.0 - salve < 0 # via base-4.13.0.0 @@ -4841,7 +4839,6 @@ packages: - dependent-sum-template < 0 # via constraints-extras - MissingH < 0 # via containers-0.6.2.1 - servant-kotlin < 0 # via containers-0.6.2.1 - - avers < 0 # via cryptonite-0.26 - web3 < 0 # via cryptonite-0.26 - beam-migrate < 0 # via dependent-map-0.3 - lambdabot-core < 0 # via dependent-map-0.3 @@ -4993,7 +4990,6 @@ packages: - sqlite-simple < 0 # via semigroups-0.19.1 - universe-dependent-sum < 0 # via some - PyF < 0 # via template-haskell-2.15.0.0 - - avers < 0 # via template-haskell-2.15.0.0 - classyplate < 0 # via template-haskell-2.15.0.0 - core-program < 0 # via template-haskell-2.15.0.0 - core-text < 0 # via template-haskell-2.15.0.0 @@ -5114,8 +5110,7 @@ packages: - x509 < 0 # via asn1-encoding - x509-store < 0 # via asn1-encoding - x509-validation < 0 # via asn1-encoding - - avers-api < 0 # via avers - - avers-server < 0 # via avers + - avers-api < 0 # via servant - fib < 0 # via base-noprelude - bencoding < 0 # via bencode - Chart-diagrams < 0 # via blaze-markup From c7ace825c4a4d7e47afd1fd38f8c514acbfc6858 Mon Sep 17 00:00:00 2001 From: Ryan Scott Date: Fri, 27 Sep 2019 11:12:47 -0400 Subject: [PATCH 0710/2682] Reenable streaming `streaming-0.2.3.0` fully supports GHC 8.8.1. --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6908036c..036069e8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4797,7 +4797,6 @@ packages: - socks < 0 # via base-4.13.0.0 - sqlite-simple < 0 # via base-4.13.0.0 - statestack < 0 # via base-4.13.0.0 - - streaming < 0 # via base-4.13.0.0 - strive < 0 # via base-4.13.0.0 - summoner < 0 # via base-4.13.0.0 - sv < 0 # via base-4.13.0.0 From 75022262e3315cef4e0bd09d8138391965d16933 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Fri, 27 Sep 2019 10:59:00 -0700 Subject: [PATCH 0711/2682] Revert "Remove base-orphans' test suite from skipped-tests" --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6b05b7a4..6dd5c7e3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6245,6 +6245,9 @@ skipped-tests: # fails with ghc 8.8 - alex # as of alex-3.2.4 + # Cyclic dependencies + - base-orphans # via hspec + # test-framework per ghc 8.8 - stm-conduit # via test-framework - conduit-zstd # via test-framework From 49812ccc77060ec0f8fcd7d104887160b0f6aa71 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Fri, 27 Sep 2019 11:00:35 -0700 Subject: [PATCH 0712/2682] Unblock some wai stuff --- build-constraints.yaml | 23 ++--------------------- 1 file changed, 2 insertions(+), 21 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6dd5c7e3..8eeb9d12 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5867,12 +5867,6 @@ packages: - pantry < 0 # via th-utilities - store < 0 # via th-utilities - wai-middleware-throttle < 0 # via token-bucket - - serversession-frontend-wai < 0 # via vault - - wai < 0 # via vault - - wai-extra < 0 # via vault - - wai-predicates < 0 # via vault - - wai-session < 0 # via vault - - warp < 0 # via vault - vivid < 0 # via vivid-osc - vivid < 0 # via vivid-supercollider - web-routes-wai < 0 # via web-routes @@ -5923,21 +5917,6 @@ packages: - pipes-network-tls < 0 # via tls - tls-session-manager < 0 # via tls - warp-tls < 0 # via tls - - bimap-server < 0 # via wai - - bugsnag-haskell < 0 # via wai - - http-conduit < 0 # via wai - - http-reverse-proxy < 0 # via wai - - pipes-wai < 0 # via wai - - wai-conduit < 0 # via wai - - wai-cors < 0 # via wai - - wai-enforce-https < 0 # via wai - - wai-eventsource < 0 # via wai - - wai-logger < 0 # via wai - - wai-middleware-caching < 0 # via wai - - wai-middleware-static < 0 # via wai - - wai-session-postgresql < 0 # via wai - - wai-websockets < 0 # via wai - - warp-tls < 0 # via wai - wai-websockets < 0 # via wai-app-static - wai-enforce-https < 0 # via wai-extra - wai-session-postgresql < 0 # via wai-session @@ -5962,6 +5941,8 @@ packages: - list-witnesses < 0 # via vinyl - wai-handler-launch < 0 # via wai - wai-handler-launch < 0 # via warp + - wai-extra < 0 # via http2 + - warp < 0 # via http2 "GHC 8.8-related build failures": From d38db08840ce62e1494db015ef174c188e16a403 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Fri, 27 Sep 2019 11:01:40 -0700 Subject: [PATCH 0713/2682] Unblock th-test-utils --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 89b37116..dd42516f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5016,7 +5016,6 @@ packages: - static-text < 0 # via template-haskell-2.15.0.0 - strive < 0 # via template-haskell-2.15.0.0 - th-nowq < 0 # via template-haskell-2.15.0.0 - - th-test-utils < 0 # via template-haskell-2.15.0.0 - threepenny-gui < 0 # via template-haskell-2.15.0.0 - tz < 0 # via template-haskell-2.15.0.0 - uri-bytestring < 0 # via template-haskell-2.15.0.0 From fc3e1a0dc86209761a5daf84a757eeec4e2e6b77 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Fri, 27 Sep 2019 11:13:27 -0700 Subject: [PATCH 0714/2682] Block some more build failures --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index dd42516f..02f5da3b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6063,6 +6063,8 @@ packages: - haskell-spacegoo < 0 # MonadFail - lens-typelevel < 0 # Wrong category of family instance (wat) - regex-pcre-builtin < 0 # MonadFail + - th-test-utils < 0 # Template Haskell changes. https://github.com/commercialhaskell/stackage/pull/4839 + - wai-predicates < 0 # MonadFail # Round 2 transitive from Some more failures - Clipboard < 0 # via X11 @@ -6076,6 +6078,7 @@ packages: - cql-io < 0 # via cql - groundhog-mysql < 0 # via groundhog - logging-effect < 0 # via prettyprinter + - aeson-schemas < 0 # via th-test-utils "GHC upper bounds": From b6a37fcac5869f401730fa98cbc1c4acc3aa6518 Mon Sep 17 00:00:00 2001 From: Ryan Scott Date: Fri, 27 Sep 2019 14:38:46 -0400 Subject: [PATCH 0715/2682] Add back some of my packages * `ad`, `thread-local-storage`, and `zippers` were removed due to their benchmarks not building with GHC 8.8.1. As far as I can tell, this is no longer an issue, as `criterion` now builds without issue on 8.8.1. * `folds` was removed due to its flaky `hlint` test suite, but version 0.7.5 of `folds` has removed this test suite. * `structs` was removed due to its test suite not building on GHC 8.6. This is no longer an issue, as far as I can tell. * `text-show-instances` was removed due to `text-show`, but `text-show` is no longer blacklisted, so this should be fine now. --- build-constraints.yaml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 02f5da3b..95a10ca4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5721,7 +5721,6 @@ packages: - attoparsec-uri < 0 # via ip - string-interpolate < 0 # via text-conversions - xmlbf-xeno < 0 # via xeno - - text-show-instances < 0 # via text-show - random-fu < 0 # via random-source - Hoed < 0 # via regex-tdfa - Hoed < 0 # via regex-tdfa-text @@ -6424,7 +6423,6 @@ skipped-tests: - distributed-closure - dotenv - enum-subset-generate - - folds - generic-lens - geojson - github-types @@ -6457,7 +6455,6 @@ skipped-tests: - skylighting-core - speedy-slice - static-text - - structs - thyme - universum - unordered-containers @@ -6821,10 +6818,6 @@ expected-test-failures: - stm-delay # https://github.com/joeyadams/haskell-stm-delay/issues/5 - tmp-postgres # https://github.com/jfischoff/tmp-postgres/issues/1 - # Linting failures (these may break every time HLint gets updated so keep them disabled) - # https://www.snoyman.com/blog/2017/11/future-proofing-test-suites - - folds - # https://github.com/pruvisto/heap/issues/11 - heap @@ -6993,7 +6986,6 @@ skipped-benchmarks: - binary-tagged - Earley - IntervalMap - - ad - attoparsec - binary-list - binary-tagged @@ -7085,7 +7077,6 @@ skipped-benchmarks: - text-builder - text-manipulate - text-metrics - - thread-local-storage - tinylog - turtle - type-of-html @@ -7102,7 +7093,6 @@ skipped-benchmarks: - xlsx - xmlgen - yi-rope - - zippers # Transitive outdated dependencies # These packages From 9440a01dd36e6f855eaf20bd4c79e87dee22966d Mon Sep 17 00:00:00 2001 From: Ryan Scott Date: Fri, 27 Sep 2019 14:45:21 -0400 Subject: [PATCH 0716/2682] Add myself as the maintainer of rdtsc The benchmark suites for my package `rcu` (which I working towards adding back to Stackage at some point) depends on the `rdtsc` library, which is not currently on Stackage. I'd like to make myself the maintainer. --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 02f5da3b..1f6a5964 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2203,6 +2203,7 @@ packages: - mtl-compat - ordered-containers - proxied + - rdtsc - singleton-nats - text-show - text-show-instances From a5ed3a5c7c4b781d1a177de48d6dfb1b1037f6c9 Mon Sep 17 00:00:00 2001 From: Brandon Chinn Date: Fri, 27 Sep 2019 12:00:06 -0700 Subject: [PATCH 0717/2682] Remove th-test-utils from build failures --- build-constraints.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 02f5da3b..54768a25 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6063,7 +6063,6 @@ packages: - haskell-spacegoo < 0 # MonadFail - lens-typelevel < 0 # Wrong category of family instance (wat) - regex-pcre-builtin < 0 # MonadFail - - th-test-utils < 0 # Template Haskell changes. https://github.com/commercialhaskell/stackage/pull/4839 - wai-predicates < 0 # MonadFail # Round 2 transitive from Some more failures @@ -6078,7 +6077,6 @@ packages: - cql-io < 0 # via cql - groundhog-mysql < 0 # via groundhog - logging-effect < 0 # via prettyprinter - - aeson-schemas < 0 # via th-test-utils "GHC upper bounds": From 0cbf853ef5eb1bb594d10591a3e8db94135bca1e Mon Sep 17 00:00:00 2001 From: Will Sewell Date: Fri, 27 Sep 2019 21:40:55 +0100 Subject: [PATCH 0718/2682] Re-enable pusher-http-haskell Remove pusher-http-haskell from "GHC 8.8 bounds failures". It's compatible with base-4.13 since 1.5.1.11. --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 02f5da3b..6e7afb0d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4770,7 +4770,6 @@ packages: - proto-lens-runtime < 0 # via base-4.13.0.0 - proto-lens-setup < 0 # via base-4.13.0.0 - protolude < 0 # via base-4.13.0.0 - - pusher-http-haskell < 0 # via base-4.13.0.0 - raaz < 0 # via base-4.13.0.0 - ratel < 0 # via base-4.13.0.0 - ratel-wai < 0 # via base-4.13.0.0 From 0a57e2a43e37bfc3d6e5e8ceeb6fe0ff739ad1cb Mon Sep 17 00:00:00 2001 From: Dmitrii Kovanikov Date: Sat, 28 Sep 2019 21:28:25 +0300 Subject: [PATCH 0719/2682] Add shellmet --- build-constraints.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 02f5da3b..ddb34568 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3502,7 +3502,6 @@ packages: - universum "Kowainik @chshersh @vrom911": - - base-noprelude == 4.12.0.0 - co-log-core - co-log - first-class-patterns @@ -4789,7 +4788,6 @@ packages: - servant-auth-server < 0 # via base-4.13.0.0 - servant-auth-swagger < 0 # via base-4.13.0.0 - sexpr-parser < 0 # via base-4.13.0.0 - - shellmet < 0 # via base-4.13.0.0 - shower < 0 # via base-4.13.0.0 - sized-grid < 0 # via base-4.13.0.0 - slack-web < 0 # via base-4.13.0.0 From 0fb829b2fdd8eabd27e6b4ac86441c0ecd57040a Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sun, 29 Sep 2019 09:20:50 -0700 Subject: [PATCH 0720/2682] Expect test failure per LeapYear/th-test-utils#14 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7f4823aa..1801d786 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6783,6 +6783,7 @@ expected-test-failures: - squeal-postgresql # https://github.com/fpco/stackage/issues/3180 - text-icu # https://github.com/bos/text-icu/issues/32 - text-ldap # https://github.com/khibino/haskell-text-ldap/issues/1 + - th-test-utils # https://github.com/LeapYear/th-test-utils/issues/14 - unicode-transforms # https://github.com/harendra-kumar/unicode-transforms/issues/15 - vector-algorithms # http://hub.darcs.net/dolio/vector-algorithms/issue/9 - vivid-supercollider # https://github.com/commercialhaskell/stackage/issues/4250 From 814918b8d7d0f55b0965d6dc1f30d43d0953fd55 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sun, 29 Sep 2019 09:28:46 -0700 Subject: [PATCH 0721/2682] unblock aeson-pretty and revdeps --- build-constraints.yaml | 28 +++++++--------------------- 1 file changed, 7 insertions(+), 21 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1801d786..7cce0ef7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4819,7 +4819,6 @@ packages: - wild-bind < 0 # via base-4.13.0.0 - wild-bind-x11 < 0 # via base-4.13.0.0 - wuss < 0 # via base-4.13.0.0 - - aeson-pretty < 0 # via base-compat-0.11.0 - algebraic-graphs < 0 # via base-compat-0.11.0 - feed < 0 # via base-compat-0.11.0 - gi-gtk-hs < 0 # via base-compat-0.11.0 @@ -5084,23 +5083,6 @@ packages: - file-modules < 0 # via MissingH - hadolint < 0 # via ShellCheck - ipynb < 0 # via aeson-diff - - HTF < 0 # via aeson-pretty - - aws-cloudfront-signed-cookies < 0 # via aeson-pretty - - filter-logger < 0 # via aeson-pretty - - ginger < 0 # via aeson-pretty - - glabrous < 0 # via aeson-pretty - - groundhog-inspector < 0 # via aeson-pretty - - hpack-dhall < 0 # via aeson-pretty - - hspec-golden-aeson < 0 # via aeson-pretty - - hvega < 0 # via aeson-pretty - - kanji < 0 # via aeson-pretty - - log-base < 0 # via aeson-pretty - - lsp-test < 0 # via aeson-pretty - - sbp < 0 # via aeson-pretty - - servant-docs < 0 # via aeson-pretty - - servant-swagger < 0 # via aeson-pretty - - stratosphere < 0 # via aeson-pretty - - yesod-auth-oauth2 < 0 # via aeson-pretty - asn1-parse < 0 # via asn1-encoding - aws-cloudfront-signed-cookies < 0 # via asn1-encoding - crypto-pubkey-openssh < 0 # via asn1-encoding @@ -5746,9 +5728,6 @@ packages: - postgresql-typed < 0 # via HDBC - tcp-streams-openssl < 0 # via HsOpenSSL-x509-system - pandoc-citeproc < 0 # via HsYAML-aeson - - http2 < 0 # via aeson-pretty - - microformats2-parser < 0 # via aeson-pretty - - pandoc-citeproc < 0 # via aeson-pretty - hOpenPGP < 0 # via asn1-encoding - tls < 0 # via asn1-encoding - ws < 0 # via attoparsec-uri @@ -5940,6 +5919,13 @@ packages: - wai-handler-launch < 0 # via warp - wai-extra < 0 # via http2 - warp < 0 # via http2 + - lsp-test < 0 # via conduit-parse + - groundhog-inspector < 0 # via groundhog + - groundhog-inspector < 0 # via groundhog-sqlite + - groundhog-inspector < 0 # via groundhog-th + - lsp-test < 0 # via haskell-lsp + - groundhog-inspector < 0 # via regex-compat + - ginger < 0 # via regex-tdfa "GHC 8.8-related build failures": From f6fdd49157ea239c0befbc7c872b62a32f6f18e1 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sun, 29 Sep 2019 10:07:42 -0700 Subject: [PATCH 0722/2682] unblock aeson-pretty and revdeps --- build-constraints.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7cce0ef7..0d91d159 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4866,7 +4866,6 @@ packages: - ihaskell < 0 # via ghc-boot-8.8.1 - brittany < 0 # via ghc-boot-th-8.8.1 - brittany < 0 # via ghc-exactprint-0.6.2 - - hlint < 0 # via ghc-lib-parser-8.8.1 - gi-gtk-hs < 0 # via gi-gdk-4.0.1 - gi-gtksource < 0 # via gi-gdk-4.0.1 - gi-vte < 0 # via gi-gdk-4.0.1 @@ -5174,9 +5173,6 @@ packages: - haskintex < 0 # via hint - hledger-iadd < 0 # via hledger-lib - hledger-interest < 0 # via hledger-lib - - cacophony < 0 # via hlint - - dublincore-xml-conduit < 0 # via hlint - - sbv < 0 # via hlint - wai-middleware-auth < 0 # via hoauth2 - yesod-auth-oauth2 < 0 # via hoauth2 - haskell-lsp < 0 # via hslogger From 1e7275909ab88c61d190fe0ad201e3bbe092bf4f Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sun, 29 Sep 2019 10:33:23 -0700 Subject: [PATCH 0723/2682] Ungrandfather OneTuple, vaguely related to #3716 --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0d91d159..44073e42 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3998,7 +3998,6 @@ packages: - ListLike - MemoTrie - NumInstances - - OneTuple - Only - ParsecTools - QuickCheck From 793450dde77ff3794741d4347bde5901570939d8 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sun, 29 Sep 2019 10:37:59 -0700 Subject: [PATCH 0724/2682] concurrent-extra test failure reported elsewhere --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 44073e42..20e35f9f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6590,7 +6590,7 @@ expected-test-failures: - aeson-lens # https://github.com/tanakh/aeson-lens/issues/10 - cabal-debian # https://github.com/ddssff/cabal-debian/issues/50 - capataz # https://github.com/roman/Haskell-capataz/issues/6 - - concurrent-extra # https://github.com/commercialhaskell/stackage/issues/3717 + - concurrent-extra # https://github.com/basvandijk/concurrent-extra/issues/12 - crypto-numbers - css-text # 0.1.2.2 https://github.com/yesodweb/css-text/issues/10 - distributed-process From 039d8c3e622f47ecdbeb1ee79420897d36537689 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sun, 29 Sep 2019 10:51:14 -0700 Subject: [PATCH 0725/2682] Block sbv per MonadFail build failure --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 20e35f9f..ea97528d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6042,6 +6042,7 @@ packages: - lens-typelevel < 0 # Wrong category of family instance (wat) - regex-pcre-builtin < 0 # MonadFail - wai-predicates < 0 # MonadFail + - sbv < 0 # MonadFail # Round 2 transitive from Some more failures - Clipboard < 0 # via X11 From c44a1baf05a4108b3e45abe80ffae283d1b45bde Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sun, 29 Sep 2019 11:13:23 -0700 Subject: [PATCH 0726/2682] Unblock hslua stuff, incl benchmarks. Closes #4526 --- build-constraints.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ea97528d..4e583c40 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5593,9 +5593,6 @@ packages: - bitcoin-block < 0 # via hexstring - bitcoin-tx < 0 # via hexstring - bitcoin-types < 0 # via hexstring - - hslua-module-system < 0 # via hslua - - hslua-module-text < 0 # via hslua - - tasty-lua < 0 # via hslua - purescript-bridge < 0 # via hspec-expectations-pretty-diff - s3-signer < 0 # via http-types - web-routes < 0 # via http-types @@ -7087,7 +7084,6 @@ skipped-benchmarks: - cipher-rc4 # https://github.com/vincenthz/hs-crypto-cipher/issues/46 - extensible # via freer-effects https://github.com/fumieval/extensible/issues/12 - hw-bits # https://github.com/haskell-works/hw-bits/issues/8 - - hslua # https://github.com/commercialhaskell/stackage/issues/4526 - persistent-template # https://github.com/commercialhaskell/stackage/issues/4760 # Cyclic dependencies From 01feac3c581a3fbd44dd5b657ca108297dc7301f Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sun, 29 Sep 2019 11:23:56 -0700 Subject: [PATCH 0727/2682] Expect test pass from singletons, closes #4646 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4e583c40..53c61fcb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6833,9 +6833,6 @@ expected-test-failures: # https://github.com/commercialhaskell/stackage/issues/4643 - world-peace - # https://github.com/commercialhaskell/stackage/issues/4646 - - singletons - # Cannot reproduce locally, looks like it may be a bug in Stack or curator - shake-language-c From 6e4645517d03619e97888ad8f4336f73be85697a Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sun, 29 Sep 2019 11:26:46 -0700 Subject: [PATCH 0728/2682] Expect tests to pass for pretty-simple, closes #4652 --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 53c61fcb..c0c76657 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6563,7 +6563,6 @@ skipped-tests: # Test errors with modules not being visible - servant-ruby # https://github.com/commercialhaskell/stackage/issues/4650 - - pretty-simple # https://github.com/commercialhaskell/stackage/issues/4652 - password-instances # https://github.com/commercialhaskell/stackage/issues/4653 - password # https://github.com/commercialhaskell/stackage/issues/4654 - haskell-gi # https://github.com/commercialhaskell/stackage/issues/4661 From a9d5ebd242ec63b8bdea27b1a4617bdd03e12706 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sun, 29 Sep 2019 11:29:16 -0700 Subject: [PATCH 0729/2682] Expect tests to pass for world-peace, closes #4643 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c0c76657..1997ef38 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6829,9 +6829,6 @@ expected-test-failures: # https://github.com/commercialhaskell/stackage/issues/4642 - ghc-exactprint - # https://github.com/commercialhaskell/stackage/issues/4643 - - world-peace - # Cannot reproduce locally, looks like it may be a bug in Stack or curator - shake-language-c From f84995eb59a6b6ce302bae51538df37e99708a59 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sun, 29 Sep 2019 11:44:45 -0700 Subject: [PATCH 0730/2682] Expect tests to pass for ghc-exactprint, closes #4642 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1997ef38..60cd9edb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6826,9 +6826,6 @@ expected-test-failures: # https://github.com/jgm/pandoc/issues/5582 - pandoc - # https://github.com/commercialhaskell/stackage/issues/4642 - - ghc-exactprint - # Cannot reproduce locally, looks like it may be a bug in Stack or curator - shake-language-c From c79d6d7637fee54615686e8a57062313a5cae935 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sun, 29 Sep 2019 11:50:35 -0700 Subject: [PATCH 0731/2682] Unblock password, keep expecting test failure, see #4654 --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 60cd9edb..3a389536 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5680,7 +5680,6 @@ packages: - monad-unlift-ref < 0 # via mutable-containers - xeno < 0 # via mutable-containers - pipes-category < 0 # via pipes-extras - - password < 0 # via scrypt # round 7 - pipes-misc < 0 # via pipes-category @@ -6564,7 +6563,7 @@ skipped-tests: # Test errors with modules not being visible - servant-ruby # https://github.com/commercialhaskell/stackage/issues/4650 - password-instances # https://github.com/commercialhaskell/stackage/issues/4653 - - password # https://github.com/commercialhaskell/stackage/issues/4654 + - password # https://github.com/cdepillabout/password/issues/2 - haskell-gi # https://github.com/commercialhaskell/stackage/issues/4661 - envelope # https://github.com/commercialhaskell/stackage/issues/4669 - algebraic-graphs # https://github.com/commercialhaskell/stackage/issues/4670 From e5fae6a0a8965c2bfd6107deb3b18ed9eabb3cc1 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sun, 29 Sep 2019 11:51:46 -0700 Subject: [PATCH 0732/2682] Unblock hsemail revdeps --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3a389536..326ab484 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5511,9 +5511,6 @@ packages: - xml-isogen < 0 # via dom-parser - scheduler < 0 # via fib - cabal2nix < 0 # via hpack - - cabal-debian < 0 # via hsemail - - distribution-opensuse < 0 # via hsemail - - mbox-utility < 0 # via hsemail - postgresql-simple-queue < 0 # via hspec-pg-transact - hspec-wai-json < 0 # via hspec-wai - dl-fedora < 0 # via http-directory From 1967534aaeb6c18cf5957c7b4f111c79bf097051 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sun, 29 Sep 2019 12:06:05 -0700 Subject: [PATCH 0733/2682] Unblock extensible-effects --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 326ab484..05c88f76 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2732,7 +2732,7 @@ packages: - tao-example "Suhail Shergill @suhailshergill": - - extensible-effects < 0 # GHC 8.4 via base-4.11.0.0 + - extensible-effects "Justus Adam @JustusAdam": # - marvin # https://github.com/JustusAdam/marvin/issues/22 @@ -6203,6 +6203,7 @@ skipped-tests: - base-orphans # via hspec # test-framework per ghc 8.8 + - extensible-effects # via test-framework - stm-conduit # via test-framework - conduit-zstd # via test-framework - conduit-algorithms # via test-framework @@ -6928,6 +6929,7 @@ skipped-benchmarks: - cryptohash-sha512 # criterion 1.5 - dimensional # base < 4.7, https://github.com/bjornbm/dimensional/issues/207 - ed25519 # Criterion + - extensible-effects # via test-framework - hw-balancedparens # criterion 1.5, https://github.com/commercialhaskell/stackage/issues/3880 - hw-rankselect-base # criterion 1.5, https://github.com/commercialhaskell/stackage/issues/3880 - identicon # via criterion-1.5.0.0 @@ -7115,8 +7117,6 @@ skipped-benchmarks: - graphviz - graphviz - wl-pprint-text - # @lexi-lambda https://github.com/fpco/stackage/pull/3080 - - freer-simple # @phadej - dlist-nonempty # criterion-1.3 - splitmix # criterion-1.3 From cd428cdc1225595fdbd91dec426190a59fe61331 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sun, 29 Sep 2019 12:14:30 -0700 Subject: [PATCH 0734/2682] Expect tests to pass for either-both, closes #4757 --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 05c88f76..fae1c95a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6565,7 +6565,6 @@ skipped-tests: - haskell-gi # https://github.com/commercialhaskell/stackage/issues/4661 - envelope # https://github.com/commercialhaskell/stackage/issues/4669 - algebraic-graphs # https://github.com/commercialhaskell/stackage/issues/4670 - - either-both # https://github.com/commercialhaskell/stackage/issues/4757 - bugsnag-haskell # https://github.com/commercialhaskell/stackage/issues/4759 # end of skipped-tests From 949adf4f6d7c1240e3aa1f8bf3e5918fa717abd9 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sun, 29 Sep 2019 12:17:04 -0700 Subject: [PATCH 0735/2682] Expect tests to pass for dhall, closes #4706 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index fae1c95a..c2ddeb39 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6825,9 +6825,6 @@ expected-test-failures: # Cannot reproduce locally, looks like it may be a bug in Stack or curator - shake-language-c - # https://github.com/commercialhaskell/stackage/issues/4706 - - dhall - # https://github.com/commercialhaskell/stackage/issues/4707 - blaze-colonnade From 7b24d18b09f83f9e1049f52d9ca4a835e880e348 Mon Sep 17 00:00:00 2001 From: Ryan Scott Date: Mon, 30 Sep 2019 05:36:49 -0400 Subject: [PATCH 0736/2682] Reenable tests and benchmarks for machines, rcu These were blocked some time ago due to not compiling against GHC 8.6, but as far as I can tell, this is no longer an issue. --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c2ddeb39..61ee3e41 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6416,7 +6416,6 @@ skipped-tests: - quickcheck-state-machine - rakuten - rank1dynamic - - rcu - rss-conduit - servant-auth-server - servant-blaze @@ -7003,7 +7002,6 @@ skipped-benchmarks: - lifted-async - lifted-base - loop - - machines - matrices - matrix - megaparsec @@ -7019,7 +7017,6 @@ skipped-benchmarks: - prettyprinter - prometheus-client - ramus - - rcu - reinterpret-cast - rng-utils - sampling From 12166a28184393b63d9a663422994c9b8d8a950a Mon Sep 17 00:00:00 2001 From: Ryan Scott Date: Mon, 30 Sep 2019 05:40:15 -0400 Subject: [PATCH 0737/2682] Reenable wai-extra, warp Now that `http2` is back in Stackage, there is no longer any reason to block `wai-extra` or `warp`, which incur `http2` as a dependency. --- build-constraints.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c2ddeb39..ff435fe0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5905,8 +5905,6 @@ packages: - list-witnesses < 0 # via vinyl - wai-handler-launch < 0 # via wai - wai-handler-launch < 0 # via warp - - wai-extra < 0 # via http2 - - warp < 0 # via http2 - lsp-test < 0 # via conduit-parse - groundhog-inspector < 0 # via groundhog - groundhog-inspector < 0 # via groundhog-sqlite From 59ee47a470ba0a2db5058a65f30aabf3b138a52b Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 30 Sep 2019 13:54:13 +0200 Subject: [PATCH 0738/2682] Adopt X11 as a library I maintain. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c2ddeb39..a65c79e0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2436,6 +2436,7 @@ packages: - streamproc - stringsearch # for cgi - titlecase + - X11 - xmonad "Mark Fine @markfine": @@ -4002,7 +4003,6 @@ packages: - ParsecTools - QuickCheck - RSA - - X11 - aeson-compat - aeson-extra - alsa-mixer From e9132eef1b6b14e3623e05233a0ef602cfbcb7be Mon Sep 17 00:00:00 2001 From: Alexey Kuleshevich Date: Mon, 30 Sep 2019 15:41:17 +0300 Subject: [PATCH 0739/2682] Remove `scheduler`, `massiv` and `massiv-test` from "GHC 8.8 bounds failures", since `scheduler` no longer depends on `fib` --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c2ddeb39..47c493b6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5509,7 +5509,6 @@ packages: - crypto-pubkey < 0 # via crypto-pubkey-types - cabal-debian < 0 # via debian - xml-isogen < 0 # via dom-parser - - scheduler < 0 # via fib - cabal2nix < 0 # via hpack - postgresql-simple-queue < 0 # via hspec-pg-transact - hspec-wai-json < 0 # via hspec-wai @@ -5623,8 +5622,6 @@ packages: - psql-helpers < 0 # via postgresql-simple - users-postgresql-simple < 0 # via postgresql-simple - protocol-buffers-descriptor < 0 # via protocol-buffers - - massiv < 0 # via scheduler - - massiv-test < 0 # via scheduler - servant-ruby < 0 # via servant-foreign - filecache < 0 # via strict-base-types - pcre-heavy < 0 # via string-conversions From 92b6a94aeb32d81a3d0348c492ea7bb129ef7dc8 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 30 Sep 2019 13:54:27 +0200 Subject: [PATCH 0740/2682] X11 and xmonad compile fine with GHC 8.8.1. --- build-constraints.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a65c79e0..7f4f8b06 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6010,7 +6010,6 @@ packages: # Some more failures - present < 0 # MonadFail - - X11 < 0 # Cabal 3? - HSet < 0 # Duplicate Hashable instance - data-diverse-lens < 0 # "The liberal coverage condition fails" - xmlbf < 0 # MonadFail @@ -6042,7 +6041,6 @@ packages: - Imlib < 0 # via X11 - X11-xft < 0 # via X11 - x11-xim < 0 # via X11 - - xmonad < 0 # via X11 - xmonad-contrib < 0 # via X11 - groundhog-postgresql < 0 # via groundhog - groundhog-th < 0 # via groundhog From 32053a5eb0951fa3bc9aa287d9c3c14404a787d2 Mon Sep 17 00:00:00 2001 From: Ian Graves Date: Mon, 30 Sep 2019 10:19:13 -0500 Subject: [PATCH 0741/2682] Adding monad-resumption to stackage --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index c2ddeb39..49c2ecf5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3980,6 +3980,9 @@ packages: "Robbie McMichael @robbiemcmichael": - http-client-overrides + "Ian Graves @igraves": + - monad-resumption + "Grandfathered dependencies": - network - Boolean From 56ed3bd3a635b1b82b17c81a0aeaaccef97df6fe Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Mon, 30 Sep 2019 10:15:05 -0700 Subject: [PATCH 0742/2682] Add transitive deps of tracing under @mtth --- build-constraints.yaml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c2ddeb39..3ab88c70 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -35,6 +35,16 @@ packages: - flags-applicative - more-containers - tracing + # transitive dependencies for tracing + - ip + - byteslice + - bytesmith + - contiguous + - natural-arithmetic + - primitive-offset + - primitive-unlifted + - run-st + - small-bytearray-builder "Robert Vollmert @robx": - configurator-pg @@ -4196,7 +4206,6 @@ packages: - inspection-testing - integer-logarithms - io-streams-haproxy - - ip - ixset-typed - json - json-alt From 0ffb57fe2aba79fbf256d452ac5d3eb6b01c9486 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Mon, 30 Sep 2019 10:18:51 -0700 Subject: [PATCH 0743/2682] Unblock revdeps of warp & wai-extra --- build-constraints.yaml | 25 ++----------------------- 1 file changed, 2 insertions(+), 23 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6f84dd1b..ef4c5ba9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5447,18 +5447,6 @@ packages: - servius < 0 # via wai-app-static - wai-middleware-auth < 0 # via wai-app-static - yesod-static < 0 # via wai-app-static - - filter-logger < 0 # via wai-extra - - fn < 0 # via wai-extra - - hspec-wai < 0 # via wai-extra - - simple < 0 # via wai-extra - - simple-session < 0 # via wai-extra - - tonatona-servant < 0 # via wai-extra - - wai-middleware-auth < 0 # via wai-extra - - yesod < 0 # via wai-extra - - yesod-auth-hashdb < 0 # via wai-extra - - yesod-eventsource < 0 # via wai-extra - - yesod-persistent < 0 # via wai-extra - - yesod-static < 0 # via wai-extra - filter-logger < 0 # via wai-logger - hoogle < 0 # via wai-logger - yesod < 0 # via wai-logger @@ -5891,15 +5879,7 @@ packages: - tls-session-manager < 0 # via tls - warp-tls < 0 # via tls - wai-websockets < 0 # via wai-app-static - - wai-enforce-https < 0 # via wai-extra - wai-session-postgresql < 0 # via wai-session - - bimap-server < 0 # via warp - - bugsnag-haskell < 0 # via warp - - http-conduit < 0 # via warp - - http-reverse-proxy < 0 # via warp - - wai-enforce-https < 0 # via warp - - wai-websockets < 0 # via warp - - warp-tls < 0 # via warp - wai-websockets < 0 # via websockets - bugsnag-haskell < 0 # via yesod-core - bitx-bitcoin < 0 # via http-client-tls @@ -5912,8 +5892,6 @@ packages: - decidable < 0 # via vinyl - functor-products < 0 # via vinyl - list-witnesses < 0 # via vinyl - - wai-handler-launch < 0 # via wai - - wai-handler-launch < 0 # via warp - lsp-test < 0 # via conduit-parse - groundhog-inspector < 0 # via groundhog - groundhog-inspector < 0 # via groundhog-sqlite @@ -5921,7 +5899,8 @@ packages: - lsp-test < 0 # via haskell-lsp - groundhog-inspector < 0 # via regex-compat - ginger < 0 # via regex-tdfa - + - http-reverse-proxy < 0 # via http-conduit + - wai-enforce-https < 0 # via warp-tls "GHC 8.8-related build failures": # MonadFail stuff From 4fecc841d23eec10ff5ab37fe8a380e435495bd1 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Mon, 30 Sep 2019 10:27:02 -0700 Subject: [PATCH 0744/2682] Unblock opaleye --- build-constraints.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b9ca0031..3d60865c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5633,9 +5633,6 @@ packages: - quickcheck-state-machine < 0 # via tree-diff - users-postgresql-simple < 0 # via users - users-test < 0 # via users - - dotenv < 0 # via yaml - - fakedata < 0 # via yaml - - frontmatter < 0 # via yaml # round 5 - hmatrix-backprop < 0 # via backprop @@ -5691,7 +5688,6 @@ packages: - Hoed < 0 # via regex-tdfa-text - random-fu < 0 # via rvar - codec < 0 # via binary-bits - - opaleye < 0 # via dotenv - hschema-aeson < 0 # via hschema - hschema-aeson < 0 # via hschema-prettyprinter - hschema-aeson < 0 # via hschema-quickcheck From 305dba5bd50e083939516683fe921dd8e51b9da3 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Mon, 30 Sep 2019 10:32:35 -0700 Subject: [PATCH 0745/2682] Unblock smt-containers and deps --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3d60865c..d55eebc7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4974,7 +4974,6 @@ packages: - dhall-json < 0 # via prettyprinter-1.3.0 - invertible-grammar < 0 # via prettyprinter-1.3.0 - sexp-grammar < 0 # via prettyprinter-1.3.0 - - primitive-extras < 0 # via primitive-unlifted - MissingH < 0 # via process-1.6.5.1 - blaze-colonnade < 0 # via profunctors-5.5 - colonnade < 0 # via profunctors-5.5 @@ -5359,7 +5358,6 @@ packages: - yesod-paginator < 0 # via persistent - yesod-persistent < 0 # via persistent - yesod-text-markdown < 0 # via persistent - - stm-hamt < 0 # via primitive-extras - aos-signature < 0 # via protolude - bulletproofs < 0 # via protolude - cachix-api < 0 # via protolude @@ -5550,7 +5548,6 @@ packages: - miso < 0 # via servant-lucid - state-codes < 0 # via shakespeare - xml-hamlet < 0 # via shakespeare - - stm-containers < 0 # via stm-hamt - show-prettyprint < 0 # via trifecta - emd < 0 # via typelits-witnesses - stripe-wreq < 0 # via wreq From b345efdc7c5eb8bd8ef37f289e0abe49fa801616 Mon Sep 17 00:00:00 2001 From: Jared Tobin Date: Tue, 1 Oct 2019 21:32:45 +0400 Subject: [PATCH 0746/2682] add hnock --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d55eebc7..4fae094a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2529,6 +2529,7 @@ packages: - sampling - flat-mcmc - urbit-hob + - hnock "Facundo Domínguez @facundominguez": - distributed-process < 0 # GHC 8.4 via network-transport-tcp From 4a1c6f2c6a3b42e1a20b37aa13b6fa8bd65f51fb Mon Sep 17 00:00:00 2001 From: Eitan Chatav Date: Tue, 1 Oct 2019 10:52:57 -0700 Subject: [PATCH 0747/2682] Add `free-categories` to stackage --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2e0b5a07..c2df3c9f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3205,6 +3205,7 @@ packages: - blas-hs "Eitan Chatav @echatav": + - free-categories - squeal-postgresql "Sam Quinn @Lazersmoke": From e851f5f75f09c20fd775a3c5e19b4aa0e7005648 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 2 Oct 2019 16:48:34 +0800 Subject: [PATCH 0748/2682] expect fakedata testsuite to "MonadFail" (psibi/fakedata#5) --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d55eebc7..8e37109b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6823,6 +6823,10 @@ expected-test-failures: # https://github.com/commercialhaskell/stackage/issues/4815 - brittany + + # ghc 8.8 # + # https://github.com/psibi/fakedata/issues/5 + - fakedata # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 3be4372824ce2b11288baaf4a82aecddd8cabdae Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 2 Oct 2019 16:52:54 +0800 Subject: [PATCH 0749/2682] allow simple's testsuite to "MonadFail" (alevy/simple#23) --- build-constraints.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8e37109b..6d3865c2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6824,9 +6824,12 @@ expected-test-failures: # https://github.com/commercialhaskell/stackage/issues/4815 - brittany - # ghc 8.8 # + # ghc 8.8 MonadFail # https://github.com/psibi/fakedata/issues/5 - fakedata + # https://github.com/alevy/simple/issues/23 + - simple + # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 70a6b150a55e599287d557c08d5d1fd0c2a76fa7 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 2 Oct 2019 16:54:12 +0800 Subject: [PATCH 0750/2682] http-client was enabled! --- build-constraints.yaml | 46 +++++------------------------------------- 1 file changed, 5 insertions(+), 41 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b0294292..6e979dad 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5187,47 +5187,6 @@ packages: - wai-middleware-auth < 0 # via hoauth2 - yesod-auth-oauth2 < 0 # via hoauth2 - haskell-lsp < 0 # via hslogger - - aur < 0 # via http-client - - authenticate-oauth < 0 # via http-client - - aws-lambda-haskell-runtime < 0 # via http-client - - configuration-tools < 0 # via http-client - - eventstore < 0 # via http-client - - fb < 0 # via http-client - - gym-http-api < 0 # via http-client - - hopenpgp-tools < 0 # via http-client - - hpack < 0 # via http-client - - hsebaysdk < 0 # via http-client - - http-client-overrides < 0 # via http-client - - http-directory < 0 # via http-client - - http-download < 0 # via http-client - - kawhi < 0 # via http-client - - koofr-client < 0 # via http-client - - mime-mail-ses < 0 # via http-client - - minio-hs < 0 # via http-client - - opensource < 0 # via http-client - - pipes-http < 0 # via http-client - - planb-token-introspection < 0 # via http-client - - req-conduit < 0 # via http-client - - scalpel < 0 # via http-client - - servant-checked-exceptions < 0 # via http-client - - servant-cli < 0 # via http-client - - servant-client < 0 # via http-client - - servant-conduit < 0 # via http-client - - servant-machines < 0 # via http-client - - servant-pipes < 0 # via http-client - - servant-rawm < 0 # via http-client - - servant-tracing < 0 # via http-client - - soap < 0 # via http-client - - soap-tls < 0 # via http-client - - stack < 0 # via http-client - - textlocal < 0 # via http-client - - wai-middleware-auth < 0 # via http-client - - wai-slack-middleware < 0 # via http-client - - webex-teams-conduit < 0 # via http-client - - webex-teams-pipes < 0 # via http-client - - wreq < 0 # via http-client - - yesod-auth < 0 # via http-client - - yesod-auth-oauth2 < 0 # via http-client - aur < 0 # via http-client-tls - configuration-tools < 0 # via http-client-tls - hopenpgp-tools < 0 # via http-client-tls @@ -6028,6 +5987,11 @@ packages: - groundhog-mysql < 0 # via groundhog - logging-effect < 0 # via prettyprinter + # previously blocked by http-client + - authenticate-oauth < 0 # via RSA crypto-pubkey-types + - mmtf < 0 # via data-msgpack + - gym-http-api < 0 # via servant servant-client + - soap < 0 # via xml-conduit xml-conduit-writer "GHC upper bounds": # Need to always match the version shipped with GHC From 26cf19a1a8be1661fde8acb4474daf36c96c3434 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 2 Oct 2019 17:07:48 +0800 Subject: [PATCH 0751/2682] disable fakedata (psibi/fakedata#5) --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6e979dad..c244e3ee 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5974,6 +5974,8 @@ packages: - regex-pcre-builtin < 0 # MonadFail - wai-predicates < 0 # MonadFail - sbv < 0 # MonadFail + # https://github.com/psibi/fakedata/issues/5 + - fakedata < 0 # Round 2 transitive from Some more failures - Clipboard < 0 # via X11 @@ -6790,8 +6792,6 @@ expected-test-failures: - brittany # ghc 8.8 MonadFail - # https://github.com/psibi/fakedata/issues/5 - - fakedata # https://github.com/alevy/simple/issues/23 - simple From 6faef1d7cf7d63c0f90f41d5168dcc3e47b20084 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 2 Oct 2019 17:08:31 +0800 Subject: [PATCH 0752/2682] disable simple (alevy/simple#23) --- build-constraints.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c244e3ee..1384a0d1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5976,6 +5976,9 @@ packages: - sbv < 0 # MonadFail # https://github.com/psibi/fakedata/issues/5 - fakedata < 0 + # https://github.com/alevy/simple/issues/23 + - simple < 0 + - simple-session < 0 # Round 2 transitive from Some more failures - Clipboard < 0 # via X11 @@ -6791,10 +6794,6 @@ expected-test-failures: # https://github.com/commercialhaskell/stackage/issues/4815 - brittany - # ghc 8.8 MonadFail - # https://github.com/alevy/simple/issues/23 - - simple - # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From f737ba42610c9934dd602d9956f8a446ac7b8e16 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 2 Oct 2019 17:35:22 +0800 Subject: [PATCH 0753/2682] hashable was enabled --- build-constraints.yaml | 40 +++++++++------------------------------- 1 file changed, 9 insertions(+), 31 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1384a0d1..1f7d548c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4886,37 +4886,6 @@ packages: - gi-gtk-hs < 0 # via gi-gtk-4.0.1 - gi-gtksource < 0 # via gi-gtk-4.0.1 - gi-vte < 0 # via gi-gtk-4.0.1 - - beam-core < 0 # via hashable-1.3.0.0 - - beam-migrate < 0 # via hashable-1.3.0.0 - - beam-mysql < 0 # via hashable-1.3.0.0 - - beam-postgres < 0 # via hashable-1.3.0.0 - - beam-sqlite < 0 # via hashable-1.3.0.0 - - concurrent-supply < 0 # via hashable-1.3.0.0 - - core-data < 0 # via hashable-1.3.0.0 - - core-program < 0 # via hashable-1.3.0.0 - - core-text < 0 # via hashable-1.3.0.0 - - diagrams-contrib < 0 # via hashable-1.3.0.0 - - diagrams-lib < 0 # via hashable-1.3.0.0 - - diagrams-postscript < 0 # via hashable-1.3.0.0 - - diagrams-rasterific < 0 # via hashable-1.3.0.0 - - diagrams-svg < 0 # via hashable-1.3.0.0 - - gothic < 0 # via hashable-1.3.0.0 - - greskell-core < 0 # via hashable-1.3.0.0 - - haxl < 0 # via hashable-1.3.0.0 - - json-autotype < 0 # via hashable-1.3.0.0 - - language-puppet < 0 # via hashable-1.3.0.0 - - msgpack < 0 # via hashable-1.3.0.0 - - path < 0 # via hashable-1.3.0.0 - - protolude < 0 # via hashable-1.3.0.0 - - regex < 0 # via hashable-1.3.0.0 - - registry < 0 # via hashable-1.3.0.0 - - relude < 0 # via hashable-1.3.0.0 - - svg-builder < 0 # via hashable-1.3.0.0 - - swish < 0 # via hashable-1.3.0.0 - - threepenny-gui < 0 # via hashable-1.3.0.0 - - tomland < 0 # via hashable-1.3.0.0 - - ttl-hashtables < 0 # via hashable-1.3.0.0 - - union < 0 # via hashable-1.3.0.0 - easytest < 0 # via hedgehog-1.0.1 - hsdev < 0 # via hlint-2.2.2 - language-puppet < 0 # via hslogger-1.3.0.0 @@ -5068,6 +5037,9 @@ packages: - universe-dependent-sum < 0 # via universe-some - MissingH < 0 # via unix-2.7.2.2 - beam-core < 0 # via vector-sized-1.4.0.0 + - beam-mysql < 0 # via beam-core + - beam-postgres < 0 # via beam-core + - beam-sqlite < 0 # via beam-core - elm-street < 0 # via warp-3.3.2 - servant-auth-client < 0 # via warp-3.3.2 - xmonad-extras < 0 # via xmonad-contrib-0.16 @@ -5998,6 +5970,12 @@ packages: - gym-http-api < 0 # via servant servant-client - soap < 0 # via xml-conduit xml-conduit-writer + # hashable-1.3.0 + - concurrent-supply < 0 + - regex < 0 + - relude < 0 + - ttl-hashtables < 0 + "GHC upper bounds": # Need to always match the version shipped with GHC - Win32 == 2.6.1.0 From b8099a9df1ca9b7e37661b29f99e940bf5c7e281 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 2 Oct 2019 17:45:13 +0800 Subject: [PATCH 0754/2682] semigroups was enabled --- build-constraints.yaml | 19 +++++-------------- 1 file changed, 5 insertions(+), 14 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1f7d548c..6a442782 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4952,20 +4952,6 @@ packages: - ixset-typed < 0 # via safecopy-0.10.0 - selda-postgresql < 0 # via selda-0.5.0.0 - selda-sqlite < 0 # via selda-0.5.0.0 - - brittany < 0 # via semigroups-0.19.1 - - chronos < 0 # via semigroups-0.19.1 - - diagrams-contrib < 0 # via semigroups-0.19.1 - - diagrams-core < 0 # via semigroups-0.19.1 - - diagrams-lib < 0 # via semigroups-0.19.1 - - diagrams-postscript < 0 # via semigroups-0.19.1 - - diagrams-svg < 0 # via semigroups-0.19.1 - - direct-sqlite < 0 # via semigroups-0.19.1 - - greskell < 0 # via semigroups-0.19.1 - - greskell-core < 0 # via semigroups-0.19.1 - - invertible-grammar < 0 # via semigroups-0.19.1 - - registry < 0 # via semigroups-0.19.1 - - sexp-grammar < 0 # via semigroups-0.19.1 - - sqlite-simple < 0 # via semigroups-0.19.1 - universe-dependent-sum < 0 # via some - PyF < 0 # via template-haskell-2.15.0.0 - classyplate < 0 # via template-haskell-2.15.0.0 @@ -5975,6 +5961,11 @@ packages: - regex < 0 - relude < 0 - ttl-hashtables < 0 + - registry < 0 # also protolude, semigroups, universum + + # semigroups-0.19 + - chronos < 0 # also test-framework + - direct-sqlite < 0 "GHC upper bounds": # Need to always match the version shipped with GHC From 3ad91ff1401bb6f848ac481b98e37f97bc18f4c2 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 2 Oct 2019 18:12:24 +0800 Subject: [PATCH 0755/2682] bunch of packages allow template-haskell-2.15 --- build-constraints.yaml | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6a442782..0e491c2e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4954,34 +4954,15 @@ packages: - selda-sqlite < 0 # via selda-0.5.0.0 - universe-dependent-sum < 0 # via some - PyF < 0 # via template-haskell-2.15.0.0 - - classyplate < 0 # via template-haskell-2.15.0.0 - - core-program < 0 # via template-haskell-2.15.0.0 - - core-text < 0 # via template-haskell-2.15.0.0 - data-accessor-template < 0 # via template-haskell-2.15.0.0 - - dbus < 0 # via template-haskell-2.15.0.0 - - dhall < 0 # via template-haskell-2.15.0.0 - - email-validate < 0 # via template-haskell-2.15.0.0 - - fclabels < 0 # via template-haskell-2.15.0.0 - - flow < 0 # via template-haskell-2.15.0.0 - freer-simple < 0 # via template-haskell-2.15.0.0 - - hsdev < 0 # via template-haskell-2.15.0.0 - interpolatedstring-qq2 < 0 # via template-haskell-2.15.0.0 - - invertible-grammar < 0 # via template-haskell-2.15.0.0 - - ixset-typed < 0 # via template-haskell-2.15.0.0 - - modern-uri < 0 # via template-haskell-2.15.0.0 - quickcheck-arbitrary-template < 0 # via template-haskell-2.15.0.0 - rank2classes < 0 # via template-haskell-2.15.0.0 - - rattletrap < 0 # via template-haskell-2.15.0.0 - safecopy < 0 # via template-haskell-2.15.0.0 - size-based < 0 # via template-haskell-2.15.0.0 - - stache < 0 # via template-haskell-2.15.0.0 - static-text < 0 # via template-haskell-2.15.0.0 - - strive < 0 # via template-haskell-2.15.0.0 - - th-nowq < 0 # via template-haskell-2.15.0.0 - - threepenny-gui < 0 # via template-haskell-2.15.0.0 - - tz < 0 # via template-haskell-2.15.0.0 - uri-bytestring < 0 # via template-haskell-2.15.0.0 - - web3 < 0 # via template-haskell-2.15.0.0 - hyraxAbif < 0 # via text-1.2.4.0 - sqlite-simple-errors < 0 # via text-1.2.4.0 - universum < 0 # via text-1.2.4.0 From 8e182bfc772153cdd3559d3385aae049138edc9d Mon Sep 17 00:00:00 2001 From: mrkkrp Date: Wed, 2 Oct 2019 13:38:03 +0200 Subject: [PATCH 0756/2682] Enable some of my packages (which now work) --- build-constraints.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0e491c2e..ca383b4b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4870,7 +4870,6 @@ packages: - apply-refact < 0 # via ghc-8.8.1 - brittany < 0 # via ghc-8.8.1 - ghc-parser < 0 # via ghc-8.8.1 - - ghc-syntax-highlighter < 0 # via ghc-8.8.1 - hint < 0 # via ghc-8.8.1 - ihaskell < 0 # via ghc-8.8.1 - loopbreaker < 0 # via ghc-8.8.1 @@ -4997,7 +4996,6 @@ packages: - tz < 0 # via time-1.9.3 - web3 < 0 # via time-1.9.3 - wild-bind-x11 < 0 # via time-1.9.3 - - zip < 0 # via time-1.9.3 - ztail < 0 # via time-1.9.3 - mysql-haskell < 0 # via tls-1.5.1 - universe < 0 # via universe-some @@ -5099,7 +5097,6 @@ packages: - eventstore < 0 # via ekg-core - monad-metrics < 0 # via ekg-core - check-email < 0 # via email-validate - - mmark < 0 # via email-validate - yesod-auth < 0 # via email-validate - yesod-form < 0 # via email-validate - persistent-pagination < 0 # via esqueleto @@ -5215,7 +5212,6 @@ packages: - rainbow < 0 # via lens-simple - rainbox < 0 # via lens-simple - polysemy < 0 # via loopbreaker - - mmark < 0 # via modern-uri - mmark-ext < 0 # via modern-uri - witherable < 0 # via monoidal-containers - msgpack-aeson < 0 # via msgpack From 07cecd88020f98a88802b3012990a16e7a5acaa0 Mon Sep 17 00:00:00 2001 From: Ryan Scott Date: Wed, 2 Oct 2019 09:38:24 -0400 Subject: [PATCH 0757/2682] Reenable regex-posix, regex-tdfa These are no longer blocked on `regex-base`. --- build-constraints.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0e491c2e..12a38140 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5271,8 +5271,6 @@ packages: - regex-compat < 0 # via regex-base-0.94.0.0 - regex-pcre < 0 # via regex-base-0.94.0.0 - regex-pcre-text < 0 # via regex-base-0.94.0.0 - - regex-posix < 0 # via regex-base-0.94.0.0 - - regex-tdfa < 0 # via regex-base-0.94.0.0 - yi-language < 0 # via regex-base-0.94.0.0 - lens-regex < 0 # via regex-posix - regex-compat-tdfa < 0 # via regex-tdfa From 2024d21a5aa34aefd61aceafa606196a68ff5607 Mon Sep 17 00:00:00 2001 From: Ryan Scott Date: Thu, 3 Oct 2019 06:13:39 -0400 Subject: [PATCH 0758/2682] Reenable blaze-markup, safecopy Two more packages that are in my mantained packages' transitive dependency graph. --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0e491c2e..7a058198 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4684,7 +4684,6 @@ packages: - base-noprelude < 0 # via base-4.13.0.0 - benchpress < 0 # via base-4.13.0.0 - bencode < 0 # via base-4.13.0.0 - - blaze-markup < 0 # via base-4.13.0.0 - boolean-normal-forms < 0 # via base-4.13.0.0 - brick < 0 # via base-4.13.0.0 - brittany < 0 # via base-4.13.0.0 @@ -4959,7 +4958,6 @@ packages: - interpolatedstring-qq2 < 0 # via template-haskell-2.15.0.0 - quickcheck-arbitrary-template < 0 # via template-haskell-2.15.0.0 - rank2classes < 0 # via template-haskell-2.15.0.0 - - safecopy < 0 # via template-haskell-2.15.0.0 - size-based < 0 # via template-haskell-2.15.0.0 - static-text < 0 # via template-haskell-2.15.0.0 - uri-bytestring < 0 # via template-haskell-2.15.0.0 @@ -6210,7 +6208,6 @@ skipped-tests: - attoparsec # QuickCheck-2.11.3 - barrier # tasty 0.12 and tasty-hunit 0.10 - binary-parser # tasty-1.0.1.1, tasty-quickcheck-0.10, tasty-hunit-0.10.0.1 - - blaze-markup # tasty 1.1 - cabal-install # tasty 1.1 - cayley-client # via hspec-2.6.0 - cborg # via tasty-1.2 From e75b9acc0a9acac02ab4592158beb2b908f4e9e2 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 4 Oct 2019 00:11:56 +0800 Subject: [PATCH 0759/2682] path enabled --- build-constraints.yaml | 21 ++------------------- 1 file changed, 2 insertions(+), 19 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ca383b4b..1252a8f1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5221,18 +5221,6 @@ packages: - pandoc-markdown-ghci-filter < 0 # via pandoc - pandoc-pyplot < 0 # via pandoc - pencil < 0 # via pandoc - - attoparsec-path < 0 # via path - - aws-lambda-haskell-runtime < 0 # via path - - follow-file < 0 # via path - - genvalidity-path < 0 # via path - - http-download < 0 # via path - - mega-sdist < 0 # via path - - path-extra < 0 # via path - - path-io < 0 # via path - - rio-prettyprint < 0 # via path - - stack < 0 # via path - - urlpath < 0 # via path - - validity-path < 0 # via path - classy-prelude-yesod < 0 # via persistent - closed < 0 # via persistent - password-instances < 0 # via persistent @@ -5491,7 +5479,6 @@ packages: - H < 0 # via inline-r - fmt < 0 # via interpolate - generics-eot < 0 # via interpolate - - attoparsec-ip < 0 # via ip - mwc-probability-transition < 0 # via logging-effect - incremental-parser < 0 # via monoid-subclasses - timerep < 0 # via monoid-subclasses @@ -5568,11 +5555,9 @@ packages: - pipes-misc < 0 # via pipes-category # Misc. Removed from above but must still be re-removed due to *another* issue - - attoparsec-uri < 0 # via attoparsec-ip - caster < 0 # via fast-builder - hschema-quickcheck < 0 # via hschema - string-interpolate < 0 # via interpolatedstring-perl6 - - attoparsec-uri < 0 # via ip - string-interpolate < 0 # via text-conversions - xmlbf-xeno < 0 # via xeno - random-fu < 0 # via random-source @@ -5650,10 +5635,6 @@ packages: - network-simple < 0 # via network-bsd - pandoc-citeproc < 0 # via pandoc - pandoc-citeproc < 0 # via pandoc-types - - nvim-hs < 0 # via path - - pantry < 0 # via path - - nvim-hs < 0 # via path-io - - pantry < 0 # via path-io - microformats2-parser < 0 # via pcre-heavy - pantry < 0 # via persistent - persistent-mongoDB < 0 # via persistent @@ -5944,6 +5925,8 @@ packages: - chronos < 0 # also test-framework - direct-sqlite < 0 + - mega-sdist < 0 # via pantry + "GHC upper bounds": # Need to always match the version shipped with GHC - Win32 == 2.6.1.0 From 6af350c4f653295eb521d17848ec10f88188c47f Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 4 Oct 2019 00:13:16 +0800 Subject: [PATCH 0760/2682] enable mmark-ext --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1252a8f1..8a72b21e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5212,7 +5212,6 @@ packages: - rainbow < 0 # via lens-simple - rainbox < 0 # via lens-simple - polysemy < 0 # via loopbreaker - - mmark-ext < 0 # via modern-uri - witherable < 0 # via monoidal-containers - msgpack-aeson < 0 # via msgpack - mysql-haskell-nem < 0 # via mysql-haskell From c5bca9fb03dbfebc3e30f147e57715820d76055d Mon Sep 17 00:00:00 2001 From: Oleg Grenrus Date: Thu, 3 Oct 2019 13:26:29 +0300 Subject: [PATCH 0761/2682] http-media allows base-4.13 --- build-constraints.yaml | 50 +++--------------------------------------- 1 file changed, 3 insertions(+), 47 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 09d5e757..6cdfb8eb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4334,6 +4334,7 @@ packages: - skein - skylighting-core - snap-core + - some - special-values - splice - split @@ -4403,6 +4404,7 @@ packages: - unbounded-delays - universe - universe-base + - universe-some - universe-dependent-sum - universe-instances-base - universe-instances-extended @@ -4749,7 +4751,6 @@ packages: - hledger-ui < 0 # via base-4.13.0.0 - hledger-web < 0 # via base-4.13.0.0 - hspec-need-env < 0 # via base-4.13.0.0 - - http-media < 0 # via base-4.13.0.0 - hyper < 0 # via base-4.13.0.0 - ihaskell < 0 # via base-4.13.0.0 - indentation-core < 0 # via base-4.13.0.0 @@ -4792,7 +4793,6 @@ packages: - rhine < 0 # via base-4.13.0.0 - rhine-gloss < 0 # via base-4.13.0.0 - salve < 0 # via base-4.13.0.0 - - servant-JuicyPixels < 0 # via base-4.13.0.0 - servant-auth < 0 # via base-4.13.0.0 - servant-auth-client < 0 # via base-4.13.0.0 - servant-auth-docs < 0 # via base-4.13.0.0 @@ -4996,8 +4996,6 @@ packages: - wild-bind-x11 < 0 # via time-1.9.3 - ztail < 0 # via time-1.9.3 - mysql-haskell < 0 # via tls-1.5.1 - - universe < 0 # via universe-some - - universe-dependent-sum < 0 # via universe-some - MissingH < 0 # via unix-2.7.2.2 - beam-core < 0 # via vector-sized-1.4.0.0 - beam-mysql < 0 # via beam-core @@ -5042,13 +5040,11 @@ packages: - Chart-diagrams < 0 # via blaze-markup - SVGFonts < 0 # via blaze-markup - ace < 0 # via blaze-markup - - blaze-html < 0 # via blaze-markup - blaze-svg < 0 # via blaze-markup - heterocephalus < 0 # via blaze-markup - hoogle < 0 # via blaze-markup - markdown < 0 # via blaze-markup - plotlyhs < 0 # via blaze-markup - - servant-swagger-ui-core < 0 # via blaze-markup - shakespeare < 0 # via blaze-markup - trifecta < 0 # via blaze-markup - xml-conduit < 0 # via blaze-markup @@ -5169,23 +5165,10 @@ packages: - yesod-fb < 0 # via http-conduit - yesod-recaptcha2 < 0 # via http-conduit - cachix-api < 0 # via http-media - - servant < 0 # via http-media - - servant-blaze < 0 # via http-media - - servant-cassava < 0 # via http-media - servant-checked-exceptions-core < 0 # via http-media - - servant-client < 0 # via http-media - - servant-client-core < 0 # via http-media - - servant-conduit < 0 # via http-media - - servant-docs < 0 # via http-media - - servant-lucid < 0 # via http-media - - servant-machines < 0 # via http-media - - servant-pipes < 0 # via http-media - servant-rawm < 0 # via http-media - servant-static-th < 0 # via http-media - - servant-swagger < 0 # via http-media - - servant-swagger-ui-core < 0 # via http-media - servant-xml < 0 # via http-media - - servant-yaml < 0 # via http-media - wai-middleware-auth < 0 # via http-reverse-proxy - ses-html < 0 # via http-streams - board-games < 0 # via httpd-shed @@ -5273,19 +5256,9 @@ packages: - servant-auth-wordpress < 0 # via servant-server - servant-checked-exceptions < 0 # via servant-server - servant-cli < 0 # via servant-server - - servant-conduit < 0 # via servant-server - - servant-js < 0 # via servant-server - - servant-lucid < 0 # via servant-server - - servant-machines < 0 # via servant-server - - servant-mock < 0 # via servant-server - - servant-pipes < 0 # via servant-server - servant-rawm < 0 # via servant-server - servant-static-th < 0 # via servant-server - - servant-swagger-ui < 0 # via servant-server - - servant-swagger-ui-core < 0 # via servant-server - - servant-swagger-ui-redoc < 0 # via servant-server - servant-tracing < 0 # via servant-server - - servant-yaml < 0 # via servant-server - tonatona-servant < 0 # via servant-server - testing-feat < 0 # via size-based - gingersnap < 0 # via snap-core @@ -5304,10 +5277,6 @@ packages: - sv-cassava < 0 # via sv-core - Chart-diagrams < 0 # via svg-builder - cachix-api < 0 # via swagger2 - - servant-swagger < 0 # via swagger2 - - servant-swagger-ui < 0 # via swagger2 - - servant-swagger-ui-core < 0 # via swagger2 - - servant-swagger-ui-redoc < 0 # via swagger2 - hspec-pg-transact < 0 # via tmp-postgres - pg-transact < 0 # via tmp-postgres - salak-toml < 0 # via tomland @@ -5322,7 +5291,6 @@ packages: - hamilton < 0 # via vty - hledger-iadd < 0 # via vty - servant-rawm < 0 # via wai-app-static - - servant-swagger-ui-core < 0 # via wai-app-static - servius < 0 # via wai-app-static - wai-middleware-auth < 0 # via wai-app-static - yesod-static < 0 # via wai-app-static @@ -5409,9 +5377,6 @@ packages: - template-toolkit < 0 # via regex-pcre-builtin - dl-fedora < 0 # via regex-posix - inline-c < 0 # via regex-posix - - language-haskell-extract < 0 # via regex-posix - - test-framework < 0 # via regex-posix - - test-framework-th < 0 # via regex-posix - xml-to-json < 0 # via regex-posix - cabal-debian < 0 # via regex-tdfa - haskell-gi < 0 # via regex-tdfa @@ -5422,7 +5387,6 @@ packages: - relational-record < 0 # via relational-query-HDBC - wikicfp-scraper < 0 # via scalpel-core - miso < 0 # via servant - - servant-foreign < 0 # via servant - miso < 0 # via servant-lucid - state-codes < 0 # via shakespeare - xml-hamlet < 0 # via shakespeare @@ -5529,9 +5493,7 @@ packages: - abstract-deque-tests < 0 # via test-framework - crypto-api-tests < 0 # via test-framework - crypto-cipher-tests < 0 # via test-framework - - test-framework-hunit < 0 # via test-framework - test-framework-leancheck < 0 # via test-framework - - test-framework-quickcheck2 < 0 # via test-framework - test-framework-smallcheck < 0 # via test-framework - tonatona < 0 # via tonaparser - tonatona-logger < 0 # via tonaparser @@ -5586,11 +5548,9 @@ packages: - ws < 0 # via attoparsec-uri - microformats2-parser < 0 # via blaze-html - persistent-mongoDB < 0 # via blaze-html - - wai-app-static < 0 # via blaze-html - yesod-core < 0 # via blaze-html - yesod-test < 0 # via blaze-html - microformats2-parser < 0 # via blaze-markup - - wai-app-static < 0 # via blaze-markup - yesod-core < 0 # via blaze-markup - hOpenPGP < 0 # via bzlib - xml-lens < 0 # via case-insensitive-1.2.1.0 @@ -5606,10 +5566,6 @@ packages: - microformats2-parser < 0 # via html-conduit - yesod-test < 0 # via html-conduit - pantry < 0 # via http-download - - servant-http-streams < 0 # via http-media - - servant-multipart < 0 # via http-media - - servant-server < 0 # via http-media - - swagger2 < 0 # via http-media - asif < 0 # via hw-hspec-hedgehog - asif < 0 # via hw-ip - hOpenPGP < 0 # via incremental-parser @@ -5653,7 +5609,6 @@ packages: - haskoin-core < 0 # via secp256k1-haskell - servant-http-streams < 0 # via servant - servant-multipart < 0 # via servant - - servant-server < 0 # via servant - servant-http-streams < 0 # via servant-client-core - servant-multipart < 0 # via servant-docs - servant-multipart < 0 # via servant-foreign @@ -6066,6 +6021,7 @@ skipped-tests: # These can periodically be checked for updates; # just remove these lines and run `stackage-curator check' to verify. - time-compat # base-compat 0.11 + - http-media # base-4.13 # fails with ghc 8.8 - alex # as of alex-3.2.4 From 41e13d1b2145579814714f1cc7f982b0d6406414 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Olivier=20Ch=C3=A9ron?= Date: Thu, 3 Oct 2019 20:54:52 +0200 Subject: [PATCH 0762/2682] Restore http-client-tls and dependencies --- build-constraints.yaml | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0e491c2e..00fcbdec 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4678,7 +4678,6 @@ packages: - active < 0 # via base-4.13.0.0 - aeson-diff < 0 # via base-4.13.0.0 - alarmclock < 0 # via base-4.13.0.0 - - asn1-encoding < 0 # via base-4.13.0.0 - autoexporter < 0 # via base-4.13.0.0 - bank-holidays-england < 0 # via base-4.13.0.0 - base-noprelude < 0 # via base-4.13.0.0 @@ -4805,7 +4804,6 @@ packages: - slack-web < 0 # via base-4.13.0.0 - smallcheck-series < 0 # via base-4.13.0.0 - snap-server < 0 # via base-4.13.0.0 - - socks < 0 # via base-4.13.0.0 - sqlite-simple < 0 # via base-4.13.0.0 - statestack < 0 # via base-4.13.0.0 - strive < 0 # via base-4.13.0.0 @@ -5032,14 +5030,10 @@ packages: - file-modules < 0 # via MissingH - hadolint < 0 # via ShellCheck - ipynb < 0 # via aeson-diff - - asn1-parse < 0 # via asn1-encoding - aws-cloudfront-signed-cookies < 0 # via asn1-encoding - crypto-pubkey-openssh < 0 # via asn1-encoding - crypto-pubkey-types < 0 # via asn1-encoding - pkcs10 < 0 # via asn1-encoding - - x509 < 0 # via asn1-encoding - - x509-store < 0 # via asn1-encoding - - x509-validation < 0 # via asn1-encoding - avers-api < 0 # via servant - fib < 0 # via base-noprelude - bencoding < 0 # via bencode @@ -5452,9 +5446,7 @@ packages: - stripe-wreq < 0 # via wreq - jose < 0 # via x509 - jwt < 0 # via x509 - - x509-system < 0 # via x509 - jwt < 0 # via x509-store - - x509-system < 0 # via x509-store - haskell-gi < 0 # via xml-conduit - xlsx < 0 # via xml-conduit - xml-conduit-parse < 0 # via xml-conduit @@ -5606,7 +5598,6 @@ packages: - tcp-streams-openssl < 0 # via HsOpenSSL-x509-system - pandoc-citeproc < 0 # via HsYAML-aeson - hOpenPGP < 0 # via asn1-encoding - - tls < 0 # via asn1-encoding - ws < 0 # via attoparsec-uri - microformats2-parser < 0 # via blaze-html - persistent-mongoDB < 0 # via blaze-html @@ -5687,7 +5678,6 @@ packages: - servant-multipart < 0 # via servant-foreign - yesod-bin < 0 # via shakespeare - yesod-core < 0 # via shakespeare - - connection < 0 # via socks - network-simple < 0 # via socks - store < 0 # via store-core - pantry < 0 # via tar-conduit @@ -5724,28 +5714,17 @@ packages: - vivid < 0 # via vivid-supercollider - web-routes-wai < 0 # via web-routes - ws < 0 # via wuss - - connection < 0 # via x509 - network-simple-tls < 0 # via x509 - postgresql-typed < 0 # via x509 - tcp-streams < 0 # via x509 - - tls < 0 # via x509 - - tls-debug < 0 # via x509 - warp-tls-uid < 0 # via x509 - - connection < 0 # via x509-store - network-simple-tls < 0 # via x509-store - postgresql-typed < 0 # via x509-store - tcp-streams < 0 # via x509-store - - tls < 0 # via x509-store - - tls-debug < 0 # via x509-store - - connection < 0 # via x509-system - network-simple-tls < 0 # via x509-system - tcp-streams < 0 # via x509-system - - tls-debug < 0 # via x509-system - - connection < 0 # via x509-validation - network-simple-tls < 0 # via x509-validation - postgresql-typed < 0 # via x509-validation - - tls < 0 # via x509-validation - - tls-debug < 0 # via x509-validation - DAV < 0 # via xml-conduit - pandoc-citeproc < 0 # via xml-conduit - xml-lens < 0 # via xml-conduit @@ -5754,7 +5733,6 @@ packages: - HandsomeSoup < 0 # via HTTP - hxt-http < 0 # via HTTP - amqp < 0 # via connection - - http-client-tls < 0 # via connection - http-conduit < 0 # via connection - network-conduit-tls < 0 # via connection - http-streams < 0 # via io-streams @@ -5765,10 +5743,8 @@ packages: - pipes-network-tls < 0 # via network-simple - pipes-network-tls < 0 # via network-simple-tls - http-streams < 0 # via openssl-streams - - http-client-tls < 0 # via tls - network-conduit-tls < 0 # via tls - pipes-network-tls < 0 # via tls - - tls-session-manager < 0 # via tls - warp-tls < 0 # via tls - wai-websockets < 0 # via wai-app-static - wai-session-postgresql < 0 # via wai-session From b1c07724ccd48b59e2e8a35c7a28854f15cd0198 Mon Sep 17 00:00:00 2001 From: Lennart Spitzner Date: Thu, 3 Oct 2019 23:46:34 +0200 Subject: [PATCH 0763/2682] Reenable brittany, butcher, data-tree-print Including the tests of brittany --- build-constraints.yaml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 09d5e757..641ddbaa 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4686,8 +4686,6 @@ packages: - bencode < 0 # via base-4.13.0.0 - boolean-normal-forms < 0 # via base-4.13.0.0 - brick < 0 # via base-4.13.0.0 - - brittany < 0 # via base-4.13.0.0 - - butcher < 0 # via base-4.13.0.0 - bzlib < 0 # via base-4.13.0.0 - cabal-install < 0 # via base-4.13.0.0 - cborg-json < 0 # via base-4.13.0.0 @@ -4701,7 +4699,6 @@ packages: - crypto-enigma < 0 # via base-4.13.0.0 - css-syntax < 0 # via base-4.13.0.0 - cyclotomic < 0 # via base-4.13.0.0 - - data-tree-print < 0 # via base-4.13.0.0 - dbus < 0 # via base-4.13.0.0 - derulo < 0 # via base-4.13.0.0 - diagrams-contrib < 0 # via base-4.13.0.0 @@ -4867,15 +4864,12 @@ packages: - hw-packed-vector < 0 # via generic-lens-1.2.0.0 - hw-rankselect < 0 # via generic-lens-1.2.0.0 - apply-refact < 0 # via ghc-8.8.1 - - brittany < 0 # via ghc-8.8.1 - ghc-parser < 0 # via ghc-8.8.1 - hint < 0 # via ghc-8.8.1 - ihaskell < 0 # via ghc-8.8.1 - loopbreaker < 0 # via ghc-8.8.1 - hsdev < 0 # via ghc-boot-8.8.1 - ihaskell < 0 # via ghc-boot-8.8.1 - - brittany < 0 # via ghc-boot-th-8.8.1 - - brittany < 0 # via ghc-exactprint-0.6.2 - gi-gtk-hs < 0 # via gi-gdk-4.0.1 - gi-gtksource < 0 # via gi-gdk-4.0.1 - gi-vte < 0 # via gi-gdk-4.0.1 @@ -6714,9 +6708,6 @@ expected-test-failures: # https://github.com/commercialhaskell/stackage/issues/4810 - dns - # https://github.com/commercialhaskell/stackage/issues/4815 - - brittany - # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 9d69af25a4d6c48e6213fd8539bc8c3cfef5e65b Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 4 Oct 2019 09:17:25 +0800 Subject: [PATCH 0764/2682] allow ghc-exactprint test failure (alanz/ghc-exactprint#82) --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 09d5e757..97ea5f99 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6717,6 +6717,8 @@ expected-test-failures: # https://github.com/commercialhaskell/stackage/issues/4815 - brittany + # https://github.com/alanz/ghc-exactprint/issues/82 + - ghc-exactprint # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 29ada220c6500bad31b5720adf24fafd86e0ead0 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 4 Oct 2019 09:33:05 +0800 Subject: [PATCH 0765/2682] enable github-webhooks (#4871) --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d505eee0..8f438482 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5793,7 +5793,6 @@ packages: - conduit-iconv < 0 # MonadFail - docopt < 0 # MonadFail - groundhog < 0 # MonadFail - - github-webhooks < 0 # unknown - protocol-buffers < 0 # MonadFail - mustache < 0 # Lift Text - hspec-expectations-pretty-diff < 0 # unknown From 3ea88b30c1233fd61ff89ca26a4442a091c7a04a Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 4 Oct 2019 09:35:55 +0800 Subject: [PATCH 0766/2682] fast-logger < 3.0.0 (#4877) --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8f438482..a25472db 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5851,8 +5851,8 @@ packages: - Win32 == 2.6.1.0 "Stackage upper bounds": - [] - + # https://github.com/commercialhaskell/stackage/issues/4877 + - fast-logger < 3.0.0 # end of packages From 5f465469e70a0d84de41ccae3c8301708894ab12 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 4 Oct 2019 09:39:02 +0800 Subject: [PATCH 0767/2682] wai-logger < 2.3.6 (#4877) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index a25472db..a9405ef2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5853,6 +5853,7 @@ packages: "Stackage upper bounds": # https://github.com/commercialhaskell/stackage/issues/4877 - fast-logger < 3.0.0 + - wai-logger < 2.3.6 # end of packages From 24227669f2d44cc4bab6707358e818304b8a6c5f Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 4 Oct 2019 10:17:52 +0800 Subject: [PATCH 0768/2682] Revert "enable github-webhooks (#4871)" This reverts commit 29ada220c6500bad31b5720adf24fafd86e0ead0. --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index a9405ef2..bfad01b2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5793,6 +5793,7 @@ packages: - conduit-iconv < 0 # MonadFail - docopt < 0 # MonadFail - groundhog < 0 # MonadFail + - github-webhooks < 0 # unknown - protocol-buffers < 0 # MonadFail - mustache < 0 # Lift Text - hspec-expectations-pretty-diff < 0 # unknown From 6b12eb8612d619c7dccc39bd75e80cbded69715c Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 4 Oct 2019 17:35:00 +0800 Subject: [PATCH 0769/2682] unlock a chunk of packages and update some via's --- build-constraints.yaml | 164 +++-------------------------------------- 1 file changed, 9 insertions(+), 155 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index bfad01b2..abdaafb6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4668,11 +4668,8 @@ packages: - ShellCheck < 0 # via Cabal-3.0.0.0 - cipher-aes128 < 0 # via Cabal-3.0.0.0 - proto-lens-setup < 0 # via Cabal-3.0.0.0 - - dhall < 0 # via Diff-0.4.0 - language-ecmascript < 0 # via Diff-0.4.0 - - pandoc < 0 # via Diff-0.4.0 - pandoc < 0 # via HsYAML-0.2.0.0 - - dhall-json < 0 # via ansi-terminal-0.10 - MissingH < 0 # via array-0.5.4.0 - MissingH < 0 # via base-4.13.0.0 - Strafunski-StrategyLib < 0 # via base-4.13.0.0 @@ -4838,6 +4835,7 @@ packages: - GLFW-b < 0 # via bindings-GLFW-3.3.0.0 - hyraxAbif < 0 # via bytestring-0.10.9.0 - hw-hspec-hedgehog < 0 # via call-stack-0.2.0 + - dhall < 0 # via cborg-json - sized-grid < 0 # via constraints-0.11.2 - dependent-map < 0 # via constraints-extras - dependent-sum < 0 # via constraints-extras @@ -4987,7 +4985,6 @@ packages: - web3 < 0 # via time-1.9.3 - wild-bind-x11 < 0 # via time-1.9.3 - ztail < 0 # via time-1.9.3 - - mysql-haskell < 0 # via tls-1.5.1 - MissingH < 0 # via unix-2.7.2.2 - beam-core < 0 # via vector-sized-1.4.0.0 - beam-mysql < 0 # via beam-core @@ -5018,42 +5015,14 @@ packages: - file-modules < 0 # via MissingH - hadolint < 0 # via ShellCheck - ipynb < 0 # via aeson-diff - - aws-cloudfront-signed-cookies < 0 # via asn1-encoding - - crypto-pubkey-openssh < 0 # via asn1-encoding - - crypto-pubkey-types < 0 # via asn1-encoding - - pkcs10 < 0 # via asn1-encoding - avers-api < 0 # via servant - fib < 0 # via base-noprelude - bencoding < 0 # via bencode - - Chart-diagrams < 0 # via blaze-markup - - SVGFonts < 0 # via blaze-markup - - ace < 0 # via blaze-markup - - blaze-svg < 0 # via blaze-markup - - heterocephalus < 0 # via blaze-markup - - hoogle < 0 # via blaze-markup - - markdown < 0 # via blaze-markup - - plotlyhs < 0 # via blaze-markup - - shakespeare < 0 # via blaze-markup - - trifecta < 0 # via blaze-markup - - xml-conduit < 0 # via blaze-markup - - xml-html-qq < 0 # via blaze-markup - - yesod < 0 # via blaze-markup - - yesod-alerts < 0 # via blaze-markup - - yesod-auth < 0 # via blaze-markup - - yesod-form < 0 # via blaze-markup - - yesod-form-bootstrap4 < 0 # via blaze-markup - - yesod-newsfeed < 0 # via blaze-markup - - yesod-paginator < 0 # via blaze-markup - hledger-iadd < 0 # via brick - bson-lens < 0 # via bson - debian < 0 # via bzlib - chronos-bench < 0 # via chronos - qnap-decrypt < 0 # via cipher-aes128 - - configuration-tools < 0 # via connection - - eventstore < 0 # via connection - - hoogle < 0 # via connection - - minio-hs < 0 # via connection - - soap-tls < 0 # via connection - credential-store < 0 # via dbus - functor-combinators < 0 # via dependent-sum - prim-uniq < 0 # via dependent-sum @@ -5105,53 +5074,6 @@ packages: - wai-middleware-auth < 0 # via hoauth2 - yesod-auth-oauth2 < 0 # via hoauth2 - haskell-lsp < 0 # via hslogger - - aur < 0 # via http-client-tls - - configuration-tools < 0 # via http-client-tls - - hopenpgp-tools < 0 # via http-client-tls - - hpack < 0 # via http-client-tls - - http-client-overrides < 0 # via http-client-tls - - http-directory < 0 # via http-client-tls - - koofr-client < 0 # via http-client-tls - - mime-mail-ses < 0 # via http-client-tls - - minio-hs < 0 # via http-client-tls - - opensource < 0 # via http-client-tls - - pipes-http < 0 # via http-client-tls - - planb-token-introspection < 0 # via http-client-tls - - scalpel < 0 # via http-client-tls - - soap-tls < 0 # via http-client-tls - - stack < 0 # via http-client-tls - - textlocal < 0 # via http-client-tls - - wai-middleware-auth < 0 # via http-client-tls - - wreq < 0 # via http-client-tls - - yesod-auth < 0 # via http-client-tls - - yesod-fb < 0 # via http-client-tls - - MusicBrainz < 0 # via http-conduit - - authenticate < 0 # via http-conduit - - cisco-spark-api < 0 # via http-conduit - - classy-prelude-yesod < 0 # via http-conduit - - cryptocompare < 0 # via http-conduit - - fb < 0 # via http-conduit - - google-isbn < 0 # via http-conduit - - hoogle < 0 # via http-conduit - - http-download < 0 # via http-conduit - - kawhi < 0 # via http-conduit - - line < 0 # via http-conduit - - mime-mail-ses < 0 # via http-conduit - - minio-hs < 0 # via http-conduit - - mmtf < 0 # via http-conduit - - nuxeo < 0 # via http-conduit - - oeis2 < 0 # via http-conduit - - stack < 0 # via http-conduit - - textlocal < 0 # via http-conduit - - wai-middleware-auth < 0 # via http-conduit - - webex-teams-api < 0 # via http-conduit - - webex-teams-conduit < 0 # via http-conduit - - webex-teams-pipes < 0 # via http-conduit - - yesod-auth < 0 # via http-conduit - - yesod-auth-hashdb < 0 # via http-conduit - - yesod-auth-oauth2 < 0 # via http-conduit - - yesod-fb < 0 # via http-conduit - - yesod-recaptcha2 < 0 # via http-conduit - cachix-api < 0 # via http-media - servant-checked-exceptions-core < 0 # via http-media - servant-rawm < 0 # via http-media @@ -5220,14 +5142,9 @@ packages: - pedersen-commitment < 0 # via protolude - avro < 0 # via pure-zlib - regex-with-pcre < 0 # via regex - - regex-compat < 0 # via regex-base-0.94.0.0 - - regex-pcre < 0 # via regex-base-0.94.0.0 - regex-pcre-text < 0 # via regex-base-0.94.0.0 + - regex-tdfa-text < 0 # via regex-base-0.94.0.0 - yi-language < 0 # via regex-base-0.94.0.0 - - lens-regex < 0 # via regex-posix - - regex-compat-tdfa < 0 # via regex-tdfa - - regex-tdfa-text < 0 # via regex-tdfa - - scalpel-core < 0 # via regex-tdfa - datasets < 0 # via req - elm2nix < 0 # via req - req-conduit < 0 # via req @@ -5337,8 +5254,6 @@ packages: - skylighting < 0 # via blaze-html - skylighting-core < 0 # via blaze-html - barrier < 0 # via blaze-svg - - RSA < 0 # via crypto-pubkey-types - - crypto-pubkey < 0 # via crypto-pubkey-types - cabal-debian < 0 # via debian - xml-isogen < 0 # via dom-parser - cabal2nix < 0 # via hpack @@ -5356,22 +5271,12 @@ packages: - postgresql-simple-queue < 0 # via pg-transact - inliterate < 0 # via plotlyhs - polysemy-plugin < 0 # via polysemy - - epub-metadata < 0 # via regex-compat-tdfa - highlighting-kate < 0 # via regex-pcre-builtin - html-email-validate < 0 # via regex-pcre-builtin - pcre-utils < 0 # via regex-pcre-builtin - skylighting < 0 # via regex-pcre-builtin - skylighting-core < 0 # via regex-pcre-builtin - template-toolkit < 0 # via regex-pcre-builtin - - dl-fedora < 0 # via regex-posix - - inline-c < 0 # via regex-posix - - xml-to-json < 0 # via regex-posix - - cabal-debian < 0 # via regex-tdfa - - haskell-gi < 0 # via regex-tdfa - - katip < 0 # via regex-tdfa - - menshen < 0 # via regex-tdfa - - shelltestrunner < 0 # via regex-tdfa - - tasty-silver < 0 # via regex-tdfa - relational-record < 0 # via relational-query-HDBC - wikicfp-scraper < 0 # via scalpel-core - miso < 0 # via servant @@ -5381,16 +5286,6 @@ packages: - show-prettyprint < 0 # via trifecta - emd < 0 # via typelits-witnesses - stripe-wreq < 0 # via wreq - - jose < 0 # via x509 - - jwt < 0 # via x509 - - jwt < 0 # via x509-store - - haskell-gi < 0 # via xml-conduit - - xlsx < 0 # via xml-conduit - - xml-conduit-parse < 0 # via xml-conduit - - xml-conduit-writer < 0 # via xml-conduit - - xml-hamlet < 0 # via xml-conduit - - xml-indexed-cursor < 0 # via xml-conduit - - xml-isogen < 0 # via xml-conduit - yeshql < 0 # via yeshql-hdbc # round 4 @@ -5431,12 +5326,6 @@ packages: - hschema-prettyprinter < 0 # via natural-transformation - asciidiagram < 0 # via pandoc-types - texmath < 0 # via pandoc-types - - conduit-parse < 0 # via parsers - - data-serializer < 0 # via parsers - - data-textual < 0 # via parsers - - network-ip < 0 # via parsers - - replace-attoparsec < 0 # via parsers - - time-parsers < 0 # via parsers - hasql < 0 # via postgresql-binary - dbcleaner < 0 # via postgresql-simple - peregrin < 0 # via postgresql-simple @@ -5490,8 +5379,6 @@ packages: # round 6 - rasterific-svg < 0 # via Rasterific - fmt-for-rio < 0 # via enum-text-rio - - monad-unlift-ref < 0 # via mutable-containers - - xeno < 0 # via mutable-containers - pipes-category < 0 # via pipes-extras # round 7 @@ -5502,9 +5389,7 @@ packages: - hschema-quickcheck < 0 # via hschema - string-interpolate < 0 # via interpolatedstring-perl6 - string-interpolate < 0 # via text-conversions - - xmlbf-xeno < 0 # via xeno - random-fu < 0 # via random-source - - Hoed < 0 # via regex-tdfa - Hoed < 0 # via regex-tdfa-text - random-fu < 0 # via rvar - codec < 0 # via binary-bits @@ -5529,7 +5414,6 @@ packages: - postgresql-typed < 0 # via HDBC - tcp-streams-openssl < 0 # via HsOpenSSL-x509-system - pandoc-citeproc < 0 # via HsYAML-aeson - - hOpenPGP < 0 # via asn1-encoding - ws < 0 # via attoparsec-uri - microformats2-parser < 0 # via blaze-html - persistent-mongoDB < 0 # via blaze-html @@ -5548,8 +5432,6 @@ packages: - hasbolt < 0 # via hex - pantry < 0 # via hpack - scotty < 0 # via hspec-wai - - microformats2-parser < 0 # via html-conduit - - yesod-test < 0 # via html-conduit - pantry < 0 # via http-download - asif < 0 # via hw-hspec-hedgehog - asif < 0 # via hw-ip @@ -5560,6 +5442,7 @@ packages: - bson < 0 # via network-3.1.1.0 - hslogger < 0 # via network-3.1.1.0 - mongoDB < 0 # via network-3.1.1.0 + - network-bsd < 0 # via network-3.1.1.0 - openssl-streams < 0 # via network-3.1.1.0 - socket-activation < 0 # via network-3.1.1.0 - tcp-streams-openssl < 0 # via network-3.1.1.0 @@ -5569,6 +5452,7 @@ packages: - httpd-shed < 0 # via network-bsd - network-multicast < 0 # via network-bsd - network-simple < 0 # via network-bsd + - network-simple-tls < 0 # via network-simple - pandoc-citeproc < 0 # via pandoc - pandoc-citeproc < 0 # via pandoc-types - microformats2-parser < 0 # via pcre-heavy @@ -5584,11 +5468,10 @@ packages: - hOpenPGP < 0 # via prettyprinter - nvim-hs < 0 # via prettyprinter - nvim-hs < 0 # via prettyprinter-ansi-terminal + - trifecta < 0 # via prettyprinter-ansi-terminal - yesod-bin < 0 # via project-template - libraft < 0 # via protolude - libraft < 0 # via quickcheck-state-machine - - scotty < 0 # via regex-compat - - snap-core < 0 # via regex-posix - pantry < 0 # via rio-orphans - pantry < 0 # via rio-prettyprint - haskoin-core < 0 # via secp256k1-haskell @@ -5599,7 +5482,6 @@ packages: - servant-multipart < 0 # via servant-foreign - yesod-bin < 0 # via shakespeare - yesod-core < 0 # via shakespeare - - network-simple < 0 # via socks - store < 0 # via store-core - pantry < 0 # via tar-conduit - libraft < 0 # via tasty-dejafu @@ -5635,27 +5517,9 @@ packages: - vivid < 0 # via vivid-supercollider - web-routes-wai < 0 # via web-routes - ws < 0 # via wuss - - network-simple-tls < 0 # via x509 - - postgresql-typed < 0 # via x509 - - tcp-streams < 0 # via x509 - - warp-tls-uid < 0 # via x509 - - network-simple-tls < 0 # via x509-store - - postgresql-typed < 0 # via x509-store - - tcp-streams < 0 # via x509-store - - network-simple-tls < 0 # via x509-system - - tcp-streams < 0 # via x509-system - - network-simple-tls < 0 # via x509-validation - - postgresql-typed < 0 # via x509-validation - - DAV < 0 # via xml-conduit - - pandoc-citeproc < 0 # via xml-conduit - - xml-lens < 0 # via xml-conduit - - yesod-test < 0 # via xml-conduit - DAV < 0 # via xml-hamlet - HandsomeSoup < 0 # via HTTP - hxt-http < 0 # via HTTP - - amqp < 0 # via connection - - http-conduit < 0 # via connection - - network-conduit-tls < 0 # via connection - http-streams < 0 # via io-streams - butter < 0 # via network-simple - network-anonymous-i2p < 0 # via network-simple @@ -5664,20 +5528,12 @@ packages: - pipes-network-tls < 0 # via network-simple - pipes-network-tls < 0 # via network-simple-tls - http-streams < 0 # via openssl-streams - - network-conduit-tls < 0 # via tls - - pipes-network-tls < 0 # via tls - - warp-tls < 0 # via tls - wai-websockets < 0 # via wai-app-static - wai-session-postgresql < 0 # via wai-session - wai-websockets < 0 # via websockets - bugsnag-haskell < 0 # via yesod-core - - bitx-bitcoin < 0 # via http-client-tls - - datadog < 0 # via http-client-tls - - oauthenticated < 0 # via http-client-tls - conduit-throttle < 0 # via test-framework - conduit-throttle < 0 # via test-framework-hunit - - html-conduit < 0 # via xml-conduit - - tagstream-conduit < 0 # via xml-conduit - decidable < 0 # via vinyl - functor-products < 0 # via vinyl - list-witnesses < 0 # via vinyl @@ -5686,10 +5542,8 @@ packages: - groundhog-inspector < 0 # via groundhog-sqlite - groundhog-inspector < 0 # via groundhog-th - lsp-test < 0 # via haskell-lsp - - groundhog-inspector < 0 # via regex-compat - - ginger < 0 # via regex-tdfa - - http-reverse-proxy < 0 # via http-conduit - - wai-enforce-https < 0 # via warp-tls + - ginger < 0 # via regex-tdfa-1.3.0 + - menshen < 0 # via regex-tdfa-1.3.0 "GHC 8.8-related build failures": # MonadFail stuff @@ -5782,6 +5636,7 @@ packages: # More build failure transitive deps - random-source < 0 # via flexible-defaults - backprop < 0 # via vinyl + - network-ip < 0 # via data-dword # Some more failures - present < 0 # MonadFail @@ -5827,12 +5682,11 @@ packages: - cql-io < 0 # via cql - groundhog-mysql < 0 # via groundhog - logging-effect < 0 # via prettyprinter + - xmlbf-xeno < 0 # via xmlbf # previously blocked by http-client - - authenticate-oauth < 0 # via RSA crypto-pubkey-types - mmtf < 0 # via data-msgpack - gym-http-api < 0 # via servant servant-client - - soap < 0 # via xml-conduit xml-conduit-writer # hashable-1.3.0 - concurrent-supply < 0 From 5eff9d8ae3455984625c923e166bbea0e610d36a Mon Sep 17 00:00:00 2001 From: Ryan Scott Date: Fri, 4 Oct 2019 06:51:41 -0400 Subject: [PATCH 0770/2682] Reenable approximate, compensated --- build-constraints.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 87a5d7d7..142982fd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5149,8 +5149,6 @@ packages: - datasets < 0 # via req - elm2nix < 0 # via req - req-conduit < 0 # via req - - approximate < 0 # via safecopy - - compensated < 0 # via safecopy - filter-logger < 0 # via scotty - line < 0 # via scotty - pg-harness-server < 0 # via scotty From 93687b0f59edfbd586531547d36e1992d136999b Mon Sep 17 00:00:00 2001 From: Ryan Scott Date: Fri, 4 Oct 2019 06:53:17 -0400 Subject: [PATCH 0771/2682] Reenable prettyprinter --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 87a5d7d7..f034c995 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5602,7 +5602,6 @@ packages: - flay < 0 - barbies < 0 - time-qq < 0 - - prettyprinter < 0 - references < 0 - interpolatedstring-perl6 < 0 From 723f0bb7029fac435d2fd7bb8fdf3da065d5bc17 Mon Sep 17 00:00:00 2001 From: Ryan Scott Date: Fri, 4 Oct 2019 07:05:35 -0400 Subject: [PATCH 0772/2682] Reenable test-framework-{hunit,leancheck,quickcheck2,smallcheck,th} --- build-constraints.yaml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 87a5d7d7..c095abde 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5369,8 +5369,6 @@ packages: - abstract-deque-tests < 0 # via test-framework - crypto-api-tests < 0 # via test-framework - crypto-cipher-tests < 0 # via test-framework - - test-framework-leancheck < 0 # via test-framework - - test-framework-smallcheck < 0 # via test-framework - tonatona < 0 # via tonaparser - tonatona-logger < 0 # via tonaparser - Rasterific < 0 # via vector-algorithms @@ -5933,10 +5931,6 @@ skipped-tests: - siphash # via test-framework - spatial-math # via test-framework - terminal-progress-bar # via test-framework - - test-framework-hunit # via test-framework - - test-framework-leancheck # via test-framework - - test-framework-quickcheck2 # via test-framework - - test-framework-smallcheck # via test-framework - text-icu # via test-framework - text-printer # via test-framework - threads # via test-framework From 35968dc3b164a3aa9877aa7a2cdad29b120c0367 Mon Sep 17 00:00:00 2001 From: Ryan Scott Date: Fri, 4 Oct 2019 07:16:13 -0400 Subject: [PATCH 0773/2682] Reenable tests/benchmarks for either, exceptions, lens, and linear --- build-constraints.yaml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 87a5d7d7..a17275eb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5892,10 +5892,8 @@ skipped-tests: - deepseq-generics # via test-framework - doldol # via test-framework - double-conversion # via test-framework - - either # via test-framework - enummapset # via test-framework - exception-transformers # via test-framework - - exceptions # via test-framework - fingertree # via test-framework - hashable # via test-framework - haskey-btree # via test-framework @@ -5903,9 +5901,7 @@ skipped-tests: - irc # via test-framework - language-c-quote # via test-framework - largeword # via test-framework - - lens # via test-framework - lifted-base # via test-framework - - linear # via test-framework - lockfree-queue # via test-framework - lzma-conduit # via test-framework - messagepack # via test-framework @@ -5950,7 +5946,6 @@ skipped-tests: - zstd # via test-framework - ENIG # via test-framework-th - doldol # via test-framework-th - - lens # via test-framework-th - messagepack # via test-framework-th - safeio # via test-framework-th - tzdata # via test-framework-th @@ -6650,7 +6645,6 @@ skipped-benchmarks: - kanji - kazura-queue - kdt - - lens - lifted-async - lifted-base - loop From 038dcbfddc4ebf0862a7cd56f3e8818795eb889e Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 4 Oct 2019 23:43:49 +0800 Subject: [PATCH 0774/2682] disable some compilation issues --- build-constraints.yaml | 27 +++++++++++++++++++++++---- 1 file changed, 23 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 87a5d7d7..a2ac13d6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5606,6 +5606,12 @@ packages: - references < 0 - interpolatedstring-perl6 < 0 + # compilation errors + - xml-conduit-parse < 0 + - scalpel-core < 0 + - configuration-tools < 0 + - bitx-bitcoin < 0 + # Round 2 build failure transitive deps - cryptocipher < 0 # via cipher-blowfish - dejafu < 0 # via concurrency @@ -5666,6 +5672,15 @@ packages: - regex-pcre-builtin < 0 # MonadFail - wai-predicates < 0 # MonadFail - sbv < 0 # MonadFail + - crypto-pubkey-openssh < 0 # MonadFail + - tagstream-conduit < 0 # MonadFail + - xlsx < 0 # MonadFail + - jose < 0 # MonadFail + - data-textual < 0 # MonadFail + - data-serializer < 0 # MonadFail + - crypto-pubkey-openssh < 0 # MonadFail + - RSA < 0 # MonadFail + # https://github.com/psibi/fakedata/issues/5 - fakedata < 0 # https://github.com/alevy/simple/issues/23 @@ -5682,12 +5697,16 @@ packages: - groundhog-th < 0 # via groundhog - cql-io < 0 # via cql - groundhog-mysql < 0 # via groundhog - - logging-effect < 0 # via prettyprinter - - xmlbf-xeno < 0 # via xmlbf - - # previously blocked by http-client - mmtf < 0 # via data-msgpack - gym-http-api < 0 # via servant servant-client + - logging-effect < 0 # via prettyprinter + - xmlbf-xeno < 0 # via xmlbf + - authenticate-oauth < 0 # via RSA + - http-directory < 0 # via html-conduit + - xml-html-qq < 0 # via html-conduit + - scalpel < 0 # via scalpel-core + - authenticate < 0 # via tagstream-conduit + - wreq < 0 # via authenticate-oauth # hashable-1.3.0 - concurrent-supply < 0 From 20e80e10b26bc05eb8e58eb8f3a30f27f8dd7475 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 4 Oct 2019 23:44:17 +0800 Subject: [PATCH 0775/2682] disable html-conduit (snoyberg/xml#148) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index a2ac13d6..f65f289d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5609,6 +5609,7 @@ packages: # compilation errors - xml-conduit-parse < 0 - scalpel-core < 0 + - html-conduit < 0 # https://github.com/snoyberg/xml/issues/148 - configuration-tools < 0 - bitx-bitcoin < 0 From cafbc7c0d8e653496468b5eee1e10b194a725134 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 4 Oct 2019 23:44:50 +0800 Subject: [PATCH 0776/2682] http-conduit testsuite fail (snoyberg/http-client#415) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f65f289d..43c3009a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6418,6 +6418,7 @@ expected-test-failures: - haskell-tools-builtin-refactorings - hoopl # https://github.com/haskell/hoopl/issues/50 - hspec-expectations-pretty-diff # GHC 8 issue not reported upstream since issue tracker disabled + - http-conduit # https://github.com/snoyberg/http-client/issues/415 - hweblib # https://github.com/aycanirican/hweblib/issues/3 - libraft # https://github.com/commercialhaskell/stackage/issues/4337#issuecomment-462465921 - multiset # doctests require Glob, a hidden package From 91f73b5339882da644bc47097919c1930050127f Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 4 Oct 2019 23:45:30 +0800 Subject: [PATCH 0777/2682] hpack: MonadFail (sol/hpack#371) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 43c3009a..dd165d26 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5677,6 +5677,7 @@ packages: - tagstream-conduit < 0 # MonadFail - xlsx < 0 # MonadFail - jose < 0 # MonadFail + - hpack < 0 # MonadFail https://github.com/sol/hpack/issues/371 - data-textual < 0 # MonadFail - data-serializer < 0 # MonadFail - crypto-pubkey-openssh < 0 # MonadFail From d04f86e06a422d8d63e7b97d498b9999babab2dd Mon Sep 17 00:00:00 2001 From: Michael Walker Date: Fri, 4 Oct 2019 21:09:58 +0100 Subject: [PATCH 0778/2682] Enable concurrency, dejafu, {hunit,tasty}-dejafu New releases have fixed GHC 8.8 build issues --- build-constraints.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index dd165d26..432fbb91 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5565,7 +5565,6 @@ packages: - exceptional < 0 - true-name < 0 - probability < 0 - - concurrency < 0 - cron < 0 - store-core < 0 - bitcoin-script < 0 @@ -5615,7 +5614,6 @@ packages: # Round 2 build failure transitive deps - cryptocipher < 0 # via cipher-blowfish - - dejafu < 0 # via concurrency - cublas < 0 # via cuda - cufft < 0 # via cuda - cusparse < 0 # via cuda @@ -5638,8 +5636,6 @@ packages: # Round 3 build failure transitive deps - network-messagepack-rpc < 0 # via data-msgpack - - hunit-dejafu < 0 # via dejafu - - tasty-dejafu < 0 # via dejafu # More build failure transitive deps - random-source < 0 # via flexible-defaults From c658c71ec10f5c611798b84cca31e928fa434892 Mon Sep 17 00:00:00 2001 From: Lucas David Traverso Date: Fri, 4 Oct 2019 22:57:17 -0300 Subject: [PATCH 0779/2682] Added conferer and conferer* --- build-constraints.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index dd165d26..3dd6f0e9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3723,6 +3723,11 @@ packages: - map-syntax < 0 # GHC 8.4 via base-4.11.0.0 - heist < 0 # GHC 8.4 via map-syntax - snap < 0 # GHC 8.4 via base-4.11.0.0 + - conferer + # - conferer-snap # Because snap + - conferer-warp + - conferer-hspec + - conferer-provider-json "Tim Humphries @thumphries": - transformers-either < 0 # via exceptions-0.10.0 From 7b769807351f566e56d26fb4e625ca07d8222663 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Fri, 4 Oct 2019 19:23:12 -0700 Subject: [PATCH 0780/2682] Unblock freer-simple --- build-constraints.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index dd165d26..6a62d11f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4944,7 +4944,6 @@ packages: - universe-dependent-sum < 0 # via some - PyF < 0 # via template-haskell-2.15.0.0 - data-accessor-template < 0 # via template-haskell-2.15.0.0 - - freer-simple < 0 # via template-haskell-2.15.0.0 - interpolatedstring-qq2 < 0 # via template-haskell-2.15.0.0 - quickcheck-arbitrary-template < 0 # via template-haskell-2.15.0.0 - rank2classes < 0 # via template-haskell-2.15.0.0 @@ -5056,7 +5055,6 @@ packages: - shake-language-c < 0 # via fclabels - download < 0 # via feed - shikensu < 0 # via flow - - polysemy < 0 # via freer-simple - mmark-cli < 0 # via ghc-syntax-highlighter - mmark-ext < 0 # via ghc-syntax-highlighter - termonad < 0 # via gi-gtk From 324b353a7f0ce39c6f62875e5a5bd15512f57705 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sat, 5 Oct 2019 11:04:06 +0800 Subject: [PATCH 0781/2682] conferer-provider-json needs disabled aeson-qq (#4884) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d4654366..9146e3be 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3727,7 +3727,7 @@ packages: # - conferer-snap # Because snap - conferer-warp - conferer-hspec - - conferer-provider-json + # - conferer-provider-json # via aeson-qq "Tim Humphries @thumphries": - transformers-either < 0 # via exceptions-0.10.0 From 02fd27bddab070dd083b1e11129123ff71c1c9ec Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sat, 5 Oct 2019 11:36:39 +0800 Subject: [PATCH 0782/2682] prettyprinter was unlocked --- build-constraints.yaml | 28 ++++++---------------------- 1 file changed, 6 insertions(+), 22 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9146e3be..9a484ea6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4932,12 +4932,9 @@ packages: - hapistrano < 0 # via path-io-1.5.0 - graphviz < 0 # via polyparse-1.13 - core-data < 0 # via prettyprinter-1.3.0 - - core-program < 0 # via prettyprinter-1.3.0 - - core-text < 0 # via prettyprinter-1.3.0 - - dhall < 0 # via prettyprinter-1.3.0 - - dhall-json < 0 # via prettyprinter-1.3.0 - - invertible-grammar < 0 # via prettyprinter-1.3.0 - - sexp-grammar < 0 # via prettyprinter-1.3.0 + - core-program < 0 # via prettyprinter-1.3.0 and template-haskell-2.15 + - core-text < 0 # via prettyprinter-1.3.0 and template-haskell-2.15 + - sexp-grammar < 0 # via prettyprinter-1.3.0 and semigroups-0.19 - MissingH < 0 # via process-1.6.5.1 - blaze-colonnade < 0 # via profunctors-5.5 - colonnade < 0 # via profunctors-5.5 @@ -5033,6 +5030,7 @@ packages: - prim-uniq < 0 # via dependent-sum - typelits-witnesses < 0 # via dependent-sum - dhall-bash < 0 # via dhall + - dhall-json < 0 # via dhall - hpack-dhall < 0 # via dhall - verbosity < 0 # via dhall - hpack-dhall < 0 # via dhall-json @@ -5398,10 +5396,6 @@ packages: - hschema-aeson < 0 # via hschema-quickcheck - inline-r < 0 # via inline-c - postgresql-binary < 0 # via network-ip - - hschema-aeson < 0 # via prettyprinter - - winery < 0 # via prettyprinter - - hschema-aeson < 0 # via prettyprinter-ansi-terminal - - winery < 0 # via prettyprinter-ansi-terminal - aeson-extra < 0 # via semialign - lxd-client-config < 0 # via test-framework - pandoc-types < 0 # via test-framework @@ -5465,10 +5459,6 @@ packages: - persistent-mongoDB < 0 # via persistent-test - postgresql-typed < 0 # via postgresql-binary - libraft < 0 # via postgresql-simple-url - - hOpenPGP < 0 # via prettyprinter - - nvim-hs < 0 # via prettyprinter - - nvim-hs < 0 # via prettyprinter-ansi-terminal - - trifecta < 0 # via prettyprinter-ansi-terminal - yesod-bin < 0 # via project-template - libraft < 0 # via protolude - libraft < 0 # via quickcheck-state-machine @@ -5544,6 +5534,8 @@ packages: - lsp-test < 0 # via haskell-lsp - ginger < 0 # via regex-tdfa-1.3.0 - menshen < 0 # via regex-tdfa-1.3.0 + - winery < 0 # via fast-builder + - nvim-hs < 0 # via hslogger "GHC 8.8-related build failures": # MonadFail stuff @@ -5623,13 +5615,6 @@ packages: - language-c-quote < 0 # via mainland-pretty - cgi < 0 # via multipart - pcf-font-embed < 0 # via pcf-font - - emacs-module < 0 # via prettyprinter - - exp-pairs < 0 # via prettyprinter - - prettyprinter-ansi-terminal < 0 # via prettyprinter - - prettyprinter-compat-annotated-wl-pprint < 0 # via prettyprinter - - prettyprinter-compat-ansi-wl-pprint < 0 # via prettyprinter - - prettyprinter-compat-wl-pprint < 0 # via prettyprinter - - prettyprinter-convert-ansi-wl-pprint < 0 # via prettyprinter - vivid-supercollider < 0 # via vivid-osc # Round 3 build failure transitive deps @@ -5695,7 +5680,6 @@ packages: - groundhog-mysql < 0 # via groundhog - mmtf < 0 # via data-msgpack - gym-http-api < 0 # via servant servant-client - - logging-effect < 0 # via prettyprinter - xmlbf-xeno < 0 # via xmlbf - authenticate-oauth < 0 # via RSA - http-directory < 0 # via html-conduit From 2e278f5d411501a3f6caabb4be82e6f7822a03d9 Mon Sep 17 00:00:00 2001 From: Michael Walker Date: Sat, 5 Oct 2019 10:21:56 +0100 Subject: [PATCH 0783/2682] Enable irc-{conduit,client} New releases have increased the time upper bound. --- build-constraints.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9a484ea6..6aafa14c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4969,8 +4969,6 @@ packages: - hquantlib-time < 0 # via time-1.9.3 - hsdev < 0 # via time-1.9.3 - hsexif < 0 # via time-1.9.3 - - irc-client < 0 # via time-1.9.3 - - irc-conduit < 0 # via time-1.9.3 - libmpd < 0 # via time-1.9.3 - pinboard < 0 # via time-1.9.3 - postgresql-simple-migration < 0 # via time-1.9.3 From 722db6627c3681eca2ccefdb4c02f5ea16d60537 Mon Sep 17 00:00:00 2001 From: mrkkrp Date: Fri, 4 Oct 2019 20:21:45 +0200 Subject: [PATCH 0784/2682] =?UTF-8?q?Enable=20=E2=80=98mmark-ext=E2=80=99?= =?UTF-8?q?=20and=20=E2=80=98mmark-cli=E2=80=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build-constraints.yaml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9a484ea6..42b06133 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5058,8 +5058,6 @@ packages: - shake-language-c < 0 # via fclabels - download < 0 # via feed - shikensu < 0 # via flow - - mmark-cli < 0 # via ghc-syntax-highlighter - - mmark-ext < 0 # via ghc-syntax-highlighter - termonad < 0 # via gi-gtk - termonad < 0 # via gi-vte - apecs-gloss < 0 # via gloss @@ -5171,7 +5169,6 @@ packages: - websockets-snap < 0 # via snap-core - websockets-snap < 0 # via snap-server - mbtiles < 0 # via sqlite-simple - - mmark-cli < 0 # via stache - mpi-hs < 0 # via store - datasets < 0 # via streaming - eventstore < 0 # via streaming @@ -5251,8 +5248,6 @@ packages: - cmark-gfm < 0 # via blaze-html - highlighting-kate < 0 # via blaze-html - inliterate < 0 # via blaze-html - - skylighting < 0 # via blaze-html - - skylighting-core < 0 # via blaze-html - barrier < 0 # via blaze-svg - cabal-debian < 0 # via debian - xml-isogen < 0 # via dom-parser @@ -5274,8 +5269,6 @@ packages: - highlighting-kate < 0 # via regex-pcre-builtin - html-email-validate < 0 # via regex-pcre-builtin - pcre-utils < 0 # via regex-pcre-builtin - - skylighting < 0 # via regex-pcre-builtin - - skylighting-core < 0 # via regex-pcre-builtin - template-toolkit < 0 # via regex-pcre-builtin - relational-record < 0 # via relational-query-HDBC - wikicfp-scraper < 0 # via scalpel-core @@ -5649,7 +5642,6 @@ packages: - cassava-records < 0 # MonadFail - haskell-spacegoo < 0 # MonadFail - lens-typelevel < 0 # Wrong category of family instance (wat) - - regex-pcre-builtin < 0 # MonadFail - wai-predicates < 0 # MonadFail - sbv < 0 # MonadFail - crypto-pubkey-openssh < 0 # MonadFail From b03dfb7df53059a0f5fda276b811aad4bb76560f Mon Sep 17 00:00:00 2001 From: Ryan Scott Date: Sat, 5 Oct 2019 07:04:36 -0400 Subject: [PATCH 0785/2682] Reenable scotty --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9a484ea6..20b1c2c3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5425,7 +5425,6 @@ packages: - pantry < 0 # via hackage-security - hasbolt < 0 # via hex - pantry < 0 # via hpack - - scotty < 0 # via hspec-wai - pantry < 0 # via http-download - asif < 0 # via hw-hspec-hedgehog - asif < 0 # via hw-ip From 8e10f66eb977001c83234746c23863613c316985 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sat, 5 Oct 2019 23:46:38 +0800 Subject: [PATCH 0786/2682] prettyprinter: QuickCheck hidden MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Test suite failure for package prettyprinter-1.3.0 doctest: exited with: ExitFailure 1 : src/Data/Text/Prettyprint/Doc/Internal.hs:1847: failure in expression `import Test.QuickCheck.Modifiers' expected: but got: : error: Could not load module ‘Test.QuickCheck.Modifiers’ It is a member of the hidden package ‘QuickCheck-2.13.2’. --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9a484ea6..872c76b1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6430,6 +6430,7 @@ expected-test-failures: - rattletrap # OOM? https://github.com/fpco/stackage/issues/2232 - stm-delay # https://github.com/joeyadams/haskell-stm-delay/issues/5 - tmp-postgres # https://github.com/jfischoff/tmp-postgres/issues/1 + - prettyprinter # Could not load module ‘Test.QuickCheck.Modifiers’ (member of the hidden package ‘QuickCheck-2.13.2’) # https://github.com/pruvisto/heap/issues/11 - heap From 27ebd43018553604510fedccbe6ce13cf637a9bb Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sat, 5 Oct 2019 17:39:53 -0700 Subject: [PATCH 0787/2682] Reenable amazonka and some other stuff --- build-constraints.yaml | 125 ++++++----------------------------------- 1 file changed, 18 insertions(+), 107 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5178c902..6780771d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4557,117 +4557,28 @@ packages: "Blocked per http-client-0.6": - - amazonka < 0 # via http-client-0.6.1 - - amazonka-core < 0 # via http-client-0.6.1 - github < 0 # via http-client-0.6.1 - hailgun < 0 # via http-client-0.6.1 - mbug < 0 # via http-client-0.6.1 - - antiope-athena < 0 # via amazonka - - antiope-core < 0 # via amazonka - - antiope-dynamodb < 0 # via amazonka - - antiope-messages < 0 # via amazonka - - antiope-s3 < 0 # via amazonka - - antiope-sns < 0 # via amazonka - - antiope-sqs < 0 # via amazonka - - confcrypt < 0 # via amazonka - - amazonka-apigateway < 0 # via amazonka-core - - amazonka-application-autoscaling < 0 # via amazonka-core - - amazonka-appstream < 0 # via amazonka-core - - amazonka-athena < 0 # via amazonka-core - - amazonka-autoscaling < 0 # via amazonka-core - - amazonka-budgets < 0 # via amazonka-core - - amazonka-certificatemanager < 0 # via amazonka-core - - amazonka-cloudformation < 0 # via amazonka-core - - amazonka-cloudfront < 0 # via amazonka-core - - amazonka-cloudhsm < 0 # via amazonka-core - - amazonka-cloudsearch < 0 # via amazonka-core - - amazonka-cloudsearch-domains < 0 # via amazonka-core - - amazonka-cloudtrail < 0 # via amazonka-core - - amazonka-cloudwatch < 0 # via amazonka-core - - amazonka-cloudwatch-events < 0 # via amazonka-core - - amazonka-cloudwatch-logs < 0 # via amazonka-core - - amazonka-codebuild < 0 # via amazonka-core - - amazonka-codecommit < 0 # via amazonka-core - - amazonka-codedeploy < 0 # via amazonka-core - - amazonka-codepipeline < 0 # via amazonka-core - - amazonka-cognito-identity < 0 # via amazonka-core - - amazonka-cognito-idp < 0 # via amazonka-core - - amazonka-cognito-sync < 0 # via amazonka-core - - amazonka-config < 0 # via amazonka-core - - amazonka-datapipeline < 0 # via amazonka-core - - amazonka-devicefarm < 0 # via amazonka-core - - amazonka-directconnect < 0 # via amazonka-core - - amazonka-discovery < 0 # via amazonka-core - - amazonka-dms < 0 # via amazonka-core - - amazonka-ds < 0 # via amazonka-core - - amazonka-dynamodb < 0 # via amazonka-core - - amazonka-dynamodb-streams < 0 # via amazonka-core - - amazonka-ec2 < 0 # via amazonka-core - - amazonka-ecr < 0 # via amazonka-core - - amazonka-ecs < 0 # via amazonka-core - - amazonka-efs < 0 # via amazonka-core - - amazonka-elasticache < 0 # via amazonka-core - - amazonka-elasticbeanstalk < 0 # via amazonka-core - - amazonka-elasticsearch < 0 # via amazonka-core - - amazonka-elastictranscoder < 0 # via amazonka-core - - amazonka-elb < 0 # via amazonka-core - - amazonka-elbv2 < 0 # via amazonka-core - - amazonka-emr < 0 # via amazonka-core - - amazonka-gamelift < 0 # via amazonka-core - - amazonka-glacier < 0 # via amazonka-core - - amazonka-glue < 0 # via amazonka-core - - amazonka-health < 0 # via amazonka-core - - amazonka-iam < 0 # via amazonka-core - - amazonka-importexport < 0 # via amazonka-core - - amazonka-inspector < 0 # via amazonka-core - - amazonka-iot < 0 # via amazonka-core - - amazonka-iot-dataplane < 0 # via amazonka-core - - amazonka-kinesis < 0 # via amazonka-core - - amazonka-kinesis-analytics < 0 # via amazonka-core - - amazonka-kinesis-firehose < 0 # via amazonka-core - - amazonka-kms < 0 # via amazonka-core - - amazonka-lambda < 0 # via amazonka-core - - amazonka-lightsail < 0 # via amazonka-core - - amazonka-marketplace-analytics < 0 # via amazonka-core - - amazonka-marketplace-metering < 0 # via amazonka-core - - amazonka-ml < 0 # via amazonka-core - - amazonka-opsworks < 0 # via amazonka-core - - amazonka-opsworks-cm < 0 # via amazonka-core - - amazonka-pinpoint < 0 # via amazonka-core - - amazonka-polly < 0 # via amazonka-core - - amazonka-rds < 0 # via amazonka-core - - amazonka-redshift < 0 # via amazonka-core - - amazonka-rekognition < 0 # via amazonka-core - - amazonka-route53 < 0 # via amazonka-core - - amazonka-route53-domains < 0 # via amazonka-core - - amazonka-s3 < 0 # via amazonka-core - - amazonka-sdb < 0 # via amazonka-core - - amazonka-servicecatalog < 0 # via amazonka-core - - amazonka-ses < 0 # via amazonka-core - - amazonka-shield < 0 # via amazonka-core - - amazonka-sms < 0 # via amazonka-core - - amazonka-snowball < 0 # via amazonka-core - - amazonka-sns < 0 # via amazonka-core - - amazonka-sqs < 0 # via amazonka-core - - amazonka-ssm < 0 # via amazonka-core - - amazonka-stepfunctions < 0 # via amazonka-core - - amazonka-storagegateway < 0 # via amazonka-core - - amazonka-sts < 0 # via amazonka-core - - amazonka-support < 0 # via amazonka-core - - amazonka-swf < 0 # via amazonka-core - - amazonka-test < 0 # via amazonka-core - - amazonka-waf < 0 # via amazonka-core - - amazonka-workspaces < 0 # via amazonka-core - - amazonka-xray < 0 # via amazonka-core - - antiope-athena < 0 # via amazonka-core - - antiope-core < 0 # via amazonka-core - - antiope-dynamodb < 0 # via amazonka-core - - antiope-messages < 0 # via amazonka-core - - antiope-s3 < 0 # via amazonka-core - - antiope-sns < 0 # via amazonka-core - - antiope-sqs < 0 # via amazonka-core - - serverless-haskell < 0 # via amazonka-core + # Things that were blocked by amazonka but are now + # blocked by other things + - serverless-haskell < 0 # via aeson-extra + - antiope-core < 0 # via aeson-lens + - confcrypt < 0 # via crypto-pubkey-openssh + - antiope-core < 0 # via hspec-2.7.1 + - antiope-messages < 0 # via hspec-2.7.1 + - antiope-sns < 0 # via hspec-2.7.1 + - antiope-sqs < 0 # via hspec-2.7.1 + - antiope-core < 0 # via hw-hspec-hedgehog + - antiope-messages < 0 # via hw-hspec-hedgehog + - antiope-sns < 0 # via hw-hspec-hedgehog + - antiope-sqs < 0 # via hw-hspec-hedgehog + - serverless-haskell < 0 # via network-simple + - confcrypt < 0 # via optparse-applicative-0.15.1.0 + - antiope-dynamodb < 0 # via antiope-core + - antiope-s3 < 0 # via antiope-core + - antiope-s3 < 0 # via antiope-messages "GHC 8.8 bounds failures": From 42abf64fd4a06c68979d74eb202df3ae675e1263 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 6 Oct 2019 11:00:29 +0800 Subject: [PATCH 0788/2682] ansi-terminal < 0.10.1 for concurrent-output (#4890) --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5178c902..922878b5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5699,6 +5699,8 @@ packages: - fast-logger < 3.0.0 - wai-logger < 2.3.6 + # https://github.com/commercialhaskell/stackage/issues/4890 + - ansi-terminal < 0.10.1 # end of packages # Package flags are applied to individual packages, and override the values of From 183c7252907828bbbe38d922901256f52b4ca1f9 Mon Sep 17 00:00:00 2001 From: Ryan Scott Date: Sun, 6 Oct 2019 08:24:05 -0400 Subject: [PATCH 0789/2682] Reenable hyperloglog --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 642889d9..80567588 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5147,7 +5147,6 @@ packages: # round 3 - debug < 0 # via Hoed - - hyperloglog < 0 # via approximate - hw-rankselect-base < 0 # via bits-extra - alerts < 0 # via blaze-html - blaze-bootstrap < 0 # via blaze-html From 1a5935b22584284961c8269702fc166e3c686c27 Mon Sep 17 00:00:00 2001 From: Sibi Prabakaran Date: Sun, 6 Oct 2019 18:07:08 +0530 Subject: [PATCH 0790/2682] Enable hint and libmpd back This is needed for xmonad-extras --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 642889d9..2244cdc6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4778,7 +4778,6 @@ packages: - hw-rankselect < 0 # via generic-lens-1.2.0.0 - apply-refact < 0 # via ghc-8.8.1 - ghc-parser < 0 # via ghc-8.8.1 - - hint < 0 # via ghc-8.8.1 - ihaskell < 0 # via ghc-8.8.1 - loopbreaker < 0 # via ghc-8.8.1 - hsdev < 0 # via ghc-boot-8.8.1 @@ -4880,7 +4879,6 @@ packages: - hquantlib-time < 0 # via time-1.9.3 - hsdev < 0 # via time-1.9.3 - hsexif < 0 # via time-1.9.3 - - libmpd < 0 # via time-1.9.3 - pinboard < 0 # via time-1.9.3 - postgresql-simple-migration < 0 # via time-1.9.3 - req < 0 # via time-1.9.3 @@ -6137,7 +6135,6 @@ expected-test-failures: - hastache - idris # https://github.com/fpco/stackage/issues/1382 - ihaskell # https://github.com/gibiansky/IHaskell/issues/551 - - libmpd # https://github.com/vimus/libmpd-haskell/issues/104 - math-functions # https://github.com/bos/math-functions/issues/25 - matplotlib # https://github.com/fpco/stackage/issues/2365 - mltool # https://github.com/Alexander-Ignatyev/mltool/issues/1 From bb95d9beefcc6f768b982fc5527344137801111f Mon Sep 17 00:00:00 2001 From: Sibi Prabakaran Date: Sun, 6 Oct 2019 21:47:44 +0530 Subject: [PATCH 0791/2682] Enable fakedata --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 642889d9..79107656 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5561,9 +5561,6 @@ packages: - data-serializer < 0 # MonadFail - crypto-pubkey-openssh < 0 # MonadFail - RSA < 0 # MonadFail - - # https://github.com/psibi/fakedata/issues/5 - - fakedata < 0 # https://github.com/alevy/simple/issues/23 - simple < 0 - simple-session < 0 From 757044aeec55eef2ef1143bda66be221ec9ace6d Mon Sep 17 00:00:00 2001 From: Sibi Prabakaran Date: Sun, 6 Oct 2019 21:48:55 +0530 Subject: [PATCH 0792/2682] Enable xmonad-extras --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 642889d9..67df3426 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4903,7 +4903,6 @@ packages: - beam-sqlite < 0 # via beam-core - elm-street < 0 # via warp-3.3.2 - servant-auth-client < 0 # via warp-3.3.2 - - xmonad-extras < 0 # via xmonad-contrib-0.16 # round 2 - netwire-input-glfw < 0 # via GLFW-b From a50e425b1f121c0069960ac00576bbdefdee19d3 Mon Sep 17 00:00:00 2001 From: Bodigrim Date: Sun, 6 Oct 2019 22:33:10 +0100 Subject: [PATCH 0793/2682] Add extended-reals --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 642889d9..b87c41d3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3043,6 +3043,7 @@ packages: - arithmoi - bitvec - poly + - extended-reals "Ashley Yakeley @AshleyYakeley": - countable From 4018142d07b3dd09d85fd5618d183bc90b4d56eb Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 7 Oct 2019 11:36:43 +0800 Subject: [PATCH 0794/2682] disable amazonka-ec2: using too much memory (brendanhay/amazonka#549) [280 of 280] Compiling Network.AWS.EC2 gcc: error: .stack-work/dist/x86_64-linux/Cabal-3.0.0.0/build/Network/AWS/EC2/Types/Product.dyn_o: No such file or directory `gcc' failed in phase `Linker'. (Exit code: 1) also -- While building package amazonka-ec2-1.6.1 using: /var/stackage/.stack/setup-exe-cache/x86_64-linux/Cabal-simple_mPHDZzAJ_3.0.0.0_ghc-8.8.1 --builddir=.stack-work/dist/x86_64-linux/Cabal-3.0.0.0 build lib:amazonka-ec2 test:amazonka-ec2-test --ghc-options "" Process exited with code: ExitFailure (-9) (THIS MAY INDICATE OUT OF MEMORY) Logs have been written to: /var/stackage/work/unpack-dir/.stack-work/logs/amazonka-ec2-1.6.1.log Preprocessing library for amazonka-ec2-1.6.1.. Building library for amazonka-ec2-1.6.1.. [ 3 of 280] Compiling Network.AWS.EC2.Types.Product --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 642889d9..ff4330b0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1623,7 +1623,7 @@ packages: - amazonka-ds - amazonka-dynamodb - amazonka-dynamodb-streams - - amazonka-ec2 + # - amazonka-ec2 # https://github.com/brendanhay/amazonka/issues/549 - amazonka-ecr - amazonka-ecs - amazonka-efs From 7d69f442abb55a050e71f016d6ed25056294512a Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 7 Oct 2019 15:59:15 +0800 Subject: [PATCH 0795/2682] http-client: network3 flag (snoyberg/http-client#415) --- build-constraints.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ff4330b0..d0f0c085 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5718,6 +5718,9 @@ package-flags: hsdev: docs: false + http-client: + # https://github.com/snoyberg/http-client/issues/415 + network3: true # end of package-flags # Special configure options for individual packages @@ -6290,7 +6293,6 @@ expected-test-failures: - haskell-tools-builtin-refactorings - hoopl # https://github.com/haskell/hoopl/issues/50 - hspec-expectations-pretty-diff # GHC 8 issue not reported upstream since issue tracker disabled - - http-conduit # https://github.com/snoyberg/http-client/issues/415 - hweblib # https://github.com/aycanirican/hweblib/issues/3 - libraft # https://github.com/commercialhaskell/stackage/issues/4337#issuecomment-462465921 - multiset # doctests require Glob, a hidden package From a9715a589b091ee008394361b17e04d819ffac30 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 7 Oct 2019 16:24:00 +0800 Subject: [PATCH 0796/2682] X11 enabled --- build-constraints.yaml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2b50ccc2..9d147d46 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5563,11 +5563,6 @@ packages: - simple-session < 0 # Round 2 transitive from Some more failures - - Clipboard < 0 # via X11 - - Imlib < 0 # via X11 - - X11-xft < 0 # via X11 - - x11-xim < 0 # via X11 - - xmonad-contrib < 0 # via X11 - groundhog-postgresql < 0 # via groundhog - groundhog-th < 0 # via groundhog - cql-io < 0 # via cql From df16196008249f2cb1d721e05868467162776180 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 7 Oct 2019 22:36:19 +0800 Subject: [PATCH 0797/2682] network3 flag for http-conduit (snoyberg/http-client#415) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9d147d46..e0df382b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5707,7 +5707,7 @@ package-flags: hsdev: docs: false - http-client: + http-conduit: # https://github.com/snoyberg/http-client/issues/415 network3: true # end of package-flags From 08872e559f2a9a469f6edd34987c2d17752b6bd1 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 7 Oct 2019 22:51:07 +0800 Subject: [PATCH 0798/2682] vec < 0.2 (#4897) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index e0df382b..857f209a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5601,6 +5601,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4890 - ansi-terminal < 0.10.1 + + # https://github.com/commercialhaskell/stackage/issues/4897 + - vec < 0.2 # end of packages # Package flags are applied to individual packages, and override the values of From 7a4808bc8a26928646ff699189e81eb4722e6447 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 7 Oct 2019 23:28:50 +0800 Subject: [PATCH 0799/2682] http-conduit network3 flag not available yet (snoyberg/http-client#415) --- build-constraints.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 857f209a..f5b129dc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5709,10 +5709,6 @@ package-flags: hsdev: docs: false - - http-conduit: - # https://github.com/snoyberg/http-client/issues/415 - network3: true # end of package-flags # Special configure options for individual packages @@ -6284,6 +6280,7 @@ expected-test-failures: - haskell-tools-builtin-refactorings - hoopl # https://github.com/haskell/hoopl/issues/50 - hspec-expectations-pretty-diff # GHC 8 issue not reported upstream since issue tracker disabled + - http-conduit # https://github.com/snoyberg/http-client/issues/415 - hweblib # https://github.com/aycanirican/hweblib/issues/3 - libraft # https://github.com/commercialhaskell/stackage/issues/4337#issuecomment-462465921 - multiset # doctests require Glob, a hidden package @@ -6797,6 +6794,7 @@ tell-me-when-its-released: - point-octree-0.5.5.3 # re-enable test and then we can resolve https://github.com/fpco/lts-haskell/issues/27 - yarr-1.4.0.2 # Re-enable package https://github.com/fpco/stackage/issues/1876 - exp-pairs-0.2.0.0 # remove from expected-test-failures, https://github.com/Bodigrim/exp-pairs/issues/16 +- http-conduit-2.3.7.2 # add network3 flag for expected-test-failures https://github.com/snoyberg/http-client/issues/415 # Packages which should be hidden after registering, to avoid module name # conflicts. This is intended for at least two use cases: From fa35d253a9528786c0497fff5ba7becc6d51c7c3 Mon Sep 17 00:00:00 2001 From: orome Date: Mon, 7 Oct 2019 12:01:33 -0400 Subject: [PATCH 0800/2682] Bounds updated and tested for crypto-enigma --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f5b129dc..ef8e4d75 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4612,7 +4612,6 @@ packages: - compact < 0 # via base-4.13.0.0 - configurator-pg < 0 # via base-4.13.0.0 - country < 0 # via base-4.13.0.0 - - crypto-enigma < 0 # via base-4.13.0.0 - css-syntax < 0 # via base-4.13.0.0 - cyclotomic < 0 # via base-4.13.0.0 - dbus < 0 # via base-4.13.0.0 From d7a11f9d386033cd8cf7cea01a5165cd555619da Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 8 Oct 2019 00:30:02 +0800 Subject: [PATCH 0801/2682] http-conduit < 2.3.7.2 (snoyberg/http-client#415) need bump for warp upperbound --- build-constraints.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f5b129dc..165e3bf2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5604,6 +5604,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4897 - vec < 0.2 + + # https://github.com/snoyberg/http-client/issues/415 + - http-conduit < 2.3.7.2 # end of packages # Package flags are applied to individual packages, and override the values of @@ -6794,7 +6797,7 @@ tell-me-when-its-released: - point-octree-0.5.5.3 # re-enable test and then we can resolve https://github.com/fpco/lts-haskell/issues/27 - yarr-1.4.0.2 # Re-enable package https://github.com/fpco/stackage/issues/1876 - exp-pairs-0.2.0.0 # remove from expected-test-failures, https://github.com/Bodigrim/exp-pairs/issues/16 -- http-conduit-2.3.7.2 # add network3 flag for expected-test-failures https://github.com/snoyberg/http-client/issues/415 +- http-conduit-2.3.7.3 # add network3 flag for expected-test-failures https://github.com/snoyberg/http-client/issues/415 # Packages which should be hidden after registering, to avoid module name # conflicts. This is intended for at least two use cases: From 3fc190d1ed7ebd4f925c09c362e21562e65f637b Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 8 Oct 2019 00:44:36 +0800 Subject: [PATCH 0802/2682] Revert "vec < 0.2 (#4897)" This reverts commit 08872e559f2a9a469f6edd34987c2d17752b6bd1. --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 165e3bf2..4f06cc38 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5602,9 +5602,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4890 - ansi-terminal < 0.10.1 - # https://github.com/commercialhaskell/stackage/issues/4897 - - vec < 0.2 - # https://github.com/snoyberg/http-client/issues/415 - http-conduit < 2.3.7.2 # end of packages From 1df6f1ff63df9d948e3cb5e4e81024199a6c0e48 Mon Sep 17 00:00:00 2001 From: Pi3r Date: Tue, 8 Oct 2019 11:52:24 +0200 Subject: [PATCH 0803/2682] Reenable filecache --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4f06cc38..8dc63c99 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5235,7 +5235,6 @@ packages: - users-postgresql-simple < 0 # via postgresql-simple - protocol-buffers-descriptor < 0 # via protocol-buffers - servant-ruby < 0 # via servant-foreign - - filecache < 0 # via strict-base-types - pcre-heavy < 0 # via string-conversions - secp256k1-haskell < 0 # via string-conversions - bv-little < 0 # via text-show From 7a440bafc58b43549d3bbd2e7b5174e4a5aedab8 Mon Sep 17 00:00:00 2001 From: Bodigrim Date: Tue, 8 Oct 2019 19:37:43 +0100 Subject: [PATCH 0804/2682] Add ChasingBottoms --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4f06cc38..717fefa0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3044,6 +3044,7 @@ packages: - bitvec - poly - extended-reals + - ChasingBottoms "Ashley Yakeley @AshleyYakeley": - countable From e1f3b132c7f7f4f8868cc197fb530b723ca9eb3f Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Tue, 8 Oct 2019 12:09:48 -0700 Subject: [PATCH 0805/2682] Enable stylish-haskell --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4f06cc38..79ed53c7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -684,7 +684,7 @@ packages: "Jasper Van der Jeugt @jaspervdj": - blaze-html - blaze-markup - - stylish-haskell < 0 # haskell-src-exts 1.21 + - stylish-haskell # profiteur # aeson-1.4.0.0 - psqueues - websockets From 5f170db2ce0f793e29cabb43645834ec3b99fe27 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 9 Oct 2019 22:32:22 +0800 Subject: [PATCH 0806/2682] reanimate testsuite upstream issue [skip ci] --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4f06cc38..ceb7b061 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6249,7 +6249,7 @@ expected-test-failures: - doctest-discover # 0.1.0.9 https://github.com/karun012/doctest-discover/issues/22 - graylog # 0.1.0.1 https://github.com/fpco/stackage/pull/1254 - tomland # https://github.com/kowainik/tomland/issues/141 - - reanimate # https://github.com/commercialhaskell/stackage/issues/4830 + - reanimate # https://github.com/Lemmih/reanimate/issues/23 # Assertion failures, these can be real bugs or just limitations # in the test cases. From 0f2ec7e6fd40cd6f1f5f304dd6d03cca5222e160 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 10 Oct 2019 00:53:26 +0800 Subject: [PATCH 0807/2682] fix tell-me-when-its-released for http-conduit --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ceb7b061..c89998e5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6794,7 +6794,7 @@ tell-me-when-its-released: - point-octree-0.5.5.3 # re-enable test and then we can resolve https://github.com/fpco/lts-haskell/issues/27 - yarr-1.4.0.2 # Re-enable package https://github.com/fpco/stackage/issues/1876 - exp-pairs-0.2.0.0 # remove from expected-test-failures, https://github.com/Bodigrim/exp-pairs/issues/16 -- http-conduit-2.3.7.3 # add network3 flag for expected-test-failures https://github.com/snoyberg/http-client/issues/415 +- http-conduit-2.3.7.2 # add network3 flag for expected-test-failures https://github.com/snoyberg/http-client/issues/415 # Packages which should be hidden after registering, to avoid module name # conflicts. This is intended for at least two use cases: From 6a3b7ac944bb6a1352e72b9593f45eb30980910a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Olivier=20Ch=C3=A9ron?= Date: Wed, 9 Oct 2019 21:06:49 +0200 Subject: [PATCH 0808/2682] Restore feed --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c89998e5..da443173 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4637,7 +4637,6 @@ packages: - essence-of-live-coding-pulse < 0 # via base-4.13.0.0 - essence-of-live-coding-quickcheck < 0 # via base-4.13.0.0 - fclabels < 0 # via base-4.13.0.0 - - feed < 0 # via base-4.13.0.0 - flow < 0 # via base-4.13.0.0 - fold-debounce-conduit < 0 # via base-4.13.0.0 - force-layout < 0 # via base-4.13.0.0 @@ -4741,7 +4740,6 @@ packages: - wild-bind-x11 < 0 # via base-4.13.0.0 - wuss < 0 # via base-4.13.0.0 - algebraic-graphs < 0 # via base-compat-0.11.0 - - feed < 0 # via base-compat-0.11.0 - gi-gtk-hs < 0 # via base-compat-0.11.0 - pure-zlib < 0 # via base-compat-0.11.0 - wl-pprint-text < 0 # via base-compat-0.11.0 @@ -4872,7 +4870,6 @@ packages: - ekg < 0 # via time-1.9.3 - ekg-statsd < 0 # via time-1.9.3 - esqueleto < 0 # via time-1.9.3 - - feed < 0 # via time-1.9.3 - fold-debounce < 0 # via time-1.9.3 - gnuplot < 0 # via time-1.9.3 - hapistrano < 0 # via time-1.9.3 From a502499063afaf1003ae545bdf0238fa44a85213 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Wed, 9 Oct 2019 21:21:41 -0400 Subject: [PATCH 0809/2682] Drops hjsmin due to restrictive upper bounds #4903 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c89998e5..cf20afc7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -667,7 +667,7 @@ packages: "Alan Zimmerman @alanz": - ghc-exactprint - haskell-lsp - - hjsmin + - hjsmin < 0 # restrictive upper bounds for language-javascript #4903 - language-javascript - Strafunski-StrategyLib From 733be58c4d69aa49a3d3d205c06b5b3882588aab Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Wed, 9 Oct 2019 21:34:42 -0400 Subject: [PATCH 0810/2682] Dissables haddocks for monoid-subclasses #4904 --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index cf20afc7..b2707211 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6433,6 +6433,8 @@ expected-haddock-failures: # https://github.com/haskell/haddock/issues/1091 - vault + # commercialhaskell/stackage#4904 + - monoid-subclasses # end of expected-haddock-failures # For packages with haddock issues From 9ac0a3bf71a45fed8e8224236d87083f5e4e0880 Mon Sep 17 00:00:00 2001 From: Michael Xavier Date: Fri, 11 Oct 2019 15:18:17 -0700 Subject: [PATCH 0811/2682] Reenable uri-bytestring and dependent packages I've sawed off the upper bounds for uri-bytestring and was able to successfully build it against nightlies. I've also dropped the sop stuff from the test suite and just switched to hedgehog. --- build-constraints.yaml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 48550e58..6208126e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4860,7 +4860,6 @@ packages: - rank2classes < 0 # via template-haskell-2.15.0.0 - size-based < 0 # via template-haskell-2.15.0.0 - static-text < 0 # via template-haskell-2.15.0.0 - - uri-bytestring < 0 # via template-haskell-2.15.0.0 - hyraxAbif < 0 # via text-1.2.4.0 - sqlite-simple-errors < 0 # via text-1.2.4.0 - universum < 0 # via text-1.2.4.0 @@ -5090,10 +5089,6 @@ packages: - polysemy < 0 # via unagi-chan - require < 0 # via universum - tintin < 0 # via universum - - dublincore-xml-conduit < 0 # via uri-bytestring - - uri-bytestring-aeson < 0 # via uri-bytestring - - wai-middleware-auth < 0 # via uri-bytestring - - yesod-auth-oauth2 < 0 # via uri-bytestring - hamilton < 0 # via vty - hledger-iadd < 0 # via vty - servant-rawm < 0 # via wai-app-static @@ -5995,7 +5990,6 @@ skipped-tests: # Compilation failures - snappy # https://github.com/bos/snappy/issues/1 - genvalidity-time # https://github.com/NorfairKing/validity/issues/51 - - uri-bytestring # Could not deduce (SOP.All (SOP.All Arbitrary) xs) arising from a use of ‘SOP.hcpure’ - cron # Could not deduce (SOP.All (SOP.All Arbitrary) xss) arising from a use of ‘SOP.hcpure’ - config-ini # https://github.com/aisamanra/config-ini/issues/22 - polysemy-plugin # https://github.com/commercialhaskell/stackage/issues/4733 From edf913c474f42531131c3dd25f593c259d7a58f3 Mon Sep 17 00:00:00 2001 From: Michael Xavier Date: Fri, 11 Oct 2019 15:33:29 -0700 Subject: [PATCH 0812/2682] Reenable csv-conduit I've recently updated csv-conduit with a PR that enabled MonadFail for newer GHCs. It builds with the latest nightly so I think it should be good to go? --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 48550e58..69949952 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -576,7 +576,7 @@ packages: - async - base16-bytestring - c2hs - - csv-conduit < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build + - csv-conduit - executable-hash - executable-path - foreign-store From e5ed5d9f8dec7cd3ef0aa79ad14bf1862579dc57 Mon Sep 17 00:00:00 2001 From: Dmitrii Kovanikov Date: Sat, 12 Oct 2019 16:43:46 +0300 Subject: [PATCH 0813/2682] Add tomland back --- build-constraints.yaml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 48550e58..e09d71d6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4727,7 +4727,6 @@ packages: - threepenny-gui < 0 # via base-4.13.0.0 - timer-wheel < 0 # via base-4.13.0.0 - token-bucket < 0 # via base-4.13.0.0 - - tomland < 0 # via base-4.13.0.0 - type-errors-pretty < 0 # via base-4.13.0.0 - ucam-webauth < 0 # via base-4.13.0.0 - ucam-webauth-types < 0 # via base-4.13.0.0 @@ -6244,7 +6243,6 @@ expected-test-failures: - dhall-json # https://github.com/dhall-lang/dhall-haskell/issues/996 - doctest-discover # 0.1.0.9 https://github.com/karun012/doctest-discover/issues/22 - graylog # 0.1.0.1 https://github.com/fpco/stackage/pull/1254 - - tomland # https://github.com/kowainik/tomland/issues/141 - reanimate # https://github.com/Lemmih/reanimate/issues/23 # Assertion failures, these can be real bugs or just limitations @@ -6647,10 +6645,6 @@ skipped-benchmarks: - dlist-nonempty # criterion-1.3 - splitmix # criterion-1.3 - # Benchmark dependencies with multiple libraries per package - # See: https://github.com/fpco/stackage-curator/issues/68 - - tomland - # Due to cycles, which are actually just limitations in Stack right now. - criterion - foundation From 532c3f20289cb055dc09117ebc7fced3c3b49525 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sun, 13 Oct 2019 01:50:07 -0400 Subject: [PATCH 0814/2682] Remove upper bound on http-conduit --- build-constraints.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 48550e58..9226789b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5598,8 +5598,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4890 - ansi-terminal < 0.10.1 - # https://github.com/snoyberg/http-client/issues/415 - - http-conduit < 2.3.7.2 # end of packages # Package flags are applied to individual packages, and override the values of From 492e1d1d9adb1c61625a916e03ab88862e95965a Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sun, 13 Oct 2019 01:57:53 -0400 Subject: [PATCH 0815/2682] Removes http-client release notification --- build-constraints.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9226789b..ebe582bb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5703,6 +5703,10 @@ package-flags: hsdev: docs: false + + http-client: + # https://github.com/snoyberg/http-client/issues/415 + network3: true # end of package-flags # Special configure options for individual packages @@ -6790,7 +6794,6 @@ tell-me-when-its-released: - point-octree-0.5.5.3 # re-enable test and then we can resolve https://github.com/fpco/lts-haskell/issues/27 - yarr-1.4.0.2 # Re-enable package https://github.com/fpco/stackage/issues/1876 - exp-pairs-0.2.0.0 # remove from expected-test-failures, https://github.com/Bodigrim/exp-pairs/issues/16 -- http-conduit-2.3.7.2 # add network3 flag for expected-test-failures https://github.com/snoyberg/http-client/issues/415 # Packages which should be hidden after registering, to avoid module name # conflicts. This is intended for at least two use cases: From 291744d0f7b202caf4e71565915c33dfa003459f Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sun, 13 Oct 2019 02:01:33 -0400 Subject: [PATCH 0816/2682] Skips hw-int tests hw-int depends on hw-hspec-hedgehog, which is blocked by call-stack --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ebe582bb..49a3c450 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5912,6 +5912,7 @@ skipped-tests: - wide-word # via semirings - zlib # tasty-quickcheck, tasty-hunit, tasty - comfort-array # ChasingBottoms + - hw-int # via hw-hspec-hedgehog # Blocked due to tests failing to compile for GHC 8.6 - async-refresh From d3f8058dde592fa76d62b8d041ef5fff2966d1db Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sun, 13 Oct 2019 02:05:19 -0400 Subject: [PATCH 0817/2682] Remove network3 flag for http-conduit Looks like there isn't any such flag? --- build-constraints.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 49a3c450..fb531edc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5703,10 +5703,7 @@ package-flags: hsdev: docs: false - - http-client: - # https://github.com/snoyberg/http-client/issues/415 - network3: true + # end of package-flags # Special configure options for individual packages From 3ab9f9cadd4939d19f05a7518ee2a2ca643de6cc Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 13 Oct 2019 11:04:19 +0200 Subject: [PATCH 0818/2682] Update LTS minor instructions for curator-2 `CONSTRAINTS` is now deprecated --- CURATORS.md | 23 ++++++++--------------- 1 file changed, 8 insertions(+), 15 deletions(-) diff --git a/CURATORS.md b/CURATORS.md index 91ecfd3b..f67cf130 100644 --- a/CURATORS.md +++ b/CURATORS.md @@ -283,28 +283,21 @@ we're just not there yet. /opt/stackage-build/stackage/automated/run-nightly.sh # Run an LTS minor bump -/opt/stackage-build/stackage/automated/build.sh lts-2.17 +/opt/stackage-build/stackage/automated/build-next.sh lts-14.17 # Run an LTS major bump -/opt/stackage-build/stackage/automated/build.sh lts-3.0 +/opt/stackage-build/stackage/automated/build-next.sh lts-15.0 ``` Recommended: run these from inside a `tmux` session. If you get version bound problems on nightly or LTS major, you need to fix build-constraints.yaml (see -info above). For an LTS minor bump, you'll typically want to use the -`CONSTRAINTS` environment variable, e.g.: +info above). For an LTS minor bump, you'll typically want to: -``` -CONSTRAINTS='--constraint "conduit < 1.4.5" --constraint "criterion < 1.2.3"' /opt/stackage-build/stackage/automated/build.sh lts-2.17 -``` +* Add constraints to package `range:` fields in eg `work/lts14/constraints.yaml`. +* Add new packages versioned to eg `work/lts14/snapshot-incomplete.yaml` (the `@` suffix is optional) +* Test, benchmark, haddock failures can also be added to package fields in eg `work/lts14/constraints.yaml` if necessary, though it should be avoided if possible for LTS. -Valid arguments to include in this environment variable: - -* `--constraint` to modify an upper or lower bound -* `--add-package` to add a brand new package -* `--expect-test-failure` to expect tests to fail -* `--expect-haddock-failure` to expect haddocks to fail -* `--expect-bench-failure` to expect benchmarks to fail +This replaces `CONSTRAINTS=...' /opt/stackage-build/stackage/automated/build.sh lts-x.y` for the old curator-1. If a build fails for bounds reasons, see all of the advice above. If the code itself doesn't build, or tests fail, open up an issue and then either put in a @@ -320,7 +313,7 @@ if one needs to revert one package, say due to a build or test regression, one can edit `current-plan.yaml` and updated the SHA256 hash of the .cabal file, to avoid having to rebuild everything again.) -Note LTS builds inherit the current Hackage data (stack updated for Nigthly) to avoid excess extra rebuilding. +_Sadly no longer true currently_: ~~Note LTS builds inherit the current Hackage data (stack updated for Nigthly) to avoid excess extra rebuilding.~~ ### Timing From 8f2232342b61747bb9be8d15fc25542f8a622344 Mon Sep 17 00:00:00 2001 From: Pascal Hartig Date: Sun, 13 Oct 2019 10:09:59 +0100 Subject: [PATCH 0819/2682] Remove giphy-api constraint --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index fb531edc..645c17a3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2681,7 +2681,7 @@ packages: # - language-dockerfile # https://github.com/beijaflor-io/haskell-language-dockerfile/issues/11 "Pascal Hartig @passy": - - giphy-api < 0 # https://github.com/passy/giphy-api/issues/18 + - giphy-api - optparse-text "rightfold @rightfold": From 810eb047f95cd6b21bdcd90f5b93079392ec6a9b Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 13 Oct 2019 11:11:20 +0200 Subject: [PATCH 0820/2682] CURATORS: LTS minor subsection --- CURATORS.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/CURATORS.md b/CURATORS.md index f67cf130..5934dc80 100644 --- a/CURATORS.md +++ b/CURATORS.md @@ -291,7 +291,10 @@ we're just not there yet. Recommended: run these from inside a `tmux` session. If you get version bound problems on nightly or LTS major, you need to fix build-constraints.yaml (see -info above). For an LTS minor bump, you'll typically want to: +info above). + +### Building LTS minor releases +For an LTS minor bump, you'll typically want to: * Add constraints to package `range:` fields in eg `work/lts14/constraints.yaml`. * Add new packages versioned to eg `work/lts14/snapshot-incomplete.yaml` (the `@` suffix is optional) @@ -313,7 +316,7 @@ if one needs to revert one package, say due to a build or test regression, one can edit `current-plan.yaml` and updated the SHA256 hash of the .cabal file, to avoid having to rebuild everything again.) -_Sadly no longer true currently_: ~~Note LTS builds inherit the current Hackage data (stack updated for Nigthly) to avoid excess extra rebuilding.~~ +_Sadly no longer true currently_: ~~Note LTS builds inherit the current Hackage data (stack updated for Nightly) to avoid excess extra rebuilding.~~ ### Timing From f71240d0a95df8add46f8244032a525a9c99c225 Mon Sep 17 00:00:00 2001 From: Pi3r Date: Sun, 13 Oct 2019 22:40:13 +0200 Subject: [PATCH 0821/2682] Reenable Protolude --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index fb531edc..54bb0816 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4691,7 +4691,6 @@ packages: - proto-lens-protoc < 0 # via base-4.13.0.0 - proto-lens-runtime < 0 # via base-4.13.0.0 - proto-lens-setup < 0 # via base-4.13.0.0 - - protolude < 0 # via base-4.13.0.0 - raaz < 0 # via base-4.13.0.0 - ratel < 0 # via base-4.13.0.0 - ratel-wai < 0 # via base-4.13.0.0 From 287d77dc3ac06cc6fc878dcd840aa015dae871fd Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sun, 13 Oct 2019 17:29:40 -0400 Subject: [PATCH 0822/2682] Skips genvalidity-hspec-cereal/optics #4909 #4910 --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index fb531edc..65a352ac 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6096,6 +6096,8 @@ skipped-tests: - envelope # https://github.com/commercialhaskell/stackage/issues/4669 - algebraic-graphs # https://github.com/commercialhaskell/stackage/issues/4670 - bugsnag-haskell # https://github.com/commercialhaskell/stackage/issues/4759 + - genvalidity-hspec-cereal # https://github.com/commercialhaskell/stackage/issues/4909 + - genvalidity-hspec-optics # https://github.com/commercialhaskell/stackage/issues/4910 # end of skipped-tests # Tests listed in expected-test-failures configure correctly but may fail to run From 659559f2d92e588e018239a8f29b1419f0a24e07 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sun, 13 Oct 2019 20:05:00 -0400 Subject: [PATCH 0823/2682] Re-enables packages blocked by monoid-subclasses --- build-constraints.yaml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e097c527..4780d38b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5211,8 +5211,6 @@ packages: - fmt < 0 # via interpolate - generics-eot < 0 # via interpolate - mwc-probability-transition < 0 # via logging-effect - - incremental-parser < 0 # via monoid-subclasses - - timerep < 0 # via monoid-subclasses - hschema < 0 # via natural-transformation - hschema-prettyprinter < 0 # via natural-transformation - asciidiagram < 0 # via pandoc-types @@ -6340,9 +6338,6 @@ expected-test-failures: # https://github.com/alphaHeavy/lzma-conduit/issues/19 - lzma-conduit - # https://github.com/blamario/monoid-subclasses/issues/18 - - monoid-subclasses - # https://github.com/Bodigrim/exp-pairs/issues/16 - exp-pairs From b02e706ab8593adf024d9c3ded3db6f09363be4d Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sun, 13 Oct 2019 23:15:02 -0400 Subject: [PATCH 0824/2682] Remove all Stackage upper bounds packages --- build-constraints.yaml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3e3a0bfd..ac60436b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5581,13 +5581,7 @@ packages: # Need to always match the version shipped with GHC - Win32 == 2.6.1.0 - "Stackage upper bounds": - # https://github.com/commercialhaskell/stackage/issues/4877 - - fast-logger < 3.0.0 - - wai-logger < 2.3.6 - - # https://github.com/commercialhaskell/stackage/issues/4890 - - ansi-terminal < 0.10.1 + "Stackage upper bounds": [] # end of packages From fed72c8cdc7dea5351927c4f1b157d9a4ebe6173 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sun, 13 Oct 2019 23:20:05 -0400 Subject: [PATCH 0825/2682] Lifts restriction on hjsmin (#4903) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ac60436b..14163ff6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -667,7 +667,7 @@ packages: "Alan Zimmerman @alanz": - ghc-exactprint - haskell-lsp - - hjsmin < 0 # restrictive upper bounds for language-javascript #4903 + - hjsmin - language-javascript - Strafunski-StrategyLib From 573ed40299d9883866a3dbf1fd5f0920d1fe57ae Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Mon, 14 Oct 2019 19:17:18 -0400 Subject: [PATCH 0826/2682] Unblocks http-conduit tests --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 14163ff6..926a3055 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6261,7 +6261,6 @@ expected-test-failures: - haskell-tools-builtin-refactorings - hoopl # https://github.com/haskell/hoopl/issues/50 - hspec-expectations-pretty-diff # GHC 8 issue not reported upstream since issue tracker disabled - - http-conduit # https://github.com/snoyberg/http-client/issues/415 - hweblib # https://github.com/aycanirican/hweblib/issues/3 - libraft # https://github.com/commercialhaskell/stackage/issues/4337#issuecomment-462465921 - multiset # doctests require Glob, a hidden package From 35d84aa665ba663d1c09479716351835d3f7316c Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Mon, 14 Oct 2019 19:26:38 -0400 Subject: [PATCH 0827/2682] Adds hjsmin to expected test failures hjsmin expects a 'dist-newstyle' directory (typically made by cabal-install) Therefore, it will always fail when testing with stack --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 926a3055..4599d310 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6359,6 +6359,9 @@ expected-test-failures: # https://github.com/alanz/ghc-exactprint/issues/82 - ghc-exactprint + + # Test-runner expects a cabal-style 'dist-newstyle' directory + - hjsmin # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 22c7397341850cd47cdbfad728aad2c79e44a140 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 15 Oct 2019 09:17:19 +0200 Subject: [PATCH 0828/2682] CURATORS: running minor ltd builds --- CURATORS.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/CURATORS.md b/CURATORS.md index 5934dc80..2aa69d73 100644 --- a/CURATORS.md +++ b/CURATORS.md @@ -294,11 +294,15 @@ problems on nightly or LTS major, you need to fix build-constraints.yaml (see info above). ### Building LTS minor releases +First run `build-next.sh` to regenerate updated `work/ltsXX/constraints.yaml` and `work/ltsXX/snapshot-incomplete.yaml` files. + For an LTS minor bump, you'll typically want to: -* Add constraints to package `range:` fields in eg `work/lts14/constraints.yaml`. -* Add new packages versioned to eg `work/lts14/snapshot-incomplete.yaml` (the `@` suffix is optional) -* Test, benchmark, haddock failures can also be added to package fields in eg `work/lts14/constraints.yaml` if necessary, though it should be avoided if possible for LTS. +* Add constraints to package `range:` fields in that `constraints.yaml`. +* Add new packages versioned to `snapshot-incomplete.yaml` (the `@` suffix is optional) +* Test, benchmark, haddock failures can also be added to package fields in the `constraints.yaml` if necessary, though it should be avoided if possible for LTS. + +Then run `NOPLAN=1 build-next.sh` to build the generate an updated snapshot. This replaces `CONSTRAINTS=...' /opt/stackage-build/stackage/automated/build.sh lts-x.y` for the old curator-1. From 1748859b35da5d7fc9a39a27e100f6ff0c93bd10 Mon Sep 17 00:00:00 2001 From: Dmitrii Kovanikov Date: Tue, 15 Oct 2019 18:02:57 +0300 Subject: [PATCH 0829/2682] Reenable type-errors-pretty --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4599d310..bf67b00c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4726,7 +4726,6 @@ packages: - threepenny-gui < 0 # via base-4.13.0.0 - timer-wheel < 0 # via base-4.13.0.0 - token-bucket < 0 # via base-4.13.0.0 - - type-errors-pretty < 0 # via base-4.13.0.0 - ucam-webauth < 0 # via base-4.13.0.0 - ucam-webauth-types < 0 # via base-4.13.0.0 - unagi-chan < 0 # via base-4.13.0.0 From 56b4b8893494c47165cf57770dc0d452b5b350b4 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Thu, 17 Oct 2019 19:51:04 -0400 Subject: [PATCH 0830/2682] Restricts upper bounds (#4918 #4919 --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index bf67b00c..28194eba 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -44,7 +44,7 @@ packages: - primitive-offset - primitive-unlifted - run-st - - small-bytearray-builder + - small-bytearray-builder < 0.3.0.0 # #4919 "Robert Vollmert @robx": - configurator-pg @@ -3824,8 +3824,8 @@ packages: "Matthew Farkas-Dyck @strake": - Fin - - alg - - category + - alg < 0.2.12.0 # depends on dual #4918 + - category < 0.2.4.2 # depends on dual #4918 - constraint - either-both - filtrable From 907f54721a8ccaac035fa90bf1af42d3988fb14d Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Thu, 17 Oct 2019 19:52:53 -0400 Subject: [PATCH 0831/2682] Unblocks dbus (#4917) --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 28194eba..adf7fe1a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4615,7 +4615,6 @@ packages: - country < 0 # via base-4.13.0.0 - css-syntax < 0 # via base-4.13.0.0 - cyclotomic < 0 # via base-4.13.0.0 - - dbus < 0 # via base-4.13.0.0 - derulo < 0 # via base-4.13.0.0 - diagrams-contrib < 0 # via base-4.13.0.0 - diagrams-core < 0 # via base-4.13.0.0 From 1038dd79160c89681ec6942b0ac9087b01ab8948 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Thu, 17 Oct 2019 19:54:03 -0400 Subject: [PATCH 0832/2682] Unblocks credential-store (blocked by dbus) --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index adf7fe1a..0cbcca61 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4924,7 +4924,6 @@ packages: - debian < 0 # via bzlib - chronos-bench < 0 # via chronos - qnap-decrypt < 0 # via cipher-aes128 - - credential-store < 0 # via dbus - functor-combinators < 0 # via dependent-sum - prim-uniq < 0 # via dependent-sum - typelits-witnesses < 0 # via dependent-sum From f1a7ac790b866306183b21191a177b5ceeaba902 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Thu, 17 Oct 2019 20:04:47 -0400 Subject: [PATCH 0833/2682] Unblocks dbus benchmarks --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0cbcca61..75db6e87 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6482,7 +6482,6 @@ skipped-benchmarks: - data-diverse - data-has - data-msgpack - - dbus - discrimination - do-list - edit-distance From 80a639e3961ac22cc977eccc00167a26dd260105 Mon Sep 17 00:00:00 2001 From: M Farkas-Dyck Date: Thu, 17 Oct 2019 16:38:43 -0800 Subject: [PATCH 0834/2682] add dual --- build-constraints.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 75db6e87..2c2ffac1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3824,9 +3824,10 @@ packages: "Matthew Farkas-Dyck @strake": - Fin - - alg < 0.2.12.0 # depends on dual #4918 - - category < 0.2.4.2 # depends on dual #4918 + - alg + - category - constraint + - dual - either-both - filtrable - foldable1 From b302504b91dbe7f7694cb10e5163481bea1c2ea4 Mon Sep 17 00:00:00 2001 From: Daniel Mendler Date: Fri, 18 Oct 2019 09:14:54 +0200 Subject: [PATCH 0835/2682] reenable paripari --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 75db6e87..5b799393 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4833,7 +4833,6 @@ packages: - diagrams-svg < 0 # via optparse-applicative-0.15.1.0 - proto-lens-optparse < 0 # via optparse-applicative-0.15.1.0 - wai-middleware-crowd < 0 # via optparse-applicative-0.15.1.0 - - paripari < 0 # via parser-combinators-1.2.0 - hapistrano < 0 # via path-io-1.5.0 - graphviz < 0 # via polyparse-1.13 - core-data < 0 # via prettyprinter-1.3.0 From d26181d4ecd5e25629b44bbf576c37b4916acea1 Mon Sep 17 00:00:00 2001 From: Guillaume Bouchard Date: Sat, 19 Oct 2019 15:47:29 +0200 Subject: [PATCH 0836/2682] PyF: add it back on nightly --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4f5476d2..fb8e46d7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4849,7 +4849,6 @@ packages: - selda-postgresql < 0 # via selda-0.5.0.0 - selda-sqlite < 0 # via selda-0.5.0.0 - universe-dependent-sum < 0 # via some - - PyF < 0 # via template-haskell-2.15.0.0 - data-accessor-template < 0 # via template-haskell-2.15.0.0 - interpolatedstring-qq2 < 0 # via template-haskell-2.15.0.0 - quickcheck-arbitrary-template < 0 # via template-haskell-2.15.0.0 From ceee077e8ef59bc589924e0b0db4b9167eeca7df Mon Sep 17 00:00:00 2001 From: Pavel Krajcevski Date: Sun, 20 Oct 2019 00:31:11 -0700 Subject: [PATCH 0837/2682] Re-enable GLFW-b after bsl/GLFW-b#87 and subsequent upload to Hackage --- build-constraints.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4f5476d2..70ae609f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4745,7 +4745,6 @@ packages: - hledger-ui < 0 # via base-compat-batteries-0.11.0 - hoauth2 < 0 # via binary-0.8.7.0 - hyraxAbif < 0 # via binary-0.8.7.0 - - GLFW-b < 0 # via bindings-GLFW-3.3.0.0 - hyraxAbif < 0 # via bytestring-0.10.9.0 - hw-hspec-hedgehog < 0 # via call-stack-0.2.0 - dhall < 0 # via cborg-json @@ -4896,7 +4895,6 @@ packages: - servant-auth-client < 0 # via warp-3.3.2 # round 2 - - netwire-input-glfw < 0 # via GLFW-b - HDBC-mysql < 0 # via HDBC - HDBC-session < 0 # via HDBC - persistable-types-HDBC-pg < 0 # via HDBC From f672305b05665f12998a3e8b9d95adab3ab722ac Mon Sep 17 00:00:00 2001 From: Emily Pillmore Date: Sun, 20 Oct 2019 14:36:39 -0400 Subject: [PATCH 0838/2682] add non-empty vector --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4f5476d2..8d13f42a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -30,6 +30,7 @@ packages: "Emily Pillmore @topos": - lens-process - microlens-process + - nonempty-vector "Matthieu Monsch @mtth": - flags-applicative @@ -6356,7 +6357,7 @@ expected-test-failures: # https://github.com/alanz/ghc-exactprint/issues/82 - ghc-exactprint - + # Test-runner expects a cabal-style 'dist-newstyle' directory - hjsmin # end of expected-test-failures From fd3bb277ef8cfc590df5a488cc16badbf2a28b50 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sun, 20 Oct 2019 17:42:23 -0400 Subject: [PATCH 0839/2682] Drops nonempty-vector from nightly (#4927) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 48df6435..1916090f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -30,7 +30,7 @@ packages: "Emily Pillmore @topos": - lens-process - microlens-process - - nonempty-vector + - nonempty-vector < 0 # #4927 "Matthieu Monsch @mtth": - flags-applicative From 7d395e627df7577c6b6ec522874e1a80b67658eb Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sun, 20 Oct 2019 17:52:05 -0400 Subject: [PATCH 0840/2682] Re-adds nonempty-vector to nightly --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1916090f..48df6435 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -30,7 +30,7 @@ packages: "Emily Pillmore @topos": - lens-process - microlens-process - - nonempty-vector < 0 # #4927 + - nonempty-vector "Matthieu Monsch @mtth": - flags-applicative From 28169e3d0c62ad4c616bd745c3be05aaa846a1f1 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Mon, 21 Oct 2019 21:52:15 -0700 Subject: [PATCH 0841/2682] Blocks for #4931 and #4932 --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 48df6435..38868080 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2640,7 +2640,7 @@ packages: "David Luposchainsky @quchen": - pgp-wordlist - show-prettyprint - - prettyprinter + - prettyprinter < 1.4 # https://github.com/commercialhaskell/stackage/issues/4932 - prettyprinter-ansi-terminal - prettyprinter-compat-wl-pprint - prettyprinter-compat-ansi-wl-pprint @@ -4216,7 +4216,7 @@ packages: - ieee754 - indexed - infer-license - - insert-ordered-containers + - insert-ordered-containers < 0.2.3 # https://github.com/commercialhaskell/stackage/issues/4931 - inspection-testing - integer-logarithms - io-streams-haproxy From 23d9b911f2b29dce3f8dcbd84b88cf2420e5077b Mon Sep 17 00:00:00 2001 From: mrkkrp Date: Wed, 23 Oct 2019 00:09:06 +0200 Subject: [PATCH 0842/2682] Enable req packages MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ‘req’ and ‘req-conduit’ now compile with GHC 8.8.1. --- build-constraints.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 38868080..8e9e53ca 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4873,7 +4873,6 @@ packages: - hsexif < 0 # via time-1.9.3 - pinboard < 0 # via time-1.9.3 - postgresql-simple-migration < 0 # via time-1.9.3 - - req < 0 # via time-1.9.3 - rhine < 0 # via time-1.9.3 - safe-json < 0 # via time-1.9.3 - servant-auth-client < 0 # via time-1.9.3 @@ -5043,7 +5042,6 @@ packages: - yi-language < 0 # via regex-base-0.94.0.0 - datasets < 0 # via req - elm2nix < 0 # via req - - req-conduit < 0 # via req - filter-logger < 0 # via scotty - line < 0 # via scotty - pg-harness-server < 0 # via scotty @@ -5539,7 +5537,6 @@ packages: - data-textual < 0 # MonadFail - data-serializer < 0 # MonadFail - crypto-pubkey-openssh < 0 # MonadFail - - RSA < 0 # MonadFail # https://github.com/alevy/simple/issues/23 - simple < 0 - simple-session < 0 @@ -5552,7 +5549,6 @@ packages: - mmtf < 0 # via data-msgpack - gym-http-api < 0 # via servant servant-client - xmlbf-xeno < 0 # via xmlbf - - authenticate-oauth < 0 # via RSA - http-directory < 0 # via html-conduit - xml-html-qq < 0 # via html-conduit - scalpel < 0 # via scalpel-core From 4c9845ff168e37c67098763538f663473a8be016 Mon Sep 17 00:00:00 2001 From: Bodigrim Date: Tue, 22 Oct 2019 20:05:39 +0100 Subject: [PATCH 0843/2682] Re-enable ChasingBottoms --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8e9e53ca..f8c2be5a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4008,7 +4008,6 @@ packages: "Grandfathered dependencies": - network - Boolean - - ChasingBottoms < 0 # due to QuickCheck, https://github.com/commercialhaskell/stackage/issues/4444 - Decimal - Diff - FloatingHex From 39feab708cf1b239343a90e8261989b42dffa1ab Mon Sep 17 00:00:00 2001 From: Callan McGill Date: Mon, 21 Oct 2019 11:27:02 -0400 Subject: [PATCH 0844/2682] Add `perfect-vector-shuffle` --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f8c2be5a..f121ebed 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -9,6 +9,9 @@ cabal-format-version: "2.4" # Constraints for brand new builds packages: + "Callan McGill @callanmcgill": + - perfect-vector-shuffle + "Luke Clifton @luke-clifton": - generic-monoid From e62bc7c78296d4176814ae40ecb3faccd845d36a Mon Sep 17 00:00:00 2001 From: Oleg Grenrus Date: Mon, 21 Oct 2019 22:22:32 +0300 Subject: [PATCH 0845/2682] Add optics packages --- build-constraints.yaml | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f121ebed..3892822d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1426,6 +1426,14 @@ packages: - servant-swagger-ui - servant-swagger-ui-core + "Optics ": + - indexed-profunctors + - optics + - optics-core + - optics-extra + - optics-th + - optics-vl + "Alexandr Ruchkin @mvoidex": - hformat - simple-log @@ -4031,6 +4039,7 @@ packages: - RSA - aeson-compat - aeson-extra + - aeson-optics - alsa-mixer - ansi-terminal - appar @@ -4218,7 +4227,7 @@ packages: - ieee754 - indexed - infer-license - - insert-ordered-containers < 0.2.3 # https://github.com/commercialhaskell/stackage/issues/4931 + - insert-ordered-containers - inspection-testing - integer-logarithms - io-streams-haproxy @@ -4335,6 +4344,8 @@ packages: - servant-swagger-ui-redoc - servant-yaml - semialign + - semialign-indexed + - semialign-optics - setenv - shakespeare - shell-escape @@ -4397,6 +4408,8 @@ packages: - th-lift-instances - th-utilities - these + - these-lens + - these-optics - threads - thyme - time-locale-compat @@ -5223,7 +5236,6 @@ packages: - bv-little < 0 # via text-show - nonempty-containers < 0 # via these - pipes-fluid < 0 # via these - - semialign < 0 # via these - quickcheck-state-machine < 0 # via tree-diff - users-postgresql-simple < 0 # via users - users-test < 0 # via users From 4e24d8045f61bf298e47fba7454977690d5ca8f3 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Mon, 14 Oct 2019 19:20:08 -0400 Subject: [PATCH 0846/2682] Re-adds http-client-openssl --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3892822d..2158a368 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3484,6 +3484,7 @@ packages: "Alex Biehl @alexbiehl": - haddock-library + - http-client-openssl "Mark Hopkins @mjhopkins": [] From 347b143b9e040de7239c457faf1af0312ee67cd7 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 22 Oct 2019 18:31:38 -0700 Subject: [PATCH 0847/2682] Try prettyprinter --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2158a368..cdc681c7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2651,7 +2651,7 @@ packages: "David Luposchainsky @quchen": - pgp-wordlist - show-prettyprint - - prettyprinter < 1.4 # https://github.com/commercialhaskell/stackage/issues/4932 + - prettyprinter # 1.4 # https://github.com/commercialhaskell/stackage/issues/4932 - prettyprinter-ansi-terminal - prettyprinter-compat-wl-pprint - prettyprinter-compat-ansi-wl-pprint From d4d38ad4ff0884ad66aabb699be105bfedc09df7 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 22 Oct 2019 18:39:14 -0700 Subject: [PATCH 0848/2682] Fix #4932 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index cdc681c7..aadc8901 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2651,7 +2651,7 @@ packages: "David Luposchainsky @quchen": - pgp-wordlist - show-prettyprint - - prettyprinter # 1.4 # https://github.com/commercialhaskell/stackage/issues/4932 + - prettyprinter - prettyprinter-ansi-terminal - prettyprinter-compat-wl-pprint - prettyprinter-compat-ansi-wl-pprint From 48e00c6bc0668c4df64cf87f41f502c1d88d9dd9 Mon Sep 17 00:00:00 2001 From: Ryan Scott Date: Wed, 23 Oct 2019 13:47:54 -0400 Subject: [PATCH 0849/2682] Add constraint-tuples --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index aadc8901..5643dd9a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2207,6 +2207,7 @@ packages: - base-orphans - chaselev-deque - code-page + - constraint-tuples - criterion - criterion-measurement - data-reify From d0f6f04a9323de66618d763102bdf7870e697f5f Mon Sep 17 00:00:00 2001 From: Troels Henriksen Date: Wed, 23 Oct 2019 12:35:57 +0200 Subject: [PATCH 0850/2682] Re-enable mainland-pretty, exception-transformers, exception-mtl, language-c-quote. --- build-constraints.yaml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5643dd9a..6f6f7d3e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5441,12 +5441,10 @@ packages: - frisby < 0 - shortcut-links < 0 - HCodecs < 0 - - mainland-pretty < 0 - streamproc < 0 - multipart < 0 - structured-cli < 0 - flexible-defaults < 0 - - exception-transformers < 0 - exceptional < 0 - true-name < 0 - probability < 0 @@ -5503,10 +5501,7 @@ packages: - cusparse < 0 # via cuda - nvvm < 0 # via cuda - data-msgpack < 0 # via data-msgpack-types - - exception-mtl < 0 # via exception-transformers - - language-c-quote < 0 # via exception-transformers - hsass < 0 # via hlibsass - - language-c-quote < 0 # via mainland-pretty - cgi < 0 # via multipart - pcf-font-embed < 0 # via pcf-font - vivid-supercollider < 0 # via vivid-osc From 9e1c636834a561da6deca5a6ab3ae4e70d7ec377 Mon Sep 17 00:00:00 2001 From: Justin Le Date: Wed, 23 Oct 2019 15:36:59 -0700 Subject: [PATCH 0851/2682] add @mstksg packages back to stackage --- build-constraints.yaml | 19 ++----------------- 1 file changed, 2 insertions(+), 17 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6f6f7d3e..60a38507 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2009,7 +2009,8 @@ packages: - hamilton - hmatrix-backprop - hmatrix-vector-sized - - lens-typelevel + # GHC 8.8 via ghc-typelits-presburger (konn/equational-reasoning-in-haskell#4) + # - lens-typelevel - list-witnesses - nonempty-containers - one-liner-instances @@ -4768,7 +4769,6 @@ packages: - dhall < 0 # via cborg-json - sized-grid < 0 # via constraints-0.11.2 - dependent-map < 0 # via constraints-extras - - dependent-sum < 0 # via constraints-extras - dependent-sum-template < 0 # via constraints-extras - MissingH < 0 # via containers-0.6.2.1 - servant-kotlin < 0 # via containers-0.6.2.1 @@ -4938,9 +4938,7 @@ packages: - debian < 0 # via bzlib - chronos-bench < 0 # via chronos - qnap-decrypt < 0 # via cipher-aes128 - - functor-combinators < 0 # via dependent-sum - prim-uniq < 0 # via dependent-sum - - typelits-witnesses < 0 # via dependent-sum - dhall-bash < 0 # via dhall - dhall-json < 0 # via dhall - hpack-dhall < 0 # via dhall @@ -5069,7 +5067,6 @@ packages: - avers-server < 0 # via servant-server - servant-auth-wordpress < 0 # via servant-server - servant-checked-exceptions < 0 # via servant-server - - servant-cli < 0 # via servant-server - servant-rawm < 0 # via servant-server - servant-static-th < 0 # via servant-server - servant-tracing < 0 # via servant-server @@ -5097,7 +5094,6 @@ packages: - polysemy < 0 # via unagi-chan - require < 0 # via universum - tintin < 0 # via universum - - hamilton < 0 # via vty - hledger-iadd < 0 # via vty - servant-rawm < 0 # via wai-app-static - servius < 0 # via wai-app-static @@ -5183,7 +5179,6 @@ packages: - state-codes < 0 # via shakespeare - xml-hamlet < 0 # via shakespeare - show-prettyprint < 0 # via trifecta - - emd < 0 # via typelits-witnesses - stripe-wreq < 0 # via wreq - yeshql < 0 # via yeshql-hdbc @@ -5236,14 +5231,12 @@ packages: - pcre-heavy < 0 # via string-conversions - secp256k1-haskell < 0 # via string-conversions - bv-little < 0 # via text-show - - nonempty-containers < 0 # via these - pipes-fluid < 0 # via these - quickcheck-state-machine < 0 # via tree-diff - users-postgresql-simple < 0 # via users - users-test < 0 # via users # round 5 - - hmatrix-backprop < 0 # via backprop - executable-hash < 0 # via cryptohash - locators < 0 # via cryptohash - columnar < 0 # via fmt @@ -5418,9 +5411,6 @@ packages: - bugsnag-haskell < 0 # via yesod-core - conduit-throttle < 0 # via test-framework - conduit-throttle < 0 # via test-framework-hunit - - decidable < 0 # via vinyl - - functor-products < 0 # via vinyl - - list-witnesses < 0 # via vinyl - lsp-test < 0 # via conduit-parse - groundhog-inspector < 0 # via groundhog - groundhog-inspector < 0 # via groundhog-sqlite @@ -5462,9 +5452,6 @@ packages: - yeshql-core < 0 - pcf-font < 0 - # Kind stuff - - vinyl < 0 - # Template Haskell stuff - data-dword < 0 - hlibsass < 0 @@ -5511,7 +5498,6 @@ packages: # More build failure transitive deps - random-source < 0 # via flexible-defaults - - backprop < 0 # via vinyl - network-ip < 0 # via data-dword # Some more failures @@ -5537,7 +5523,6 @@ packages: - systemd < 0 # socketToFd is ambiguous - cassava-records < 0 # MonadFail - haskell-spacegoo < 0 # MonadFail - - lens-typelevel < 0 # Wrong category of family instance (wat) - wai-predicates < 0 # MonadFail - sbv < 0 # MonadFail - crypto-pubkey-openssh < 0 # MonadFail From 80b537e9338089e4d69c17ab45efdbe2ac4e5580 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 23 Oct 2019 18:25:37 -0700 Subject: [PATCH 0852/2682] Revert "add @mstksg packages back to stackage" This reverts commit 9e1c636834a561da6deca5a6ab3ae4e70d7ec377. --- build-constraints.yaml | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 60a38507..6f6f7d3e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2009,8 +2009,7 @@ packages: - hamilton - hmatrix-backprop - hmatrix-vector-sized - # GHC 8.8 via ghc-typelits-presburger (konn/equational-reasoning-in-haskell#4) - # - lens-typelevel + - lens-typelevel - list-witnesses - nonempty-containers - one-liner-instances @@ -4769,6 +4768,7 @@ packages: - dhall < 0 # via cborg-json - sized-grid < 0 # via constraints-0.11.2 - dependent-map < 0 # via constraints-extras + - dependent-sum < 0 # via constraints-extras - dependent-sum-template < 0 # via constraints-extras - MissingH < 0 # via containers-0.6.2.1 - servant-kotlin < 0 # via containers-0.6.2.1 @@ -4938,7 +4938,9 @@ packages: - debian < 0 # via bzlib - chronos-bench < 0 # via chronos - qnap-decrypt < 0 # via cipher-aes128 + - functor-combinators < 0 # via dependent-sum - prim-uniq < 0 # via dependent-sum + - typelits-witnesses < 0 # via dependent-sum - dhall-bash < 0 # via dhall - dhall-json < 0 # via dhall - hpack-dhall < 0 # via dhall @@ -5067,6 +5069,7 @@ packages: - avers-server < 0 # via servant-server - servant-auth-wordpress < 0 # via servant-server - servant-checked-exceptions < 0 # via servant-server + - servant-cli < 0 # via servant-server - servant-rawm < 0 # via servant-server - servant-static-th < 0 # via servant-server - servant-tracing < 0 # via servant-server @@ -5094,6 +5097,7 @@ packages: - polysemy < 0 # via unagi-chan - require < 0 # via universum - tintin < 0 # via universum + - hamilton < 0 # via vty - hledger-iadd < 0 # via vty - servant-rawm < 0 # via wai-app-static - servius < 0 # via wai-app-static @@ -5179,6 +5183,7 @@ packages: - state-codes < 0 # via shakespeare - xml-hamlet < 0 # via shakespeare - show-prettyprint < 0 # via trifecta + - emd < 0 # via typelits-witnesses - stripe-wreq < 0 # via wreq - yeshql < 0 # via yeshql-hdbc @@ -5231,12 +5236,14 @@ packages: - pcre-heavy < 0 # via string-conversions - secp256k1-haskell < 0 # via string-conversions - bv-little < 0 # via text-show + - nonempty-containers < 0 # via these - pipes-fluid < 0 # via these - quickcheck-state-machine < 0 # via tree-diff - users-postgresql-simple < 0 # via users - users-test < 0 # via users # round 5 + - hmatrix-backprop < 0 # via backprop - executable-hash < 0 # via cryptohash - locators < 0 # via cryptohash - columnar < 0 # via fmt @@ -5411,6 +5418,9 @@ packages: - bugsnag-haskell < 0 # via yesod-core - conduit-throttle < 0 # via test-framework - conduit-throttle < 0 # via test-framework-hunit + - decidable < 0 # via vinyl + - functor-products < 0 # via vinyl + - list-witnesses < 0 # via vinyl - lsp-test < 0 # via conduit-parse - groundhog-inspector < 0 # via groundhog - groundhog-inspector < 0 # via groundhog-sqlite @@ -5452,6 +5462,9 @@ packages: - yeshql-core < 0 - pcf-font < 0 + # Kind stuff + - vinyl < 0 + # Template Haskell stuff - data-dword < 0 - hlibsass < 0 @@ -5498,6 +5511,7 @@ packages: # More build failure transitive deps - random-source < 0 # via flexible-defaults + - backprop < 0 # via vinyl - network-ip < 0 # via data-dword # Some more failures @@ -5523,6 +5537,7 @@ packages: - systemd < 0 # socketToFd is ambiguous - cassava-records < 0 # MonadFail - haskell-spacegoo < 0 # MonadFail + - lens-typelevel < 0 # Wrong category of family instance (wat) - wai-predicates < 0 # MonadFail - sbv < 0 # MonadFail - crypto-pubkey-openssh < 0 # MonadFail From 84ed57f1d0d8bd73bf330135d4d44871b6994f96 Mon Sep 17 00:00:00 2001 From: Bodigrim Date: Thu, 24 Oct 2019 19:16:06 +0100 Subject: [PATCH 0853/2682] Add data-interval --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6f6f7d3e..8e0b270d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3058,6 +3058,7 @@ packages: - poly - extended-reals - ChasingBottoms + - data-interval "Ashley Yakeley @AshleyYakeley": - countable From d57d0c1cfc66790d25076f2688982b966d835f08 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 24 Oct 2019 18:25:45 -0700 Subject: [PATCH 0854/2682] Partially apply #4938 --- build-constraints.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8e0b270d..9205120a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2009,7 +2009,7 @@ packages: - hamilton - hmatrix-backprop - hmatrix-vector-sized - - lens-typelevel + - lens-typelevel < 0 # GHC 8.8 via ghc-typelits-presburger (konn/equational-reasoning-in-haskell#4) - list-witnesses - nonempty-containers - one-liner-instances @@ -5237,7 +5237,6 @@ packages: - pcre-heavy < 0 # via string-conversions - secp256k1-haskell < 0 # via string-conversions - bv-little < 0 # via text-show - - nonempty-containers < 0 # via these - pipes-fluid < 0 # via these - quickcheck-state-machine < 0 # via tree-diff - users-postgresql-simple < 0 # via users @@ -5538,7 +5537,6 @@ packages: - systemd < 0 # socketToFd is ambiguous - cassava-records < 0 # MonadFail - haskell-spacegoo < 0 # MonadFail - - lens-typelevel < 0 # Wrong category of family instance (wat) - wai-predicates < 0 # MonadFail - sbv < 0 # MonadFail - crypto-pubkey-openssh < 0 # MonadFail From 58cad0a6aab2da3f2c75114a4ee4157bcf418808 Mon Sep 17 00:00:00 2001 From: Stephen Diehl Date: Fri, 25 Oct 2019 08:56:09 +0100 Subject: [PATCH 0855/2682] Fix pairing and add elliptic-curve --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9205120a..ca2b72e9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2934,8 +2934,9 @@ packages: - pedersen-commitment - merkle-tree - oblivious-transfer - - pairing < 0 # #4758 + - pairing - libraft + - elliptic-curve - galois-field "Daishi Nakajima @nakaji-dayo": From 112b59921f9eb5c25c53d0ebc08eb7dddb4428e9 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 25 Oct 2019 18:40:42 -0700 Subject: [PATCH 0856/2682] Revert "Fix pairing and add elliptic-curve" This reverts commit 58cad0a6aab2da3f2c75114a4ee4157bcf418808. --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ca2b72e9..9205120a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2934,9 +2934,8 @@ packages: - pedersen-commitment - merkle-tree - oblivious-transfer - - pairing + - pairing < 0 # #4758 - libraft - - elliptic-curve - galois-field "Daishi Nakajima @nakaji-dayo": From d52528524441b84fe72f94b982f1bce04cddbbe8 Mon Sep 17 00:00:00 2001 From: Yoshikuni Jujo Date: Thu, 24 Oct 2019 09:56:41 +0900 Subject: [PATCH 0857/2682] Reenable papillon --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9205120a..36ef676c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2864,7 +2864,7 @@ packages: - Imlib - xturtle < 0 # GHC 8.4 via yjsvg - gluturtle < 0 # build failure with GHC 8.4 - - papillon < 0 + - papillon - exception-hierarchy < 0 - simplest-sqlite < 0 - warp-tls-uid From 94ec8ff861cb339b7626668f9a1b9fea23006fc3 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 26 Oct 2019 12:33:21 -0700 Subject: [PATCH 0858/2682] Format in README.md --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e68ec5ce..eb614d50 100644 --- a/README.md +++ b/README.md @@ -126,4 +126,11 @@ trying to push out the bounds a bit farther. __What time are Stackage snapshots published?__ -Stackage Nightly and LTS are not released at a fixed time of day, they get pushed to stackage.org (and the metadata to the stackage-nightly and stackage-lts github repos) when their builds finish on the Stackage build server and the latest built haddocks have been synced over. This time varies greatly depending on build times for package updates, bounds breakage, problems with new packages being added and other build issues, etc. There are days when a release does not happen. LTS releases tend to happen over the weekend or early in the week. +Stackage Nightly and LTS are not released at a fixed time of day, they get +pushed to stackage.org (and the metadata to the stackage-nightly and +stackage-lts github repos) when their builds finish on the Stackage build +server and the latest built haddocks have been synced over. This time varies +greatly depending on build times for package updates, bounds breakage, +problems with new packages being added and other build issues, etc. There are +days when a release does not happen. LTS releases tend to happen over the +weekend or early in the week. From 71e088c898557ee004a11dd0cf4f58eac4211e78 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 26 Oct 2019 12:33:59 -0700 Subject: [PATCH 0859/2682] Add documentation for where to ask for help. Close #3343 --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index eb614d50..9fb27333 100644 --- a/README.md +++ b/README.md @@ -134,3 +134,8 @@ greatly depending on build times for package updates, bounds breakage, problems with new packages being added and other build issues, etc. There are days when a release does not happen. LTS releases tend to happen over the weekend or early in the week. + +__Where to get help regarding uploading packages?__ + +Please ask on [Gitter](https://gitter.im/commercialhaskell/stackage) or open +an issue or comment on the PR which uploads the package. From 4ba5b8579f95849a17d88905a8a12c3711017ca7 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 26 Oct 2019 12:37:49 -0700 Subject: [PATCH 0860/2682] Test record-dot-preprocessor --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 36ef676c..96e142c1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6281,7 +6281,7 @@ expected-test-failures: - yeshql-core # https://github.com/tdammers/yeshql/issues/6 - yeshql-hdbc # https://github.com/tdammers/yeshql/issues/6 - yesod-gitrev # https://github.com/DanBurton/yesod-gitrev/issues/5 - - record-dot-preprocessor # https://github.com/commercialhaskell/stackage/issues/4449 + # record-dot-preprocessor # https://github.com/commercialhaskell/stackage/issues/4449 # Recursive deps https://github.com/fpco/stackage/issues/1818 - options From 8c428995ed43e9a3a738d0c8e586a65dd071fd72 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 26 Oct 2019 12:41:33 -0700 Subject: [PATCH 0861/2682] Close #4449 --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 96e142c1..45aa7081 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6281,7 +6281,6 @@ expected-test-failures: - yeshql-core # https://github.com/tdammers/yeshql/issues/6 - yeshql-hdbc # https://github.com/tdammers/yeshql/issues/6 - yesod-gitrev # https://github.com/DanBurton/yesod-gitrev/issues/5 - # record-dot-preprocessor # https://github.com/commercialhaskell/stackage/issues/4449 # Recursive deps https://github.com/fpco/stackage/issues/1818 - options From 740111c3af16f132deecd5e05ae46ac82af95791 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 26 Oct 2019 12:51:30 -0700 Subject: [PATCH 0862/2682] Try elm-street --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 45aa7081..2cc6d56a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6403,7 +6403,7 @@ expected-haddock-failures: # "Compilation" errors - MemoTrie # https://github.com/conal/MemoTrie/issues/10 - classy-prelude-yesod - - elm-street # https://github.com/commercialhaskell/stackage/issues/4470 + # elm-street # https://github.com/commercialhaskell/stackage/issues/4470 # Modules use compiler plugins # https://github.com/haskell/haddock/issues/900 From 40999076cccf5b828b569464bb5403001790342c Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 26 Oct 2019 21:17:31 -0700 Subject: [PATCH 0863/2682] Close #4470 as it is fixed --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2cc6d56a..36823397 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6403,7 +6403,6 @@ expected-haddock-failures: # "Compilation" errors - MemoTrie # https://github.com/conal/MemoTrie/issues/10 - classy-prelude-yesod - # elm-street # https://github.com/commercialhaskell/stackage/issues/4470 # Modules use compiler plugins # https://github.com/haskell/haddock/issues/900 From 8c2bc76502b9d829b4cd2aa3a07ce539db0b1472 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 26 Oct 2019 21:18:24 -0700 Subject: [PATCH 0864/2682] Fix paths --- CURATORS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CURATORS.md b/CURATORS.md index 2aa69d73..0f4492a4 100644 --- a/CURATORS.md +++ b/CURATORS.md @@ -294,7 +294,7 @@ problems on nightly or LTS major, you need to fix build-constraints.yaml (see info above). ### Building LTS minor releases -First run `build-next.sh` to regenerate updated `work/ltsXX/constraints.yaml` and `work/ltsXX/snapshot-incomplete.yaml` files. +First run `build-next.sh` to regenerate updated `ltsXX/work/constraints.yaml` and `ltsXX/work/snapshot-incomplete.yaml` files. For an LTS minor bump, you'll typically want to: From 5cbbaa100d64f1f541ab9c87a07bab7a7f4ec4ab Mon Sep 17 00:00:00 2001 From: Bodigrim Date: Sun, 27 Oct 2019 20:43:20 +0000 Subject: [PATCH 0865/2682] Add vector-rotcev --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 36823397..3a294ff0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3059,6 +3059,7 @@ packages: - extended-reals - ChasingBottoms - data-interval + - vector-rotcev "Ashley Yakeley @AshleyYakeley": - countable From 5ba8ef8dd175738830461015bcadc32f6e1ac075 Mon Sep 17 00:00:00 2001 From: Judah Jacobson Date: Sun, 27 Oct 2019 09:23:45 -0700 Subject: [PATCH 0866/2682] Reenable proto-lens and related packages. The latest release (0.6.0.0) is compatible with the nightly build (ghc-8.8, Cabal-3.0, etc.). --- build-constraints.yaml | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 36823397..78c0f89d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4606,7 +4606,6 @@ packages: "GHC 8.8 bounds failures": - ShellCheck < 0 # via Cabal-3.0.0.0 - cipher-aes128 < 0 # via Cabal-3.0.0.0 - - proto-lens-setup < 0 # via Cabal-3.0.0.0 - language-ecmascript < 0 # via Diff-0.4.0 - pandoc < 0 # via HsYAML-0.2.0.0 - MissingH < 0 # via array-0.5.4.0 @@ -4703,13 +4702,6 @@ packages: - partial-semigroup < 0 # via base-4.13.0.0 - path-text-utf8 < 0 # via base-4.13.0.0 - persistent < 0 # via base-4.13.0.0 - - proto-lens < 0 # via base-4.13.0.0 - - proto-lens-arbitrary < 0 # via base-4.13.0.0 - - proto-lens-optparse < 0 # via base-4.13.0.0 - - proto-lens-protobuf-types < 0 # via base-4.13.0.0 - - proto-lens-protoc < 0 # via base-4.13.0.0 - - proto-lens-runtime < 0 # via base-4.13.0.0 - - proto-lens-setup < 0 # via base-4.13.0.0 - raaz < 0 # via base-4.13.0.0 - ratel < 0 # via base-4.13.0.0 - ratel-wai < 0 # via base-4.13.0.0 @@ -4830,11 +4822,6 @@ packages: - gothic < 0 # via lens-aeson-1.1 - hsdev < 0 # via lens-aeson-1.1 - lens-simple < 0 # via lens-family-2.0.0 - - proto-lens < 0 # via lens-family-2.0.0 - - proto-lens-arbitrary < 0 # via lens-family-2.0.0 - - proto-lens-protobuf-types < 0 # via lens-family-2.0.0 - - proto-lens-protoc < 0 # via lens-family-2.0.0 - - proto-lens-runtime < 0 # via lens-family-2.0.0 - lens-simple < 0 # via lens-family-core-2.0.0 - machines-binary < 0 # via machines-0.7 - machines-directory < 0 # via machines-0.7 @@ -4850,7 +4837,6 @@ packages: - diagrams-lib < 0 # via optparse-applicative-0.15.1.0 - diagrams-rasterific < 0 # via optparse-applicative-0.15.1.0 - diagrams-svg < 0 # via optparse-applicative-0.15.1.0 - - proto-lens-optparse < 0 # via optparse-applicative-0.15.1.0 - wai-middleware-crowd < 0 # via optparse-applicative-0.15.1.0 - hapistrano < 0 # via path-io-1.5.0 - graphviz < 0 # via polyparse-1.13 @@ -4862,7 +4848,6 @@ packages: - blaze-colonnade < 0 # via profunctors-5.5 - colonnade < 0 # via profunctors-5.5 - invertible-grammar < 0 # via profunctors-5.5 - - proto-lens < 0 # via profunctors-5.5 - ixset-typed < 0 # via safecopy-0.10.0 - selda-postgresql < 0 # via selda-0.5.0.0 - selda-sqlite < 0 # via selda-0.5.0.0 From 7e370858fac4227a0fa84c7db2f7c8b634718093 Mon Sep 17 00:00:00 2001 From: Marius Ghita Date: Mon, 28 Oct 2019 10:09:52 +0200 Subject: [PATCH 0867/2682] add minimal-configuration Checklist: Meaningful commit message, eg add my-cool-package (please not mention build-constraints.yml) At least 30 minutes have passed since uploading to Hackage On your own machine, in a new directory, you have successfully run the following set of commands (replace $package with the name of the package that is submitted, and $version with the version of the package you want to get into Stackage): stack unpack $package-$version # $version is optional stack init --resolver nightly stack build --resolver nightly --haddock --test --bench --no-run-benchmarks --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 36823397..6cb4a21e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4019,6 +4019,9 @@ packages: "Ian Graves @igraves": - monad-resumption + "Marius Ghita @mhitza": + - minimal-configuration + "Grandfathered dependencies": - network - Boolean From 64118932e3584ff105518cd4a7ad6638cb3e8e50 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Tue, 29 Oct 2019 00:41:22 +0100 Subject: [PATCH 0868/2682] Combine & sort removed packages Hopefully making it a bit easier to re-enable your packages. --- build-constraints.yaml | 1648 ++++++++++++++++------------------------ 1 file changed, 659 insertions(+), 989 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 36823397..021efa96 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -54,7 +54,7 @@ packages: - configurator-pg "Sandy Maguire @isovector": - - polysemy + - polysemy < 0 # via loopbreaker - polysemy-plugin - polysemy-zoo - ecstasy @@ -160,8 +160,8 @@ packages: "Manuel Bärenz @turion": - dunai - - rhine - - rhine-gloss + - rhine < 0 # via base-4.13.0.0 + - rhine-gloss < 0 # via base-4.13.0.0 - dunai-core - finite-typelits - essence-of-live-coding @@ -263,7 +263,7 @@ packages: "Nobutada Matsubara @matsubara0507": - chatwork < 0 - rakuten < 0 - - servant-kotlin + - servant-kotlin < 0 # via containers-0.6.2.1 "Pavol Klacansky @pavolzetor": - openexr-write @@ -410,7 +410,7 @@ packages: "Simon Jakobi @sjakobi": - path - - present + - present < 0 # MonadFail - threepenny-gui - snap-server - newtype-generics @@ -451,7 +451,7 @@ packages: - network-multicast - xeno - plot-light - - datasets + - datasets < 0 # via req - lucid-extras - rigel-viz @@ -470,8 +470,8 @@ packages: "Winter Han @winterland1989": - if - - tcp-streams - - tcp-streams-openssl + - tcp-streams < 0 # via test-framework + - tcp-streams-openssl < 0 # via HsOpenSSL-x509-system - wire-streams - binary-parsers - binary-ieee754 @@ -515,7 +515,7 @@ packages: - mbug "David Johnson @dmjio": - - miso + - miso < 0 # via servant - envy - s3-signer # - google-translate # servant 0.12 @@ -554,14 +554,14 @@ packages: - wai-websockets - warp-tls - yesod - - yesod-auth + - yesod-auth < 0 # via email-validate & persistent & yesod-core - authenticate-oauth - yesod-bin - yesod-eventsource - yesod-gitrepo - yesod-newsfeed - yesod-sitemap - - yesod-static + - yesod-static < 0 # via wai-app-static & yesod-test & yesod-core - yesod-test - yesod-websockets - cereal-conduit @@ -590,7 +590,7 @@ packages: - hybrid-vectors - indents - language-c - - persistent-mongoDB + - persistent-mongoDB < 0 # via blaze-html & persistent & persistent-qq & persistent-template & persistent-test - pretty-class - th-expand-syns - th-lift @@ -621,7 +621,7 @@ packages: - githash - time-manager - - pantry + - pantry < 0 # via cryptonite-conduit & hackage-security & hpack & http-download & persistent & persistent-sqlite & persistent-template & rio-orphans & rio-prettyprint & tar-conduit & th-utilities - mega-sdist - http-download - hi-file-parser @@ -692,7 +692,7 @@ packages: # profiteur # aeson-1.4.0.0 - psqueues - websockets - - websockets-snap + - websockets-snap < 0 # via io-streams - hakyll < 0 # jaspervdj/hakyll#691 "Sibi Prabakaran @psibi": @@ -780,7 +780,6 @@ packages: - ini - lucid - pdfinfo - - present - pure-io < 0 # build failure with GHC 8.4 - sourcemap - hindent < 0 # GHC 8.4 via descriptive @@ -901,11 +900,11 @@ packages: - incremental-parser - monoid-subclasses - picoparsec < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build - - rank2classes + - rank2classes < 0 # via template-haskell-2.15.0.0 "Brent Yorgey @byorgey": - active - - diagrams + - diagrams < 0 # via diagrams-contrib - diagrams-builder < 0 # via lens-4.17 - diagrams-cairo < 0 # via lens-4.17 - diagrams-canvas < 0 # via lens-4.17 @@ -913,7 +912,7 @@ packages: - diagrams-core - diagrams-gtk < 0 # via diagrams-cairo - diagrams-html5 < 0 # via lens-4.17 - - diagrams-lib + - diagrams-lib < 0 # via base-4.13.0.0 - diagrams-postscript - diagrams-rasterific - diagrams-solve @@ -936,9 +935,9 @@ packages: - bugsnag-haskell - gravatar - load-env - - yesod-auth-oauth2 + - yesod-auth-oauth2 < 0 # via hoauth2 & yesod-core - yesod-markdown < 0 # pbrisbin/yesod-markdown#65 - - yesod-paginator + - yesod-paginator < 0 # via persistent "Felipe Lessa @meteficha": - fb @@ -1081,7 +1080,7 @@ packages: "Boris Lykah @lykahb": - groundhog - - groundhog-inspector + - groundhog-inspector < 0 # via groundhog - groundhog-mysql - groundhog-postgresql - groundhog-sqlite @@ -1146,11 +1145,11 @@ packages: - HandsomeSoup "Clint Adams @clinty": - - hOpenPGP + - hOpenPGP < 0 # via bzlib - openpgp-asciiarmor - MusicBrainz - DAV - - hopenpgp-tools + - hopenpgp-tools < 0 # via graphviz - opensource - debian - cabal-debian @@ -1205,7 +1204,7 @@ packages: - hxt-pickle-utils < 0 - imagesize-conduit - json-schema < 0 - - multipart + - multipart < 0 # MonadFail # - rest-client # http-types 0.12 - rest-core < 0 # GHC 8.4 via base-4.11.0.0 - rest-snap < 0 # GHC 8.4 via rest-core @@ -1259,7 +1258,7 @@ packages: - wai-middleware-caching-lru < 0 - wai-middleware-caching-redis < 0 # GHC 8.4 via hedis # not package maintainer - - ekg + - ekg < 0 # via base-4.13.0.0 - ekg-json "Paul Rouse @paul-rouse": @@ -1278,7 +1277,7 @@ packages: - swagger - tinylog - wai-predicates - - wai-routing + - wai-routing < 0 # DependencyFailed (PackageName "wai-route") - zeromq4-haskell "Alejandro Serrano @serras": @@ -1316,7 +1315,7 @@ packages: - interpolatedstring-perl6 - iproute - missing-foreign - - MissingH + - MissingH < 0 # via array-0.5.4.0 & base-4.13.0.0 & containers-0.6.2.1 & directory-1.3.3.2 & filepath-1.4.2.1 & old-time-1.1.0.3 & process-1.6.5.1 & time-1.9.3 & unix-2.7.2.2 - multimap - parallel-io - text-binary @@ -1327,6 +1326,7 @@ packages: - hpack - bindings-uname - stack < 9.9.9 # see https://github.com/fpco/stackage/issues/3563 + - stack < 0 # via hackage-security "Michael Sloan @mgsloan": - th-orphans @@ -1414,12 +1414,12 @@ packages: - servant-conduit - servant-docs - servant-foreign - - servant-http-streams + - servant-http-streams < 0 # via servant - servant-js - servant-lucid - servant-machines - servant-mock - - servant-multipart + - servant-multipart < 0 # via servant - servant-pipes - servant-server - servant-swagger @@ -1439,7 +1439,7 @@ packages: - simple-log - text-region - haskell-names - - hsdev + - hsdev < 0 # via ghc-boot-8.8.1 "Aleksey Kliger @lambdageek": - unbound-generics @@ -1523,7 +1523,7 @@ packages: "Tomas Carnecky @wereHamster": - avers - avers-api - - avers-server + - avers-server < 0 # via servant-server - css-syntax # - etcd # https://github.com/wereHamster/etcd-hs/issues/5 - github-types @@ -1568,7 +1568,7 @@ packages: "Greg V @myfreeweb": - pcre-heavy - http-link-header - - microformats2-parser + - microformats2-parser < 0 # via blaze-html - hspec-expectations-pretty-diff - wai-cli - magicbane < 0 # via ekg-wai @@ -2115,7 +2115,7 @@ packages: - friday < 0 - friday-juicypixels < 0 - hbeanstalk - - hedis + - hedis < 0 # via test-framework - hprotoc - hsyslog-udp < 0 - iso3166-country-codes @@ -2349,8 +2349,8 @@ packages: - read-env-var - servant-checked-exceptions - servant-checked-exceptions-core - - servant-rawm - - servant-static-th + - servant-rawm < 0 # via http-media + - servant-static-th < 0 # via http-media - termonad - world-peace - xml-html-qq @@ -2402,7 +2402,7 @@ packages: "Gregory Collins @gregorycollins": - hashtables - - io-streams + - io-streams < 0 # via test-framework - openssl-streams "Andrew Cowie @afcowie": @@ -2443,21 +2443,20 @@ packages: - hsyslog - jailbreak-cabal - json-autotype - - lambdabot-core + - lambdabot-core < 0 # via dependent-map-0.3 - lambdabot-irc-plugins - language-nix - logging-facade-syslog - MonadPrompt - - multipart # for cgi - nix-paths - parsec-class - prim-uniq - - random-fu + - random-fu < 0 # via random-source - random-source - rvar - SafeSemaphore - streamproc - - stringsearch # for cgi + - stringsearch # for cgi - titlecase - X11 - xmonad @@ -2488,7 +2487,7 @@ packages: - strict-base-types - withdependencies < 0 - hruby - - language-puppet + - language-puppet < 0 # via hslogger-1.3.0.0 - tar-conduit "Mark Karpov @mrkkrp": @@ -2620,7 +2619,7 @@ packages: - pusher-http-haskell "Yorick Laupa yo.eight@gmail.com @YoEight": - - eventstore + - eventstore < 0 # via dns - dotnet-timespan - eventsource-api < 0 # GHC 8.4 build failure - eventsource-geteventstore-store < 0 # GHC 8.4 via protolude @@ -2886,7 +2885,7 @@ packages: - hw-diagnostics - hw-dsv - hw-eliasfano - - hw-excess + - hw-excess < 0 # via hw-rankselect-base - hw-hedgehog - hw-hspec-hedgehog - hw-int @@ -2928,14 +2927,14 @@ packages: - protolude - repline - picosat < 0 - - aos-signature + - aos-signature < 0 # via protolude # https://github.com/commercialhaskell/stackage/issues/4682 - bulletproofs < 1 - pedersen-commitment - merkle-tree - oblivious-transfer - pairing < 0 # #4758 - - libraft + - libraft < 0 # via concurrency & ejafu & kg & kg-core & onad-metrics & ostgresql-simple-url & rotolude & uickcheck-state-machine & asty-dejafu - galois-field "Daishi Nakajima @nakaji-dayo": @@ -2992,11 +2991,11 @@ packages: - gi-gio - gi-gobject - gi-gtk - - gi-gtk-hs + - gi-gtk-hs < 0 # via base-compat-0.11.0 - gi-gtksource - gi-javascriptcore - gi-vte - # - gi-webkit2 # GHC 8.4 + # - gi-webkit2 # https://github.com/fpco/stackage/issues/3415 "Brandon Simmons @jberryman": - directory-tree @@ -3034,7 +3033,7 @@ packages: - haskey-mtl < 0 - intset-imperative - lxd-client < 0 # GHC 8.4 via http-media - - lxd-client-config + - lxd-client-config < 0 # via test-framework - xxhash-ffi - zeromq4-patterns @@ -3067,7 +3066,7 @@ packages: "Victor Denisov @VictorDenisov": - mongoDB - - bson + - bson < 0 # via network-3.1.1.0 "Alexis King @lexi-lambda": - freer-simple @@ -3277,7 +3276,7 @@ packages: # - printcess # lens 4.16 "Alexey Kuleshevich @lehins": - - wai-middleware-auth + - wai-middleware-auth < 0 # via hoauth2 # - hip # lens 4.16 via diagrams/chart - massiv - massiv-io @@ -3285,7 +3284,7 @@ packages: - scheduler "Hans-Peter Deifel @hpdeifel": - - hledger-iadd + - hledger-iadd < 0 # via brick "Roy Levien @orome": - crypto-enigma @@ -3430,13 +3429,13 @@ packages: - hslua-module-text "Judah Jacobson @judah": - - proto-lens-protobuf-types - - proto-lens-protoc - - proto-lens-runtime - - proto-lens-setup - - proto-lens - - proto-lens-arbitrary - - proto-lens-optparse + - proto-lens-protobuf-types < 0 # via lens-family-2.0.0 + - proto-lens-protoc < 0 # via lens-family-2.0.0 + - proto-lens-runtime < 0 # via lens-family-2.0.0 + - proto-lens-setup < 0 # via base-4.13.0.0 + - proto-lens < 0 # via base-4.13.0.0 + - proto-lens-arbitrary < 0 # via lens-family-2.0.0 + - proto-lens-optparse < 0 # via optparse-applicative-0.15.1.0 - tensorflow-test - pier-core < 0 - pier < 0 @@ -3537,7 +3536,7 @@ packages: - first-class-patterns - relude - shellmet - - summoner + - summoner < 0 # via base-4.13.0.0 - tomland - typerep-map @@ -3701,7 +3700,7 @@ packages: - servant-exceptions < 0 # https://github.com/ch1bo/servant-exceptions/issues/9 "Vaibhav Sagar @vaibhavsagar": - - ihaskell + - ihaskell < 0 # via base-4.13.0.0 - ghc-parser "Alexis Williams @typedrat": @@ -3729,7 +3728,7 @@ packages: "Alexey Kotlyarov @koterpillar": - appendmap - - serverless-haskell + - serverless-haskell < 0 # via aeson-extra "Guru Devanla @gdevanla": - pptable @@ -3752,14 +3751,14 @@ packages: "Domen Kozar @domenkozar": - cachix < 0 # #4752 - - cachix-api + - cachix-api < 0 # via http-media & protolude & servant-auth & servant-auth-server & servant-auth-swagger & swagger2 - elm2nix - mixpanel-client < 0 - netrc - pretty-sop - servant-auth - - servant-auth-server - - servant-auth-client + - servant-auth-server < 0 # via base-4.13.0.0 + - servant-auth-client < 0 # via warp-3.3.2 - servant-auth-swagger - servant-auth-docs - servant-elm @@ -3769,6 +3768,7 @@ packages: "Andre Van Der Merwe @andrevdm": - bhoogle < 0 - hyraxAbif + - hyraxAbif < 0 # via binary-0.8.7.0 "David Millar-Durrant @DavidM-D": - indexed-list-literals @@ -3857,7 +3857,7 @@ packages: - yesod-text-markdown "Alexander Krupenkin @akru": - - web3 + - web3 < 0 # via base-4.13.0.0 & cryptonite-0.26 & memory-0.15.0 & microlens-mtl-0.2.0.1 & time-1.9.3 "Georg Rudoy <0xd34df00d@gmail.com> @0xd34df00d": - can-i-haz @@ -3975,7 +3975,7 @@ packages: "Vitaly Bragilevsky @bravit": - Chart - - Chart-diagrams + - Chart-diagrams < 0 # via diagrams-core & diagrams-lib & diagrams-postscript & diagrams-svg & svg-builder "Juri Chomé @2mol": - msgpack @@ -4359,7 +4359,7 @@ packages: - size-based - skein - skylighting-core - - snap-core + - snap-core < 0 # via test-framework - some - special-values - splice @@ -4479,7 +4479,7 @@ packages: - yeshql-core - yeshql-hdbc - yesod-core - - yesod-form + - yesod-form < 0 # via email-validate - yesod-persistent - zlib - zlib-bindings @@ -4517,7 +4517,6 @@ packages: # affected. Packages will be kept in this list indefinitely so # that new packages depending on it will be flagged as well. "Removed packages": - - gi-webkit2 < 0 # https://github.com/fpco/stackage/issues/3415 - PSQueue < 0 # build failure with GHC 8.4 (nowhere to report, it's ancient just let it die) - json-builder < 0 # build failure with GHC 8.4 https://github.com/lpsmith/json-builder/issues/2 - type-combinators < 0 # build failure with GHC 8.4 https://github.com/kylcarte/type-combinators/issues/8 @@ -4525,7 +4524,6 @@ packages: - preprocessor-tools < 0 # build failure with GHC 8.4 - tinytemplate < 0 # build failure with GHC 8.4 - wai-route < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build - - wai-routing < 0 # DependencyFailed (PackageName "wai-route") - fingertree-psqueue < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build - cli < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build - prim-array < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build @@ -4537,496 +4535,476 @@ packages: - lens-labels < 0 # deprecated https://github.com/commercialhaskell/stackage/pull/4358 - proto-lens-combinators < 0 # deprecated https://github.com/commercialhaskell/stackage/pull/4358 - # Packages in the build plan that are blocked from inclusion due to - # compilation failure with ghc 8.6 - "Build failure with GHC 8.6": - # out of bounds - - SCalendar < 0 - - haskell-tools-builtin-refactorings < 0 - - hpqtypes < 0 - - ref-fd < 0 + "Build failures on GHC upgrades": - # failed to build - - Fin < 0 - - HPDF < 0 - - broadcast-chan < 0 - - df1 < 0 - - di-handle < 0 - - exinst < 0 - - extensible < 0 - - gtk2hs-buildtools < 0 - - hdevtools < 0 - - histogram-fill < 0 - - hprotoc < 0 - - jni < 0 - - large-hashable < 0 - - llvm-hs-pretty < 0 - - med-module < 0 - - monad-recorder < 0 - - o-clock < 0 - - teardown < 0 - - typography-geometry < 0 - - # transitive dependencies of packages failing to build - - capataz < 0 - - componentm < 0 - - componentm-devel < 0 - - di < 0 - - di-df1 < 0 - - geodetics < 0 - - jvm < 0 - - plot-light < 0 - - - "Blocked per http-client-0.6": - - github < 0 # via http-client-0.6.1 - - hailgun < 0 # via http-client-0.6.1 - - mbug < 0 # via http-client-0.6.1 - - # Things that were blocked by amazonka but are now - # blocked by other things - - serverless-haskell < 0 # via aeson-extra - - antiope-core < 0 # via aeson-lens - - confcrypt < 0 # via crypto-pubkey-openssh - - antiope-core < 0 # via hspec-2.7.1 - - antiope-messages < 0 # via hspec-2.7.1 - - antiope-sns < 0 # via hspec-2.7.1 - - antiope-sqs < 0 # via hspec-2.7.1 - - antiope-core < 0 # via hw-hspec-hedgehog - - antiope-messages < 0 # via hw-hspec-hedgehog - - antiope-sns < 0 # via hw-hspec-hedgehog - - antiope-sqs < 0 # via hw-hspec-hedgehog - - serverless-haskell < 0 # via network-simple - - confcrypt < 0 # via optparse-applicative-0.15.1.0 - - antiope-dynamodb < 0 # via antiope-core - - antiope-s3 < 0 # via antiope-core - - antiope-s3 < 0 # via antiope-messages - - - "GHC 8.8 bounds failures": + - DAV < 0 # via xml-hamlet + - DBFunctor < 0 # via MissingH + - Fin < 0 # compilation failure + - FontyFruity < 0 # MonadFail + - H < 0 # via inline-r + - HCodecs < 0 # MonadFail + - HDBC < 0 # via time-1.9.3 + - HDBC-mysql < 0 # via HDBC + - HDBC-session < 0 # via HDBC + - HPDF < 0 # compilation failure + - HSet < 0 # Duplicate Hashable instance + - HTF < 0 # via haskell-src + - HTTP < 0 # via test-framework & test-framework-hunit + - HaTeX < 0 # MonadFail + - HandsomeSoup < 0 # via HTTP + - Hoed < 0 # via regex-tdfa-text + - HsOpenSSL-x509-system < 0 # via HsOpenSSL + - IPv6Addr < 0 # via test-framework & test-framework-hunit + - MusicBrainz < 0 # via HTTP + - Rasterific < 0 # via vector-algorithms + - SCalendar < 0 # bounds failure + - SVGFonts < 0 # via diagrams-core + - SVGFonts < 0 # via diagrams-lib - ShellCheck < 0 # via Cabal-3.0.0.0 - - cipher-aes128 < 0 # via Cabal-3.0.0.0 - - proto-lens-setup < 0 # via Cabal-3.0.0.0 - - language-ecmascript < 0 # via Diff-0.4.0 - - pandoc < 0 # via HsYAML-0.2.0.0 - - MissingH < 0 # via array-0.5.4.0 - - MissingH < 0 # via base-4.13.0.0 - Strafunski-StrategyLib < 0 # via base-4.13.0.0 - TotalMap < 0 # via base-4.13.0.0 + - abstract-deque-tests < 0 # via test-framework - active < 0 # via base-4.13.0.0 - aeson-diff < 0 # via base-4.13.0.0 + - aeson-extra < 0 # via semialign + - aeson-iproute < 0 # via iproute + - aeson-qq < 0 # MonadFail - alarmclock < 0 # via base-4.13.0.0 + - alerts < 0 # via blaze-html + - algebraic-graphs < 0 # via base-compat-0.11.0 + - antiope-core < 0 # via aeson-lens & hspec-2.7.1 & hw-hspec-hedgehog + - antiope-dynamodb < 0 # via antiope-core + - antiope-messages < 0 # via hspec-2.7.1 & hw-hspec-hedgehog + - antiope-s3 < 0 # via antiope-core & antiope-messages + - antiope-sns < 0 # via hspec-2.7.1 & hw-hspec-hedgehog + - antiope-sqs < 0 # via hspec-2.7.1 & hw-hspec-hedgehog + - apecs < 0 # Template Haskell changes + - apecs-gloss < 0 # via gloss + - apecs-physics < 0 # via inline-c + - apply-refact < 0 # via ghc-8.8.1 + - arbor-lru-cache < 0 # via hw-hspec-hedgehog + - asciidiagram < 0 # via pandoc-types + - asif < 0 # via hw-hspec-hedgehog + - asif < 0 # via hw-ip + - authenticate < 0 # via tagstream-conduit - autoexporter < 0 # via base-4.13.0.0 + - avers-api < 0 # via servant + - avro < 0 # via pure-zlib + - avwx < 0 # via HTTP + - backprop < 0 # via vinyl - bank-holidays-england < 0 # via base-4.13.0.0 + - barbies < 0 + - barrier < 0 # via blaze-svg - base-noprelude < 0 # via base-4.13.0.0 + - beam-core < 0 # via vector-sized-1.4.0.0 + - beam-migrate < 0 # via dependent-map-0.3 & dependent-sum-0.6.2.0 + - beam-mysql < 0 # via beam-core + - beam-postgres < 0 # via beam-core + - beam-sqlite < 0 # via beam-core + - bench-show < 0 # via optparse-applicative-0.15.1.0 - benchpress < 0 # via base-4.13.0.0 - bencode < 0 # via base-4.13.0.0 + - bencoding < 0 # via bencode + - binary-bits < 0 # MonadFail + - bitcoin-block < 0 # via hexstring + - bitcoin-script < 0 # MonadFail + - bitcoin-tx < 0 # via hexstring + - bitcoin-types < 0 # via base58string & hexstring + - bits-extra < 0 # via hw-hspec-hedgehog + - bitx-bitcoin < 0 # compilation error + - blas-hs < 0 # MonadFail + - blaze-bootstrap < 0 # via blaze-html + - blaze-colonnade < 0 # via profunctors-5.5 + - board-games < 0 # via httpd-shed - boolean-normal-forms < 0 # via base-4.13.0.0 - brick < 0 # via base-4.13.0.0 + - broadcast-chan < 0 # compilation failure + - bson-lens < 0 # via bson + - bugsnag-haskell < 0 # via yesod-core + - bulletproofs < 0 # via protolude + - butter < 0 # via network-simple + - bv-little < 0 # via text-show - bzlib < 0 # via base-4.13.0.0 + - cabal-debian < 0 # via debian + - cabal-file-th < 0 # Cabal 3 - cabal-install < 0 # via base-4.13.0.0 + - cabal2nix < 0 # via hpack + - capataz < 0 # transitive compilation failure + - cassava-records < 0 # MonadFail + - caster < 0 # via fast-builder + - cayley-client < 0 # via lens-4.18.1 + - cayley-client < 0 # via lens-aeson-1.1 - cborg-json < 0 # via base-4.13.0.0 + - cereal-time < 0 # via time-1.9.3 + - cgi < 0 # via multipart + - cheapskate < 0 # via blaze-html + - cheapskate-highlight < 0 # via blaze-html + - cheapskate-lucid < 0 # via blaze-html + - check-email < 0 # via email-validate + - chronos < 0 # also test-framework + - chronos-bench < 0 # via chronos + - cipher-aes128 < 0 # via Cabal-3.0.0.0 + - cipher-blowfish < 0 # MonadFail - circle-packing < 0 # via base-4.13.0.0 + - classy-prelude-yesod < 0 # via persistent - classyplate < 0 # via base-4.13.0.0 + - closed < 0 # via persistent + - cmark-gfm < 0 # via blaze-html + - cmark-gfm < 0 # via markdown - co-log < 0 # via base-4.13.0.0 - co-log-core < 0 # via base-4.13.0.0 + - codec < 0 # via binary-bits + - codo-notation < 0 # MonadFail + - colonnade < 0 # via profunctors-5.5 + - columnar < 0 # via fmt - compact < 0 # via base-4.13.0.0 + - componentm < 0 # transitive compilation failure + - componentm-devel < 0 # transitive compilation failure + - concurrent-supply < 0 # hashable-1.3.0 + - conduit-iconv < 0 # MonadFail + - conduit-throttle < 0 # via test-framework + - conduit-throttle < 0 # via test-framework-hunit + - confcrypt < 0 # via crypto-pubkey-openssh & optparse-applicative-0.15.1.0 + - configuration-tools < 0 # compilation error - configurator-pg < 0 # via base-4.13.0.0 + - control-dsl < 0 # via doctest-discover + - core-data < 0 # via prettyprinter-1.3.0 + - core-program < 0 # via prettyprinter-1.3.0 and template-haskell-2.15 + - core-text < 0 # via prettyprinter-1.3.0 and template-haskell-2.15 - country < 0 # via base-4.13.0.0 + - courier < 0 # via test-framework & test-framework-hunit + - cql < 0 # Template Haskell changes + - cql-io < 0 # via cql + - cron < 0 # MonadFail + - crypto-api-tests < 0 # via test-framework + - crypto-cipher-tests < 0 # via test-framework + - crypto-pubkey-openssh < 0 # MonadFail + - cryptocipher < 0 # via cipher-blowfish + - cryptocompare < 0 # via MissingH - css-syntax < 0 # via base-4.13.0.0 + - cublas < 0 # via cuda + - cuda < 0 + - cufft < 0 # via cuda + - cusparse < 0 # via cuda - cyclotomic < 0 # via base-4.13.0.0 + - data-accessor-template < 0 # via template-haskell-2.15.0.0 + - data-diverse-lens < 0 # "The liberal coverage condition fails" + - data-dword < 0 # template-haskell + - data-msgpack < 0 # via data-msgpack-types + - data-msgpack-types < 0 # MonadFail + - data-serializer < 0 # MonadFail + - data-textual < 0 # MonadFail + - dbcleaner < 0 # via postgresql-simple + - debian < 0 # via bzlib + - debug < 0 # via Hoed + - decidable < 0 # via vinyl + - dependent-map < 0 # via constraints-extras + - dependent-sum < 0 # via constraints-extras + - dependent-sum-template < 0 # via constraints-extras - derulo < 0 # via base-4.13.0.0 + - df1 < 0 # compilation failure + - dhall < 0 # via cborg-json + - dhall-bash < 0 # via dhall + - dhall-json < 0 # via dhall + - di < 0 # transitive compilation failure + - di-df1 < 0 # transitive compilation failure + - di-handle < 0 # compilation failure - diagrams-contrib < 0 # via base-4.13.0.0 - - diagrams-core < 0 # via base-4.13.0.0 - - diagrams-lib < 0 # via base-4.13.0.0 - - diagrams-postscript < 0 # via base-4.13.0.0 - - diagrams-rasterific < 0 # via base-4.13.0.0 + - diagrams-contrib < 0 # via lens-4.18.1 + - diagrams-core < 0 # via base-4.13.0.0 & lens-4.18.1 + - diagrams-postscript < 0 # via base-4.13.0.0 & lens-4.18.1 + - diagrams-rasterific < 0 # via base-4.13.0.0 & lens-4.18.1 & optparse-applicative-0.15.1.0 - diagrams-solve < 0 # via base-4.13.0.0 - - diagrams-svg < 0 # via base-4.13.0.0 + - diagrams-svg < 0 # via base-4.13.0.0 & lens-4.18.1 & optparse-applicative-0.15.1.0 + - direct-sqlite < 0 # semigroups-0.19 + - dl-fedora < 0 # via http-directory + - docopt < 0 # MonadFail + - doctemplates < 0 # via doclayout - doctest-driver-gen < 0 # via base-4.13.0.0 + - dom-parser < 0 # via xml-lens + - download < 0 # via feed - dual-tree < 0 # via base-4.13.0.0 - dunai-core < 0 # via base-4.13.0.0 - - ekg < 0 # via base-4.13.0.0 + - easytest < 0 # via hedgehog-1.0.1 - ekg-core < 0 # via base-4.13.0.0 - ekg-json < 0 # via base-4.13.0.0 - - ekg-statsd < 0 # via base-4.13.0.0 - - elm-street < 0 # via base-4.13.0.0 + - ekg-statsd < 0 # via base-4.13.0.0 & time-1.9.3 + - elm-export < 0 # via wl-pprint-text + - elm-street < 0 # via base-4.13.0.0 & warp-3.3.2 + - elm2nix < 0 # via req + - emd < 0 # via typelits-witnesses + - enum-text < 0 # via fmt + - enum-text-rio < 0 # via fmt + - error-util < 0 # MonadFail + - esqueleto < 0 # via time-1.9.3 - essence-of-live-coding < 0 # via base-4.13.0.0 - essence-of-live-coding-gloss < 0 # via base-4.13.0.0 - essence-of-live-coding-pulse < 0 # via base-4.13.0.0 - essence-of-live-coding-quickcheck < 0 # via base-4.13.0.0 + - eventful-memory < 0 # via eventful-core + - eventful-memory < 0 # via eventful-test-helpers + - exceptional < 0 # MonadFail + - executable-hash < 0 # via cryptohash + - exinst < 0 # compilation failure + - extensible < 0 # compilation failure + - fast-builder < 0 # via true-name - fclabels < 0 # via base-4.13.0.0 + - fib < 0 # via base-noprelude + - file-modules < 0 # via MissingH + - filter-logger < 0 # via scotty & wai-logger + - flat-mcmc < 0 # via monad-par + - flay < 0 + - flexible-defaults < 0 # MonadFail - flow < 0 # via base-4.13.0.0 + - fmt < 0 # via doctest-discover + - fmt < 0 # via interpolate + - fmt-for-rio < 0 # via enum-text-rio + - fold-debounce < 0 # via time-1.9.3 - fold-debounce-conduit < 0 # via base-4.13.0.0 - force-layout < 0 # via base-4.13.0.0 + - force-layout < 0 # via lens-4.18.1 + - frisby < 0 # MonadFail + - functor-combinators < 0 # via dependent-sum + - functor-products < 0 # via vinyl + - galois-field < 0 # via protolude & wl-pprint-text + - generic-data-surgery < 0 # via generic-data + - generics-eot < 0 # via interpolate + - generics-mrsop < 0 # MonadFail + - geodetics < 0 # transitive compilation failure + - ghc-parser < 0 # via ghc-8.8.1 + - gi-atk < 0 # via haskell-gi + - gi-cairo < 0 # via haskell-gi + - gi-gdk < 0 # via haskell-gi + - gi-gdkpixbuf < 0 # via haskell-gi + - gi-gio < 0 # via haskell-gi + - gi-glib < 0 # via haskell-gi + - gi-gobject < 0 # via haskell-gi + - gi-gtk < 0 # via gi-graphene + - gi-gtk < 0 # via gi-gsk + - gi-gtksource < 0 # via gi-gdk-4.0.1 & gi-gtk-4.0.1 + - gi-javascriptcore < 0 # via haskell-gi + - gi-pango < 0 # via haskell-gi + - gi-vte < 0 # via gi-gdk-4.0.1 & gi-gtk-4.0.1 + - ginger < 0 # via regex-tdfa-1.3.0 + - gingersnap < 0 # via snap-core + - github < 0 # via http-client-0.6.1 - github-release < 0 # via base-4.13.0.0 + - github-webhooks < 0 # unknown - gloss < 0 # via base-4.13.0.0 - gloss-algorithms < 0 # via base-4.13.0.0 - gloss-examples < 0 # via base-4.13.0.0 - gloss-raster < 0 # via base-4.13.0.0 - gloss-rendering < 0 # via base-4.13.0.0 + - gnuplot < 0 # via time-1.9.3 + - google-oauth2-jwt < 0 # via HsOpenSSL + - gothic < 0 # via lens-4.18.1 + - gothic < 0 # via lens-aeson-1.1 + - graphite < 0 # via graphviz + - graphviz < 0 # via polyparse-1.13 + - gravatar < 0 # via HTTP + - graylog < 0 # Couldn't find module Network.BSD - greskell < 0 # via base-4.13.0.0 - greskell-core < 0 # via base-4.13.0.0 - greskell-websocket < 0 # via base-4.13.0.0 + - groundhog < 0 # MonadFail + - groundhog-mysql < 0 # via groundhog + - groundhog-postgresql < 0 # via groundhog + - groundhog-sqlite < 0 # via direct-sqlite + - groundhog-th < 0 # via groundhog - grouped-list < 0 # via base-4.13.0.0 + - gtk2hs-buildtools < 0 # compilation failure + - gym-http-api < 0 # via servant servant-client - hackage-security < 0 # via base-4.13.0.0 - haddock-library < 0 # via base-4.13.0.0 + - hadolint < 0 # via ShellCheck + - hailgun < 0 # via http-client-0.6.1 + - hamilton < 0 # via vty + - hapistrano < 0 # via path-io-1.5.0 & time-1.9.3 + - hasbolt < 0 # via hex + - haskell-lsp < 0 # via hslogger + - haskell-spacegoo < 0 # MonadFail - haskell-src < 0 # via base-4.13.0.0 + - haskell-tools-builtin-refactorings < 0 # bounds failure + - haskintex < 0 # via hint + - haskoin-core < 0 # via secp256k1-haskell + - hasql < 0 # via postgresql-binary + - hasql-optparse-applicative < 0 # via hasql + - hasql-pool < 0 # via hasql + - hasql-transaction < 0 # via hasql + - haxl < 0 # via time-1.9.3 + - hbeanstalk < 0 # sClose not in scope + - hdevtools < 0 # compilation failure - hedn < 0 # via base-4.13.0.0 - hex < 0 # via base-4.13.0.0 - hidden-char < 0 # via base-4.13.0.0 - - hledger < 0 # via base-4.13.0.0 - - hledger-lib < 0 # via base-4.13.0.0 - - hledger-ui < 0 # via base-4.13.0.0 + - highlighting-kate < 0 # via blaze-html + - highlighting-kate < 0 # via regex-pcre-builtin + - histogram-fill < 0 # compilation failure + - hledger < 0 # via base-4.13.0.0 & base-compat-batteries-0.11.0 & easytest-0.3 + - hledger-interest < 0 # via hledger-lib + - hledger-lib < 0 # via base-4.13.0.0 & base-compat-batteries-0.11.0 & easytest-0.3 + - hledger-ui < 0 # via base-4.13.0.0 & base-compat-batteries-0.11.0 - hledger-web < 0 # via base-4.13.0.0 + - hlibsass < 0 # template-haskell + - hmatrix-backprop < 0 # via backprop + - hmm-lapack < 0 # via lapack + - hoauth2 < 0 # via binary-0.8.7.0 + - hoogle < 0 # via wai-logger + - hpack < 0 # MonadFail https://github.com/sol/hpack/issues/371 + - hpack-dhall < 0 # via dhall & dhall-json + - hpqtypes < 0 # bounds failure + - hprotoc < 0 # compilation failure + - hquantlib-time < 0 # via time-1.9.3 + - hsass < 0 # via hlibsass + - hschema < 0 # via natural-transformation + - hschema-aeson < 0 # via hschema & hschema-prettyprinter & hschema-quickcheck + - hschema-prettyprinter < 0 # via natural-transformation + - hschema-quickcheck < 0 # via hschema + - hsexif < 0 # via time-1.9.3 + - hslogger < 0 # via network-3.1.1.0 & network-bsd + - hspec-expectations-pretty-diff < 0 # unknown - hspec-need-env < 0 # via base-4.13.0.0 + - hspec-pg-transact < 0 # via tmp-postgres + - hspec-wai-json < 0 # via hspec-wai + - hstatsd < 0 # sClose not in scope + - html-conduit < 0 # compilation error https://github.com/snoyberg/xml/issues/148 + - html-email-validate < 0 # via regex-pcre-builtin + - http-directory < 0 # via html-conduit + - http-streams < 0 # via io-streams & openssl-streams + - httpd-shed < 0 # via network-bsd + - hw-balancedparens < 0 # via hw-fingertree + - hw-dsv < 0 # via hw-hspec-hedgehog & hw-rankselect + - hw-eliasfano < 0 # via generic-lens-1.2.0.0 & hw-packed-vector-0.2.0.0 + - hw-fingertree < 0 # via hw-hspec-hedgehog + - hw-fingertree-strict < 0 # via hw-hspec-hedgehog + - hw-hspec-hedgehog < 0 # via call-stack-0.2.0 + - hw-ip < 0 # via generic-lens-1.2.0.0 + - hw-json < 0 # via generic-lens-1.2.0.0 & hw-json-simple-cursor & hw-json-standard-cursor + - hw-mquery < 0 # via lens-4.18.1 + - hw-packed-vector < 0 # via generic-lens-1.2.0.0 + - hw-parser < 0 # via hw-hspec-hedgehog + - hw-rankselect < 0 # via generic-lens-1.2.0.0 + - hw-rankselect-base < 0 # via bits-extra + - hw-simd < 0 # via hw-hspec-hedgehog & hw-rankselect + - hw-succinct < 0 # via hw-rankselect + - hxt-http < 0 # via HTTP - hyper < 0 # via base-4.13.0.0 - - ihaskell < 0 # via base-4.13.0.0 - indentation-core < 0 # via base-4.13.0.0 - indentation-parsec < 0 # via base-4.13.0.0 + - inline-c-cpp < 0 # via inline-c + - inline-r < 0 # via inline-c + - inliterate < 0 # via blaze-html & plotlyhs + - interpolatedstring-perl6 < 0 + - interpolatedstring-qq2 < 0 # via template-haskell-2.15.0.0 + - invertible-grammar < 0 # via profunctors-5.5 + - io-choice < 0 # template-haskell - io-streams-haproxy < 0 # via base-4.13.0.0 + - ip6addr < 0 # via IPv6Addr + - ipynb < 0 # via aeson-diff + - ixset-typed < 0 # via safecopy-0.10.0 + - jni < 0 # compilation failure + - jose < 0 # MonadFail - json < 0 # via base-4.13.0.0 + - json-autotype < 0 # via lens-4.18.1 - json-feed < 0 # via base-4.13.0.0 - json-rpc-client < 0 # via base-4.13.0.0 - json-rpc-server < 0 # via base-4.13.0.0 + - jvm < 0 # transitive compilation failure + - kleene < 0 # via regex-applicative - kraken < 0 # via base-4.13.0.0 - lackey < 0 # via base-4.13.0.0 + - lambdabot-irc-plugins < 0 # via lambdabot-core + - language-docker < 0 # Data.Text instance of Lift + - language-ecmascript < 0 # via Diff-0.4.0 + - lapack < 0 # via hyper + - large-hashable < 0 # compilation failure - learn-physics < 0 # via base-4.13.0.0 - - loc < 0 # via base-4.13.0.0 - - monoid-extras < 0 # via base-4.13.0.0 - - monoidal-containers < 0 # via base-4.13.0.0 - - msgpack < 0 # via base-4.13.0.0 - - named < 0 # via base-4.13.0.0 - - naqsha < 0 # via base-4.13.0.0 - - oset < 0 # via base-4.13.0.0 - - palette < 0 # via base-4.13.0.0 - - partial-semigroup < 0 # via base-4.13.0.0 - - path-text-utf8 < 0 # via base-4.13.0.0 - - persistent < 0 # via base-4.13.0.0 - - proto-lens < 0 # via base-4.13.0.0 - - proto-lens-arbitrary < 0 # via base-4.13.0.0 - - proto-lens-optparse < 0 # via base-4.13.0.0 - - proto-lens-protobuf-types < 0 # via base-4.13.0.0 - - proto-lens-protoc < 0 # via base-4.13.0.0 - - proto-lens-runtime < 0 # via base-4.13.0.0 - - proto-lens-setup < 0 # via base-4.13.0.0 - - raaz < 0 # via base-4.13.0.0 - - ratel < 0 # via base-4.13.0.0 - - ratel-wai < 0 # via base-4.13.0.0 - - rattletrap < 0 # via base-4.13.0.0 - - reanimate < 0 # via base-4.13.0.0 - - repa < 0 # via base-4.13.0.0 - - repa-algorithms < 0 # via base-4.13.0.0 - - repa-io < 0 # via base-4.13.0.0 - - rhine < 0 # via base-4.13.0.0 - - rhine-gloss < 0 # via base-4.13.0.0 - - salve < 0 # via base-4.13.0.0 - - servant-auth < 0 # via base-4.13.0.0 - - servant-auth-client < 0 # via base-4.13.0.0 - - servant-auth-docs < 0 # via base-4.13.0.0 - - servant-auth-server < 0 # via base-4.13.0.0 - - servant-auth-swagger < 0 # via base-4.13.0.0 - - sexpr-parser < 0 # via base-4.13.0.0 - - shower < 0 # via base-4.13.0.0 - - sized-grid < 0 # via base-4.13.0.0 - - slack-web < 0 # via base-4.13.0.0 - - smallcheck-series < 0 # via base-4.13.0.0 - - snap-server < 0 # via base-4.13.0.0 - - sqlite-simple < 0 # via base-4.13.0.0 - - statestack < 0 # via base-4.13.0.0 - - strive < 0 # via base-4.13.0.0 - - summoner < 0 # via base-4.13.0.0 - - sv < 0 # via base-4.13.0.0 - - sv-core < 0 # via base-4.13.0.0 - - svg-builder < 0 # via base-4.13.0.0 - - swish < 0 # via base-4.13.0.0 - - termbox < 0 # via base-4.13.0.0 - - text-format < 0 # via base-4.13.0.0 - - threepenny-gui < 0 # via base-4.13.0.0 - - timer-wheel < 0 # via base-4.13.0.0 - - token-bucket < 0 # via base-4.13.0.0 - - ucam-webauth < 0 # via base-4.13.0.0 - - ucam-webauth-types < 0 # via base-4.13.0.0 - - unagi-chan < 0 # via base-4.13.0.0 - - union < 0 # via base-4.13.0.0 - - viewprof < 0 # via base-4.13.0.0 - - wai-middleware-travisci < 0 # via base-4.13.0.0 - - web3 < 0 # via base-4.13.0.0 - - wild-bind < 0 # via base-4.13.0.0 - - wild-bind-x11 < 0 # via base-4.13.0.0 - - wuss < 0 # via base-4.13.0.0 - - algebraic-graphs < 0 # via base-compat-0.11.0 - - gi-gtk-hs < 0 # via base-compat-0.11.0 - - pure-zlib < 0 # via base-compat-0.11.0 - - wl-pprint-text < 0 # via base-compat-0.11.0 - - hledger < 0 # via base-compat-batteries-0.11.0 - - hledger-lib < 0 # via base-compat-batteries-0.11.0 - - hledger-ui < 0 # via base-compat-batteries-0.11.0 - - hoauth2 < 0 # via binary-0.8.7.0 - - hyraxAbif < 0 # via binary-0.8.7.0 - - hyraxAbif < 0 # via bytestring-0.10.9.0 - - hw-hspec-hedgehog < 0 # via call-stack-0.2.0 - - dhall < 0 # via cborg-json - - sized-grid < 0 # via constraints-0.11.2 - - dependent-map < 0 # via constraints-extras - - dependent-sum < 0 # via constraints-extras - - dependent-sum-template < 0 # via constraints-extras - - MissingH < 0 # via containers-0.6.2.1 - - servant-kotlin < 0 # via containers-0.6.2.1 - - web3 < 0 # via cryptonite-0.26 - - beam-migrate < 0 # via dependent-map-0.3 - - lambdabot-core < 0 # via dependent-map-0.3 - - beam-migrate < 0 # via dependent-sum-0.6.2.0 - - lambdabot-core < 0 # via dependent-sum-0.6.2.0 - - MissingH < 0 # via directory-1.3.3.2 - - doctemplates < 0 # via doclayout - - pandoc < 0 # via doctemplates-0.6.1 - - hledger < 0 # via easytest-0.3 - - hledger-lib < 0 # via easytest-0.3 - - MissingH < 0 # via filepath-1.4.2.1 - - summoner < 0 # via generic-deriving-1.13 - - hw-eliasfano < 0 # via generic-lens-1.2.0.0 - - hw-ip < 0 # via generic-lens-1.2.0.0 - - hw-json < 0 # via generic-lens-1.2.0.0 - - hw-packed-vector < 0 # via generic-lens-1.2.0.0 - - hw-rankselect < 0 # via generic-lens-1.2.0.0 - - apply-refact < 0 # via ghc-8.8.1 - - ghc-parser < 0 # via ghc-8.8.1 - - ihaskell < 0 # via ghc-8.8.1 - - loopbreaker < 0 # via ghc-8.8.1 - - hsdev < 0 # via ghc-boot-8.8.1 - - ihaskell < 0 # via ghc-boot-8.8.1 - - gi-gtk-hs < 0 # via gi-gdk-4.0.1 - - gi-gtksource < 0 # via gi-gdk-4.0.1 - - gi-vte < 0 # via gi-gdk-4.0.1 - - gi-gtk < 0 # via gi-graphene - - gi-gtk < 0 # via gi-gsk - - gi-gtk-hs < 0 # via gi-gtk-4.0.1 - - gi-gtksource < 0 # via gi-gtk-4.0.1 - - gi-vte < 0 # via gi-gtk-4.0.1 - - easytest < 0 # via hedgehog-1.0.1 - - hsdev < 0 # via hlint-2.2.2 - - language-puppet < 0 # via hslogger-1.3.0.0 - - hw-json < 0 # via hw-json-simple-cursor - - hw-json < 0 # via hw-json-standard-cursor - - hw-eliasfano < 0 # via hw-packed-vector-0.2.0.0 - - liboath-hs < 0 # via inline-c-0.8.0.1 - - diagrams-lib < 0 # via intervals-0.9 - - cayley-client < 0 # via lens-4.18.1 - - diagrams-contrib < 0 # via lens-4.18.1 - - diagrams-core < 0 # via lens-4.18.1 - - diagrams-lib < 0 # via lens-4.18.1 - - diagrams-postscript < 0 # via lens-4.18.1 - - diagrams-rasterific < 0 # via lens-4.18.1 - - diagrams-svg < 0 # via lens-4.18.1 - - force-layout < 0 # via lens-4.18.1 - - gothic < 0 # via lens-4.18.1 - - hw-mquery < 0 # via lens-4.18.1 - - json-autotype < 0 # via lens-4.18.1 - lens-process < 0 # via lens-4.18.1 - - servant-auth-server < 0 # via lens-4.18.1 - - servant-kotlin < 0 # via lens-4.18.1 - - cayley-client < 0 # via lens-aeson-1.1 - - gothic < 0 # via lens-aeson-1.1 - - hsdev < 0 # via lens-aeson-1.1 + - lens-regex-pcre < 0 # via pcre-heavy - lens-simple < 0 # via lens-family-2.0.0 - - proto-lens < 0 # via lens-family-2.0.0 - - proto-lens-arbitrary < 0 # via lens-family-2.0.0 - - proto-lens-protobuf-types < 0 # via lens-family-2.0.0 - - proto-lens-protoc < 0 # via lens-family-2.0.0 - - proto-lens-runtime < 0 # via lens-family-2.0.0 - lens-simple < 0 # via lens-family-core-2.0.0 + - liboath-hs < 0 # via inline-c-0.8.0.1 + - line < 0 # via scotty + - linear-circuit < 0 # via lapack + - list-witnesses < 0 # via vinyl + - llvm-hs-pretty < 0 # compilation failure + - loc < 0 # via base-4.13.0.0 + - locators < 0 # via cryptohash + - logger-thread < 0 # via protolude + - loopbreaker < 0 # via ghc-8.8.1 + - lsp-test < 0 # via conduit-parse + - lsp-test < 0 # via haskell-lsp - machines-binary < 0 # via machines-0.7 - machines-directory < 0 # via machines-0.7 - machines-io < 0 # via machines-0.7 - - language-puppet < 0 # via memory-0.15.0 - - mysql-haskell < 0 # via memory-0.15.0 - - servant-auth-server < 0 # via memory-0.15.0 - - web3 < 0 # via memory-0.15.0 - - vty < 0 # via microlens-0.4.11.2 - - web3 < 0 # via microlens-mtl-0.2.0.1 - - MissingH < 0 # via old-time-1.1.0.3 - - bench-show < 0 # via optparse-applicative-0.15.1.0 - - diagrams-lib < 0 # via optparse-applicative-0.15.1.0 - - diagrams-rasterific < 0 # via optparse-applicative-0.15.1.0 - - diagrams-svg < 0 # via optparse-applicative-0.15.1.0 - - proto-lens-optparse < 0 # via optparse-applicative-0.15.1.0 - - wai-middleware-crowd < 0 # via optparse-applicative-0.15.1.0 - - hapistrano < 0 # via path-io-1.5.0 - - graphviz < 0 # via polyparse-1.13 - - core-data < 0 # via prettyprinter-1.3.0 - - core-program < 0 # via prettyprinter-1.3.0 and template-haskell-2.15 - - core-text < 0 # via prettyprinter-1.3.0 and template-haskell-2.15 - - sexp-grammar < 0 # via prettyprinter-1.3.0 and semigroups-0.19 - - MissingH < 0 # via process-1.6.5.1 - - blaze-colonnade < 0 # via profunctors-5.5 - - colonnade < 0 # via profunctors-5.5 - - invertible-grammar < 0 # via profunctors-5.5 - - proto-lens < 0 # via profunctors-5.5 - - ixset-typed < 0 # via safecopy-0.10.0 - - selda-postgresql < 0 # via selda-0.5.0.0 - - selda-sqlite < 0 # via selda-0.5.0.0 - - universe-dependent-sum < 0 # via some - - data-accessor-template < 0 # via template-haskell-2.15.0.0 - - interpolatedstring-qq2 < 0 # via template-haskell-2.15.0.0 - - quickcheck-arbitrary-template < 0 # via template-haskell-2.15.0.0 - - rank2classes < 0 # via template-haskell-2.15.0.0 - - size-based < 0 # via template-haskell-2.15.0.0 - - static-text < 0 # via template-haskell-2.15.0.0 - - hyraxAbif < 0 # via text-1.2.4.0 - - sqlite-simple-errors < 0 # via text-1.2.4.0 - - universum < 0 # via text-1.2.4.0 - - HDBC < 0 # via time-1.9.3 - - MissingH < 0 # via time-1.9.3 - - cereal-time < 0 # via time-1.9.3 - - ekg < 0 # via time-1.9.3 - - ekg-statsd < 0 # via time-1.9.3 - - esqueleto < 0 # via time-1.9.3 - - fold-debounce < 0 # via time-1.9.3 - - gnuplot < 0 # via time-1.9.3 - - hapistrano < 0 # via time-1.9.3 - - haxl < 0 # via time-1.9.3 - - hquantlib-time < 0 # via time-1.9.3 - - hsdev < 0 # via time-1.9.3 - - hsexif < 0 # via time-1.9.3 - - pinboard < 0 # via time-1.9.3 - - postgresql-simple-migration < 0 # via time-1.9.3 - - rhine < 0 # via time-1.9.3 - - safe-json < 0 # via time-1.9.3 - - servant-auth-client < 0 # via time-1.9.3 - - servant-auth-server < 0 # via time-1.9.3 - - servant-kotlin < 0 # via time-1.9.3 - - strive < 0 # via time-1.9.3 - - summoner < 0 # via time-1.9.3 - - th-nowq < 0 # via time-1.9.3 - - tz < 0 # via time-1.9.3 - - web3 < 0 # via time-1.9.3 - - wild-bind-x11 < 0 # via time-1.9.3 - - ztail < 0 # via time-1.9.3 - - MissingH < 0 # via unix-2.7.2.2 - - beam-core < 0 # via vector-sized-1.4.0.0 - - beam-mysql < 0 # via beam-core - - beam-postgres < 0 # via beam-core - - beam-sqlite < 0 # via beam-core - - elm-street < 0 # via warp-3.3.2 - - servant-auth-client < 0 # via warp-3.3.2 - - # round 2 - - HDBC-mysql < 0 # via HDBC - - HDBC-session < 0 # via HDBC - - persistable-types-HDBC-pg < 0 # via HDBC - - relational-query-HDBC < 0 # via HDBC - - yeshql-hdbc < 0 # via HDBC - - MusicBrainz < 0 # via HTTP - - avwx < 0 # via HTTP - - gravatar < 0 # via HTTP - - pg-harness-client < 0 # via HTTP - - uri-templater < 0 # via HTTP - - HsOpenSSL-x509-system < 0 # via HsOpenSSL - - google-oauth2-jwt < 0 # via HsOpenSSL - - ses-html < 0 # via HsOpenSSL - - ip6addr < 0 # via IPv6Addr - - DBFunctor < 0 # via MissingH - - cryptocompare < 0 # via MissingH - - file-modules < 0 # via MissingH - - hadolint < 0 # via ShellCheck - - ipynb < 0 # via aeson-diff - - avers-api < 0 # via servant - - fib < 0 # via base-noprelude - - bencoding < 0 # via bencode - - hledger-iadd < 0 # via brick - - bson-lens < 0 # via bson - - debian < 0 # via bzlib - - chronos-bench < 0 # via chronos - - qnap-decrypt < 0 # via cipher-aes128 - - functor-combinators < 0 # via dependent-sum - - prim-uniq < 0 # via dependent-sum - - typelits-witnesses < 0 # via dependent-sum - - dhall-bash < 0 # via dhall - - dhall-json < 0 # via dhall - - hpack-dhall < 0 # via dhall - - verbosity < 0 # via dhall - - hpack-dhall < 0 # via dhall-json - - diagrams < 0 # via diagrams-contrib - - Chart-diagrams < 0 # via diagrams-core - - SVGFonts < 0 # via diagrams-core - - diagrams < 0 # via diagrams-core - - Chart-diagrams < 0 # via diagrams-lib - - SVGFonts < 0 # via diagrams-lib - - diagrams < 0 # via diagrams-lib + - magico < 0 # via lapack + - massiv-io < 0 # via netpbm + - mbtiles < 0 # via sqlite-simple + - mbug < 0 # via http-client-0.6.1 + - med-module < 0 # compilation failure + - mega-sdist < 0 # via pantry + - menshen < 0 # via regex-tdfa-1.3.0 + - merkle-tree < 0 # via protolude - midi-music-box < 0 # via diagrams-lib - - Chart-diagrams < 0 # via diagrams-postscript - midi-music-box < 0 # via diagrams-postscript - - Chart-diagrams < 0 # via diagrams-svg - - diagrams < 0 # via diagrams-svg - - groundhog-sqlite < 0 # via direct-sqlite - - eventstore < 0 # via dns - - eventstore < 0 # via ekg-core + - minio-hs < 0 # via protolude + - mmtf < 0 # via data-msgpack - monad-metrics < 0 # via ekg-core - - check-email < 0 # via email-validate - - yesod-auth < 0 # via email-validate - - yesod-form < 0 # via email-validate - - persistent-pagination < 0 # via esqueleto - - persistent-typed-db < 0 # via esqueleto - - shake-language-c < 0 # via fclabels - - download < 0 # via feed - - shikensu < 0 # via flow - - termonad < 0 # via gi-gtk - - termonad < 0 # via gi-vte - - apecs-gloss < 0 # via gloss - - graphite < 0 # via graphviz - - hopenpgp-tools < 0 # via graphviz - - hopenpgp-tools < 0 # via hOpenPGP - - stack < 0 # via hackage-security - - HTF < 0 # via haskell-src - - polysemy-zoo < 0 # via hedis - - protobuf < 0 # via hex - - haskintex < 0 # via hint - - hledger-iadd < 0 # via hledger-lib - - hledger-interest < 0 # via hledger-lib - - wai-middleware-auth < 0 # via hoauth2 - - yesod-auth-oauth2 < 0 # via hoauth2 - - haskell-lsp < 0 # via hslogger - - cachix-api < 0 # via http-media - - servant-checked-exceptions-core < 0 # via http-media - - servant-rawm < 0 # via http-media - - servant-static-th < 0 # via http-media - - servant-xml < 0 # via http-media - - wai-middleware-auth < 0 # via http-reverse-proxy - - ses-html < 0 # via http-streams - - board-games < 0 # via httpd-shed - - arbor-lru-cache < 0 # via hw-hspec-hedgehog - - bits-extra < 0 # via hw-hspec-hedgehog - - hw-dsv < 0 # via hw-hspec-hedgehog - - hw-fingertree < 0 # via hw-hspec-hedgehog - - hw-fingertree-strict < 0 # via hw-hspec-hedgehog - - hw-parser < 0 # via hw-hspec-hedgehog - - hw-simd < 0 # via hw-hspec-hedgehog - - hw-dsv < 0 # via hw-rankselect - - hw-simd < 0 # via hw-rankselect - - hw-succinct < 0 # via hw-rankselect - - lapack < 0 # via hyper - - mysql-haskell-nem < 0 # via io-streams - - unliftio-streams < 0 # via io-streams - - websockets-snap < 0 # via io-streams - - wire-streams < 0 # via io-streams - - aeson-iproute < 0 # via iproute - - radius < 0 # via iproute - - hopenpgp-tools < 0 # via ixset-typed - - rainbow < 0 # via lens-simple - - rainbox < 0 # via lens-simple - - polysemy < 0 # via loopbreaker - - witherable < 0 # via monoidal-containers + - monad-recorder < 0 # compilation failure + - mongoDB < 0 # via network-3.1.1.0 + - monoid-extras < 0 # via base-4.13.0.0 + - monoidal-containers < 0 # via base-4.13.0.0 + - mpi-hs < 0 # via store + - msgpack < 0 # via base-4.13.0.0 - msgpack-aeson < 0 # via msgpack + - mustache < 0 # Lift Text + - mwc-probability-transition < 0 # via logging-effect + - mysql-haskell < 0 # via memory-0.15.0 + - mysql-haskell-nem < 0 # via io-streams - mysql-haskell-nem < 0 # via mysql-haskell + - named < 0 # via base-4.13.0.0 + - naqsha < 0 # via base-4.13.0.0 + - network-anonymous-i2p < 0 # via network-simple + - network-attoparsec < 0 # via network-simple + - network-bsd < 0 # via network-3.1.1.0 + - network-house < 0 # MonadFail + - network-ip < 0 # via data-dword + - network-messagepack-rpc < 0 # via data-msgpack + - network-multicast < 0 # via network-bsd + - network-simple < 0 # via network-bsd + - network-simple-tls < 0 # via network-simple + - nvim-hs < 0 # via hslogger - nvim-hs-contrib < 0 # via nvim-hs + - nvvm < 0 # via cuda + - o-clock < 0 # compilation failure + - oblivious-transfer < 0 # via protolude + - oeis < 0 # via test-framework + - oeis < 0 # via test-framework-hunit + - open-witness < 0 # MonadFail + - openssl-streams < 0 # via test-framework-hunit + - optparse-enum < 0 # via fmt + - oset < 0 # via base-4.13.0.0 + - palette < 0 # via base-4.13.0.0 + - pandoc < 0 # via HsYAML-0.2.0.0 + - pandoc < 0 # via doctemplates-0.6.1 + - pandoc-citeproc < 0 # via pandoc-types - pandoc-csv2table < 0 # via pandoc - pandoc-markdown-ghci-filter < 0 # via pandoc - pandoc-pyplot < 0 # via pandoc - - pencil < 0 # via pandoc - - classy-prelude-yesod < 0 # via persistent - - closed < 0 # via persistent + - pandoc-types < 0 # via test-framework-quickcheck2 + - partial-semigroup < 0 # via base-4.13.0.0 - password-instances < 0 # via persistent + - path-text-utf8 < 0 # via base-4.13.0.0 + - pcf-font < 0 # MonadFail + - pcf-font-embed < 0 # via pcf-font + - pcre-heavy < 0 # via string-conversions + - pcre-utils < 0 # via regex-pcre-builtin + - pedersen-commitment < 0 # via protolude + - pencil < 0 # via pandoc + - peregrin < 0 # via postgresql-simple + - persist < 0 # MonadFail + - persistable-types-HDBC-pg < 0 # via HDBC + - persistent < 0 # via base-4.13.0.0 - persistent-mysql < 0 # via persistent - persistent-pagination < 0 # via persistent - persistent-postgresql < 0 # via persistent @@ -5035,548 +5013,240 @@ packages: - persistent-template < 0 # via persistent - persistent-test < 0 # via persistent - persistent-typed-db < 0 # via persistent - - stack < 0 # via persistent - - tonatona-persistent-postgresql < 0 # via persistent - - tonatona-persistent-sqlite < 0 # via persistent - - yesod-auth < 0 # via persistent - - yesod-auth-hashdb < 0 # via persistent - - yesod-form < 0 # via persistent - - yesod-paginator < 0 # via persistent - - yesod-persistent < 0 # via persistent - - yesod-text-markdown < 0 # via persistent - - aos-signature < 0 # via protolude - - bulletproofs < 0 # via protolude - - cachix-api < 0 # via protolude - - galois-field < 0 # via protolude - - logger-thread < 0 # via protolude - - merkle-tree < 0 # via protolude - - minio-hs < 0 # via protolude - - oblivious-transfer < 0 # via protolude - - pedersen-commitment < 0 # via protolude - - avro < 0 # via pure-zlib - - regex-with-pcre < 0 # via regex + - pg-harness-client < 0 # via HTTP + - pg-harness-server < 0 # via scotty + - pg-transact < 0 # via tmp-postgres + - pinboard < 0 # via time-1.9.3 + - pipes-category < 0 # via pipes-extras + - pipes-fluid < 0 # via these + - pipes-misc < 0 # via pipes-category + - pipes-network < 0 # via network-simple + - pipes-network-tls < 0 # via network-simple-tls + - plot-light < 0 # transitive compilation failure + - polysemy-plugin < 0 # via polysemy + - polysemy-zoo < 0 # via hedis + - postgresql-binary < 0 # via network-ip + - postgresql-schema < 0 # via postgresql-simple + - postgresql-simple-migration < 0 # via time-1.9.3 + - postgresql-simple-queue < 0 # via pg-transact + - postgresql-simple-url < 0 # via postgresql-simple + - postgresql-transactional < 0 # via postgresql-simple + - postgresql-typed < 0 # via HDBC + - postgresql-typed < 0 # via postgresql-binary + - prim-uniq < 0 # via dependent-sum + - probability < 0 # MonadFail + - protobuf < 0 # via hex + - protocol-buffers < 0 # MonadFail + - protocol-buffers-descriptor < 0 # via protocol-buffers + - psql-helpers < 0 # via postgresql-simple + - pure-zlib < 0 # via base-compat-0.11.0 + - purescript-bridge < 0 # via hspec-expectations-pretty-diff + - qnap-decrypt < 0 # via cipher-aes128 + - quickbench < 0 # via docopt + - quickcheck-arbitrary-template < 0 # via template-haskell-2.15.0.0 + - quickcheck-state-machine < 0 # via tree-diff + - raaz < 0 # via base-4.13.0.0 + - radius < 0 # via iproute + - rainbow < 0 # via lens-simple + - rainbox < 0 # via lens-simple + - random-source < 0 # via flexible-defaults + - rasterific-svg < 0 # via Rasterific + - ratel < 0 # via base-4.13.0.0 + - ratel-wai < 0 # via base-4.13.0.0 + - rattletrap < 0 # via base-4.13.0.0 + - reanimate < 0 # via base-4.13.0.0 + - ref-fd < 0 # bounds failure + - references < 0 + - regex < 0 # hashable-1.3.0 + - regex-applicative-text < 0 # via regex-applicative - regex-pcre-text < 0 # via regex-base-0.94.0.0 - regex-tdfa-text < 0 # via regex-base-0.94.0.0 - - yi-language < 0 # via regex-base-0.94.0.0 - - datasets < 0 # via req - - elm2nix < 0 # via req - - filter-logger < 0 # via scotty - - line < 0 # via scotty - - pg-harness-server < 0 # via scotty - - stripe-scotty < 0 # via scotty - - cachix-api < 0 # via servant-auth - - cachix-api < 0 # via servant-auth-server - - cachix-api < 0 # via servant-auth-swagger - - avers-server < 0 # via servant-server + - regex-with-pcre < 0 # via regex + - registry < 0 # also protolude, semigroups, universum + - relational-query-HDBC < 0 # via HDBC + - relational-record < 0 # via persistable-types-HDBC-pg + - relational-record < 0 # via relational-query-HDBC + - relude < 0 # hashable-1.3.0 + - repa < 0 # via base-4.13.0.0 + - repa-algorithms < 0 # via base-4.13.0.0 + - repa-io < 0 # via base-4.13.0.0 + - require < 0 # via universum + - resistor-cube < 0 # via lapack + - rg < 0 # via fmt + - rvar < 0 # via random-source + - s3-signer < 0 # via http-types + - safe-json < 0 # via time-1.9.3 + - salak-toml < 0 # via tomland + - salve < 0 # via base-4.13.0.0 + - sandman < 0 # Cabal 3 + - sbv < 0 # MonadFail + - scalpel < 0 # via scalpel-core + - scalpel-core < 0 # compilation error + - secp256k1-haskell < 0 # via string-conversions + - selda-postgresql < 0 # via selda-0.5.0.0 + - selda-sqlite < 0 # via selda-0.5.0.0 + - servant-auth < 0 # via base-4.13.0.0 + - servant-auth-docs < 0 # via base-4.13.0.0 + - servant-auth-swagger < 0 # via base-4.13.0.0 - servant-auth-wordpress < 0 # via servant-server - servant-checked-exceptions < 0 # via servant-server + - servant-checked-exceptions-core < 0 # via http-media - servant-cli < 0 # via servant-server - - servant-rawm < 0 # via servant-server - - servant-static-th < 0 # via servant-server + - servant-elm < 0 # via wl-pprint-text + - servant-ruby < 0 # via servant-foreign - servant-tracing < 0 # via servant-server - - tonatona-servant < 0 # via servant-server - - testing-feat < 0 # via size-based - - gingersnap < 0 # via snap-core + - servant-xml < 0 # via http-media + - servius < 0 # via wai-app-static + - ses-html < 0 # via HsOpenSSL + - ses-html < 0 # via http-streams + - sexp-grammar < 0 # via prettyprinter-1.3.0 and semigroups-0.19 + - sexpr-parser < 0 # via base-4.13.0.0 + - shake-language-c < 0 # via fclabels + - shikensu < 0 # via flow + - shortcut-links < 0 # MonadFail + - show-prettyprint < 0 # via trifecta + - shower < 0 # via base-4.13.0.0 + - simple < 0 # https://github.com/alevy/simple/issues/23 + - simple-session < 0 + - size-based < 0 # via template-haskell-2.15.0.0 + - sized-grid < 0 # via base-4.13.0.0 + - skews < 0 # via websockets + - slack-web < 0 # via base-4.13.0.0 + - smallcheck-series < 0 # via base-4.13.0.0 - snap-blaze < 0 # via snap-core - - websockets-snap < 0 # via snap-core - - websockets-snap < 0 # via snap-server - - mbtiles < 0 # via sqlite-simple - - mpi-hs < 0 # via store - - datasets < 0 # via streaming - - eventstore < 0 # via streaming + - snap-server < 0 # via base-4.13.0.0 + - socket-activation < 0 # via network-3.1.1.0 + - sphinx < 0 # Could not find module Network + - sqlite-simple < 0 # via base-4.13.0.0 + - sqlite-simple-errors < 0 # via text-1.2.4.0 + - state-codes < 0 # via shakespeare + - statestack < 0 # via base-4.13.0.0 + - static-text < 0 # via template-haskell-2.15.0.0 + - store < 0 # via store-core + - store-core < 0 # MonadFail - streaming-attoparsec < 0 # via streaming - streaming-bytestring < 0 # via streaming - streaming-cassava < 0 # via streaming - streaming-wai < 0 # via streaming + - streamproc < 0 # MonadFail + - string-interpolate < 0 # via interpolatedstring-perl6 + - stripe-scotty < 0 # via scotty + - stripe-wreq < 0 # via wreq + - strive < 0 # via base-4.13.0.0 + - structured-cli < 0 # MonadFail + - sv < 0 # via base-4.13.0.0 - sv-cassava < 0 # via sv-core - - Chart-diagrams < 0 # via svg-builder - - cachix-api < 0 # via swagger2 - - hspec-pg-transact < 0 # via tmp-postgres - - pg-transact < 0 # via tmp-postgres - - salak-toml < 0 # via tomland - - polysemy < 0 # via type-errors-pretty - - polysemy < 0 # via unagi-chan - - require < 0 # via universum + - sv-core < 0 # via base-4.13.0.0 + - svg-builder < 0 # via base-4.13.0.0 + - swish < 0 # via base-4.13.0.0 + - systemd < 0 # socketToFd is ambiguous + - tagstream-conduit < 0 # MonadFail + - tdigest < 0 # via vector-algorithms + - teardown < 0 # compilation failure + - template-toolkit < 0 # via regex-pcre-builtin + - termbox < 0 # via base-4.13.0.0 + - termonad < 0 # via gi-gtk + - termonad < 0 # via gi-vte + - testing-feat < 0 # via size-based + - texmath < 0 # via pandoc-types + - text-builder < 0 # via deferred-folds + - text-format < 0 # via base-4.13.0.0 + - th-nowq < 0 # via time-1.9.3 + - th-utilities < 0 # template-haskell + - threepenny-gui < 0 # via base-4.13.0.0 + - time-qq < 0 + - timer-wheel < 0 # via base-4.13.0.0 - tintin < 0 # via universum - - hamilton < 0 # via vty - - hledger-iadd < 0 # via vty - - servant-rawm < 0 # via wai-app-static - - servius < 0 # via wai-app-static - - wai-middleware-auth < 0 # via wai-app-static - - yesod-static < 0 # via wai-app-static - - filter-logger < 0 # via wai-logger - - hoogle < 0 # via wai-logger - - yesod < 0 # via wai-logger - - avers-server < 0 # via wai-websockets + - token-bucket < 0 # via base-4.13.0.0 + - tonaparser < 0 # via envy + - tonatona < 0 # via tonaparser + - tonatona-logger < 0 # via tonaparser + - tonatona-persistent-postgresql < 0 # via persistent + - tonatona-persistent-sqlite < 0 # via persistent + - tonatona-servant < 0 # via servant-server + - true-name < 0 # MonadFail + - ttl-hashtables < 0 # hashable-1.3.0 + - typelits-witnesses < 0 # via dependent-sum + - typography-geometry < 0 # compilation failure + - tz < 0 # via time-1.9.3 + - ucam-webauth < 0 # via base-4.13.0.0 + - ucam-webauth-types < 0 # via base-4.13.0.0 + - unagi-chan < 0 # via base-4.13.0.0 + - unbound-generics < 0 # MonadFail + - union < 0 # via base-4.13.0.0 + - universe-dependent-sum < 0 # via some + - universum < 0 # via text-1.2.4.0 + - unliftio-streams < 0 # via io-streams + - uri-templater < 0 # via HTTP + - users-postgresql-simple < 0 # via postgresql-simple + - users-test < 0 # via users + - verbosity < 0 # via dhall + - viewprof < 0 # via base-4.13.0.0 + - vinyl < 0 # kind stuff + - vivid < 0 # via vivid-osc + - vivid-osc < 0 + - vivid-supercollider < 0 # via vivid-osc + - vty < 0 # via microlens-0.4.11.2 + - wai-cli < 0 # via network-3.1.1.0 + - wai-middleware-crowd < 0 # via optparse-applicative-0.15.1.0 + - wai-middleware-throttle < 0 # via token-bucket + - wai-middleware-travisci < 0 # via base-4.13.0.0 + - wai-predicates < 0 # MonadFail + - wai-session-postgresql < 0 # via wai-session - wai-transformers < 0 # via wai-websockets - - yesod-websockets < 0 # via wai-websockets - - avers-server < 0 # via websockets - - skews < 0 # via websockets - - wai-transformers < 0 # via websockets - - websockets-snap < 0 # via websockets - - yesod-websockets < 0 # via websockets - - elm-export < 0 # via wl-pprint-text - - galois-field < 0 # via wl-pprint-text - - servant-elm < 0 # via wl-pprint-text - - dom-parser < 0 # via xml-lens + - wai-websockets < 0 # via wai-app-static + - wai-websockets < 0 # via websockets + - web-routes < 0 # via http-types + - web-routes-hsp < 0 # via web-routes + - web-routes-wai < 0 # via web-routes + - websockets < 0 # via network-3.1.1.0 + - wikicfp-scraper < 0 # via scalpel-core + - wild-bind < 0 # via base-4.13.0.0 + - wild-bind-x11 < 0 # via base-4.13.0.0 + - winery < 0 # via fast-builder + - wire-streams < 0 # via io-streams + - witherable < 0 # via monoidal-containers + - wl-pprint-text < 0 # via base-compat-0.11.0 + - wordpress-auth < 0 # via http-types + - wreq < 0 # via authenticate-oauth + - ws < 0 # via attoparsec-uri + - ws < 0 # via wuss + - wuss < 0 # via base-4.13.0.0 + - xenstore < 0 # sClose not in scope + - xlsx < 0 # MonadFail + - xlsx-tabular < 0 # via xlsx + - xml-conduit-parse < 0 # compilation error + - xml-hamlet < 0 # via shakespeare + - xml-html-qq < 0 # via html-conduit + - xml-isogen < 0 # via dom-parser + - xml-lens < 0 # via case-insensitive-1.2.1.0 + - xmlbf < 0 # MonadFail + - xmlbf-xeno < 0 # via xmlbf + - yeshql < 0 # via yeshql-hdbc + - yeshql-core < 0 # MonadFail + - yeshql-hdbc < 0 # via HDBC + - yesod < 0 # via wai-logger - yesod < 0 # via yesod-core - yesod-alerts < 0 # via yesod-core - - yesod-auth < 0 # via yesod-core - - yesod-auth-hashdb < 0 # via yesod-core - - yesod-auth-oauth2 < 0 # via yesod-core + - yesod-auth-hashdb < 0 # via yesod-test + - yesod-bin < 0 # via project-template + - yesod-bin < 0 # via shakespeare + - yesod-core < 0 # via blaze-html - yesod-csp < 0 # via yesod-core - yesod-eventsource < 0 # via yesod-core - yesod-fb < 0 # via yesod-core - - yesod-form < 0 # via yesod-core - yesod-form-bootstrap4 < 0 # via yesod-core - yesod-gitrepo < 0 # via yesod-core - yesod-gitrev < 0 # via yesod-core - yesod-newsfeed < 0 # via yesod-core - - yesod-paginator < 0 # via yesod-core - - yesod-persistent < 0 # via yesod-core + - yesod-persistent < 0 # via persistent - yesod-recaptcha2 < 0 # via yesod-core - yesod-sitemap < 0 # via yesod-core - - yesod-static < 0 # via yesod-core - - yesod-text-markdown < 0 # via yesod-core - - yesod-websockets < 0 # via yesod-core - - yesod-auth-hashdb < 0 # via yesod-test - - yesod-csp < 0 # via yesod-test - - yesod-paginator < 0 # via yesod-test - - yesod-static < 0 # via yesod-test - - # round 3 - - debug < 0 # via Hoed - - hw-rankselect-base < 0 # via bits-extra - - alerts < 0 # via blaze-html - - blaze-bootstrap < 0 # via blaze-html - - cheapskate < 0 # via blaze-html - - cheapskate-highlight < 0 # via blaze-html - - cheapskate-lucid < 0 # via blaze-html - - cmark-gfm < 0 # via blaze-html - - highlighting-kate < 0 # via blaze-html - - inliterate < 0 # via blaze-html - - barrier < 0 # via blaze-svg - - cabal-debian < 0 # via debian - - xml-isogen < 0 # via dom-parser - - cabal2nix < 0 # via hpack - - postgresql-simple-queue < 0 # via hspec-pg-transact - - hspec-wai-json < 0 # via hspec-wai - - dl-fedora < 0 # via http-directory - - hw-balancedparens < 0 # via hw-fingertree - - hmm-lapack < 0 # via lapack - - linear-circuit < 0 # via lapack - - magico < 0 # via lapack - - resistor-cube < 0 # via lapack - - cmark-gfm < 0 # via markdown - - massiv-io < 0 # via netpbm - - relational-record < 0 # via persistable-types-HDBC-pg - - postgresql-simple-queue < 0 # via pg-transact - - inliterate < 0 # via plotlyhs - - polysemy-plugin < 0 # via polysemy - - highlighting-kate < 0 # via regex-pcre-builtin - - html-email-validate < 0 # via regex-pcre-builtin - - pcre-utils < 0 # via regex-pcre-builtin - - template-toolkit < 0 # via regex-pcre-builtin - - relational-record < 0 # via relational-query-HDBC - - wikicfp-scraper < 0 # via scalpel-core - - miso < 0 # via servant - - miso < 0 # via servant-lucid - - state-codes < 0 # via shakespeare - - xml-hamlet < 0 # via shakespeare - - show-prettyprint < 0 # via trifecta - - emd < 0 # via typelits-witnesses - - stripe-wreq < 0 # via wreq - - yeshql < 0 # via yeshql-hdbc - - # round 4 - - bitcoin-types < 0 # via base58string - - text-builder < 0 # via deferred-folds - - quickbench < 0 # via docopt - - control-dsl < 0 # via doctest-discover - - fmt < 0 # via doctest-discover - - tonaparser < 0 # via envy - - eventful-memory < 0 # via eventful-core - - eventful-memory < 0 # via eventful-test-helpers - - gi-atk < 0 # via haskell-gi - - gi-cairo < 0 # via haskell-gi - - gi-gdk < 0 # via haskell-gi - - gi-gdkpixbuf < 0 # via haskell-gi - - gi-gio < 0 # via haskell-gi - - gi-glib < 0 # via haskell-gi - - gi-gobject < 0 # via haskell-gi - - gi-javascriptcore < 0 # via haskell-gi - - gi-pango < 0 # via haskell-gi - - bitcoin-block < 0 # via hexstring - - bitcoin-tx < 0 # via hexstring - - bitcoin-types < 0 # via hexstring - - purescript-bridge < 0 # via hspec-expectations-pretty-diff - - s3-signer < 0 # via http-types - - web-routes < 0 # via http-types - - wordpress-auth < 0 # via http-types - - hw-excess < 0 # via hw-rankselect-base - - apecs-physics < 0 # via inline-c - - inline-c-cpp < 0 # via inline-c - - H < 0 # via inline-r - - fmt < 0 # via interpolate - - generics-eot < 0 # via interpolate - - mwc-probability-transition < 0 # via logging-effect - - hschema < 0 # via natural-transformation - - hschema-prettyprinter < 0 # via natural-transformation - - asciidiagram < 0 # via pandoc-types - - texmath < 0 # via pandoc-types - - hasql < 0 # via postgresql-binary - - dbcleaner < 0 # via postgresql-simple - - peregrin < 0 # via postgresql-simple - - postgresql-schema < 0 # via postgresql-simple - - postgresql-simple-url < 0 # via postgresql-simple - - postgresql-transactional < 0 # via postgresql-simple - - psql-helpers < 0 # via postgresql-simple - - users-postgresql-simple < 0 # via postgresql-simple - - protocol-buffers-descriptor < 0 # via protocol-buffers - - servant-ruby < 0 # via servant-foreign - - pcre-heavy < 0 # via string-conversions - - secp256k1-haskell < 0 # via string-conversions - - bv-little < 0 # via text-show - - pipes-fluid < 0 # via these - - quickcheck-state-machine < 0 # via tree-diff - - users-postgresql-simple < 0 # via users - - users-test < 0 # via users - - # round 5 - - hmatrix-backprop < 0 # via backprop - - executable-hash < 0 # via cryptohash - - locators < 0 # via cryptohash - - columnar < 0 # via fmt - - enum-text < 0 # via fmt - - enum-text-rio < 0 # via fmt - - optparse-enum < 0 # via fmt - - rg < 0 # via fmt - - generic-data-surgery < 0 # via generic-data - - hasql-optparse-applicative < 0 # via hasql - - hasql-pool < 0 # via hasql - - hasql-transaction < 0 # via hasql - - flat-mcmc < 0 # via monad-par - - lens-regex-pcre < 0 # via pcre-heavy - - rvar < 0 # via random-source - - kleene < 0 # via regex-applicative - - regex-applicative-text < 0 # via regex-applicative - - abstract-deque-tests < 0 # via test-framework - - crypto-api-tests < 0 # via test-framework - - crypto-cipher-tests < 0 # via test-framework - - tonatona < 0 # via tonaparser - - tonatona-logger < 0 # via tonaparser - - Rasterific < 0 # via vector-algorithms - - tdigest < 0 # via vector-algorithms - - web-routes-hsp < 0 # via web-routes - - # round 6 - - rasterific-svg < 0 # via Rasterific - - fmt-for-rio < 0 # via enum-text-rio - - pipes-category < 0 # via pipes-extras - - # round 7 - - pipes-misc < 0 # via pipes-category - - # Misc. Removed from above but must still be re-removed due to *another* issue - - caster < 0 # via fast-builder - - hschema-quickcheck < 0 # via hschema - - string-interpolate < 0 # via interpolatedstring-perl6 - - string-interpolate < 0 # via text-conversions - - random-fu < 0 # via random-source - - Hoed < 0 # via regex-tdfa-text - - random-fu < 0 # via rvar - - codec < 0 # via binary-bits - - hschema-aeson < 0 # via hschema - - hschema-aeson < 0 # via hschema-prettyprinter - - hschema-aeson < 0 # via hschema-quickcheck - - inline-r < 0 # via inline-c - - postgresql-binary < 0 # via network-ip - - aeson-extra < 0 # via semialign - - lxd-client-config < 0 # via test-framework - - pandoc-types < 0 # via test-framework - - lxd-client-config < 0 # via test-framework-hunit - - pandoc-types < 0 # via test-framework-hunit - - lxd-client-config < 0 # via test-framework-quickcheck2 - - pandoc-types < 0 # via test-framework-quickcheck2 - - fast-builder < 0 # via true-name - - xlsx-tabular < 0 # via xlsx - - postgresql-typed < 0 # via HDBC - - tcp-streams-openssl < 0 # via HsOpenSSL-x509-system - - pandoc-citeproc < 0 # via HsYAML-aeson - - ws < 0 # via attoparsec-uri - - microformats2-parser < 0 # via blaze-html - - persistent-mongoDB < 0 # via blaze-html - - yesod-core < 0 # via blaze-html - yesod-test < 0 # via blaze-html - - microformats2-parser < 0 # via blaze-markup - - yesod-core < 0 # via blaze-markup - - hOpenPGP < 0 # via bzlib - - xml-lens < 0 # via case-insensitive-1.2.1.0 - - libraft < 0 # via concurrency - - pantry < 0 # via cryptonite-conduit - - libraft < 0 # via dejafu - - libraft < 0 # via ekg - - libraft < 0 # via ekg-core - - pantry < 0 # via hackage-security - - hasbolt < 0 # via hex - - pantry < 0 # via hpack - - pantry < 0 # via http-download - - asif < 0 # via hw-hspec-hedgehog - - asif < 0 # via hw-ip - - hOpenPGP < 0 # via incremental-parser - - hOpenPGP < 0 # via ixset-typed - - lambdabot-irc-plugins < 0 # via lambdabot-core - - libraft < 0 # via monad-metrics - - bson < 0 # via network-3.1.1.0 - - hslogger < 0 # via network-3.1.1.0 - - mongoDB < 0 # via network-3.1.1.0 - - network-bsd < 0 # via network-3.1.1.0 - - openssl-streams < 0 # via network-3.1.1.0 - - socket-activation < 0 # via network-3.1.1.0 - - tcp-streams-openssl < 0 # via network-3.1.1.0 - - wai-cli < 0 # via network-3.1.1.0 - - websockets < 0 # via network-3.1.1.0 - - hslogger < 0 # via network-bsd - - httpd-shed < 0 # via network-bsd - - network-multicast < 0 # via network-bsd - - network-simple < 0 # via network-bsd - - network-simple-tls < 0 # via network-simple - - pandoc-citeproc < 0 # via pandoc - - pandoc-citeproc < 0 # via pandoc-types - - microformats2-parser < 0 # via pcre-heavy - - pantry < 0 # via persistent - - persistent-mongoDB < 0 # via persistent - - persistent-mongoDB < 0 # via persistent-qq - - pantry < 0 # via persistent-sqlite - - pantry < 0 # via persistent-template - - persistent-mongoDB < 0 # via persistent-template - - persistent-mongoDB < 0 # via persistent-test - - postgresql-typed < 0 # via postgresql-binary - - libraft < 0 # via postgresql-simple-url - - yesod-bin < 0 # via project-template - - libraft < 0 # via protolude - - libraft < 0 # via quickcheck-state-machine - - pantry < 0 # via rio-orphans - - pantry < 0 # via rio-prettyprint - - haskoin-core < 0 # via secp256k1-haskell - - servant-http-streams < 0 # via servant - - servant-multipart < 0 # via servant - - servant-http-streams < 0 # via servant-client-core - - servant-multipart < 0 # via servant-docs - - servant-multipart < 0 # via servant-foreign - - yesod-bin < 0 # via shakespeare - - yesod-core < 0 # via shakespeare - - store < 0 # via store-core - - pantry < 0 # via tar-conduit - - libraft < 0 # via tasty-dejafu - - servant-http-streams < 0 # via tdigest - - HTTP < 0 # via test-framework - - IPv6Addr < 0 # via test-framework - - bson < 0 # via test-framework - - courier < 0 # via test-framework - - hedis < 0 # via test-framework - - io-streams < 0 # via test-framework - - oeis < 0 # via test-framework - - openssl-streams < 0 # via test-framework - - snap-core < 0 # via test-framework - - tcp-streams < 0 # via test-framework - - tcp-streams-openssl < 0 # via test-framework - - HTTP < 0 # via test-framework-hunit - - IPv6Addr < 0 # via test-framework-hunit - - courier < 0 # via test-framework-hunit - - hedis < 0 # via test-framework-hunit - - io-streams < 0 # via test-framework-hunit - - oeis < 0 # via test-framework-hunit - - openssl-streams < 0 # via test-framework-hunit - - snap-core < 0 # via test-framework-hunit - - tcp-streams < 0 # via test-framework-hunit - - tcp-streams-openssl < 0 # via test-framework-hunit - - bson < 0 # via test-framework-quickcheck2 - - io-streams < 0 # via test-framework-quickcheck2 - - snap-core < 0 # via test-framework-quickcheck2 - - pantry < 0 # via th-utilities - - store < 0 # via th-utilities - - wai-middleware-throttle < 0 # via token-bucket - - vivid < 0 # via vivid-osc - - vivid < 0 # via vivid-supercollider - - web-routes-wai < 0 # via web-routes - - ws < 0 # via wuss - - DAV < 0 # via xml-hamlet - - HandsomeSoup < 0 # via HTTP - - hxt-http < 0 # via HTTP - - http-streams < 0 # via io-streams - - butter < 0 # via network-simple - - network-anonymous-i2p < 0 # via network-simple - - network-attoparsec < 0 # via network-simple - - pipes-network < 0 # via network-simple - - pipes-network-tls < 0 # via network-simple - - pipes-network-tls < 0 # via network-simple-tls - - http-streams < 0 # via openssl-streams - - wai-websockets < 0 # via wai-app-static - - wai-session-postgresql < 0 # via wai-session - - wai-websockets < 0 # via websockets - - bugsnag-haskell < 0 # via yesod-core - - conduit-throttle < 0 # via test-framework - - conduit-throttle < 0 # via test-framework-hunit - - decidable < 0 # via vinyl - - functor-products < 0 # via vinyl - - list-witnesses < 0 # via vinyl - - lsp-test < 0 # via conduit-parse - - groundhog-inspector < 0 # via groundhog - - groundhog-inspector < 0 # via groundhog-sqlite - - groundhog-inspector < 0 # via groundhog-th - - lsp-test < 0 # via haskell-lsp - - ginger < 0 # via regex-tdfa-1.3.0 - - menshen < 0 # via regex-tdfa-1.3.0 - - winery < 0 # via fast-builder - - nvim-hs < 0 # via hslogger - - "GHC 8.8-related build failures": - # MonadFail stuff - - generics-mrsop < 0 - - error-util < 0 - - binary-bits < 0 - - network-house < 0 - - persist < 0 - - frisby < 0 - - shortcut-links < 0 - - HCodecs < 0 - - streamproc < 0 - - multipart < 0 - - structured-cli < 0 - - flexible-defaults < 0 - - exceptional < 0 - - true-name < 0 - - probability < 0 - - cron < 0 - - store-core < 0 - - bitcoin-script < 0 - - unbound-generics < 0 - - blas-hs < 0 - - cipher-blowfish < 0 - - data-msgpack-types < 0 - - HaTeX < 0 - - codo-notation < 0 - - open-witness < 0 - - FontyFruity < 0 - - yeshql-core < 0 - - pcf-font < 0 - - # Kind stuff - - vinyl < 0 - - # Template Haskell stuff - - data-dword < 0 - - hlibsass < 0 - - io-choice < 0 - - th-utilities < 0 - - # Data.Text instance of Lift - - language-docker < 0 - - # Cabal 3 - - cabal-file-th < 0 - - sandman < 0 - - # Misc - - cuda < 0 - - vivid-osc < 0 - - flay < 0 - - barbies < 0 - - time-qq < 0 - - references < 0 - - interpolatedstring-perl6 < 0 - - # compilation errors - - xml-conduit-parse < 0 - - scalpel-core < 0 - - html-conduit < 0 # https://github.com/snoyberg/xml/issues/148 - - configuration-tools < 0 - - bitx-bitcoin < 0 - - # Round 2 build failure transitive deps - - cryptocipher < 0 # via cipher-blowfish - - cublas < 0 # via cuda - - cufft < 0 # via cuda - - cusparse < 0 # via cuda - - nvvm < 0 # via cuda - - data-msgpack < 0 # via data-msgpack-types - - hsass < 0 # via hlibsass - - cgi < 0 # via multipart - - pcf-font-embed < 0 # via pcf-font - - vivid-supercollider < 0 # via vivid-osc - - # Round 3 build failure transitive deps - - network-messagepack-rpc < 0 # via data-msgpack - - # More build failure transitive deps - - random-source < 0 # via flexible-defaults - - backprop < 0 # via vinyl - - network-ip < 0 # via data-dword - - # Some more failures - - present < 0 # MonadFail - - HSet < 0 # Duplicate Hashable instance - - data-diverse-lens < 0 # "The liberal coverage condition fails" - - xmlbf < 0 # MonadFail - - apecs < 0 # Template Haskell changes - - aeson-qq < 0 # MonadFail - - conduit-iconv < 0 # MonadFail - - docopt < 0 # MonadFail - - groundhog < 0 # MonadFail - - github-webhooks < 0 # unknown - - protocol-buffers < 0 # MonadFail - - mustache < 0 # Lift Text - - hspec-expectations-pretty-diff < 0 # unknown - - graylog < 0 # Couldn't find module Network.BSD - - hbeanstalk < 0 # sClose not in scope - - hstatsd < 0 # sClose not in scope - - xenstore < 0 # sClose not in scope - - cql < 0 # Template Haskell changes - - sphinx < 0 # Could not find module Network - - systemd < 0 # socketToFd is ambiguous - - cassava-records < 0 # MonadFail - - haskell-spacegoo < 0 # MonadFail - - wai-predicates < 0 # MonadFail - - sbv < 0 # MonadFail - - crypto-pubkey-openssh < 0 # MonadFail - - tagstream-conduit < 0 # MonadFail - - xlsx < 0 # MonadFail - - jose < 0 # MonadFail - - hpack < 0 # MonadFail https://github.com/sol/hpack/issues/371 - - data-textual < 0 # MonadFail - - data-serializer < 0 # MonadFail - - crypto-pubkey-openssh < 0 # MonadFail - # https://github.com/alevy/simple/issues/23 - - simple < 0 - - simple-session < 0 - - # Round 2 transitive from Some more failures - - groundhog-postgresql < 0 # via groundhog - - groundhog-th < 0 # via groundhog - - cql-io < 0 # via cql - - groundhog-mysql < 0 # via groundhog - - mmtf < 0 # via data-msgpack - - gym-http-api < 0 # via servant servant-client - - xmlbf-xeno < 0 # via xmlbf - - http-directory < 0 # via html-conduit - - xml-html-qq < 0 # via html-conduit - - scalpel < 0 # via scalpel-core - - authenticate < 0 # via tagstream-conduit - - wreq < 0 # via authenticate-oauth - - # hashable-1.3.0 - - concurrent-supply < 0 - - regex < 0 - - relude < 0 - - ttl-hashtables < 0 - - registry < 0 # also protolude, semigroups, universum - - # semigroups-0.19 - - chronos < 0 # also test-framework - - direct-sqlite < 0 - - - mega-sdist < 0 # via pantry + - yesod-text-markdown < 0 # via persistent + - yesod-websockets < 0 # via wai-websockets + - yi-language < 0 # via regex-base-0.94.0.0 + - ztail < 0 # via time-1.9.3 "GHC upper bounds": # Need to always match the version shipped with GHC From 929ddb89f3d8f1baf29f866ea4d8a6e56a902913 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Tue, 29 Oct 2019 00:47:39 +0100 Subject: [PATCH 0869/2682] Close #4830 --- build-constraints.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index afd88d46..da91f18e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3972,7 +3972,7 @@ packages: "David Himmelstrup @lemmih": - reanimate-svg - - reanimate + - reanimate < 0 # via base-4.13.0.0 "Vitaly Bragilevsky @bravit": - Chart @@ -5058,7 +5058,6 @@ packages: - ratel < 0 # via base-4.13.0.0 - ratel-wai < 0 # via base-4.13.0.0 - rattletrap < 0 # via base-4.13.0.0 - - reanimate < 0 # via base-4.13.0.0 - ref-fd < 0 # bounds failure - references < 0 - regex < 0 # hashable-1.3.0 @@ -5905,7 +5904,6 @@ expected-test-failures: - dhall-json # https://github.com/dhall-lang/dhall-haskell/issues/996 - doctest-discover # 0.1.0.9 https://github.com/karun012/doctest-discover/issues/22 - graylog # 0.1.0.1 https://github.com/fpco/stackage/pull/1254 - - reanimate # https://github.com/Lemmih/reanimate/issues/23 # Assertion failures, these can be real bugs or just limitations # in the test cases. From 2d4a3af3bc79946847b3bded0e6469d81b82069e Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Tue, 29 Oct 2019 01:00:51 +0100 Subject: [PATCH 0870/2682] Re-enable haskell-gi tests and close #4661 --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index da91f18e..b09a4496 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5750,7 +5750,6 @@ skipped-tests: - servant-ruby # https://github.com/commercialhaskell/stackage/issues/4650 - password-instances # https://github.com/commercialhaskell/stackage/issues/4653 - password # https://github.com/cdepillabout/password/issues/2 - - haskell-gi # https://github.com/commercialhaskell/stackage/issues/4661 - envelope # https://github.com/commercialhaskell/stackage/issues/4669 - algebraic-graphs # https://github.com/commercialhaskell/stackage/issues/4670 - bugsnag-haskell # https://github.com/commercialhaskell/stackage/issues/4759 From 97401b99bf1b9a2603593d89dfa479785036dc52 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Tue, 29 Oct 2019 01:54:21 +0100 Subject: [PATCH 0871/2682] Clean up tell-me-when-its-released --- build-constraints.yaml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b09a4496..2dfbe1c9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5931,7 +5931,6 @@ expected-test-failures: - conduit-throttle # https://github.com/mtesseract/conduit-throttle/issues/12 - haddock - haskell-tools-builtin-refactorings - - hoopl # https://github.com/haskell/hoopl/issues/50 - hspec-expectations-pretty-diff # GHC 8 issue not reported upstream since issue tracker disabled - hweblib # https://github.com/aycanirican/hweblib/issues/3 - libraft # https://github.com/commercialhaskell/stackage/issues/4337#issuecomment-462465921 @@ -6436,11 +6435,6 @@ build-tool-overrides: # - bindings-GLFW-3.1.2.1 # Comment saying what should be done when the new version is releasedskipped test-suite tell-me-when-its-released: - cpio-conduit-0.7.0 # remove from skipped-tests, https://github.com/da-x/cpio-conduit/issues/1 -- freer-effects-0.3.0.1 # re-enable extensible benchmarks -- hoopl-3.10.2.2 # reenable tests, https://github.com/haskell/hoopl/issues/50 -- point-octree-0.5.5.3 # re-enable test and then we can resolve https://github.com/fpco/lts-haskell/issues/27 -- yarr-1.4.0.2 # Re-enable package https://github.com/fpco/stackage/issues/1876 -- exp-pairs-0.2.0.0 # remove from expected-test-failures, https://github.com/Bodigrim/exp-pairs/issues/16 # Packages which should be hidden after registering, to avoid module name # conflicts. This is intended for at least two use cases: From e396b6e1b8988fc4a4f17ae99b93654636e1c34c Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Tue, 29 Oct 2019 15:23:58 +0100 Subject: [PATCH 0872/2682] stylish-haskell < 0.9.4.0 for #4948 --- build-constraints.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2dfbe1c9..7af2ad3f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5255,7 +5255,9 @@ packages: # Need to always match the version shipped with GHC - Win32 == 2.6.1.0 - "Stackage upper bounds": [] + "Stackage upper bounds": + # https://github.com/commercialhaskell/stackage/issues/4948 + - stylish-haskell < 0.9.4.0 # end of packages From fb101ad9b9047d45ea16e83b466ee365adea4c73 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Tue, 29 Oct 2019 15:25:56 +0100 Subject: [PATCH 0873/2682] Re-enable wai-websockets and websockets --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ae691c46..c6fa90d7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5197,12 +5197,9 @@ packages: - wai-predicates < 0 # MonadFail - wai-session-postgresql < 0 # via wai-session - wai-transformers < 0 # via wai-websockets - - wai-websockets < 0 # via wai-app-static - - wai-websockets < 0 # via websockets - web-routes < 0 # via http-types - web-routes-hsp < 0 # via web-routes - web-routes-wai < 0 # via web-routes - - websockets < 0 # via network-3.1.1.0 - wikicfp-scraper < 0 # via scalpel-core - wild-bind < 0 # via base-4.13.0.0 - wild-bind-x11 < 0 # via base-4.13.0.0 From 209fb6f6b087186314ca480ea01af932926d9e61 Mon Sep 17 00:00:00 2001 From: Judah Jacobson Date: Tue, 29 Oct 2019 08:14:10 -0700 Subject: [PATCH 0874/2682] Reenable proto-lens et all, for real. I missed fixing these lines in #4945. --- build-constraints.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c6fa90d7..b972c4bb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3430,13 +3430,13 @@ packages: - hslua-module-text "Judah Jacobson @judah": - - proto-lens-protobuf-types < 0 # via lens-family-2.0.0 - - proto-lens-protoc < 0 # via lens-family-2.0.0 - - proto-lens-runtime < 0 # via lens-family-2.0.0 - - proto-lens-setup < 0 # via base-4.13.0.0 - - proto-lens < 0 # via base-4.13.0.0 - - proto-lens-arbitrary < 0 # via lens-family-2.0.0 - - proto-lens-optparse < 0 # via optparse-applicative-0.15.1.0 + - proto-lens-protobuf-types + - proto-lens-protoc + - proto-lens-runtime + - proto-lens-setup + - proto-lens + - proto-lens-arbitrary + - proto-lens-optparse - tensorflow-test - pier-core < 0 - pier < 0 From baba25f383523759d93834c5733d0aca11a10b48 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Tue, 29 Oct 2019 16:35:36 +0100 Subject: [PATCH 0875/2682] Remove stylish-haskell upper bound and close #4948 --- build-constraints.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b972c4bb..662249ca 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5252,9 +5252,7 @@ packages: # Need to always match the version shipped with GHC - Win32 == 2.6.1.0 - "Stackage upper bounds": - # https://github.com/commercialhaskell/stackage/issues/4948 - - stylish-haskell < 0.9.4.0 + "Stackage upper bounds": [] # end of packages From 95231599e71de8be812a54c2522f72426e30a3c8 Mon Sep 17 00:00:00 2001 From: amigalemming Date: Tue, 29 Oct 2019 16:49:18 +0100 Subject: [PATCH 0876/2682] add cabal-flatpak, shell-utility, cabal-plan --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 662249ca..60ae441b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -315,6 +315,7 @@ packages: - bibtex - board-games - buffer-pipe + - cabal-flatpak - calendar-recycling - checksum - combinatorial @@ -357,6 +358,7 @@ packages: - sample-frame - sample-frame-np - set-cover + - shell-utility - sox - soxlib - spreadsheet @@ -392,6 +394,7 @@ packages: - resistor-cube - linear-circuit # Not a maintainer + - cabal-plan - ix-shapable - hsshellscript - hyper From 5d473035fc304a01be7ca9b705f082c9ad48c86e Mon Sep 17 00:00:00 2001 From: Alejandro Serrano Date: Tue, 29 Oct 2019 20:50:19 +0100 Subject: [PATCH 0877/2682] Add AC-Angle This is a small package which, even though hasn't been updated since 2010, still compiles perfectly fine. --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 662249ca..e285bd48 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1289,6 +1289,7 @@ packages: - kind-generics-th - simplistic-generics - wl-pprint + - AC-Angle "Matvey Aksenov @supki": - terminal-size From b9c51067c875009e5c08fdd391ebb63ed91a08eb Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Wed, 30 Oct 2019 11:25:45 +0100 Subject: [PATCH 0878/2682] MAINTAINERS.md: Update for new transitive dependency flow --- MAINTAINERS.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/MAINTAINERS.md b/MAINTAINERS.md index 00d09c6f..c0bb2a80 100644 --- a/MAINTAINERS.md +++ b/MAINTAINERS.md @@ -19,10 +19,14 @@ To add your package you can edit [`build-constraints.yaml`](https://github.com/f - package2 - package3 -If your library depends on a C library, please add it to the `debian-bootstrap.sh` script. +Any dependencies of your packages that are not already part of +stackage also need to be added explicitly (When this happens you will +see `not present` errors in the CI log). As mentioned above: If you +don't maintain this package yourself it is preferable that the actual +maintainer is also the stackage maintainer, but you are allowed to add +it under your own name. -Any dependencies of your packages that are not already part of stackage are added implictly, but it is prefered -to add all packages explicitly. It is planned to remove this behaviour in the future. +If your library depends on a C library, please add it to the `debian-bootstrap.sh` script. After doing that commit with a message like "add foo-bar" and send a pull request. From d3ee1368df67f3c705aa5c7d433f7fb857489ed4 Mon Sep 17 00:00:00 2001 From: amigalemming Date: Wed, 30 Oct 2019 12:12:55 +0100 Subject: [PATCH 0879/2682] add topograph --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 60ae441b..7c1de578 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -395,6 +395,7 @@ packages: - linear-circuit # Not a maintainer - cabal-plan + - topograph - ix-shapable - hsshellscript - hyper From 4f7d64efb9ae29b50e007ab705adb4205733a7d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Sipma?= Date: Wed, 30 Oct 2019 16:08:36 +0100 Subject: [PATCH 0880/2682] Re-enable hspec-expectations-pretty-diff --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e285bd48..f42ab687 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4867,7 +4867,6 @@ packages: - hschema-quickcheck < 0 # via hschema - hsexif < 0 # via time-1.9.3 - hslogger < 0 # via network-3.1.1.0 & network-bsd - - hspec-expectations-pretty-diff < 0 # unknown - hspec-need-env < 0 # via base-4.13.0.0 - hspec-pg-transact < 0 # via tmp-postgres - hspec-wai-json < 0 # via hspec-wai @@ -5045,7 +5044,6 @@ packages: - protocol-buffers-descriptor < 0 # via protocol-buffers - psql-helpers < 0 # via postgresql-simple - pure-zlib < 0 # via base-compat-0.11.0 - - purescript-bridge < 0 # via hspec-expectations-pretty-diff - qnap-decrypt < 0 # via cipher-aes128 - quickbench < 0 # via docopt - quickcheck-arbitrary-template < 0 # via template-haskell-2.15.0.0 @@ -5929,7 +5927,6 @@ expected-test-failures: - conduit-throttle # https://github.com/mtesseract/conduit-throttle/issues/12 - haddock - haskell-tools-builtin-refactorings - - hspec-expectations-pretty-diff # GHC 8 issue not reported upstream since issue tracker disabled - hweblib # https://github.com/aycanirican/hweblib/issues/3 - libraft # https://github.com/commercialhaskell/stackage/issues/4337#issuecomment-462465921 - multiset # doctests require Glob, a hidden package From d5d6824ab60863b5ee32df2029f9725cb49486d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Sipma?= Date: Wed, 30 Oct 2019 16:48:55 +0100 Subject: [PATCH 0881/2682] Re-enable servant-purescript and servant-subscriber --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f42ab687..2ab8a355 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1071,8 +1071,8 @@ packages: "Robert Klotzner @eskimor": - purescript-bridge - - servant-purescript < 0 # mainland-pretty <- srcloc - - servant-subscriber < 0 # build failure with servant 0.14: https://github.com/eskimor/servant-subscriber/issues/17 + - servant-purescript + - servant-subscriber "Rodrigo Setti @rodrigosetti": - messagepack From 7899a10dfab3a490b38df184ab6b845d2569d1e2 Mon Sep 17 00:00:00 2001 From: Brandon Chinn Date: Wed, 30 Oct 2019 11:32:31 -0700 Subject: [PATCH 0882/2682] Re-add aeson-qq --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 65d7b874..97d831a6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3749,7 +3749,7 @@ packages: # - conferer-snap # Because snap - conferer-warp - conferer-hspec - # - conferer-provider-json # via aeson-qq + - conferer-provider-json "Tim Humphries @thumphries": - transformers-either < 0 # via exceptions-0.10.0 @@ -4577,7 +4577,6 @@ packages: - aeson-diff < 0 # via base-4.13.0.0 - aeson-extra < 0 # via semialign - aeson-iproute < 0 # via iproute - - aeson-qq < 0 # MonadFail - alarmclock < 0 # via base-4.13.0.0 - alerts < 0 # via blaze-html - algebraic-graphs < 0 # via base-compat-0.11.0 From 5c8ec7d3211362cab37e58028923227aa53b7c5c Mon Sep 17 00:00:00 2001 From: Dmitrii Kovanikov Date: Thu, 31 Oct 2019 14:15:35 +0300 Subject: [PATCH 0883/2682] Reenable relude --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 65d7b874..4e1d0e18 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5072,7 +5072,6 @@ packages: - relational-query-HDBC < 0 # via HDBC - relational-record < 0 # via persistable-types-HDBC-pg - relational-record < 0 # via relational-query-HDBC - - relude < 0 # hashable-1.3.0 - repa < 0 # via base-4.13.0.0 - repa-algorithms < 0 # via base-4.13.0.0 - repa-io < 0 # via base-4.13.0.0 @@ -5969,6 +5968,7 @@ expected-test-failures: - pg-transact # https://github.com/jfischoff/pg-transact/issues/2 - postgresql-simple-queue # same issue as before, see also https://github.com/fpco/stackage/issues/2592 as that will fix both - rattletrap # OOM? https://github.com/fpco/stackage/issues/2232 + - relude # doctest fails due to GHC bugs, will be fixed in the next `relude` release - stm-delay # https://github.com/joeyadams/haskell-stm-delay/issues/5 - tmp-postgres # https://github.com/jfischoff/tmp-postgres/issues/1 - prettyprinter # Could not load module ‘Test.QuickCheck.Modifiers’ (member of the hidden package ‘QuickCheck-2.13.2’) From f3a44c6c9f20388ee3195f30f4f725196c76c60a Mon Sep 17 00:00:00 2001 From: Brandon Chinn Date: Fri, 1 Nov 2019 13:10:39 -0700 Subject: [PATCH 0884/2682] Add github-rest --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index fb77b197..dfc3356f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4010,6 +4010,7 @@ packages: "Brandon Chinn @brandon-leapyear": - aeson-schemas + - github-rest - th-test-utils "Akshay Mankar @akshaymankar": From aba967eba27c4854d1ce5ec59693ec1454e62458 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sat, 2 Nov 2019 01:30:34 +0100 Subject: [PATCH 0885/2682] haskell-src-exts < 1.22.0 for #4958 --- build-constraints.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index fb77b197..751fc847 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5253,7 +5253,9 @@ packages: # Need to always match the version shipped with GHC - Win32 == 2.6.1.0 - "Stackage upper bounds": [] + "Stackage upper bounds": + # https://github.com/commercialhaskell/stackage/issues/4958 + - haskell-src-exts < 1.22.0 # end of packages From ce984e752ebfb9ec0466b8d77602e0fd4652435c Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sat, 2 Nov 2019 01:49:10 +0100 Subject: [PATCH 0886/2682] semirings upper bound for #4959 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 01808b8a..a94a55d6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5258,6 +5258,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4958 - haskell-src-exts < 1.22.0 + # https://github.com/commercialhaskell/stackage/issues/4959 + - semirings < 0.5.2 + # end of packages # Package flags are applied to individual packages, and override the values of From 025c7486a53b9ac474608640dae2fe0d845e0f39 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sat, 2 Nov 2019 02:17:55 +0100 Subject: [PATCH 0887/2682] Clean up some more removed packages --- build-constraints.yaml | 597 +++++++++++++---------------------------- 1 file changed, 194 insertions(+), 403 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a94a55d6..affe5b08 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -51,7 +51,7 @@ packages: - small-bytearray-builder < 0.3.0.0 # #4919 "Robert Vollmert @robx": - - configurator-pg + - configurator-pg < 0 # via base-4.13.0.0 "Sandy Maguire @isovector": - polysemy < 0 # via loopbreaker @@ -92,7 +92,7 @@ packages: - rosezipper "Edward Wastell @edwardwas": - - TotalMap + - TotalMap < 0 # via base-4.13.0.0 - sized-grid "Antonio Alonso Dominguez @alonsodomin": @@ -111,7 +111,7 @@ packages: - mpi-hs "Yang Bo @Atry": - - control-dsl + - control-dsl < 0 # via doctest-discover "Laurent P. René de Cotret @LaurentRDC": - pandoc-pyplot @@ -132,7 +132,7 @@ packages: - valor "Scott N. Walck @walck": - - cyclotomic + - cyclotomic < 0 # via base-4.13.0.0 - learn-physics - TypeCompose @@ -147,7 +147,7 @@ packages: "Matthew Ahrens @mpahrens": - forkable-monad - - butter + - butter < 0 # via network-simple "Iris Ward @AdituV": - typenums @@ -162,7 +162,7 @@ packages: - dunai - rhine < 0 # via base-4.13.0.0 - rhine-gloss < 0 # via base-4.13.0.0 - - dunai-core + - dunai-core < 0 # via base-4.13.0.0 - finite-typelits - essence-of-live-coding - essence-of-live-coding-pulse @@ -175,11 +175,11 @@ packages: - Ranged-sets "Travis Athougies @tathougies": - - beam-core - - beam-migrate - - beam-sqlite - - beam-postgres - - beam-mysql + - beam-core < 0 # via vector-sized-1.4.0.0 + - beam-migrate < 0 # via dependent-map-0.3 & dependent-sum-0.6.2.0 + - beam-mysql < 0 # via beam-core + - beam-postgres < 0 # via beam-core + - beam-sqlite < 0 # via beam-core "Fraser Murray @knupfer": - type-of-html - type-of-html-static - - chronos-bench + - chronos-bench < 0 # via chronos "Mikolaj Konarski @Mikolaj": - sdl2-ttf @@ -239,7 +239,7 @@ packages: "Maarten Faddegon @MaartenFaddegon": - libgraph - - Hoed + - Hoed < 0 # via regex-tdfa-text "Agustin Camino @acamino": - state-codes @@ -287,11 +287,11 @@ packages: - strict-types < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build "Roman Gonzalez @roman": - - componentm - - componentm-devel + - componentm < 0 # transitive compilation failure + - componentm-devel < 0 # transitive compilation failure - teardown - etc - - capataz + - capataz < 0 # transitive compilation failure "Richard Cook @rcook": - hidden-char @@ -313,7 +313,7 @@ packages: - apportionment - audacity - bibtex - - board-games + - board-games < 0 # via httpd-shed - buffer-pipe - cabal-flatpak - calendar-recycling @@ -325,7 +325,7 @@ packages: - cutter - data-accessor - data-accessor-mtl - - data-accessor-template + - data-accessor-template < 0 # via template-haskell-2.15.0.0 - data-accessor-transformers - data-ref - dsp @@ -470,7 +470,7 @@ packages: "James M.C. Haver II @mchaver": - quickcheck-arbitrary-adt - hspec-golden-aeson - - quickcheck-arbitrary-template + - quickcheck-arbitrary-template < 0 # via template-haskell-2.15.0.0 "Winter Han @winterland1989": - if @@ -486,7 +486,7 @@ packages: - unboxed-ref "Harendra Kumar @harendra-kumar": - - bench-show + - bench-show < 0 # via optparse-applicative-0.15.1.0 - monad-recorder - packcheck - streamly @@ -512,7 +512,7 @@ packages: - symengine "alpheccar @alpheccar": - - HPDF + - HPDF < 0 # compilation failure "Dmitry Bogatov @iu-guest": - once @@ -537,7 +537,7 @@ packages: - bzlib-conduit - mega-sdist - case-insensitive - - classy-prelude-yesod + - classy-prelude-yesod < 0 # via persistent - conduit-combinators - conduit-extra - hebrew-time @@ -611,7 +611,7 @@ packages: - say - unliftio-core - unliftio - - compact + - compact < 0 # via base-4.13.0.0 - fsnotify - hinotify @@ -658,7 +658,7 @@ packages: - hexml - weeder - profiterole - - debug + - debug < 0 # via Hoed - record-dot-preprocessor - filepattern - record-hasfield @@ -677,7 +677,7 @@ packages: - haskell-lsp - hjsmin - language-javascript - - Strafunski-StrategyLib + - Strafunski-StrategyLib < 0 # via base-4.13.0.0 "Luke Lau @bubba": - lsp-test @@ -700,7 +700,7 @@ packages: - hakyll < 0 # jaspervdj/hakyll#691 "Sibi Prabakaran @psibi": - - download + - download < 0 # via feed - textlocal - shell-conduit - tldr @@ -735,7 +735,7 @@ packages: - clock "Stefan Wehr @skogsbaer": - - HTF + - HTF < 0 # via haskell-src - xmlgen - stm-stats < 0 - large-hashable @@ -751,7 +751,7 @@ packages: - connection - cprng-aes - cpu - - cryptocipher + - cryptocipher < 0 # via cipher-blowfish - cryptohash - cryptonite - cryptonite-openssl @@ -776,7 +776,7 @@ packages: "Chris Done @chrisdone": - labels - ace - - check-email + - check-email < 0 # via email-validate - freenect - frisby - gd @@ -817,7 +817,7 @@ packages: - comonad - compensated - compressed < 0 - - concurrent-supply + - concurrent-supply < 0 # hashable-1.3.0 - constraints - contravariant - distributive @@ -907,36 +907,36 @@ packages: - rank2classes < 0 # via template-haskell-2.15.0.0 "Brent Yorgey @byorgey": - - active + - active < 0 # via base-4.13.0.0 - diagrams < 0 # via diagrams-contrib - diagrams-builder < 0 # via lens-4.17 - diagrams-cairo < 0 # via lens-4.17 - diagrams-canvas < 0 # via lens-4.17 - - diagrams-contrib - - diagrams-core + - diagrams-contrib < 0 # via base-4.13.0.0 + - diagrams-core < 0 # via base-4.13.0.0 & lens-4.18.1 - diagrams-gtk < 0 # via diagrams-cairo - diagrams-html5 < 0 # via lens-4.17 - diagrams-lib < 0 # via base-4.13.0.0 - - diagrams-postscript - - diagrams-rasterific - - diagrams-solve - - diagrams-svg + - diagrams-postscript < 0 # via base-4.13.0.0 & lens-4.18.1 + - diagrams-rasterific < 0 # via base-4.13.0.0 & lens-4.18.1 & optparse-applicative-0.15.1.0 + - diagrams-solve < 0 # via base-4.13.0.0 + - diagrams-svg < 0 # via base-4.13.0.0 & lens-4.18.1 & optparse-applicative-0.15.1.0 - force-layout - - SVGFonts + - SVGFonts < 0 # via diagrams-core - haxr < 0 # GHC 8.4 via HaXml - MonadRandom - monoid-extras "Vincent Berthoux @Twinside": - JuicyPixels - - FontyFruity - - Rasterific + - FontyFruity < 0 # MonadFail + - Rasterific < 0 # via vector-algorithms - svg-tree - rasterific-svg - - asciidiagram + - asciidiagram < 0 # via pandoc-types "Patrick Brisbin @pbrisbin": - - bugsnag-haskell + - bugsnag-haskell < 0 # via yesod-core - gravatar - load-env - yesod-auth-oauth2 < 0 # via hoauth2 & yesod-core @@ -985,10 +985,10 @@ packages: - colour-accelerate < 0 # GHC 8.4 via base-4.11.0.0 - lens-accelerate < 0 # GHC 8.4 via base-4.11.0.0 - mwc-random-accelerate < 0 # GHC 8.4 via accelerate - - cuda - - cufft - - cublas - - cusparse + - cuda < 0 + - cufft < 0 # via cuda + - cublas < 0 # via cuda + - cusparse < 0 # via cuda - cusolver < 0 #4029 - nvvm - wide-word # @erikd @@ -1016,7 +1016,7 @@ packages: - Clipboard - grouped-list - haskintex - - HaTeX + - HaTeX < 0 # MonadFail - include-file - matrix - pcre-light @@ -1035,14 +1035,14 @@ packages: - turtle - foldl - bench - - dhall - - dhall-bash - - dhall-json + - dhall < 0 # via cborg-json + - dhall-bash < 0 # via dhall + - dhall-json < 0 # via dhall # - dhall-nix # deriving-compat via hnix "Andrew Thaddeus Martin @andrewthad": - - colonnade - - blaze-colonnade + - colonnade < 0 # via profunctors-5.5 + - blaze-colonnade < 0 # via profunctors-5.5 "Chris Allen @bitemyapp": - machines-directory @@ -1106,7 +1106,7 @@ packages: "Ben Gamari @bgamari": - vector-fftw < 0 # GHC 8.4 via base-4.11.0.0 - - cborg-json + - cborg-json < 0 # via base-4.13.0.0 "Roman Cheplyaka @feuerbach": - action-permutations @@ -1134,29 +1134,29 @@ packages: - set-monad < 0 # build failure with GHC 8.4 "Phil Hargett @hargettp": - - courier + - courier < 0 # via test-framework & test-framework-hunit "Aycan iRiCAN @aycanirican": - hdaemonize - hweblib "Joachim Breitner @nomeata": - - circle-packing + - circle-packing < 0 # via base-4.13.0.0 - haskell-spacegoo - tasty-expected-failure "Aditya Bhargava @egonSchiele": - - HandsomeSoup + - HandsomeSoup < 0 # via HTTP "Clint Adams @clinty": - hOpenPGP < 0 # via bzlib - openpgp-asciiarmor - - MusicBrainz - - DAV + - MusicBrainz < 0 # via HTTP + - DAV < 0 # via xml-hamlet - hopenpgp-tools < 0 # via graphviz - opensource - - debian - - cabal-debian + - debian < 0 # via bzlib + - cabal-debian < 0 # via debian "Piyush P Kurur @piyush-kurur": - raaz @@ -1233,7 +1233,7 @@ packages: - hledger-ui - hledger-web # - - quickbench + - quickbench < 0 # via docopt - regex-compat-tdfa - shelltestrunner @@ -1274,8 +1274,8 @@ packages: "Toralf Wittner @twittner": - bytestring-conversion - - cql - - cql-io + - cql < 0 # Template Haskell changes + - cql-io < 0 # via cql - redis-resp < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build - redis-io < 0 # GHC 8.4 via tinylog - swagger @@ -1308,11 +1308,11 @@ packages: - netwire-input-glfw - yoga - freetype2 - - HCodecs + - HCodecs < 0 # MonadFail "Emanuel Borsboom @borsboom": - BoundedChan - - broadcast-chan + - broadcast-chan < 0 # compilation failure - fuzzcheck - here - hlibgit2 @@ -1372,7 +1372,7 @@ packages: - users-test # - validate-input # https://github.com/agrafix/validate-input/issues/3 # - ignore # https://github.com/agrafix/ignore/issues/5 - - blaze-bootstrap + - blaze-bootstrap < 0 # via blaze-html - dataurl - psql-helpers - superbuffer @@ -1407,8 +1407,8 @@ packages: - shake-language-c "David Turner @davecturner": - - alarmclock - - bank-holidays-england + - alarmclock < 0 # via base-4.13.0.0 + - bank-holidays-england < 0 # via base-4.13.0.0 "Haskell Servant ": - servant @@ -1468,7 +1468,7 @@ packages: "Jens Petersen @juhp": - cabal-rpm < 0 # https://github.com/commercialhaskell/stackage/issues/4666 - - dl-fedora + - dl-fedora < 0 # via http-directory - fedora-dists - fedora-haskell-tools < 0 # https://github.com/commercialhaskell/stackage/issues/4662 - hkgr @@ -1492,7 +1492,7 @@ packages: # - jsaddle # http-types 0.12 - vado < 0 # GHC 8.4 via base-4.11.0.0 - vcswrapper < 0 # GHC 8.4 via base-4.11.0.0 - - ShellCheck + - ShellCheck < 0 # via Cabal-3.0.0.0 - binary-shared - xdg-userdirs @@ -1504,11 +1504,11 @@ packages: - cryptohash-sha1 "Renzo Carbonara @k0001": - - df1 - - di + - df1 < 0 # compilation failure + - di < 0 # transitive compilation failure - di-core - - di-df1 - - di-handle + - di-df1 < 0 # transitive compilation failure + - di-handle < 0 # compilation failure - di-monad - exinst - flay @@ -1527,15 +1527,15 @@ packages: "Tomas Carnecky @wereHamster": - avers - - avers-api + - avers-api < 0 # via servant - avers-server < 0 # via servant-server - - css-syntax + - css-syntax < 0 # via base-4.13.0.0 # - etcd # https://github.com/wereHamster/etcd-hs/issues/5 - github-types - github-webhook-handler < 0 # GHC 8.4 via base-4.11.0.0 - github-webhook-handler-snap < 0 # GHC 8.4 via base-4.11.0.0 - google-cloud < 0 # GHC 8.4 via base-4.11.0.0 - - kraken + - kraken < 0 # via base-4.13.0.0 - libinfluxdb < 0 # GHC 8.4 via base-4.11.0.0 - mole < 0 # GHC 8.4 via base-4.11.0.0 - publicsuffix @@ -1558,10 +1558,10 @@ packages: - base58string - bitcoin-api < 0 - bitcoin-api-extra < 0 - - bitcoin-block - - bitcoin-script - - bitcoin-tx - - bitcoin-types + - bitcoin-block < 0 # via hexstring + - bitcoin-script < 0 # MonadFail + - bitcoin-tx < 0 # via hexstring + - bitcoin-types < 0 # via base58string & hexstring - hexstring - network-attoparsec - network-anonymous-i2p @@ -1799,7 +1799,7 @@ packages: - text-manipulate "Nick Partridge @nkpart": - - cabal-file-th + - cabal-file-th < 0 # Cabal 3 "Gershom Bazerman @gbaz": - jmacro < 0 @@ -1855,8 +1855,8 @@ packages: - setlocale "Taylor Fausak @tfausak": - - autoexporter - - derulo + - autoexporter < 0 # via base-4.13.0.0 + - derulo < 0 # via base-4.13.0.0 - flow - github-release - json-feed @@ -1878,7 +1878,7 @@ packages: - statestack # @diagrams "Marios Titas @redneb": - - HsOpenSSL-x509-system + - HsOpenSSL-x509-system < 0 # via HsOpenSSL - adler32 - btrfs - disk-free-space @@ -1895,7 +1895,7 @@ packages: - wai-middleware-prometheus < 0 # GHC 8.4 via prometheus-client "William Casarin @jb55": - - bson-lens + - bson-lens < 0 # via bson - cased - elm-export # - elm-export-persistent # https://github.com/jb55/elm-export-persistent/issues/2 @@ -1911,7 +1911,7 @@ packages: - annotated-wl-pprint "Yitz Gale @ygale": - - boolean-normal-forms + - boolean-normal-forms < 0 # via base-4.13.0.0 - strict-concurrency - timezone-series - timezone-olson @@ -1949,7 +1949,7 @@ packages: - every - extractable-singleton - follow-file - - HSet + - HSet < 0 # Duplicate Hashable instance - markup < 0 # GHC 8.4 via clay - monad-control-aligned - monadoid < 0 # build failure with GHC 8.4 @@ -2005,10 +2005,10 @@ packages: "Justin Le @mstksg": - advent-of-code-api - auto - - backprop + - backprop < 0 # via vinyl - bins - configurator-export - - decidable + - decidable < 0 # via vinyl - emd - functor-products - hamilton @@ -2035,7 +2035,7 @@ packages: "Michael Xavier @MichaelXavier": - uri-bytestring - - cron + - cron < 0 # MonadFail # - tasty-tap # https://github.com/MichaelXavier/tasty-tap/issues/2 # - tasty-fail-fast # https://github.com/MichaelXavier/tasty-tap/issues/2 - drifter < 0 @@ -2044,7 +2044,7 @@ packages: "Lars Kuhtz @larskuhtz": - wai-cors - - configuration-tools + - configuration-tools < 0 # compilation error - random-bytestring "Sam Rijs @srijs": @@ -2065,27 +2065,27 @@ packages: - jni - jvm - jvm-streaming < 0 - - H + - H < 0 # via inline-r - sparkle < 0 - th-lift "Christopher Reichert @creichert": - - bencode + - bencode < 0 # via base-4.13.0.0 - hsebaysdk - dockerfile - wai-middleware-throttle # - yesod-auth-basic # https://github.com/creichert/yesod-auth-basic/issues/2 "Hirotomo Moriwaki @philopon": - - barrier + - barrier < 0 # via blaze-svg "Kai Zhang @kaizhang": - matrices "Michel Boucey @MichelBoucey": - - IPv6Addr + - IPv6Addr < 0 # via test-framework & test-framework-hunit - ip6addr - - cayley-client + - cayley-client < 0 # via lens-4.18.1 - Spintax - glabrous - google-oauth2-jwt @@ -2105,10 +2105,10 @@ packages: "Daniel Cartwright @chessai": - streaming - streaming-bytestring - - country + - country < 0 # via base-4.13.0.0 - semirings - torsor - - chronos + - chronos < 0 # also test-framework "Kostiantyn Rybnikov @k-bx": - SHA @@ -2165,7 +2165,7 @@ packages: "Stack Builders stackage@stackbuilders.com @stackbuilders": - atomic-write - - dbcleaner + - dbcleaner < 0 # via postgresql-simple - dotenv - hapistrano - hspec-golden @@ -2205,7 +2205,7 @@ packages: "Ryan Scott @RyanGlScott": - abstract-deque - - abstract-deque-tests + - abstract-deque-tests < 0 # via test-framework - abstract-par - atomic-primops - base-compat-batteries @@ -2256,7 +2256,7 @@ packages: "Matthew Pickering @mpickering": - refact - - apply-refact + - apply-refact < 0 # via ghc-8.8.1 "Andrew Gibiansky @gibiansky": - ipython-kernel @@ -2265,9 +2265,9 @@ packages: - Agda < 0 "James Cook @mokus0": - - dependent-sum - - dependent-sum-template - - dependent-map + - dependent-map < 0 # via constraints-extras + - dependent-sum < 0 # via constraints-extras + - dependent-sum-template < 0 # via constraints-extras - dice < 0 # GHC 8.4 via random-fu - hstatsd - misfortune < 0 # GHC 8.4 via random-fu @@ -2286,8 +2286,8 @@ packages: - microlens-ghc - microlens-contra - shortcut-links - - cheapskate-lucid - - cheapskate-highlight + - cheapskate-highlight < 0 # via blaze-html + - cheapskate-lucid < 0 # via blaze-html - cmark-lucid < 0 # GHC 8.4 via cmark - cmark-highlight < 0 # GHC 8.4 via cmark - Spock-lucid < 0 # GHC 8.4 via Spock @@ -2395,9 +2395,9 @@ packages: - GPipe < 0 # GHC 8.4 via base-4.11.0.0 "Jonas Carpay @jonascarpay": - - apecs - - apecs-physics - - apecs-gloss + - apecs < 0 # Template Haskell changes + - apecs-gloss < 0 # via gloss + - apecs-physics < 0 # via inline-c "Spencer Janssen @spencerjanssen": - Xauth @@ -2415,12 +2415,12 @@ packages: - http-common - http-streams - locators - - core-text - - core-data - - core-program + - core-data < 0 # via prettyprinter-1.3.0 + - core-program < 0 # via prettyprinter-1.3.0 and template-haskell-2.15 + - core-text < 0 # via prettyprinter-1.3.0 and template-haskell-2.15 "Sean Hunt @ivan-m": - fgl @@ -2433,9 +2433,9 @@ packages: - nagios-check "Peter Simons @peti": - - cabal2nix + - cabal2nix < 0 # via hpack - cabal2spec - - cgi + - cgi < 0 # via multipart - distribution-nixpkgs - distribution-opensuse - flexible-defaults @@ -2447,7 +2447,6 @@ packages: - hsemail - hsyslog - jailbreak-cabal - - json-autotype - lambdabot-core < 0 # via dependent-map-0.3 - lambdabot-irc-plugins - language-nix @@ -2589,13 +2588,13 @@ packages: "Stanislav Chernichkin @schernichkin": - partial-isomorphisms - - vinyl + - vinyl < 0 # kind stuff "Christoph Breitkopf @bokesan": - IntervalMap "Michele Lacchia @rubik": - - docopt + - docopt < 0 # MonadFail - pathwalk "John Galt @centromere": @@ -2620,7 +2619,7 @@ packages: - fuzzyset "Will Sewell @willsewell": - - benchpress + - benchpress < 0 # via base-4.13.0.0 - pusher-http-haskell "Yorick Laupa yo.eight@gmail.com @YoEight": @@ -2632,7 +2631,7 @@ packages: - eventsource-stub-store < 0 # GHC 8.4 via protolude "Sebastian Dröge slomo@coaxion.net @sdroege": - - conduit-iconv + - conduit-iconv < 0 # MonadFail - conduit-connection < 0 # connection-0.3.0 "Andrew Rademacher @AndrewRademacher": @@ -2720,7 +2719,7 @@ packages: - deriveJsonNoPrefix "Hans-Christian Esperer @hce": - - avwx + - avwx < 0 # via HTTP - saltine - wai-session-postgresql @@ -2785,7 +2784,7 @@ packages: - skylighting - pandoc-types < 1.19 || > 1.19 # Accidental upload, see: https://github.com/fpco/stackage/issues/2223 - zip-archive - - doctemplates + - doctemplates < 0 # via doclayout - pandoc - pandoc-citeproc - ipynb @@ -2808,7 +2807,6 @@ packages: "Sid Kapur sidharthkapur1@gmail.com @sid-kap": - tuple - OneTuple - # - SVGFonts # lens 4.16 via diagrams "Aaron Levin @aaronmblevin": - free-vl @@ -2818,11 +2816,11 @@ packages: "Mikhail Glushenkov @23Skidoo": - Cabal - - cabal-install + - cabal-install < 0 # via base-4.13.0.0 # - pointful # haskell-src-exts "Lennart Kolmodin @kolmodin": - - binary-bits + - binary-bits < 0 # MonadFail "Alex McLean @yaxu": - tidal @@ -2878,11 +2876,11 @@ packages: - irc-dcc < 0 "John Ky newhoggy@gmail.com @newhoggy": - - arbor-lru-cache + - arbor-lru-cache < 0 # via hw-hspec-hedgehog - arbor-postgres < 0 # postgresql-simple 0.6 - - avro - - asif - - bits-extra + - avro < 0 # via pure-zlib + - asif < 0 # via hw-hspec-hedgehog + - bits-extra < 0 # via hw-hspec-hedgehog - hw-balancedparens - hw-bits - hw-conduit @@ -2910,12 +2908,12 @@ packages: - hw-xml < 0 # Build failure haskell-works/hw-xml#28 - pure-zlib - antiope-athena - - antiope-core - - antiope-dynamodb - - antiope-messages - - antiope-s3 - - antiope-sns - - antiope-sqs + - antiope-core < 0 # via aeson-lens & hspec-2.7.1 & hw-hspec-hedgehog + - antiope-dynamodb < 0 # via antiope-core + - antiope-messages < 0 # via hspec-2.7.1 & hw-hspec-hedgehog + - antiope-s3 < 0 # via antiope-core & antiope-messages + - antiope-sns < 0 # via hspec-2.7.1 & hw-hspec-hedgehog + - antiope-sqs < 0 # via hspec-2.7.1 & hw-hspec-hedgehog "George Wilson @gwils": - hedgehog-fn @@ -2934,7 +2932,7 @@ packages: - picosat < 0 - aos-signature < 0 # via protolude # https://github.com/commercialhaskell/stackage/issues/4682 - - bulletproofs < 1 + - bulletproofs < 0 # via protolude - pedersen-commitment - merkle-tree - oblivious-transfer @@ -2954,9 +2952,9 @@ packages: - midair - nano-erl - rando - - vivid - - vivid-osc - - vivid-supercollider + - vivid < 0 # via vivid-osc + - vivid-osc < 0 + - vivid-supercollider < 0 # via vivid-osc "Toshio Ito @debug-ito": - fold-debounce @@ -3047,7 +3045,7 @@ packages: # - microsoft-translator # servant 0.13 "Tebello Thejane @tebello-thejane": - - bitx-bitcoin + - bitx-bitcoin < 0 # compilation error "Andrew Lelechenko @Bodigrim": - exp-pairs @@ -3086,7 +3084,7 @@ packages: - webrtc-vad - servant-generic < 0 # merged into servant >= 0.14.1 - clang-pure < 0 # https://github.com/commercialhaskell/stackage/issues/3810 - - codec + - codec < 0 # via binary-bits "Michal Konecny @michalkonecny": - hmpfr @@ -3105,7 +3103,7 @@ packages: "Dominic Orchard @dorchard": - array-memoize - - codo-notation + - codo-notation < 0 # MonadFail - language-fortran < 0 # build failure with GHC 8.4 "Shao Cheng @TerrorJack": @@ -3119,7 +3117,7 @@ packages: "Al Zohali @zohl": # - servant-auth-cookie # servant 0.13 - dictionaries < 0 # GHC 8.4 via base-4.11.0.0 - - cereal-time + - cereal-time < 0 # via time-1.9.3 "Joachim Fasting @joachifm": - libmpd @@ -3193,7 +3191,7 @@ packages: - brittany "Ryan Mulligan @ryantm": - - HDBC-mysql + - HDBC-mysql < 0 # via HDBC "Tony Morris @tonymorris": - validation @@ -3206,7 +3204,7 @@ packages: - perf < 0 "Iphigenia Df @iphydf": - - data-msgpack + - data-msgpack < 0 # via data-msgpack-types # - network-msgpack-rpc # conduit 1.3 "Dino Morelli @dino-": @@ -3298,7 +3296,7 @@ packages: "Boldizsár Németh @nboldi": - instance-control - references - - classyplate + - classyplate < 0 # via base-4.13.0.0 - haskell-tools-ast < 0 - haskell-tools-backend-ghc < 0 - haskell-tools-prettyprint < 0 @@ -3318,19 +3316,19 @@ packages: "Mitsutoshi Aoe @maoe": - influxdb - sensu-run < 0 # GHC 8.4 via base-4.11.0.0 - - viewprof + - viewprof < 0 # via base-4.13.0.0 "Dylan Simon @dylex": - postgresql-typed - invertible - - ztail + - ztail < 0 # via time-1.9.3 - zip-stream "Louis Pan @louispan": - alternators < 0 - arrow-extras - data-diverse - - data-diverse-lens + - data-diverse-lens < 0 # "The liberal coverage condition fails" - ghcjs-base-stub < 0 - glaze < 0 - glazier < 0 @@ -3369,7 +3367,7 @@ packages: - tsv2csv "Thomas Sutton @thsutton": - - aeson-diff + - aeson-diff < 0 # via base-4.13.0.0 - edit-distance-vector "Kyle Van Berendonck @donkeybonks": @@ -3394,7 +3392,7 @@ packages: "Peter Trško @trskop": - between - connection-pool - - verbosity + - verbosity < 0 # via dhall "Devon Hollowood @devonhollowood": - search-algorithms < 0 @@ -3407,7 +3405,7 @@ packages: - possibly - enum-text - rg - - columnar + - columnar < 0 # via fmt - enum-text-rio - fmt-for-rio - no-value @@ -3426,7 +3424,7 @@ packages: - wai-middleware-rollbar < 0 # aeson "Andrey Mokhov @snowleopard": - - algebraic-graphs + - algebraic-graphs < 0 # via base-compat-0.11.0 "Albert Krewinkel @tarleb": - hslua @@ -3462,7 +3460,7 @@ packages: - async-timer # - nakadi-client # http-conduit 2.3 - throttle-io-stream - - conduit-throttle + - conduit-throttle < 0 # via test-framework "Simon Hafner @reactormonk": - uri-bytestring-aeson @@ -3537,8 +3535,8 @@ packages: - universum "Kowainik @chshersh @vrom911": - - co-log-core - - co-log + - co-log < 0 # via base-4.13.0.0 + - co-log-core < 0 # via base-4.13.0.0 - first-class-patterns - relude - shellmet @@ -3557,7 +3555,7 @@ packages: "Daniel Campoverde @alx741": - currencies - - alerts + - alerts < 0 # via blaze-html - yesod-alerts - graphite @@ -3569,7 +3567,7 @@ packages: - hadolint "Phil Ruffwind @Rufflewind": - - blas-hs + - blas-hs < 0 # MonadFail "Eitan Chatav @echatav": - free-categories @@ -3579,7 +3577,7 @@ packages: - ghost-buster "typeable.io ": - - dom-parser + - dom-parser < 0 # via xml-lens - xml-isogen "Jeremy Huffman @jeremyjh": @@ -3603,7 +3601,7 @@ packages: - docker < 0 "Hexirp @Hexirp": - - doctest-driver-gen + - doctest-driver-gen < 0 # via base-4.13.0.0 "Václav Haisman @wilx": - hs-bibutils @@ -3699,7 +3697,7 @@ packages: - bbdb "Stevan Andjelkovic @stevana": - - quickcheck-state-machine + - quickcheck-state-machine < 0 # via tree-diff "Sebastian Nagel @ch1bo": - hdevtools @@ -3738,7 +3736,7 @@ packages: "Guru Devanla @gdevanla": - pptable - - cassava-records + - cassava-records < 0 # MonadFail - pandoc-markdown-ghci-filter "Lucas David Traverso @ludat": @@ -3794,18 +3792,18 @@ packages: - starter "Alex Washburn @recursion-ninja": - - bv-little + - bv-little < 0 # via text-show - mono-traversable-keys "Avi Press @aviaviavi": - curl-runnings < 0 - - cryptocompare + - cryptocompare < 0 # via MissingH "Jack Kiefer @JackKiefer": - herms < 0 "Sergey Vinokurov @sergv": - - bencoding + - bencoding < 0 # via bencode - emacs-module - tasty-ant-xml @@ -3814,7 +3812,7 @@ packages: - invertible-grammar "Maximilian Tagher @MaxGabriel": - - aeson-iproute + - aeson-iproute < 0 # via iproute - persistent-iproute < 0 # persistent-2.10.0 #4553 "Damian Nadales @capitanbatata": @@ -3824,19 +3822,19 @@ packages: - codec-beam "Chris Parks @cdparks": - - closed + - closed < 0 # via persistent "Chris Coffey @ChrisCoffey": - servant-tracing - cuckoo-filter - - confcrypt + - confcrypt < 0 # via crypto-pubkey-openssh & optparse-applicative-0.15.1.0 "Rick Owens @owensmurray": - om-elm < 0 "ALeX Kazik @alexkazik": - exomizer - - qnap-decrypt + - qnap-decrypt < 0 # via cipher-aes128 - qrcode-core - qrcode-juicypixels @@ -3844,7 +3842,7 @@ packages: - fuzzy-dates "Matthew Farkas-Dyck @strake": - - Fin + - Fin < 0 # compilation failure - alg - category - constraint @@ -3901,7 +3899,7 @@ packages: - seqid-streams < 0 "Daniel Gorin @jcpetruzza": - - barbies + - barbies < 0 "Eduard Sergeev @EduardSergeev": - monad-memo @@ -3934,7 +3932,7 @@ packages: - ghci-hexcalc "Nikos Karagianndis @nkarag": - - DBFunctor + - DBFunctor < 0 # via MissingH "Marat Khafizov @xafizoff": - n2o @@ -3991,7 +3989,7 @@ packages: - int-cast "Akihito Kirisaki @kirisaki": - - caster + - caster < 0 # via fast-builder "Felix Paulusma @Vlix": - safe-json @@ -4037,9 +4035,9 @@ packages: - FloatingHex - GenericPretty - Glob - - HDBC - - HDBC-session - - HTTP + - HDBC < 0 # via time-1.9.3 + - HDBC-session < 0 # via HDBC + - HTTP < 0 # via test-framework & test-framework-hunit - HsOpenSSL - HsYAML - JuicyPixels-scale-dct @@ -4051,7 +4049,7 @@ packages: - QuickCheck - RSA - aeson-compat - - aeson-extra + - aeson-extra < 0 # via semialign - aeson-optics - alsa-mixer - ansi-terminal @@ -4061,7 +4059,7 @@ packages: - asn1-types - assoc - attoparsec - - authenticate + - authenticate < 0 # via tagstream-conduit - auto-update - base64-bytestring - base64-bytestring-type @@ -4076,13 +4074,13 @@ packages: - blaze-svg - blaze-textual - boring - - brick < 0.48 # https://github.com/commercialhaskell/stackage/issues/4789 + - brick < 0 # via base-4.13.0.0 - buffer-builder - byteable - bytestring-builder - bytestring-strict-builder - bytestring-tree-builder - - bzlib + - bzlib < 0 # via base-4.13.0.0 - ca-province-codes - cabal-doctest - call-stack @@ -4094,14 +4092,14 @@ packages: - cereal-vector - checkers - chunked-data - - cipher-aes128 - - cipher-blowfish + - cipher-aes128 < 0 # via Cabal-3.0.0.0 + - cipher-blowfish < 0 # MonadFail - cipher-camellia - cipher-des - classy-prelude - classy-prelude-conduit - clientsession - - cmark-gfm + - cmark-gfm < 0 # via blaze-html - colour - concurrent-extra - conduit @@ -4115,12 +4113,12 @@ packages: - cpphs - crypt-sha512 - crypto-api - - crypto-api-tests - - crypto-cipher-tests + - crypto-api-tests < 0 # via test-framework + - crypto-cipher-tests < 0 # via test-framework - crypto-cipher-types - crypto-numbers - crypto-pubkey - - crypto-pubkey-openssh + - crypto-pubkey-openssh < 0 # MonadFail - crypto-random - cryptohash-cryptoapi - cryptohash-sha256 @@ -4137,27 +4135,28 @@ packages: - data-default-instances-containers - data-default-instances-dlist - data-default-instances-old-locale - - data-dword + - data-dword < 0 # template-haskell - data-endian - data-inttrie - data-lens-light - data-memocombinators + - data-msgpack-types < 0 # MonadFail - data-msgpack-types - - data-serializer - - data-textual + - data-serializer < 0 # MonadFail + - data-textual < 0 # MonadFail - dec - deepseq-generics - deferred-folds - dense-linear-algebra - deque - dictionary-sharing - - direct-sqlite + - direct-sqlite < 0 # semigroups-0.19 - discount - dlist - dlist-instances - dlist-nonempty - double-conversion - - dual-tree + - dual-tree < 0 # via base-4.13.0.0 - easy-file - easytest - ed25519 @@ -4247,7 +4246,7 @@ packages: - ixset-typed - json - json-alt - - kleene + - kleene < 0 # via regex-applicative - language-haskell-extract - largeword - lattices @@ -4462,7 +4461,7 @@ packages: - vector-builder - vector-space - vector-th-unbox - - vty + - vty < 0 # via microlens-0.4.11.2 - wai - wai-app-static - wai-conduit @@ -4520,6 +4519,7 @@ packages: "Unmaintained packages with compilation failures": - stackage-types < 0 - doctest-discover-configurator < 0 + - base-noprelude < 0 # via base-4.13.0.0 # If you want to make sure a package is removed from stackage, # place it here with a `< 0` constraint and send a pull @@ -4546,194 +4546,6 @@ packages: - proto-lens-combinators < 0 # deprecated https://github.com/commercialhaskell/stackage/pull/4358 "Build failures on GHC upgrades": - - - DAV < 0 # via xml-hamlet - - DBFunctor < 0 # via MissingH - - Fin < 0 # compilation failure - - FontyFruity < 0 # MonadFail - - H < 0 # via inline-r - - HCodecs < 0 # MonadFail - - HDBC < 0 # via time-1.9.3 - - HDBC-mysql < 0 # via HDBC - - HDBC-session < 0 # via HDBC - - HPDF < 0 # compilation failure - - HSet < 0 # Duplicate Hashable instance - - HTF < 0 # via haskell-src - - HTTP < 0 # via test-framework & test-framework-hunit - - HaTeX < 0 # MonadFail - - HandsomeSoup < 0 # via HTTP - - Hoed < 0 # via regex-tdfa-text - - HsOpenSSL-x509-system < 0 # via HsOpenSSL - - IPv6Addr < 0 # via test-framework & test-framework-hunit - - MusicBrainz < 0 # via HTTP - - Rasterific < 0 # via vector-algorithms - - SCalendar < 0 # bounds failure - - SVGFonts < 0 # via diagrams-core - - SVGFonts < 0 # via diagrams-lib - - ShellCheck < 0 # via Cabal-3.0.0.0 - - Strafunski-StrategyLib < 0 # via base-4.13.0.0 - - TotalMap < 0 # via base-4.13.0.0 - - abstract-deque-tests < 0 # via test-framework - - active < 0 # via base-4.13.0.0 - - aeson-diff < 0 # via base-4.13.0.0 - - aeson-extra < 0 # via semialign - - aeson-iproute < 0 # via iproute - - alarmclock < 0 # via base-4.13.0.0 - - alerts < 0 # via blaze-html - - algebraic-graphs < 0 # via base-compat-0.11.0 - - antiope-core < 0 # via aeson-lens & hspec-2.7.1 & hw-hspec-hedgehog - - antiope-dynamodb < 0 # via antiope-core - - antiope-messages < 0 # via hspec-2.7.1 & hw-hspec-hedgehog - - antiope-s3 < 0 # via antiope-core & antiope-messages - - antiope-sns < 0 # via hspec-2.7.1 & hw-hspec-hedgehog - - antiope-sqs < 0 # via hspec-2.7.1 & hw-hspec-hedgehog - - apecs < 0 # Template Haskell changes - - apecs-gloss < 0 # via gloss - - apecs-physics < 0 # via inline-c - - apply-refact < 0 # via ghc-8.8.1 - - arbor-lru-cache < 0 # via hw-hspec-hedgehog - - asciidiagram < 0 # via pandoc-types - - asif < 0 # via hw-hspec-hedgehog - - asif < 0 # via hw-ip - - authenticate < 0 # via tagstream-conduit - - autoexporter < 0 # via base-4.13.0.0 - - avers-api < 0 # via servant - - avro < 0 # via pure-zlib - - avwx < 0 # via HTTP - - backprop < 0 # via vinyl - - bank-holidays-england < 0 # via base-4.13.0.0 - - barbies < 0 - - barrier < 0 # via blaze-svg - - base-noprelude < 0 # via base-4.13.0.0 - - beam-core < 0 # via vector-sized-1.4.0.0 - - beam-migrate < 0 # via dependent-map-0.3 & dependent-sum-0.6.2.0 - - beam-mysql < 0 # via beam-core - - beam-postgres < 0 # via beam-core - - beam-sqlite < 0 # via beam-core - - bench-show < 0 # via optparse-applicative-0.15.1.0 - - benchpress < 0 # via base-4.13.0.0 - - bencode < 0 # via base-4.13.0.0 - - bencoding < 0 # via bencode - - binary-bits < 0 # MonadFail - - bitcoin-block < 0 # via hexstring - - bitcoin-script < 0 # MonadFail - - bitcoin-tx < 0 # via hexstring - - bitcoin-types < 0 # via base58string & hexstring - - bits-extra < 0 # via hw-hspec-hedgehog - - bitx-bitcoin < 0 # compilation error - - blas-hs < 0 # MonadFail - - blaze-bootstrap < 0 # via blaze-html - - blaze-colonnade < 0 # via profunctors-5.5 - - board-games < 0 # via httpd-shed - - boolean-normal-forms < 0 # via base-4.13.0.0 - - brick < 0 # via base-4.13.0.0 - - broadcast-chan < 0 # compilation failure - - bson-lens < 0 # via bson - - bugsnag-haskell < 0 # via yesod-core - - bulletproofs < 0 # via protolude - - butter < 0 # via network-simple - - bv-little < 0 # via text-show - - bzlib < 0 # via base-4.13.0.0 - - cabal-debian < 0 # via debian - - cabal-file-th < 0 # Cabal 3 - - cabal-install < 0 # via base-4.13.0.0 - - cabal2nix < 0 # via hpack - - capataz < 0 # transitive compilation failure - - cassava-records < 0 # MonadFail - - caster < 0 # via fast-builder - - cayley-client < 0 # via lens-4.18.1 - - cayley-client < 0 # via lens-aeson-1.1 - - cborg-json < 0 # via base-4.13.0.0 - - cereal-time < 0 # via time-1.9.3 - - cgi < 0 # via multipart - - cheapskate < 0 # via blaze-html - - cheapskate-highlight < 0 # via blaze-html - - cheapskate-lucid < 0 # via blaze-html - - check-email < 0 # via email-validate - - chronos < 0 # also test-framework - - chronos-bench < 0 # via chronos - - cipher-aes128 < 0 # via Cabal-3.0.0.0 - - cipher-blowfish < 0 # MonadFail - - circle-packing < 0 # via base-4.13.0.0 - - classy-prelude-yesod < 0 # via persistent - - classyplate < 0 # via base-4.13.0.0 - - closed < 0 # via persistent - - cmark-gfm < 0 # via blaze-html - - cmark-gfm < 0 # via markdown - - co-log < 0 # via base-4.13.0.0 - - co-log-core < 0 # via base-4.13.0.0 - - codec < 0 # via binary-bits - - codo-notation < 0 # MonadFail - - colonnade < 0 # via profunctors-5.5 - - columnar < 0 # via fmt - - compact < 0 # via base-4.13.0.0 - - componentm < 0 # transitive compilation failure - - componentm-devel < 0 # transitive compilation failure - - concurrent-supply < 0 # hashable-1.3.0 - - conduit-iconv < 0 # MonadFail - - conduit-throttle < 0 # via test-framework - - conduit-throttle < 0 # via test-framework-hunit - - confcrypt < 0 # via crypto-pubkey-openssh & optparse-applicative-0.15.1.0 - - configuration-tools < 0 # compilation error - - configurator-pg < 0 # via base-4.13.0.0 - - control-dsl < 0 # via doctest-discover - - core-data < 0 # via prettyprinter-1.3.0 - - core-program < 0 # via prettyprinter-1.3.0 and template-haskell-2.15 - - core-text < 0 # via prettyprinter-1.3.0 and template-haskell-2.15 - - country < 0 # via base-4.13.0.0 - - courier < 0 # via test-framework & test-framework-hunit - - cql < 0 # Template Haskell changes - - cql-io < 0 # via cql - - cron < 0 # MonadFail - - crypto-api-tests < 0 # via test-framework - - crypto-cipher-tests < 0 # via test-framework - - crypto-pubkey-openssh < 0 # MonadFail - - cryptocipher < 0 # via cipher-blowfish - - cryptocompare < 0 # via MissingH - - css-syntax < 0 # via base-4.13.0.0 - - cublas < 0 # via cuda - - cuda < 0 - - cufft < 0 # via cuda - - cusparse < 0 # via cuda - - cyclotomic < 0 # via base-4.13.0.0 - - data-accessor-template < 0 # via template-haskell-2.15.0.0 - - data-diverse-lens < 0 # "The liberal coverage condition fails" - - data-dword < 0 # template-haskell - - data-msgpack < 0 # via data-msgpack-types - - data-msgpack-types < 0 # MonadFail - - data-serializer < 0 # MonadFail - - data-textual < 0 # MonadFail - - dbcleaner < 0 # via postgresql-simple - - debian < 0 # via bzlib - - debug < 0 # via Hoed - - decidable < 0 # via vinyl - - dependent-map < 0 # via constraints-extras - - dependent-sum < 0 # via constraints-extras - - dependent-sum-template < 0 # via constraints-extras - - derulo < 0 # via base-4.13.0.0 - - df1 < 0 # compilation failure - - dhall < 0 # via cborg-json - - dhall-bash < 0 # via dhall - - dhall-json < 0 # via dhall - - di < 0 # transitive compilation failure - - di-df1 < 0 # transitive compilation failure - - di-handle < 0 # compilation failure - - diagrams-contrib < 0 # via base-4.13.0.0 - - diagrams-contrib < 0 # via lens-4.18.1 - - diagrams-core < 0 # via base-4.13.0.0 & lens-4.18.1 - - diagrams-postscript < 0 # via base-4.13.0.0 & lens-4.18.1 - - diagrams-rasterific < 0 # via base-4.13.0.0 & lens-4.18.1 & optparse-applicative-0.15.1.0 - - diagrams-solve < 0 # via base-4.13.0.0 - - diagrams-svg < 0 # via base-4.13.0.0 & lens-4.18.1 & optparse-applicative-0.15.1.0 - - direct-sqlite < 0 # semigroups-0.19 - - dl-fedora < 0 # via http-directory - - docopt < 0 # MonadFail - - doctemplates < 0 # via doclayout - - doctest-driver-gen < 0 # via base-4.13.0.0 - - dom-parser < 0 # via xml-lens - - download < 0 # via feed - - dual-tree < 0 # via base-4.13.0.0 - - dunai-core < 0 # via base-4.13.0.0 - easytest < 0 # via hedgehog-1.0.1 - ekg-core < 0 # via base-4.13.0.0 - ekg-json < 0 # via base-4.13.0.0 @@ -4751,7 +4563,6 @@ packages: - essence-of-live-coding-pulse < 0 # via base-4.13.0.0 - essence-of-live-coding-quickcheck < 0 # via base-4.13.0.0 - eventful-memory < 0 # via eventful-core - - eventful-memory < 0 # via eventful-test-helpers - exceptional < 0 # MonadFail - executable-hash < 0 # via cryptohash - exinst < 0 # compilation failure @@ -4766,12 +4577,10 @@ packages: - flexible-defaults < 0 # MonadFail - flow < 0 # via base-4.13.0.0 - fmt < 0 # via doctest-discover - - fmt < 0 # via interpolate - fmt-for-rio < 0 # via enum-text-rio - fold-debounce < 0 # via time-1.9.3 - fold-debounce-conduit < 0 # via base-4.13.0.0 - force-layout < 0 # via base-4.13.0.0 - - force-layout < 0 # via lens-4.18.1 - frisby < 0 # MonadFail - functor-combinators < 0 # via dependent-sum - functor-products < 0 # via vinyl @@ -4918,8 +4727,6 @@ packages: - json-rpc-client < 0 # via base-4.13.0.0 - json-rpc-server < 0 # via base-4.13.0.0 - jvm < 0 # transitive compilation failure - - kleene < 0 # via regex-applicative - - kraken < 0 # via base-4.13.0.0 - lackey < 0 # via base-4.13.0.0 - lambdabot-irc-plugins < 0 # via lambdabot-core - language-docker < 0 # Data.Text instance of Lift @@ -4994,7 +4801,6 @@ packages: - oset < 0 # via base-4.13.0.0 - palette < 0 # via base-4.13.0.0 - pandoc < 0 # via HsYAML-0.2.0.0 - - pandoc < 0 # via doctemplates-0.6.1 - pandoc-citeproc < 0 # via pandoc-types - pandoc-csv2table < 0 # via pandoc - pandoc-markdown-ghci-filter < 0 # via pandoc @@ -5040,7 +4846,6 @@ packages: - postgresql-simple-url < 0 # via postgresql-simple - postgresql-transactional < 0 # via postgresql-simple - postgresql-typed < 0 # via HDBC - - postgresql-typed < 0 # via postgresql-binary - prim-uniq < 0 # via dependent-sum - probability < 0 # MonadFail - protobuf < 0 # via hex @@ -5048,10 +4853,6 @@ packages: - protocol-buffers-descriptor < 0 # via protocol-buffers - psql-helpers < 0 # via postgresql-simple - pure-zlib < 0 # via base-compat-0.11.0 - - qnap-decrypt < 0 # via cipher-aes128 - - quickbench < 0 # via docopt - - quickcheck-arbitrary-template < 0 # via template-haskell-2.15.0.0 - - quickcheck-state-machine < 0 # via tree-diff - raaz < 0 # via base-4.13.0.0 - radius < 0 # via iproute - rainbow < 0 # via lens-simple @@ -5070,7 +4871,6 @@ packages: - regex-with-pcre < 0 # via regex - registry < 0 # also protolude, semigroups, universum - relational-query-HDBC < 0 # via HDBC - - relational-record < 0 # via persistable-types-HDBC-pg - relational-record < 0 # via relational-query-HDBC - repa < 0 # via base-4.13.0.0 - repa-algorithms < 0 # via base-4.13.0.0 @@ -5185,13 +4985,6 @@ packages: - uri-templater < 0 # via HTTP - users-postgresql-simple < 0 # via postgresql-simple - users-test < 0 # via users - - verbosity < 0 # via dhall - - viewprof < 0 # via base-4.13.0.0 - - vinyl < 0 # kind stuff - - vivid < 0 # via vivid-osc - - vivid-osc < 0 - - vivid-supercollider < 0 # via vivid-osc - - vty < 0 # via microlens-0.4.11.2 - wai-cli < 0 # via network-3.1.1.0 - wai-middleware-crowd < 0 # via optparse-applicative-0.15.1.0 - wai-middleware-throttle < 0 # via token-bucket @@ -5227,7 +5020,6 @@ packages: - yeshql < 0 # via yeshql-hdbc - yeshql-core < 0 # MonadFail - yeshql-hdbc < 0 # via HDBC - - yesod < 0 # via wai-logger - yesod < 0 # via yesod-core - yesod-alerts < 0 # via yesod-core - yesod-auth-hashdb < 0 # via yesod-test @@ -5248,7 +5040,6 @@ packages: - yesod-text-markdown < 0 # via persistent - yesod-websockets < 0 # via wai-websockets - yi-language < 0 # via regex-base-0.94.0.0 - - ztail < 0 # via time-1.9.3 "GHC upper bounds": # Need to always match the version shipped with GHC From 3eb735433aba72281ad3315559b03bd0c160acd4 Mon Sep 17 00:00:00 2001 From: nalchevanidze Date: Sat, 2 Nov 2019 16:32:41 +0100 Subject: [PATCH 0888/2682] add Morpheus GraphQL --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index fb77b197..19cbae82 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4028,6 +4028,9 @@ packages: "Marius Ghita @mhitza": - minimal-configuration + "Davit Nalchevanidze @nalchevanidze": + - morpheus-graphql + "Grandfathered dependencies": - network - Boolean From 2c8e25c97e58aaab3545875ecaef7284601dc028 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sun, 3 Nov 2019 03:47:14 +0100 Subject: [PATCH 0889/2682] haskell-src-meta upper bound for #4958 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index affe5b08..b1374722 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5048,6 +5048,7 @@ packages: "Stackage upper bounds": # https://github.com/commercialhaskell/stackage/issues/4958 - haskell-src-exts < 1.22.0 + - haskell-src-meta < 0.8.4 # https://github.com/commercialhaskell/stackage/issues/4959 - semirings < 0.5.2 From 48ebd1c5db7b3312f28602e71c70f7ff038d1e24 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sun, 3 Nov 2019 23:16:20 +0100 Subject: [PATCH 0890/2682] Clean up some more removed packages --- build-constraints.yaml | 508 ++++++++++++++--------------------------- 1 file changed, 171 insertions(+), 337 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9c491880..7bcc1895 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -58,7 +58,7 @@ packages: - polysemy-plugin - polysemy-zoo - ecstasy - - interpolatedstring-qq2 + - interpolatedstring-qq2 < 0 # via template-haskell-2.15.0.0 - prospect - do-notation - unagi-chan @@ -96,10 +96,10 @@ packages: - sized-grid "Antonio Alonso Dominguez @alonsodomin": - - hschema - - hschema-aeson - - hschema-quickcheck - - hschema-prettyprinter + - hschema < 0 # via natural-transformation + - hschema-aeson < 0 # via hschema & hschema-prettyprinter & hschema-quickcheck + - hschema-prettyprinter < 0 # via natural-transformation + - hschema-quickcheck < 0 # via hschema "Preetham Gujjula @pgujjula": - modular @@ -143,7 +143,7 @@ packages: "Phil de Joux @philderbeast": - siggy-chardust - detour-via-sci - - hpack-dhall + - hpack-dhall < 0 # via dhall & dhall-json "Matthew Ahrens @mpahrens": - forkable-monad @@ -164,14 +164,14 @@ packages: - rhine-gloss < 0 # via base-4.13.0.0 - dunai-core < 0 # via base-4.13.0.0 - finite-typelits - - essence-of-live-coding - - essence-of-live-coding-pulse - - essence-of-live-coding-gloss - - essence-of-live-coding-quickcheck + - essence-of-live-coding < 0 # via base-4.13.0.0 + - essence-of-live-coding-gloss < 0 # via base-4.13.0.0 + - essence-of-live-coding-pulse < 0 # via base-4.13.0.0 + - essence-of-live-coding-quickcheck < 0 # via base-4.13.0.0 - pulse-simple "Paul Johnson @PaulJohnson": - - geodetics + - geodetics < 0 # transitive compilation failure - Ranged-sets "Travis Athougies @tathougies": @@ -294,7 +294,7 @@ packages: - capataz < 0 # transitive compilation failure "Richard Cook @rcook": - - hidden-char + - hidden-char < 0 # via base-4.13.0.0 - oset - req-url-extra < 0 # req < 2.1.0 - sexpr-parser @@ -334,7 +334,7 @@ packages: - event-list - explicit-exception - fixed-length - - gnuplot + - gnuplot < 0 # via time-1.9.3 - group-by-date - guarded-allocation - iff @@ -389,7 +389,7 @@ packages: - blas-comfort-array - lapack-comfort-array - lapack - - hmm-lapack + - hmm-lapack < 0 # via lapack - magico - resistor-cube - linear-circuit @@ -398,7 +398,7 @@ packages: - topograph - ix-shapable - hsshellscript - - hyper + - hyper < 0 # via base-4.13.0.0 "Jeremy Barisch-Rooney @barischrooneyj": - threepenny-gui-flexbox < 0 # GHC 8.4 via clay @@ -430,14 +430,14 @@ packages: - boltzmann-samplers - first-class-families - generic-data - - generic-data-surgery + - generic-data-surgery < 0 # via generic-data - generic-random - scanf - show-combinators - type-map "Tobias Dammers @tdammers": - - ginger + - ginger < 0 # via regex-tdfa-1.3.0 - yeshql "Yair Chuchem @yairchu": @@ -463,7 +463,7 @@ packages: - sqlite-simple-errors - median-stream - stm-supply < 0 # GHC 8.4 via Unique - - filter-logger + - filter-logger < 0 # via scotty & wai-logger - tile - mbtiles @@ -530,7 +530,7 @@ packages: - stripe-core < 0 # via aeson-1.3.1.0 "Piotr Mlodawski @pmlodawski": - - error-util + - error-util < 0 # MonadFail - signal "Michael Snoyman michael@snoyman.com @snoyberg": @@ -585,11 +585,11 @@ packages: - base16-bytestring - c2hs - csv-conduit - - executable-hash + - executable-hash < 0 # via cryptohash - executable-path - foreign-store - formatting - - gtk2hs-buildtools + - gtk2hs-buildtools < 0 # compilation failure - happy - hybrid-vectors - indents @@ -643,7 +643,7 @@ packages: "Neil Mitchell @ndmitchell": - hlint - - hoogle + - hoogle < 0 # via wai-logger - shake - tagsoup - cmdargs @@ -674,7 +674,7 @@ packages: "Alan Zimmerman @alanz": - ghc-exactprint - - haskell-lsp + - haskell-lsp < 0 # via hslogger - hjsmin - language-javascript - Strafunski-StrategyLib < 0 # via base-4.13.0.0 @@ -778,7 +778,7 @@ packages: - ace - check-email < 0 # via email-validate - freenect - - frisby + - frisby < 0 # MonadFail - gd - hostname-validate - ini @@ -892,7 +892,7 @@ packages: - hspec-core - hspec-discover - hspec-wai - - hspec-wai-json + - hspec-wai-json < 0 # via hspec-wai - aeson-qq - interpolate - doctest @@ -921,7 +921,7 @@ packages: - diagrams-rasterific < 0 # via base-4.13.0.0 & lens-4.18.1 & optparse-applicative-0.15.1.0 - diagrams-solve < 0 # via base-4.13.0.0 - diagrams-svg < 0 # via base-4.13.0.0 & lens-4.18.1 & optparse-applicative-0.15.1.0 - - force-layout + - force-layout < 0 # via base-4.13.0.0 - SVGFonts < 0 # via diagrams-core - haxr < 0 # GHC 8.4 via HaXml - MonadRandom @@ -937,7 +937,7 @@ packages: "Patrick Brisbin @pbrisbin": - bugsnag-haskell < 0 # via yesod-core - - gravatar + - gravatar < 0 # via HTTP - load-env - yesod-auth-oauth2 < 0 # via hoauth2 & yesod-core - yesod-markdown < 0 # pbrisbin/yesod-markdown#65 @@ -977,9 +977,9 @@ packages: - repa-io - gloss - gloss-rendering - - gloss-algorithms - - gloss-raster - - gloss-examples + - gloss-algorithms < 0 # via base-4.13.0.0 + - gloss-examples < 0 # via base-4.13.0.0 + - gloss-raster < 0 # via base-4.13.0.0 - gloss-accelerate < 0 # GHC 8.4 via base-4.11.0.0 - gloss-raster-accelerate < 0 # GHC 8.4 via base-4.11.0.0 - colour-accelerate < 0 # GHC 8.4 via base-4.11.0.0 @@ -1014,8 +1014,8 @@ packages: - binary-list - byteset - Clipboard - - grouped-list - - haskintex + - grouped-list < 0 # via base-4.13.0.0 + - haskintex < 0 # via hint - HaTeX < 0 # MonadFail - include-file - matrix @@ -1071,7 +1071,7 @@ packages: "Sebastiaan Visser @sebastiaanvisser": - clay - - fclabels + - fclabels < 0 # via base-4.13.0.0 "Robert Klotzner @eskimor": - purescript-bridge @@ -1083,12 +1083,12 @@ packages: - messagepack-rpc < 0 "Boris Lykah @lykahb": - - groundhog + - groundhog < 0 # MonadFail - groundhog-inspector < 0 # via groundhog - - groundhog-mysql - - groundhog-postgresql - - groundhog-sqlite - - groundhog-th + - groundhog-mysql < 0 # via groundhog + - groundhog-postgresql < 0 # via groundhog + - groundhog-sqlite < 0 # via direct-sqlite + - groundhog-th < 0 # via groundhog "Janne Hellsten @nurpax": - sqlite-simple @@ -1142,7 +1142,7 @@ packages: "Joachim Breitner @nomeata": - circle-packing < 0 # via base-4.13.0.0 - - haskell-spacegoo + - haskell-spacegoo < 0 # MonadFail - tasty-expected-failure "Aditya Bhargava @egonSchiele": @@ -1228,10 +1228,10 @@ packages: # be removed, rather than putting an upper bound on hledger-lib and hledger. # (https://github.com/fpco/stackage/issues/3494) # - - hledger-lib - - hledger - - hledger-ui - - hledger-web + - hledger < 0 # via base-4.13.0.0 & base-compat-batteries-0.11.0 & easytest-0.3 + - hledger-lib < 0 # via base-4.13.0.0 & base-compat-batteries-0.11.0 & easytest-0.3 + - hledger-ui < 0 # via base-4.13.0.0 & base-compat-batteries-0.11.0 + - hledger-web < 0 # via base-4.13.0.0 # - quickbench < 0 # via docopt - regex-compat-tdfa @@ -1253,7 +1253,7 @@ packages: - ghc-syb-utils < 0 # build failure with GHC 8.4 "Boris Buliga @d12frosted": - - io-choice + - io-choice < 0 # template-haskell "Yann Esposito yogsototh @yogsototh": - human-readable-duration @@ -1263,7 +1263,7 @@ packages: - wai-middleware-caching-redis < 0 # GHC 8.4 via hedis # not package maintainer - ekg < 0 # via base-4.13.0.0 - - ekg-json + - ekg-json < 0 # via base-4.13.0.0 "Paul Rouse @paul-rouse": - mysql @@ -1287,7 +1287,7 @@ packages: "Alejandro Serrano @serras": - djinn-lib < 0 # build failure with GHC 8.4 - djinn-ghc < 0 # GHC 8.4 via djinn-lib - - generics-mrsop + - generics-mrsop < 0 # MonadFail - kind-apply - kind-generics - kind-generics-th @@ -1317,7 +1317,7 @@ packages: - here - hlibgit2 # - gitlib-libgit2 # via gitlib: https://github.com/jwiegley/gitlib/issues/72 - - interpolatedstring-perl6 + - interpolatedstring-perl6 < 0 - iproute - missing-foreign - MissingH < 0 # via array-0.5.4.0 & base-4.13.0.0 & containers-0.6.2.1 & directory-1.3.3.2 & filepath-1.4.2.1 & old-time-1.1.0.3 & process-1.6.5.1 & time-1.9.3 & unix-2.7.2.2 @@ -1328,7 +1328,7 @@ packages: - ghc-events < 0 # build failure with GHC 8.4 - monad-extras - optparse-simple - - hpack + - hpack < 0 # MonadFail https://github.com/sol/hpack/issues/371 - bindings-uname - stack < 9.9.9 # see https://github.com/fpco/stackage/issues/3563 - stack < 0 # via hackage-security @@ -1341,10 +1341,10 @@ packages: - base-prelude - cases - focus - - hasql - - hasql-optparse-applicative - - hasql-pool - - hasql-transaction + - hasql < 0 # via postgresql-binary + - hasql-optparse-applicative < 0 # via hasql + - hasql-pool < 0 # via hasql + - hasql-transaction < 0 # via hasql - list-t - mtl-prelude - neat-interpolation @@ -1448,8 +1448,8 @@ packages: "Aleksey Kliger @lambdageek": - unbound-generics - - indentation-core - - indentation-parsec + - indentation-core < 0 # via base-4.13.0.0 + - indentation-parsec < 0 # via base-4.13.0.0 - clang-compilation-database < 0 "Alois Cochard @aloiscochard": @@ -1472,7 +1472,7 @@ packages: - fedora-dists - fedora-haskell-tools < 0 # https://github.com/commercialhaskell/stackage/issues/4662 - hkgr - - http-directory + - http-directory < 0 # via html-conduit - rpmbuild-order - simple-cabal - simple-cmd @@ -1510,8 +1510,8 @@ packages: - di-df1 < 0 # transitive compilation failure - di-handle < 0 # compilation failure - di-monad - - exinst - - flay + - exinst < 0 # compilation failure + - flay < 0 - network-simple - network-simple-tls - pipes-aeson @@ -1582,7 +1582,7 @@ packages: - language-c-quote "Sönke Hahn @soenkehahn": - - generics-eot + - generics-eot < 0 # via interpolate - getopt-generics - graph-wrapper - string-conversions @@ -1814,7 +1814,7 @@ packages: - maximal-cliques "Alexander Bondarenko @dpwiz": - - hedn + - hedn < 0 # via base-4.13.0.0 - soap - soap-tls - soap-openssl < 0 @@ -1857,8 +1857,8 @@ packages: "Taylor Fausak @tfausak": - autoexporter < 0 # via base-4.13.0.0 - derulo < 0 # via base-4.13.0.0 - - flow - - github-release + - flow < 0 # via base-4.13.0.0 + - github-release < 0 # via base-4.13.0.0 - json-feed - lackey - list-singleton @@ -1870,9 +1870,9 @@ packages: - wuss - bmp # @benl23x5 - - ekg-statsd - - gloss # @benl23x5 - - gloss-rendering # @benl23x5 + - ekg-statsd < 0 # via base-4.13.0.0 & time-1.9.3 + - gloss < 0 # @benl23x5 # via base-4.13.0.0 + - gloss-rendering < 0 # @benl23x5 # via base-4.13.0.0 - gpolyline # @fegu - postgresql-simple-migration # @ameingast - statestack # @diagrams @@ -1897,7 +1897,7 @@ packages: "William Casarin @jb55": - bson-lens < 0 # via bson - cased - - elm-export + - elm-export < 0 # via wl-pprint-text # - elm-export-persistent # https://github.com/jb55/elm-export-persistent/issues/2 - pipes-csv - pipes-mongodb < 0 # GHC 8.4 via mongoDB @@ -1980,7 +1980,7 @@ packages: - boundingboxes - control-bool - drinkery - - extensible + - extensible < 0 # compilation failure - monad-skeleton - objective < 0 - winery @@ -1989,7 +1989,7 @@ packages: "Peter Harpending @pharpend": - editor-open - - exceptional + - exceptional < 0 # MonadFail - pager - semiring-simple @@ -2009,10 +2009,10 @@ packages: - bins - configurator-export - decidable < 0 # via vinyl - - emd - - functor-products - - hamilton - - hmatrix-backprop + - emd < 0 # via typelits-witnesses + - functor-products < 0 # via vinyl + - hamilton < 0 # via vty + - hmatrix-backprop < 0 # via backprop - hmatrix-vector-sized - lens-typelevel < 0 # GHC 8.8 via ghc-typelits-presburger (konn/equational-reasoning-in-haskell#4) - list-witnesses @@ -2061,7 +2061,7 @@ packages: - choice - distributed-closure - inline-java < 0 - - inline-r + - inline-r < 0 # via inline-c - jni - jvm - jvm-streaming < 0 @@ -2088,9 +2088,9 @@ packages: - cayley-client < 0 # via lens-4.18.1 - Spintax - glabrous - - google-oauth2-jwt + - google-oauth2-jwt < 0 # via HsOpenSSL - IPv6DB < 0 - - gothic + - gothic < 0 # via lens-4.18.1 "koral koral@mailoo.org @k0ral": - atom-conduit < 0 @@ -2116,12 +2116,12 @@ packages: - data-ordlist - digits - dns - - ekg-core + - ekg-core < 0 # via base-4.13.0.0 - friday < 0 - friday-juicypixels < 0 - - hbeanstalk + - hbeanstalk < 0 # sClose not in scope - hedis < 0 # via test-framework - - hprotoc + - hprotoc < 0 # compilation failure - hsyslog-udp < 0 - iso3166-country-codes - iso639 @@ -2150,8 +2150,8 @@ packages: - bytestring-to-vector "Jakub Fijałkowski @jakubfijalkowski": - - hlibsass - - hsass + - hlibsass < 0 # template-haskell + - hsass < 0 # via hlibsass "Robert Massaioli @robertmassaioli": - range @@ -2167,7 +2167,7 @@ packages: - atomic-write - dbcleaner < 0 # via postgresql-simple - dotenv - - hapistrano + - hapistrano < 0 # via path-io-1.5.0 & time-1.9.3 - hspec-golden - inflections - stache @@ -2198,7 +2198,7 @@ packages: - data-fix "Alexey Khudyakov @Shimuuar": - - histogram-fill + - histogram-fill < 0 # compilation failure - fixed-vector - fixed-vector-hetero - type-level-numbers @@ -2249,7 +2249,7 @@ packages: - smtp-mail < 0 # https://github.com/jhickner/smtp-mail/issues/24#issuecomment-499601949 - liboath-hs - servant-quickcheck < 0 - - esqueleto + - esqueleto < 0 # via time-1.9.3 - persistent-typed-db - persistent-qq - persistent-pagination @@ -2269,7 +2269,7 @@ packages: - dependent-sum < 0 # via constraints-extras - dependent-sum-template < 0 # via constraints-extras - dice < 0 # GHC 8.4 via random-fu - - hstatsd + - hstatsd < 0 # sClose not in scope - misfortune < 0 # GHC 8.4 via random-fu "Timo von Holtz @tvh": @@ -2294,10 +2294,10 @@ packages: - charsetdetect-ae - ilist # - text-all # text-1.2.3.0 - - fmt + - fmt < 0 # via doctest-discover "Takano Akio tak@anoak.io @takano-akio": - - fast-builder + - fast-builder < 0 # via true-name - filelock "Brian Lewis brian@lorf.org @bsl": @@ -2345,7 +2345,7 @@ packages: "Dennis Gosnell @cdepillabout": - envelope - from-sum - - hailgun + - hailgun < 0 # via http-client-0.6.1 - natural-transformation - password - password-instances @@ -2413,7 +2413,7 @@ packages: "Andrew Cowie @afcowie": - chronologique - http-common - - http-streams + - http-streams < 0 # via io-streams & openssl-streams - locators - core-data < 0 # via prettyprinter-1.3.0 - core-program < 0 # via prettyprinter-1.3.0 and template-haskell-2.15 @@ -2424,7 +2424,7 @@ packages: "Ivan Miljenovic @ivan-m": - fgl - - graphviz + - graphviz < 0 # via polyparse-1.13 - wl-pprint-text - servant-pandoc < 0 # blocks http-media https://github.com/commercialhaskell/stackage/issues/4483 @@ -2441,7 +2441,7 @@ packages: - flexible-defaults - funcmp - hackage-db - - hledger-interest + - hledger-interest < 0 # via hledger-lib - hopenssl - hsdns - hsemail @@ -2527,7 +2527,7 @@ packages: "Emmanuel Touzery @emmanueltouzery": - app-settings - - hsexif + - hsexif < 0 # via time-1.9.3 - slack-web "Nickolay Kudasov @fizruk": @@ -2543,7 +2543,7 @@ packages: - hasty-hamiltonian - declarative - sampling - - flat-mcmc + - flat-mcmc < 0 # via monad-par - urbit-hob - hnock @@ -2563,7 +2563,7 @@ packages: - rank1dynamic "Dave Tapley @dukedave": - - inline-c-cpp + - inline-c-cpp < 0 # via inline-c "Takahiro Himura @himura": - lens-regex @@ -2636,7 +2636,7 @@ packages: "Andrew Rademacher @AndrewRademacher": - aeson-casing - - graylog + - graylog < 0 # Couldn't find module Network.BSD - parsec-numeric # - mallard # https://github.com/AndrewRademacher/mallard/issues/49 - gdax < 0 @@ -2687,7 +2687,7 @@ packages: "Pedro Tacla Yamada @yamadapc": - ascii-progress - drawille < 0 - - file-modules + - file-modules < 0 # via MissingH - frontmatter - read-editor # - list-prompt # https://github.com/yamadapc/list-prompt/issues/3 @@ -2724,7 +2724,7 @@ packages: - wai-session-postgresql "Haisheng Wu @freizl": - - hoauth2 + - hoauth2 < 0 # via binary-0.8.7.0 "Falko Peters @informatikr": - scrypt @@ -2780,7 +2780,7 @@ packages: - hsb2hs < 0 # build failure with GHC 8.4 - cmark - texmath - - highlighting-kate + - highlighting-kate < 0 # via blaze-html - skylighting - pandoc-types < 1.19 || > 1.19 # Accidental upload, see: https://github.com/fpco/stackage/issues/2223 - zip-archive @@ -2881,29 +2881,29 @@ packages: - avro < 0 # via pure-zlib - asif < 0 # via hw-hspec-hedgehog - bits-extra < 0 # via hw-hspec-hedgehog - - hw-balancedparens + - hw-balancedparens < 0 # via hw-fingertree - hw-bits - hw-conduit - hw-conduit-merges - hw-diagnostics - - hw-dsv - - hw-eliasfano + - hw-dsv < 0 # via hw-hspec-hedgehog & hw-rankselect + - hw-eliasfano < 0 # via generic-lens-1.2.0.0 & hw-packed-vector-0.2.0.0 - hw-excess < 0 # via hw-rankselect-base - hw-hedgehog - - hw-hspec-hedgehog + - hw-hspec-hedgehog < 0 # via call-stack-0.2.0 - hw-int - - hw-ip - - hw-fingertree - - hw-fingertree-strict - - hw-json - - hw-mquery - - hw-packed-vector - - hw-parser + - hw-ip < 0 # via generic-lens-1.2.0.0 + - hw-fingertree < 0 # via hw-hspec-hedgehog + - hw-fingertree-strict < 0 # via hw-hspec-hedgehog + - hw-json < 0 # via generic-lens-1.2.0.0 & hw-json-simple-cursor & hw-json-standard-cursor + - hw-mquery < 0 # via lens-4.18.1 + - hw-packed-vector < 0 # via generic-lens-1.2.0.0 + - hw-parser < 0 # via hw-hspec-hedgehog - hw-prim - - hw-rankselect - - hw-rankselect-base - - hw-simd - - hw-succinct + - hw-rankselect < 0 # via generic-lens-1.2.0.0 + - hw-rankselect-base < 0 # via bits-extra + - hw-simd < 0 # via hw-hspec-hedgehog & hw-rankselect + - hw-succinct < 0 # via hw-rankselect - hw-streams - hw-xml < 0 # Build failure haskell-works/hw-xml#28 - pure-zlib @@ -2938,7 +2938,7 @@ packages: - oblivious-transfer - pairing < 0 # #4758 - libraft < 0 # via concurrency & ejafu & kg & kg-core & onad-metrics & ostgresql-simple-url & rotolude & uickcheck-state-machine & asty-dejafu - - galois-field + - galois-field < 0 # via protolude & wl-pprint-text "Daishi Nakajima @nakaji-dayo": - api-field-json-th @@ -2947,7 +2947,7 @@ packages: - postgresql-transactional "Tom Murphy ": - - gingersnap + - gingersnap < 0 # via snap-core - microspec - midair - nano-erl @@ -2957,16 +2957,16 @@ packages: - vivid-supercollider < 0 # via vivid-osc "Toshio Ito @debug-ito": - - fold-debounce - - fold-debounce-conduit + - fold-debounce < 0 # via time-1.9.3 + - fold-debounce-conduit < 0 # via base-4.13.0.0 - stopwatch - wikicfp-scraper - wild-bind - wild-bind-x11 - - greskell - - greskell-core - - greskell-websocket - - hspec-need-env + - greskell < 0 # via base-4.13.0.0 + - greskell-core < 0 # via base-4.13.0.0 + - greskell-websocket < 0 # via base-4.13.0.0 + - hspec-need-env < 0 # via base-4.13.0.0 "Cies Breijs @cies": - htoml @@ -2977,7 +2977,7 @@ packages: "David Reaver @jdreaver": - eventful-core # - eventful-dynamodb # http-conduit 2.3 via amazonka - - eventful-memory + - eventful-memory < 0 # via eventful-core - eventful-postgresql < 0 # GHC 8.4 via persistent-postgresql - eventful-sql-common < 0 # persistent 2.10.0 #4551 - eventful-sqlite < 0 # persistent 2.10.0 via eventful-sql-common @@ -2988,16 +2988,16 @@ packages: "Iñaki García Etxebarria @garetxe": - haskell-gi - haskell-gi-base - - gi-atk - - gi-cairo - - gi-glib - - gi-gio - - gi-gobject - - gi-gtk + - gi-atk < 0 # via haskell-gi + - gi-cairo < 0 # via haskell-gi + - gi-glib < 0 # via haskell-gi + - gi-gio < 0 # via haskell-gi + - gi-gobject < 0 # via haskell-gi + - gi-gtk < 0 # via gi-graphene - gi-gtk-hs < 0 # via base-compat-0.11.0 - - gi-gtksource - - gi-javascriptcore - - gi-vte + - gi-gtksource < 0 # via gi-gdk-4.0.1 & gi-gtk-4.0.1 + - gi-javascriptcore < 0 # via haskell-gi + - gi-vte < 0 # via gi-gdk-4.0.1 & gi-gtk-4.0.1 # - gi-webkit2 # https://github.com/fpco/stackage/issues/3415 "Brandon Simmons @jberryman": @@ -3025,7 +3025,7 @@ packages: "Pavel Ryzhov @paulrzcz": - hquantlib < 0 - - hquantlib-time + - hquantlib-time < 0 # via time-1.9.3 - HSvm "Henri Verroken @hverr": @@ -3218,7 +3218,7 @@ packages: - threads-extras < 0 - tmp-postgres < 0.3 # https://github.com/commercialhaskell/stackage/issues/4790 - pg-transact - - hspec-pg-transact + - hspec-pg-transact < 0 # via tmp-postgres - postgresql-simple-queue - port-utils @@ -3234,7 +3234,7 @@ packages: - rawfilepath "Konstantin Zudov @zudov": - - html-email-validate + - html-email-validate < 0 # via regex-pcre-builtin "Carl Baatz @cbaatz": - atom-basic @@ -3270,7 +3270,7 @@ packages: "Tom Nielsen @glutamate": - plotlyhs - - inliterate + - inliterate < 0 # via blaze-html & plotlyhs "Hyunje Jun @noraesae": - line @@ -3375,10 +3375,10 @@ packages: - dvorak "OnRock Engineering ": - - github-webhooks + - github-webhooks < 0 # unknown "Pavel Yakovlev @zmactep": - - hasbolt + - hasbolt < 0 # via hex - uniprot-kb - mmtf @@ -3403,11 +3403,11 @@ packages: - regex-pcre-text - regex-with-pcre - possibly - - enum-text + - enum-text < 0 # via fmt - rg - columnar < 0 # via fmt - - enum-text-rio - - fmt-for-rio + - enum-text-rio < 0 # via fmt + - fmt-for-rio < 0 # via enum-text-rio - no-value - optparse-enum @@ -3488,7 +3488,7 @@ packages: - conduit-zstd "Alex Biehl @alexbiehl": - - haddock-library + - haddock-library < 0 # via base-4.13.0.0 - http-client-openssl "Mark Hopkins @mjhopkins": @@ -3548,7 +3548,7 @@ packages: - type-errors-pretty "Holmusk @arbus": - - elm-street + - elm-street < 0 # via base-4.13.0.0 & warp-3.3.2 "Lorenz Moesenlechner @moesenle": - servant-websockets @@ -3557,14 +3557,14 @@ packages: - currencies - alerts < 0 # via blaze-html - yesod-alerts - - graphite + - graphite < 0 # via graphviz "José Lorenzo Rodríguez @lorenzo": - wrecker < 0 # GHC 8.4 via ansigraph - language-docker - docker-build-cacher < 0 # GHC 8.4 via turtle - mysql-haskell-nem - - hadolint + - hadolint < 0 # via ShellCheck "Phil Ruffwind @Rufflewind": - blas-hs < 0 # MonadFail @@ -3660,7 +3660,7 @@ packages: - hedgehog-corpus "Sam Stites @stites": - - gym-http-api + - gym-http-api < 0 # via servant servant-client "Tom Sydney Kerckhove @NorfairKing": - genvalidity @@ -3700,12 +3700,12 @@ packages: - quickcheck-state-machine < 0 # via tree-diff "Sebastian Nagel @ch1bo": - - hdevtools + - hdevtools < 0 # compilation failure - servant-exceptions < 0 # https://github.com/ch1bo/servant-exceptions/issues/9 "Vaibhav Sagar @vaibhavsagar": - ihaskell < 0 # via base-4.13.0.0 - - ghc-parser + - ghc-parser < 0 # via ghc-8.8.1 "Alexis Williams @typedrat": - stb-image-redux @@ -3756,7 +3756,7 @@ packages: "Domen Kozar @domenkozar": - cachix < 0 # #4752 - cachix-api < 0 # via http-media & protolude & servant-auth & servant-auth-server & servant-auth-swagger & swagger2 - - elm2nix + - elm2nix < 0 # via req - mixpanel-client < 0 - netrc - pretty-sop @@ -3809,7 +3809,7 @@ packages: "Eugene Smolanka @esmolanka": - sexp-grammar - - invertible-grammar + - invertible-grammar < 0 # via profunctors-5.5 "Maximilian Tagher @MaxGabriel": - aeson-iproute < 0 # via iproute @@ -3915,7 +3915,7 @@ packages: - secp256k1-haskell - rocksdb-haskell - rocksdb-query - - haskoin-core + - haskoin-core < 0 # via secp256k1-haskell - haskoin-node < 0 - haskoin-store < 0 @@ -4161,7 +4161,7 @@ packages: - double-conversion - dual-tree < 0 # via base-4.13.0.0 - easy-file - - easytest + - easytest < 0 # via hedgehog-1.0.1 - ed25519 - edit-distance - elm-bridge @@ -4176,7 +4176,7 @@ packages: - fail - fast-logger - fast-math - - fib + - fib < 0 # via base-noprelude - file-embed - file-embed-lzma - filemanip @@ -4185,28 +4185,29 @@ packages: - fmlist - friendly-time - functor-classes-compat - - functor-combinators + - functor-combinators < 0 # via dependent-sum - generic-arbitrary - generics-sop-lens - ghc-compact - ghc-paths - ghc-prof - - gi-gdk - - gi-gdkpixbuf - - gi-pango + - gi-gdk < 0 # via haskell-gi + - gi-gdkpixbuf < 0 # via haskell-gi + - gi-pango < 0 # via haskell-gi + - github < 0 # via http-client-0.6.1 - github - groom - groups - - hackage-security + - hackage-security < 0 # via base-4.13.0.0 - hashable - haskell-gi-overloading - haskell-lexer - haskell-lsp-types - - haskell-src + - haskell-src < 0 # via base-4.13.0.0 - haskell-src-exts - - haxl + - haxl < 0 # via time-1.9.3 - heap - - hex + - hex < 0 # via base-4.13.0.0 - hint - hmatrix - hmatrix-gsl @@ -4214,7 +4215,7 @@ packages: - hourglass - hsc2hs - hscolour - - hslogger + - hslogger < 0 # via network-3.1.1.0 & network-bsd - hsp - hspec-attoparsec - hspec-contrib @@ -4223,19 +4224,19 @@ packages: - hspec-meta - hspec-smallcheck - html - - html-conduit + - html-conduit < 0 # compilation error https://github.com/snoyberg/xml/issues/148 - html-entities - http-client-tls - http-date - http-reverse-proxy - http-types - http2 - - httpd-shed + - httpd-shed < 0 # via network-bsd - hw-json-simd - hw-string-parse - hxt - hxt-charproperties - - hxt-http + - hxt-http < 0 # via HTTP - hxt-regex-xmlschema - hxt-unicode - iconv @@ -4245,7 +4246,7 @@ packages: - insert-ordered-containers - inspection-testing - integer-logarithms - - io-streams-haproxy + - io-streams-haproxy < 0 # via base-4.13.0.0 - ixset-typed - json - json-alt @@ -4520,9 +4521,12 @@ packages: # this is to prevent us from including them by accident. They can # be removed from this list if they are fixed. "Unmaintained packages with compilation failures": - - stackage-types < 0 - - doctest-discover-configurator < 0 - base-noprelude < 0 # via base-4.13.0.0 + - doctest-discover-configurator < 0 + - flexible-defaults < 0 # MonadFail + - haskell-tools-builtin-refactorings < 0 # bounds failure + - hpqtypes < 0 # bounds failure + - stackage-types < 0 # If you want to make sure a package is removed from stackage, # place it here with a `< 0` constraint and send a pull @@ -4543,182 +4547,12 @@ packages: - xxhash < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build - Unique < 0 # GHC 8.4 via base-4.11.0.0 - hastache < 0 # GHC 8.4 via base-4.11.0.0 - - attoparsec-time < 0 # GHC 8.4 via doctest-0.15.0 + - attoparsec-time < 0 # GHC 8.4 via doctest-0.150. - syb-with-class < 0 # GHC 8.4 via template-haskell-2.13.0.0 - lens-labels < 0 # deprecated https://github.com/commercialhaskell/stackage/pull/4358 - proto-lens-combinators < 0 # deprecated https://github.com/commercialhaskell/stackage/pull/4358 - "Build failures on GHC upgrades": - - easytest < 0 # via hedgehog-1.0.1 - - ekg-core < 0 # via base-4.13.0.0 - - ekg-json < 0 # via base-4.13.0.0 - - ekg-statsd < 0 # via base-4.13.0.0 & time-1.9.3 - - elm-export < 0 # via wl-pprint-text - - elm-street < 0 # via base-4.13.0.0 & warp-3.3.2 - - elm2nix < 0 # via req - - emd < 0 # via typelits-witnesses - - enum-text < 0 # via fmt - - enum-text-rio < 0 # via fmt - - error-util < 0 # MonadFail - - esqueleto < 0 # via time-1.9.3 - - essence-of-live-coding < 0 # via base-4.13.0.0 - - essence-of-live-coding-gloss < 0 # via base-4.13.0.0 - - essence-of-live-coding-pulse < 0 # via base-4.13.0.0 - - essence-of-live-coding-quickcheck < 0 # via base-4.13.0.0 - - eventful-memory < 0 # via eventful-core - - exceptional < 0 # MonadFail - - executable-hash < 0 # via cryptohash - - exinst < 0 # compilation failure - - extensible < 0 # compilation failure - - fast-builder < 0 # via true-name - - fclabels < 0 # via base-4.13.0.0 - - fib < 0 # via base-noprelude - - file-modules < 0 # via MissingH - - filter-logger < 0 # via scotty & wai-logger - - flat-mcmc < 0 # via monad-par - - flay < 0 - - flexible-defaults < 0 # MonadFail - - flow < 0 # via base-4.13.0.0 - - fmt < 0 # via doctest-discover - - fmt-for-rio < 0 # via enum-text-rio - - fold-debounce < 0 # via time-1.9.3 - - fold-debounce-conduit < 0 # via base-4.13.0.0 - - force-layout < 0 # via base-4.13.0.0 - - frisby < 0 # MonadFail - - functor-combinators < 0 # via dependent-sum - - functor-products < 0 # via vinyl - - galois-field < 0 # via protolude & wl-pprint-text - - generic-data-surgery < 0 # via generic-data - - generics-eot < 0 # via interpolate - - generics-mrsop < 0 # MonadFail - - geodetics < 0 # transitive compilation failure - - ghc-parser < 0 # via ghc-8.8.1 - - gi-atk < 0 # via haskell-gi - - gi-cairo < 0 # via haskell-gi - - gi-gdk < 0 # via haskell-gi - - gi-gdkpixbuf < 0 # via haskell-gi - - gi-gio < 0 # via haskell-gi - - gi-glib < 0 # via haskell-gi - - gi-gobject < 0 # via haskell-gi - - gi-gtk < 0 # via gi-graphene - - gi-gtk < 0 # via gi-gsk - - gi-gtksource < 0 # via gi-gdk-4.0.1 & gi-gtk-4.0.1 - - gi-javascriptcore < 0 # via haskell-gi - - gi-pango < 0 # via haskell-gi - - gi-vte < 0 # via gi-gdk-4.0.1 & gi-gtk-4.0.1 - - ginger < 0 # via regex-tdfa-1.3.0 - - gingersnap < 0 # via snap-core - - github < 0 # via http-client-0.6.1 - - github-release < 0 # via base-4.13.0.0 - - github-webhooks < 0 # unknown - - gloss < 0 # via base-4.13.0.0 - - gloss-algorithms < 0 # via base-4.13.0.0 - - gloss-examples < 0 # via base-4.13.0.0 - - gloss-raster < 0 # via base-4.13.0.0 - - gloss-rendering < 0 # via base-4.13.0.0 - - gnuplot < 0 # via time-1.9.3 - - google-oauth2-jwt < 0 # via HsOpenSSL - - gothic < 0 # via lens-4.18.1 - - gothic < 0 # via lens-aeson-1.1 - - graphite < 0 # via graphviz - - graphviz < 0 # via polyparse-1.13 - - gravatar < 0 # via HTTP - - graylog < 0 # Couldn't find module Network.BSD - - greskell < 0 # via base-4.13.0.0 - - greskell-core < 0 # via base-4.13.0.0 - - greskell-websocket < 0 # via base-4.13.0.0 - - groundhog < 0 # MonadFail - - groundhog-mysql < 0 # via groundhog - - groundhog-postgresql < 0 # via groundhog - - groundhog-sqlite < 0 # via direct-sqlite - - groundhog-th < 0 # via groundhog - - grouped-list < 0 # via base-4.13.0.0 - - gtk2hs-buildtools < 0 # compilation failure - - gym-http-api < 0 # via servant servant-client - - hackage-security < 0 # via base-4.13.0.0 - - haddock-library < 0 # via base-4.13.0.0 - - hadolint < 0 # via ShellCheck - - hailgun < 0 # via http-client-0.6.1 - - hamilton < 0 # via vty - - hapistrano < 0 # via path-io-1.5.0 & time-1.9.3 - - hasbolt < 0 # via hex - - haskell-lsp < 0 # via hslogger - - haskell-spacegoo < 0 # MonadFail - - haskell-src < 0 # via base-4.13.0.0 - - haskell-tools-builtin-refactorings < 0 # bounds failure - - haskintex < 0 # via hint - - haskoin-core < 0 # via secp256k1-haskell - - hasql < 0 # via postgresql-binary - - hasql-optparse-applicative < 0 # via hasql - - hasql-pool < 0 # via hasql - - hasql-transaction < 0 # via hasql - - haxl < 0 # via time-1.9.3 - - hbeanstalk < 0 # sClose not in scope - - hdevtools < 0 # compilation failure - - hedn < 0 # via base-4.13.0.0 - - hex < 0 # via base-4.13.0.0 - - hidden-char < 0 # via base-4.13.0.0 - - highlighting-kate < 0 # via blaze-html - - highlighting-kate < 0 # via regex-pcre-builtin - - histogram-fill < 0 # compilation failure - - hledger < 0 # via base-4.13.0.0 & base-compat-batteries-0.11.0 & easytest-0.3 - - hledger-interest < 0 # via hledger-lib - - hledger-lib < 0 # via base-4.13.0.0 & base-compat-batteries-0.11.0 & easytest-0.3 - - hledger-ui < 0 # via base-4.13.0.0 & base-compat-batteries-0.11.0 - - hledger-web < 0 # via base-4.13.0.0 - - hlibsass < 0 # template-haskell - - hmatrix-backprop < 0 # via backprop - - hmm-lapack < 0 # via lapack - - hoauth2 < 0 # via binary-0.8.7.0 - - hoogle < 0 # via wai-logger - - hpack < 0 # MonadFail https://github.com/sol/hpack/issues/371 - - hpack-dhall < 0 # via dhall & dhall-json - - hpqtypes < 0 # bounds failure - - hprotoc < 0 # compilation failure - - hquantlib-time < 0 # via time-1.9.3 - - hsass < 0 # via hlibsass - - hschema < 0 # via natural-transformation - - hschema-aeson < 0 # via hschema & hschema-prettyprinter & hschema-quickcheck - - hschema-prettyprinter < 0 # via natural-transformation - - hschema-quickcheck < 0 # via hschema - - hsexif < 0 # via time-1.9.3 - - hslogger < 0 # via network-3.1.1.0 & network-bsd - - hspec-need-env < 0 # via base-4.13.0.0 - - hspec-pg-transact < 0 # via tmp-postgres - - hspec-wai-json < 0 # via hspec-wai - - hstatsd < 0 # sClose not in scope - - html-conduit < 0 # compilation error https://github.com/snoyberg/xml/issues/148 - - html-email-validate < 0 # via regex-pcre-builtin - - http-directory < 0 # via html-conduit - - http-streams < 0 # via io-streams & openssl-streams - - httpd-shed < 0 # via network-bsd - - hw-balancedparens < 0 # via hw-fingertree - - hw-dsv < 0 # via hw-hspec-hedgehog & hw-rankselect - - hw-eliasfano < 0 # via generic-lens-1.2.0.0 & hw-packed-vector-0.2.0.0 - - hw-fingertree < 0 # via hw-hspec-hedgehog - - hw-fingertree-strict < 0 # via hw-hspec-hedgehog - - hw-hspec-hedgehog < 0 # via call-stack-0.2.0 - - hw-ip < 0 # via generic-lens-1.2.0.0 - - hw-json < 0 # via generic-lens-1.2.0.0 & hw-json-simple-cursor & hw-json-standard-cursor - - hw-mquery < 0 # via lens-4.18.1 - - hw-packed-vector < 0 # via generic-lens-1.2.0.0 - - hw-parser < 0 # via hw-hspec-hedgehog - - hw-rankselect < 0 # via generic-lens-1.2.0.0 - - hw-rankselect-base < 0 # via bits-extra - - hw-simd < 0 # via hw-hspec-hedgehog & hw-rankselect - - hw-succinct < 0 # via hw-rankselect - - hxt-http < 0 # via HTTP - - hyper < 0 # via base-4.13.0.0 - - indentation-core < 0 # via base-4.13.0.0 - - indentation-parsec < 0 # via base-4.13.0.0 - - inline-c-cpp < 0 # via inline-c - - inline-r < 0 # via inline-c - - inliterate < 0 # via blaze-html & plotlyhs - - interpolatedstring-perl6 < 0 - - interpolatedstring-qq2 < 0 # via template-haskell-2.15.0.0 - - invertible-grammar < 0 # via profunctors-5.5 - - io-choice < 0 # template-haskell - - io-streams-haproxy < 0 # via base-4.13.0.0 + "Build failures on GHC upgrades ..,,xxx": - ip6addr < 0 # via IPv6Addr - ipynb < 0 # via aeson-diff - ixset-typed < 0 # via safecopy-0.10.0 From bae795d967e47b03bba4eb919b36bf406e74a095 Mon Sep 17 00:00:00 2001 From: "Hexirp Hexirp@users.noreply.github.com" Date: Mon, 4 Nov 2019 15:04:49 +0900 Subject: [PATCH 0891/2682] Re-enable `doctest-driver-gen` --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7bcc1895..33a1c6eb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3601,7 +3601,7 @@ packages: - docker < 0 "Hexirp @Hexirp": - - doctest-driver-gen < 0 # via base-4.13.0.0 + - doctest-driver-gen "Václav Haisman @wilx": - hs-bibutils From 98fafa68bf9f35f8561ea20781986b74c7dddcdb Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 4 Nov 2019 09:19:34 +0100 Subject: [PATCH 0892/2682] Remove upper bounds and close #4958 --- build-constraints.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 33a1c6eb..b69c65a4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4883,10 +4883,6 @@ packages: - Win32 == 2.6.1.0 "Stackage upper bounds": - # https://github.com/commercialhaskell/stackage/issues/4958 - - haskell-src-exts < 1.22.0 - - haskell-src-meta < 0.8.4 - # https://github.com/commercialhaskell/stackage/issues/4959 - semirings < 0.5.2 From f1cdc57f6cc4215e2123888b26c90d7214af933e Mon Sep 17 00:00:00 2001 From: Ryan Scott Date: Mon, 4 Nov 2019 05:53:06 -0500 Subject: [PATCH 0893/2682] Reenable monad-par's tests They were originally removed due to not compiling with GHC 8.6, but this is fixed as of `monad-par-0.3.5`. --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b69c65a4..ae75605a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5226,7 +5226,6 @@ skipped-tests: - kanji - megaparsec - mighty-metropolis - - monad-par - multiarg - mustache - opml-conduit From 2b244113000120b349fdff76e758373f25297206 Mon Sep 17 00:00:00 2001 From: Alejandro Serrano Date: Tue, 5 Nov 2019 12:52:22 +0100 Subject: [PATCH 0894/2682] Add language-protobuf --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ae75605a..2737342d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1294,6 +1294,7 @@ packages: - simplistic-generics - wl-pprint - AC-Angle + - language-protobuf "Matvey Aksenov @supki": - terminal-size From ac7495316f4557205603614ba612b12509bca11d Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Tue, 5 Nov 2019 08:17:24 -0800 Subject: [PATCH 0895/2682] Add upper bound for prettyprinter, #4964 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ae75605a..762f1895 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4886,6 +4886,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4959 - semirings < 0.5.2 + # https://github.com/commercialhaskell/stackage/issues/4964 + - prettyprinter < 1.5 + # end of packages # Package flags are applied to individual packages, and override the values of From f6b4db47008abeddebb4c7bbd160fa6733844ec2 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Thu, 7 Nov 2019 20:17:17 -0800 Subject: [PATCH 0896/2682] Add upper bounds for megaparsec and related packages, #4966 --- build-constraints.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index e31076fb..bd2a2f2b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4890,6 +4890,11 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4964 - prettyprinter < 1.5 + # https://github.com/commercialhaskell/stackage/issues/4966 + - megaparsec < 8 + - megaparsec-tests < 8 + - hspec-megaparsec < 2.1 + # end of packages # Package flags are applied to individual packages, and override the values of From c8198089dc85c090d4c7726067498fed0f32c123 Mon Sep 17 00:00:00 2001 From: Viktor Dukhovni Date: Thu, 7 Nov 2019 22:17:57 -0500 Subject: [PATCH 0897/2682] Re-enable data-dword --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e31076fb..f4983ec0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4139,7 +4139,7 @@ packages: - data-default-instances-containers - data-default-instances-dlist - data-default-instances-old-locale - - data-dword < 0 # template-haskell + - data-dword - data-endian - data-inttrie - data-lens-light From aeafbc6945992378291d8f4ab65038c254059e00 Mon Sep 17 00:00:00 2001 From: Viktor Dukhovni Date: Thu, 7 Nov 2019 23:46:37 -0500 Subject: [PATCH 0898/2682] Re-enable data-serialiaser and data-textual These now build with GHC 8.8.1 --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 873b6423..039df50a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4146,8 +4146,8 @@ packages: - data-memocombinators - data-msgpack-types < 0 # MonadFail - data-msgpack-types - - data-serializer < 0 # MonadFail - - data-textual < 0 # MonadFail + - data-serializer + - data-textual - dec - deepseq-generics - deferred-folds From 647e4fdb5509507a99e14c96ee69c1178ede1ce3 Mon Sep 17 00:00:00 2001 From: vrom911 Date: Fri, 8 Nov 2019 12:41:18 +0400 Subject: [PATCH 0899/2682] Add slist --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 873b6423..ca714597 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3548,6 +3548,9 @@ packages: "Dmitrii Kovanikov @chshersh": - type-errors-pretty + "Veronika Romashkina @vrom911": + - slist + "Holmusk @arbus": - elm-street < 0 # via base-4.13.0.0 & warp-3.3.2 From afbb2aa8d0e364613da36bd46ff65ffd4fe15cf2 Mon Sep 17 00:00:00 2001 From: Taylor Fausak Date: Fri, 8 Nov 2019 11:44:42 -0500 Subject: [PATCH 0900/2682] Re-enable @tfausak's packages --- build-constraints.yaml | 18 +++++------------- 1 file changed, 5 insertions(+), 13 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 873b6423..a2bc0432 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1856,10 +1856,10 @@ packages: - setlocale "Taylor Fausak @tfausak": - - autoexporter < 0 # via base-4.13.0.0 - - derulo < 0 # via base-4.13.0.0 - - flow < 0 # via base-4.13.0.0 - - github-release < 0 # via base-4.13.0.0 + - autoexporter + - derulo + - flow + # - github-release # requires uri-templater - json-feed - lackey - list-singleton @@ -1871,7 +1871,7 @@ packages: - wuss - bmp # @benl23x5 - - ekg-statsd < 0 # via base-4.13.0.0 & time-1.9.3 + - ekg-statsd < 0 # @tibbe via base-4.13.0.0 & time-1.9.3 - gloss < 0 # @benl23x5 # via base-4.13.0.0 - gloss-rendering < 0 # @benl23x5 # via base-4.13.0.0 - gpolyline # @fegu @@ -4561,11 +4561,9 @@ packages: - jose < 0 # MonadFail - json < 0 # via base-4.13.0.0 - json-autotype < 0 # via lens-4.18.1 - - json-feed < 0 # via base-4.13.0.0 - json-rpc-client < 0 # via base-4.13.0.0 - json-rpc-server < 0 # via base-4.13.0.0 - jvm < 0 # transitive compilation failure - - lackey < 0 # via base-4.13.0.0 - lambdabot-irc-plugins < 0 # via lambdabot-core - language-docker < 0 # Data.Text instance of Lift - language-ecmascript < 0 # via Diff-0.4.0 @@ -4697,9 +4695,6 @@ packages: - rainbox < 0 # via lens-simple - random-source < 0 # via flexible-defaults - rasterific-svg < 0 # via Rasterific - - ratel < 0 # via base-4.13.0.0 - - ratel-wai < 0 # via base-4.13.0.0 - - rattletrap < 0 # via base-4.13.0.0 - ref-fd < 0 # bounds failure - references < 0 - regex < 0 # hashable-1.3.0 @@ -4720,7 +4715,6 @@ packages: - s3-signer < 0 # via http-types - safe-json < 0 # via time-1.9.3 - salak-toml < 0 # via tomland - - salve < 0 # via base-4.13.0.0 - sandman < 0 # Cabal 3 - sbv < 0 # MonadFail - scalpel < 0 # via scalpel-core @@ -4775,7 +4769,6 @@ packages: - string-interpolate < 0 # via interpolatedstring-perl6 - stripe-scotty < 0 # via scotty - stripe-wreq < 0 # via wreq - - strive < 0 # via base-4.13.0.0 - structured-cli < 0 # MonadFail - sv < 0 # via base-4.13.0.0 - sv-cassava < 0 # via sv-core @@ -4844,7 +4837,6 @@ packages: - wreq < 0 # via authenticate-oauth - ws < 0 # via attoparsec-uri - ws < 0 # via wuss - - wuss < 0 # via base-4.13.0.0 - xenstore < 0 # sClose not in scope - xlsx < 0 # MonadFail - xlsx-tabular < 0 # via xlsx From 99ab0df9c45286f4d57a18e3f5f8d65583a7999d Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Fri, 8 Nov 2019 10:38:48 -0800 Subject: [PATCH 0901/2682] Additional upper bounds related to megaparsec, #4966 --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 873b6423..0052bca7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4894,6 +4894,8 @@ packages: - megaparsec < 8 - megaparsec-tests < 8 - hspec-megaparsec < 2.1 + - parser-combinators < 1.2.1 + - parser-combinators-tests < 1.2.1 # end of packages From 9f5a5e0e3e35e2d6cabcd71df7a3895103fea697 Mon Sep 17 00:00:00 2001 From: Taylor Fausak Date: Fri, 8 Nov 2019 13:50:42 -0500 Subject: [PATCH 0902/2682] Disable Rattletrap --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a2bc0432..ccf68b43 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1865,7 +1865,7 @@ packages: - list-singleton - ratel - ratel-wai - - rattletrap + # - rattletrap # requires binary-bits - salve - strive - wuss From 7cd81fa084da806b97e9954f79c3b29c0a74b0dd Mon Sep 17 00:00:00 2001 From: Bodigrim Date: Fri, 8 Nov 2019 21:34:34 +0000 Subject: [PATCH 0903/2682] Add mod --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 677db601..62065bd6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3063,6 +3063,7 @@ packages: - ChasingBottoms - data-interval - vector-rotcev + - mod "Ashley Yakeley @AshleyYakeley": - countable From e72bd5e326a182c807cf47873b6ee2d5d51e41ac Mon Sep 17 00:00:00 2001 From: Viktor Dukhovni Date: Fri, 8 Nov 2019 22:45:08 -0500 Subject: [PATCH 0904/2682] Re-enable text-builder, network-ip, postgresql-binary and hasql - text-builder's dependency on deferred-folds is already satisfied. - network-ip's dependencies are now satisfied - postgresql-binary was blocked on network-ip - hasql was blocked on postgresql-binary and text-builder Also: - re-enable tests of data-textual (works with GHC 8.8 as of 0.3.0.3) --- build-constraints.yaml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 677db601..2d5a5ff3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1342,7 +1342,7 @@ packages: - base-prelude - cases - focus - - hasql < 0 # via postgresql-binary + - hasql - hasql-optparse-applicative < 0 # via hasql - hasql-pool < 0 # via hasql - hasql-transaction < 0 # via hasql @@ -4624,7 +4624,6 @@ packages: - network-attoparsec < 0 # via network-simple - network-bsd < 0 # via network-3.1.1.0 - network-house < 0 # MonadFail - - network-ip < 0 # via data-dword - network-messagepack-rpc < 0 # via data-msgpack - network-multicast < 0 # via network-bsd - network-simple < 0 # via network-bsd @@ -4680,7 +4679,6 @@ packages: - plot-light < 0 # transitive compilation failure - polysemy-plugin < 0 # via polysemy - polysemy-zoo < 0 # via hedis - - postgresql-binary < 0 # via network-ip - postgresql-schema < 0 # via postgresql-simple - postgresql-simple-migration < 0 # via time-1.9.3 - postgresql-simple-queue < 0 # via pg-transact @@ -4795,7 +4793,6 @@ packages: - termonad < 0 # via gi-vte - testing-feat < 0 # via size-based - texmath < 0 # via pandoc-types - - text-builder < 0 # via deferred-folds - text-format < 0 # via base-4.13.0.0 - th-nowq < 0 # via time-1.9.3 - th-utilities < 0 # template-haskell @@ -5077,7 +5074,6 @@ skipped-tests: - crypto-api-tests # via test-framework - crypto-cipher-tests # via test-framework - ctrie # via test-framework - - data-textual # via test-framework - deepseq-generics # via test-framework - doldol # via test-framework - double-conversion # via test-framework From da38699b377db149a27dfa2bc2911818d0eb071a Mon Sep 17 00:00:00 2001 From: Viktor Dukhovni Date: Sun, 10 Nov 2019 01:04:54 -0500 Subject: [PATCH 0905/2682] Re-enable additional hasql modules Now that the base hasql module is available, also re-enable - hasql-transaction - hasql-pool - hasql-optparse-applicative --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3c9e6291..1fb93cd0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1343,9 +1343,9 @@ packages: - cases - focus - hasql - - hasql-optparse-applicative < 0 # via hasql - - hasql-pool < 0 # via hasql - - hasql-transaction < 0 # via hasql + - hasql-optparse-applicative + - hasql-pool + - hasql-transaction - list-t - mtl-prelude - neat-interpolation From f4e38a0ff6f9a4c3d52f9b13d9ebf53d04161df0 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Sun, 10 Nov 2019 10:43:47 -0800 Subject: [PATCH 0906/2682] Add upper bound for cookie, #4974 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1fb93cd0..1ff8e318 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4890,6 +4890,9 @@ packages: - parser-combinators < 1.2.1 - parser-combinators-tests < 1.2.1 + # https://github.com/commercialhaskell/stackage/issues/4974 + - cookie < 0.4.5 + # end of packages # Package flags are applied to individual packages, and override the values of From 2c4f7bb6f2b70e502bf17becf098625d1b649ace Mon Sep 17 00:00:00 2001 From: Satoshi Egi Date: Mon, 11 Nov 2019 09:49:10 +0900 Subject: [PATCH 0907/2682] add egison Checklist: - [x] Meaningful commit message, eg `add my-cool-package` (please not mention `build-constraints.yml`) - [x] At least 30 minutes have passed since uploading to Hackage - [x] On your own machine, in a _new directory_, you have successfully run the following set of commands (replace `$package` with the name of the package that is submitted, and `$version` with the version of the package you want to get into Stackage): stack unpack $package-$version # $version is optional stack init --resolver nightly stack build --resolver nightly --haddock --test --bench --no-run-benchmarks --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1ff8e318..d1aa3ad3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4035,6 +4035,9 @@ packages: "Davit Nalchevanidze @nalchevanidze": - morpheus-graphql + "Satoshi Egi @egisatoshi": + - egison + "Grandfathered dependencies": - network - Boolean From b33d4005af584e6f957215a4deede7e3e4f7c47b Mon Sep 17 00:00:00 2001 From: Sandy Maguire Date: Mon, 11 Nov 2019 16:09:31 +0700 Subject: [PATCH 0908/2682] Reenable polysemy --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d1aa3ad3..dfe2dfdf 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -54,7 +54,7 @@ packages: - configurator-pg < 0 # via base-4.13.0.0 "Sandy Maguire @isovector": - - polysemy < 0 # via loopbreaker + - polysemy - polysemy-plugin - polysemy-zoo - ecstasy From 445e5b9f39b626e306766d5e8b09598964e4581d Mon Sep 17 00:00:00 2001 From: Sandy Maguire Date: Mon, 11 Nov 2019 16:17:12 +0700 Subject: [PATCH 0909/2682] Make TheMatten owner of loopbreaker --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d1aa3ad3..7ff36093 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -63,6 +63,8 @@ packages: - do-notation - unagi-chan - type-errors + + "Matej Niznik @TheMatten": - loopbreaker "William Yao @williamyaoh": From 944c615cc2ab82a35bb467f1e28565e295c8582e Mon Sep 17 00:00:00 2001 From: Andrew Cowie Date: Mon, 11 Nov 2019 22:17:21 +1100 Subject: [PATCH 0910/2682] Restore core-text, core-data, core-program Upper bounds have been relaxed for the dependencies on prettyprinter and template-haskell; testing with GHC 8.6.5 via lts-14.14 and GHC 8.8.1 via nightly-2019-11-11 has shown full compatibility. --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d1aa3ad3..2ef8d0f8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2416,9 +2416,9 @@ packages: - http-common - http-streams < 0 # via io-streams & openssl-streams - locators - - core-data < 0 # via prettyprinter-1.3.0 - - core-program < 0 # via prettyprinter-1.3.0 and template-haskell-2.15 - - core-text < 0 # via prettyprinter-1.3.0 and template-haskell-2.15 + - core-data + - core-program + - core-text "Sean Hunt Date: Wed, 13 Nov 2019 10:13:36 +0100 Subject: [PATCH 0911/2682] reenable persist --- build-constraints.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d1aa3ad3..7091188e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4658,7 +4658,6 @@ packages: - pedersen-commitment < 0 # via protolude - pencil < 0 # via pandoc - peregrin < 0 # via postgresql-simple - - persist < 0 # MonadFail - persistable-types-HDBC-pg < 0 # via HDBC - persistent < 0 # via base-4.13.0.0 - persistent-mysql < 0 # via persistent @@ -5101,7 +5100,6 @@ skipped-tests: - parsec # via test-framework - pem # via test-framework - perfect-hash-generator # via test-framework - - persist # via test-framework - pipes # via test-framework - pipes-extras # via test-framework - prefix-units # via test-framework From b752583c3964ee3bdf3fbee03e1cbb8c2fee7a1e Mon Sep 17 00:00:00 2001 From: Omari Norman Date: Wed, 13 Nov 2019 10:02:35 -0500 Subject: [PATCH 0912/2682] Restore rainbow Removed dependency on lens-simple. It now builds with nightly-2019-11-11. --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d1aa3ad3..3d698fab 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4696,7 +4696,6 @@ packages: - pure-zlib < 0 # via base-compat-0.11.0 - raaz < 0 # via base-4.13.0.0 - radius < 0 # via iproute - - rainbow < 0 # via lens-simple - rainbox < 0 # via lens-simple - random-source < 0 # via flexible-defaults - rasterific-svg < 0 # via Rasterific From ce734fb13d901c205ac55a0c5e750423069c1a6e Mon Sep 17 00:00:00 2001 From: Omari Norman Date: Wed, 13 Nov 2019 10:45:25 -0500 Subject: [PATCH 0913/2682] Abandon non-empty-sequence --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3d698fab..aee8b187 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -639,7 +639,6 @@ packages: - ofx - accuerr - timelens - - non-empty-sequence "Neil Mitchell @ndmitchell": - hlint @@ -4510,6 +4509,7 @@ packages: # See https://github.com/fpco/stackage/issues/1056 "Abandoned packages": - curl + - non-empty-sequence # Purescript - bower-json From facd0e1fd04eb3ddec0420b3ed585fdb1f455b0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Olivier=20Ch=C3=A9ron?= Date: Wed, 13 Nov 2019 19:12:15 +0100 Subject: [PATCH 0914/2682] Restore io-streams --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d1aa3ad3..c1ab27a3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2408,7 +2408,7 @@ packages: "Gregory Collins @gregorycollins": - hashtables - - io-streams < 0 # via test-framework + - io-streams - openssl-streams "Andrew Cowie @afcowie": From d068243370977597e9bf9e42bac6a10e8fa32b7f Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Sat, 16 Nov 2019 18:45:57 +0000 Subject: [PATCH 0915/2682] disable scheduler benchmarks --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d1aa3ad3..c817bbaf 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4091,6 +4091,7 @@ packages: - bytestring-builder - bytestring-strict-builder - bytestring-tree-builder + - byte-order - bzlib < 0 # via base-4.13.0.0 - ca-province-codes - cabal-doctest @@ -4325,6 +4326,7 @@ packages: - primes - primitive - primitive-extras + - primitive-unaligned - process-extras - product-isomorphic - project-template @@ -5754,6 +5756,7 @@ skipped-benchmarks: - identicon # via criterion-1.5.0.0 - pipes # optparse-applicative 0.13 - psqueues # ghc 8.4 via PSQueue build failure + - scheduler # https://github.com/commercialhaskell/stackage/issues/4983 - serialise - skylighting-core # via criterion-1.5.0.0 - snap-server # via criterion-1.5.0.0 From 6ad867669d41537bf6880df7909cba1c1c5fafdb Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Sun, 17 Nov 2019 08:55:36 +0000 Subject: [PATCH 0916/2682] egison: into expected-test-failures --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index c817bbaf..fe802e20 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5417,6 +5417,7 @@ expected-test-failures: - distributed-process - distributed-process-execution # https://github.com/haskell-distributed/distributed-process-execution/issues/2 - distributed-process-task + - egison # https://github.com/commercialhaskell/stackage/issues/4984 - foldl-statistics # https://github.com/data61/foldl-statistics/issues/2 - fsnotify # Often runs out of inotify handles - hastache From a1284f4b92339e20855bc2518ce0bf7477fa2c7c Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Sun, 17 Nov 2019 10:10:54 +0000 Subject: [PATCH 0917/2682] forma: into expected-test-failures --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index fe802e20..59aee325 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5420,6 +5420,7 @@ expected-test-failures: - egison # https://github.com/commercialhaskell/stackage/issues/4984 - foldl-statistics # https://github.com/data61/foldl-statistics/issues/2 - fsnotify # Often runs out of inotify handles + - forma - hastache - idris # https://github.com/fpco/stackage/issues/1382 - ihaskell # https://github.com/gibiansky/IHaskell/issues/551 From d880b1cab19d74042023169644aa518261208a49 Mon Sep 17 00:00:00 2001 From: Albert Krewinkel Date: Wed, 20 Nov 2019 11:59:57 +0100 Subject: [PATCH 0918/2682] Add jira-wiki-markup --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 59aee325..bacb1730 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3433,6 +3433,7 @@ packages: - hslua-aeson - hslua-module-system - hslua-module-text + - jira-wiki-markup "Judah Jacobson @judah": - proto-lens-protobuf-types From 8be1c651374b884e885212cfc2cd3122f445227b Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 20 Nov 2019 08:59:23 -0800 Subject: [PATCH 0919/2682] Enable loopbreaker and iunagi-chan --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c27d2be6..b6f4beca 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4594,7 +4594,6 @@ packages: - loc < 0 # via base-4.13.0.0 - locators < 0 # via cryptohash - logger-thread < 0 # via protolude - - loopbreaker < 0 # via ghc-8.8.1 - lsp-test < 0 # via conduit-parse - lsp-test < 0 # via haskell-lsp - machines-binary < 0 # via machines-0.7 @@ -4814,7 +4813,6 @@ packages: - tz < 0 # via time-1.9.3 - ucam-webauth < 0 # via base-4.13.0.0 - ucam-webauth-types < 0 # via base-4.13.0.0 - - unagi-chan < 0 # via base-4.13.0.0 - unbound-generics < 0 # MonadFail - union < 0 # via base-4.13.0.0 - universe-dependent-sum < 0 # via some @@ -5563,6 +5561,7 @@ expected-test-failures: - bv-little # https://github.com/commercialhaskell/stackage/issues/4544 - hpack # https://github.com/commercialhaskell/stackage/issues/4512 - kawhi # https://github.com/commercialhaskell/stackage/issues/4512 + - loopbreaker # https://github.com/polysemy-research/loopbreaker/issues/10 # Compilation failures - ListLike # No issue tracker, e-mail sent to maintainer From 41135e830b22ed0d7af82b38b6ed26340641de7c Mon Sep 17 00:00:00 2001 From: John Ky Date: Thu, 21 Nov 2019 18:57:04 +1100 Subject: [PATCH 0920/2682] Re-enable hw-hspec-hedgehog --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b6f4beca..49eff6e3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2892,7 +2892,7 @@ packages: - hw-eliasfano < 0 # via generic-lens-1.2.0.0 & hw-packed-vector-0.2.0.0 - hw-excess < 0 # via hw-rankselect-base - hw-hedgehog - - hw-hspec-hedgehog < 0 # via call-stack-0.2.0 + - hw-hspec-hedgehog - hw-int - hw-ip < 0 # via generic-lens-1.2.0.0 - hw-fingertree < 0 # via hw-hspec-hedgehog From cb2c51bfb419bd7ddb62b438f78e2ea76ece83ab Mon Sep 17 00:00:00 2001 From: John Ky Date: Thu, 21 Nov 2019 19:12:47 +1100 Subject: [PATCH 0921/2682] Re-enable packages dependending on hw-hspec-hedgehog --- build-constraints.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 49eff6e3..daec9cc8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2878,11 +2878,11 @@ packages: - irc-dcc < 0 "John Ky newhoggy@gmail.com @newhoggy": - - arbor-lru-cache < 0 # via hw-hspec-hedgehog + - arbor-lru-cache - arbor-postgres < 0 # postgresql-simple 0.6 - avro < 0 # via pure-zlib - - asif < 0 # via hw-hspec-hedgehog - - bits-extra < 0 # via hw-hspec-hedgehog + - asif < 0 # via hw-ip + - bits-extra - hw-balancedparens < 0 # via hw-fingertree - hw-bits - hw-conduit @@ -2895,12 +2895,12 @@ packages: - hw-hspec-hedgehog - hw-int - hw-ip < 0 # via generic-lens-1.2.0.0 - - hw-fingertree < 0 # via hw-hspec-hedgehog - - hw-fingertree-strict < 0 # via hw-hspec-hedgehog + - hw-fingertree + - hw-fingertree-strict - hw-json < 0 # via generic-lens-1.2.0.0 & hw-json-simple-cursor & hw-json-standard-cursor - hw-mquery < 0 # via lens-4.18.1 - hw-packed-vector < 0 # via generic-lens-1.2.0.0 - - hw-parser < 0 # via hw-hspec-hedgehog + - hw-parser - hw-prim - hw-rankselect < 0 # via generic-lens-1.2.0.0 - hw-rankselect-base < 0 # via bits-extra From cb4a84bb71614759f60185f116ab6f08884acdc8 Mon Sep 17 00:00:00 2001 From: John Ky Date: Thu, 21 Nov 2019 19:35:18 +1100 Subject: [PATCH 0922/2682] Re-enable more haskell-works projects --- build-constraints.yaml | 39 ++++++++++++++++++++------------------- 1 file changed, 20 insertions(+), 19 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index daec9cc8..ba4e9ad8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2879,43 +2879,44 @@ packages: "John Ky newhoggy@gmail.com @newhoggy": - arbor-lru-cache - - arbor-postgres < 0 # postgresql-simple 0.6 + - arbor-postgres - avro < 0 # via pure-zlib - asif < 0 # via hw-ip - bits-extra - - hw-balancedparens < 0 # via hw-fingertree + - hw-balancedparens - hw-bits - hw-conduit - hw-conduit-merges - hw-diagnostics - - hw-dsv < 0 # via hw-hspec-hedgehog & hw-rankselect - - hw-eliasfano < 0 # via generic-lens-1.2.0.0 & hw-packed-vector-0.2.0.0 - - hw-excess < 0 # via hw-rankselect-base + - hw-dsv + - hw-eliasfano + - hw-excess - hw-hedgehog - hw-hspec-hedgehog - hw-int - - hw-ip < 0 # via generic-lens-1.2.0.0 + - hw-ip - hw-fingertree - hw-fingertree-strict - - hw-json < 0 # via generic-lens-1.2.0.0 & hw-json-simple-cursor & hw-json-standard-cursor - - hw-mquery < 0 # via lens-4.18.1 - - hw-packed-vector < 0 # via generic-lens-1.2.0.0 + - hw-json + - hw-json-simple-cursor + - hw-json-standard-cursor + - hw-mquery + - hw-packed-vector - hw-parser - hw-prim - - hw-rankselect < 0 # via generic-lens-1.2.0.0 - - hw-rankselect-base < 0 # via bits-extra - - hw-simd < 0 # via hw-hspec-hedgehog & hw-rankselect - - hw-succinct < 0 # via hw-rankselect + - hw-rankselect + - hw-rankselect-base + - hw-simd + - hw-succinct - hw-streams - - hw-xml < 0 # Build failure haskell-works/hw-xml#28 + - hw-xml - pure-zlib - - antiope-athena - - antiope-core < 0 # via aeson-lens & hspec-2.7.1 & hw-hspec-hedgehog + - antiope-core < 0 # via aeson-lens - antiope-dynamodb < 0 # via antiope-core - - antiope-messages < 0 # via hspec-2.7.1 & hw-hspec-hedgehog + - antiope-messages < 0 # via antiope-core - antiope-s3 < 0 # via antiope-core & antiope-messages - - antiope-sns < 0 # via hspec-2.7.1 & hw-hspec-hedgehog - - antiope-sqs < 0 # via hspec-2.7.1 & hw-hspec-hedgehog + - antiope-sns < 0 # via antiope-core + - antiope-sqs < 0 # via antiope-core "George Wilson @gwils": - hedgehog-fn From df4e71bee0683df1f842a28400f695c21bab748a Mon Sep 17 00:00:00 2001 From: Ivan Gromakovskii Date: Thu, 21 Nov 2019 20:30:26 +0300 Subject: [PATCH 0923/2682] Re-enable universum and o-clock --- build-constraints.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b6f4beca..cd62cdb1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4637,7 +4637,6 @@ packages: - nvim-hs < 0 # via hslogger - nvim-hs-contrib < 0 # via nvim-hs - nvvm < 0 # via cuda - - o-clock < 0 # compilation failure - oblivious-transfer < 0 # via protolude - oeis < 0 # via test-framework - oeis < 0 # via test-framework-hunit @@ -4816,7 +4815,6 @@ packages: - unbound-generics < 0 # MonadFail - union < 0 # via base-4.13.0.0 - universe-dependent-sum < 0 # via some - - universum < 0 # via text-1.2.4.0 - unliftio-streams < 0 # via io-streams - uri-templater < 0 # via HTTP - users-postgresql-simple < 0 # via postgresql-simple @@ -5254,7 +5252,6 @@ skipped-tests: - speedy-slice - static-text - thyme - - universum - unordered-containers - unordered-intmap - vector-builder @@ -5266,7 +5263,6 @@ skipped-tests: # Transitive outdated dependencies # These can also be checked for updates periodically. - - o-clock # tasty 0.12 via tasty-hedgehog - options # ansi-terminal-0.8 via chell - path # via genvalidity genvalidity-property - system-fileio # ansi-terminal-0.8 via chell From 7f80640469952735481a12ccfd79993e9e554345 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 21 Nov 2019 18:12:55 -0800 Subject: [PATCH 0924/2682] log-domain < 0.13 per ekmett/compensated#8 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index b6f4beca..f45f7ec1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4897,6 +4897,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4974 - cookie < 0.4.5 + # https://github.com/ekmett/compensated/issues/8 + - log-domain < 0.13 + # end of packages # Package flags are applied to individual packages, and override the values of From d0ad71e5fe0ba01050da65edc995eaddc1172a56 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 21 Nov 2019 18:27:37 -0800 Subject: [PATCH 0925/2682] Unblock test-framework stuff --- build-constraints.yaml | 120 +++++------------------------------------ 1 file changed, 14 insertions(+), 106 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 00c8f707..9b011fac 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -476,7 +476,7 @@ packages: "Winter Han @winterland1989": - if - - tcp-streams < 0 # via test-framework + - tcp-streams - tcp-streams-openssl < 0 # via HsOpenSSL-x509-system - wire-streams - binary-parsers @@ -1135,7 +1135,7 @@ packages: - set-monad < 0 # build failure with GHC 8.4 "Phil Hargett @hargettp": - - courier < 0 # via test-framework & test-framework-hunit + - courier < 0 # via hslogger "Aycan iRiCAN @aycanirican": - hdaemonize @@ -2085,7 +2085,7 @@ packages: - matrices "Michel Boucey @MichelBoucey": - - IPv6Addr < 0 # via test-framework & test-framework-hunit + - IPv6Addr - ip6addr - cayley-client < 0 # via lens-4.18.1 - Spintax @@ -2110,7 +2110,7 @@ packages: - country < 0 # via base-4.13.0.0 - semirings - torsor - - chronos < 0 # also test-framework + - chronos "Kostiantyn Rybnikov @k-bx": - SHA @@ -2122,7 +2122,7 @@ packages: - friday < 0 - friday-juicypixels < 0 - hbeanstalk < 0 # sClose not in scope - - hedis < 0 # via test-framework + - hedis < 0 # via HTTP - hprotoc < 0 # compilation failure - hsyslog-udp < 0 - iso3166-country-codes @@ -2207,7 +2207,7 @@ packages: "Ryan Scott @RyanGlScott": - abstract-deque - - abstract-deque-tests < 0 # via test-framework + - abstract-deque-tests - abstract-par - atomic-primops - base-compat-batteries @@ -3039,7 +3039,7 @@ packages: - haskey-mtl < 0 - intset-imperative - lxd-client < 0 # GHC 8.4 via http-media - - lxd-client-config < 0 # via test-framework + - lxd-client-config - xxhash-ffi - zeromq4-patterns @@ -3465,7 +3465,7 @@ packages: - async-timer # - nakadi-client # http-conduit 2.3 - throttle-io-stream - - conduit-throttle < 0 # via test-framework + - conduit-throttle "Simon Hafner @reactormonk": - uri-bytestring-aeson @@ -4051,7 +4051,7 @@ packages: - Glob - HDBC < 0 # via time-1.9.3 - HDBC-session < 0 # via HDBC - - HTTP < 0 # via test-framework & test-framework-hunit + - HTTP - HsOpenSSL - HsYAML - JuicyPixels-scale-dct @@ -4128,8 +4128,8 @@ packages: - cpphs - crypt-sha512 - crypto-api - - crypto-api-tests < 0 # via test-framework - - crypto-cipher-tests < 0 # via test-framework + - crypto-api-tests + - crypto-cipher-tests - crypto-cipher-types - crypto-numbers - crypto-pubkey @@ -4385,7 +4385,7 @@ packages: - size-based - skein - skylighting-core - - snap-core < 0 # via test-framework + - snap-core - some - special-values - splice @@ -4639,10 +4639,7 @@ packages: - nvim-hs-contrib < 0 # via nvim-hs - nvvm < 0 # via cuda - oblivious-transfer < 0 # via protolude - - oeis < 0 # via test-framework - - oeis < 0 # via test-framework-hunit - open-witness < 0 # MonadFail - - openssl-streams < 0 # via test-framework-hunit - optparse-enum < 0 # via fmt - oset < 0 # via base-4.13.0.0 - palette < 0 # via base-4.13.0.0 @@ -4651,7 +4648,6 @@ packages: - pandoc-csv2table < 0 # via pandoc - pandoc-markdown-ghci-filter < 0 # via pandoc - pandoc-pyplot < 0 # via pandoc - - pandoc-types < 0 # via test-framework-quickcheck2 - partial-semigroup < 0 # via base-4.13.0.0 - password-instances < 0 # via persistent - path-text-utf8 < 0 # via base-4.13.0.0 @@ -4874,6 +4870,8 @@ packages: - yesod-text-markdown < 0 # via persistent - yesod-websockets < 0 # via wai-websockets - yi-language < 0 # via regex-base-0.94.0.0 + - HTTP < 0 # via httpd-shed + - oeis < 0 # via HTTP "GHC upper bounds": # Need to always match the version shipped with GHC @@ -5043,95 +5041,6 @@ skipped-tests: # Cyclic dependencies - base-orphans # via hspec - # test-framework per ghc 8.8 - - extensible-effects # via test-framework - - stm-conduit # via test-framework - - conduit-zstd # via test-framework - - conduit-algorithms # via test-framework - - statistics # via test-framework - - Decimal # via test-framework - - Diff # via test-framework - - ENIG # via test-framework - - Glob # via test-framework - - SHA # via test-framework - - abstract-deque-tests # via test-framework - - astro # via test-framework - - async # via test-framework - - base64-bytestring # via test-framework - - binary-bits # via test-framework - - bindings-GLFW # via test-framework - - blaze-builder # via test-framework - - blaze-textual # via test-framework - - c2hs # via test-framework - - cereal # via test-framework - - chaselev-deque # via test-framework - - cipher-aes # via test-framework - - cipher-blowfish # via test-framework - - cipher-camellia # via test-framework - - cipher-des # via test-framework - - cipher-rc4 # via test-framework - - concurrent-extra # via test-framework - - conduit-iconv # via test-framework - - configurator # via test-framework - - crypto-api-tests # via test-framework - - crypto-cipher-tests # via test-framework - - ctrie # via test-framework - - deepseq-generics # via test-framework - - doldol # via test-framework - - double-conversion # via test-framework - - enummapset # via test-framework - - exception-transformers # via test-framework - - fingertree # via test-framework - - hashable # via test-framework - - haskey-btree # via test-framework - - hmatrix-morpheus # via test-framework - - irc # via test-framework - - language-c-quote # via test-framework - - largeword # via test-framework - - lifted-base # via test-framework - - lockfree-queue # via test-framework - - lzma-conduit # via test-framework - - messagepack # via test-framework - - minimorph # via test-framework - - miniutter # via test-framework - - mltool # via test-framework - - monad-memo # via test-framework - - monad-peel # via test-framework - - murmur3 # via test-framework - - nettle # via test-framework - - network-uri # via test-framework - - numbers # via test-framework - - parsec # via test-framework - - pem # via test-framework - - perfect-hash-generator # via test-framework - - pipes # via test-framework - - pipes-extras # via test-framework - - prefix-units # via test-framework - - pureMD5 # via test-framework - - range # via test-framework - - safeio # via test-framework - - saltine # via test-framework - - scrypt # via test-framework - - siphash # via test-framework - - spatial-math # via test-framework - - terminal-progress-bar # via test-framework - - text-icu # via test-framework - - text-printer # via test-framework - - threads # via test-framework - - throttle-io-stream # via test-framework - - ttrie # via test-framework - - type-map # via test-framework - - tzdata # via test-framework - - unicode-show # via test-framework - - word24 # via test-framework - - zeromq4-patterns # via test-framework - - zstd # via test-framework - - ENIG # via test-framework-th - - doldol # via test-framework-th - - messagepack # via test-framework-th - - safeio # via test-framework-th - - tzdata # via test-framework-th - # other dep issues - Cabal # GHC 8.4 via base-orphans-0.7, base-orphans-0.7 - DBFunctor # missing file test_options.csv @@ -5751,7 +5660,6 @@ skipped-benchmarks: - cryptohash-sha512 # criterion 1.5 - dimensional # base < 4.7, https://github.com/bjornbm/dimensional/issues/207 - ed25519 # Criterion - - extensible-effects # via test-framework - hw-balancedparens # criterion 1.5, https://github.com/commercialhaskell/stackage/issues/3880 - hw-rankselect-base # criterion 1.5, https://github.com/commercialhaskell/stackage/issues/3880 - identicon # via criterion-1.5.0.0 From 941a6358054f6ddd97199a0d4227e0093d9bf004 Mon Sep 17 00:00:00 2001 From: Lysergia Date: Thu, 21 Nov 2019 22:31:42 -0500 Subject: [PATCH 0926/2682] Add `mx-state-codes` --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9b011fac..305d5928 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3962,6 +3962,7 @@ packages: - wordpress-auth - servant-auth-wordpress - ca-province-codes + - mx-state-codes "David Baynard @dbaynard": - time-qq # see christian-marie/time-qq#3 From 8d3567f4933ca207cc0724ad2c02851c8a5bd2cf Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 21 Nov 2019 22:36:50 -0800 Subject: [PATCH 0927/2682] Expect test failure per stbuehler/haskell-nettle#10 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9b011fac..755c3738 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5471,6 +5471,7 @@ expected-test-failures: - hpack # https://github.com/commercialhaskell/stackage/issues/4512 - kawhi # https://github.com/commercialhaskell/stackage/issues/4512 - loopbreaker # https://github.com/polysemy-research/loopbreaker/issues/10 + - nettle # https://github.com/stbuehler/haskell-nettle/issues/10 # Compilation failures - ListLike # No issue tracker, e-mail sent to maintainer From 572c2f54b065b4d3ca53d1f4e516416532245a6b Mon Sep 17 00:00:00 2001 From: Viktor Dukhovni Date: Sat, 23 Nov 2019 01:21:49 -0500 Subject: [PATCH 0928/2682] Resume tests of the dns package The earlier test failures should be resolved in 4.0.1 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 755c3738..cd469a50 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5574,9 +5574,6 @@ expected-test-failures: # Requires a running server - persistent-mongoDB - # https://github.com/commercialhaskell/stackage/issues/4810 - - dns - # https://github.com/alanz/ghc-exactprint/issues/82 - ghc-exactprint From 822baba2c15bb590619ae35b0926c32b802db87b Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sat, 23 Nov 2019 21:30:53 -0800 Subject: [PATCH 0929/2682] Revert "Unblock test-framework stuff" This reverts commit d0ad71e5fe0ba01050da65edc995eaddc1172a56. --- build-constraints.yaml | 120 ++++++++++++++++++++++++++++++++++++----- 1 file changed, 106 insertions(+), 14 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 755c3738..8c03838a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -476,7 +476,7 @@ packages: "Winter Han @winterland1989": - if - - tcp-streams + - tcp-streams < 0 # via test-framework - tcp-streams-openssl < 0 # via HsOpenSSL-x509-system - wire-streams - binary-parsers @@ -1135,7 +1135,7 @@ packages: - set-monad < 0 # build failure with GHC 8.4 "Phil Hargett @hargettp": - - courier < 0 # via hslogger + - courier < 0 # via test-framework & test-framework-hunit "Aycan iRiCAN @aycanirican": - hdaemonize @@ -2085,7 +2085,7 @@ packages: - matrices "Michel Boucey @MichelBoucey": - - IPv6Addr + - IPv6Addr < 0 # via test-framework & test-framework-hunit - ip6addr - cayley-client < 0 # via lens-4.18.1 - Spintax @@ -2110,7 +2110,7 @@ packages: - country < 0 # via base-4.13.0.0 - semirings - torsor - - chronos + - chronos < 0 # also test-framework "Kostiantyn Rybnikov @k-bx": - SHA @@ -2122,7 +2122,7 @@ packages: - friday < 0 - friday-juicypixels < 0 - hbeanstalk < 0 # sClose not in scope - - hedis < 0 # via HTTP + - hedis < 0 # via test-framework - hprotoc < 0 # compilation failure - hsyslog-udp < 0 - iso3166-country-codes @@ -2207,7 +2207,7 @@ packages: "Ryan Scott @RyanGlScott": - abstract-deque - - abstract-deque-tests + - abstract-deque-tests < 0 # via test-framework - abstract-par - atomic-primops - base-compat-batteries @@ -3039,7 +3039,7 @@ packages: - haskey-mtl < 0 - intset-imperative - lxd-client < 0 # GHC 8.4 via http-media - - lxd-client-config + - lxd-client-config < 0 # via test-framework - xxhash-ffi - zeromq4-patterns @@ -3465,7 +3465,7 @@ packages: - async-timer # - nakadi-client # http-conduit 2.3 - throttle-io-stream - - conduit-throttle + - conduit-throttle < 0 # via test-framework "Simon Hafner @reactormonk": - uri-bytestring-aeson @@ -4051,7 +4051,7 @@ packages: - Glob - HDBC < 0 # via time-1.9.3 - HDBC-session < 0 # via HDBC - - HTTP + - HTTP < 0 # via test-framework & test-framework-hunit - HsOpenSSL - HsYAML - JuicyPixels-scale-dct @@ -4128,8 +4128,8 @@ packages: - cpphs - crypt-sha512 - crypto-api - - crypto-api-tests - - crypto-cipher-tests + - crypto-api-tests < 0 # via test-framework + - crypto-cipher-tests < 0 # via test-framework - crypto-cipher-types - crypto-numbers - crypto-pubkey @@ -4385,7 +4385,7 @@ packages: - size-based - skein - skylighting-core - - snap-core + - snap-core < 0 # via test-framework - some - special-values - splice @@ -4639,7 +4639,10 @@ packages: - nvim-hs-contrib < 0 # via nvim-hs - nvvm < 0 # via cuda - oblivious-transfer < 0 # via protolude + - oeis < 0 # via test-framework + - oeis < 0 # via test-framework-hunit - open-witness < 0 # MonadFail + - openssl-streams < 0 # via test-framework-hunit - optparse-enum < 0 # via fmt - oset < 0 # via base-4.13.0.0 - palette < 0 # via base-4.13.0.0 @@ -4648,6 +4651,7 @@ packages: - pandoc-csv2table < 0 # via pandoc - pandoc-markdown-ghci-filter < 0 # via pandoc - pandoc-pyplot < 0 # via pandoc + - pandoc-types < 0 # via test-framework-quickcheck2 - partial-semigroup < 0 # via base-4.13.0.0 - password-instances < 0 # via persistent - path-text-utf8 < 0 # via base-4.13.0.0 @@ -4870,8 +4874,6 @@ packages: - yesod-text-markdown < 0 # via persistent - yesod-websockets < 0 # via wai-websockets - yi-language < 0 # via regex-base-0.94.0.0 - - HTTP < 0 # via httpd-shed - - oeis < 0 # via HTTP "GHC upper bounds": # Need to always match the version shipped with GHC @@ -5041,6 +5043,95 @@ skipped-tests: # Cyclic dependencies - base-orphans # via hspec + # test-framework per ghc 8.8 + - extensible-effects # via test-framework + - stm-conduit # via test-framework + - conduit-zstd # via test-framework + - conduit-algorithms # via test-framework + - statistics # via test-framework + - Decimal # via test-framework + - Diff # via test-framework + - ENIG # via test-framework + - Glob # via test-framework + - SHA # via test-framework + - abstract-deque-tests # via test-framework + - astro # via test-framework + - async # via test-framework + - base64-bytestring # via test-framework + - binary-bits # via test-framework + - bindings-GLFW # via test-framework + - blaze-builder # via test-framework + - blaze-textual # via test-framework + - c2hs # via test-framework + - cereal # via test-framework + - chaselev-deque # via test-framework + - cipher-aes # via test-framework + - cipher-blowfish # via test-framework + - cipher-camellia # via test-framework + - cipher-des # via test-framework + - cipher-rc4 # via test-framework + - concurrent-extra # via test-framework + - conduit-iconv # via test-framework + - configurator # via test-framework + - crypto-api-tests # via test-framework + - crypto-cipher-tests # via test-framework + - ctrie # via test-framework + - deepseq-generics # via test-framework + - doldol # via test-framework + - double-conversion # via test-framework + - enummapset # via test-framework + - exception-transformers # via test-framework + - fingertree # via test-framework + - hashable # via test-framework + - haskey-btree # via test-framework + - hmatrix-morpheus # via test-framework + - irc # via test-framework + - language-c-quote # via test-framework + - largeword # via test-framework + - lifted-base # via test-framework + - lockfree-queue # via test-framework + - lzma-conduit # via test-framework + - messagepack # via test-framework + - minimorph # via test-framework + - miniutter # via test-framework + - mltool # via test-framework + - monad-memo # via test-framework + - monad-peel # via test-framework + - murmur3 # via test-framework + - nettle # via test-framework + - network-uri # via test-framework + - numbers # via test-framework + - parsec # via test-framework + - pem # via test-framework + - perfect-hash-generator # via test-framework + - pipes # via test-framework + - pipes-extras # via test-framework + - prefix-units # via test-framework + - pureMD5 # via test-framework + - range # via test-framework + - safeio # via test-framework + - saltine # via test-framework + - scrypt # via test-framework + - siphash # via test-framework + - spatial-math # via test-framework + - terminal-progress-bar # via test-framework + - text-icu # via test-framework + - text-printer # via test-framework + - threads # via test-framework + - throttle-io-stream # via test-framework + - ttrie # via test-framework + - type-map # via test-framework + - tzdata # via test-framework + - unicode-show # via test-framework + - word24 # via test-framework + - zeromq4-patterns # via test-framework + - zstd # via test-framework + - ENIG # via test-framework-th + - doldol # via test-framework-th + - messagepack # via test-framework-th + - safeio # via test-framework-th + - tzdata # via test-framework-th + # other dep issues - Cabal # GHC 8.4 via base-orphans-0.7, base-orphans-0.7 - DBFunctor # missing file test_options.csv @@ -5661,6 +5752,7 @@ skipped-benchmarks: - cryptohash-sha512 # criterion 1.5 - dimensional # base < 4.7, https://github.com/bjornbm/dimensional/issues/207 - ed25519 # Criterion + - extensible-effects # via test-framework - hw-balancedparens # criterion 1.5, https://github.com/commercialhaskell/stackage/issues/3880 - hw-rankselect-base # criterion 1.5, https://github.com/commercialhaskell/stackage/issues/3880 - identicon # via criterion-1.5.0.0 From cf5f5f9ad7d541e153e7f0f84648bc008a9374c2 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sat, 23 Nov 2019 21:34:24 -0800 Subject: [PATCH 0930/2682] swagger2 < 2.5 per #4992 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8c03838a..daf3df30 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4899,6 +4899,9 @@ packages: # https://github.com/ekmett/compensated/issues/8 - log-domain < 0.13 + # https://github.com/commercialhaskell/stackage/issues/4992 + - swagger2 < 2.5 + # end of packages # Package flags are applied to individual packages, and override the values of From 2bf7f066ffda5a6183ca86357aee8611218c8cf9 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 24 Nov 2019 15:35:45 +0200 Subject: [PATCH 0931/2682] Reenable Yesod --- build-constraints.yaml | 29 ++++++----------------------- 1 file changed, 6 insertions(+), 23 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index daf3df30..38764547 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -539,7 +539,7 @@ packages: - bzlib-conduit - mega-sdist - case-insensitive - - classy-prelude-yesod < 0 # via persistent + - classy-prelude-yesod - conduit-combinators - conduit-extra - hebrew-time @@ -560,14 +560,16 @@ packages: - wai-websockets - warp-tls - yesod - - yesod-auth < 0 # via email-validate & persistent & yesod-core + - authenticate + - html-conduit + - yesod-auth - authenticate-oauth - yesod-bin - yesod-eventsource - yesod-gitrepo - yesod-newsfeed - yesod-sitemap - - yesod-static < 0 # via wai-app-static & yesod-test & yesod-core + - yesod-static - yesod-test - yesod-websockets - cereal-conduit @@ -4073,7 +4075,6 @@ packages: - asn1-types - assoc - attoparsec - - authenticate < 0 # via tagstream-conduit - auto-update - base64-bytestring - base64-bytestring-type @@ -4236,7 +4237,6 @@ packages: - hspec-meta - hspec-smallcheck - html - - html-conduit < 0 # compilation error https://github.com/snoyberg/xml/issues/148 - html-entities - http-client-tls - http-date @@ -4505,7 +4505,7 @@ packages: - yeshql-core - yeshql-hdbc - yesod-core - - yesod-form < 0 # via email-validate + - yesod-form - yesod-persistent - zlib - zlib-bindings @@ -4663,14 +4663,7 @@ packages: - pencil < 0 # via pandoc - peregrin < 0 # via postgresql-simple - persistable-types-HDBC-pg < 0 # via HDBC - - persistent < 0 # via base-4.13.0.0 - - persistent-mysql < 0 # via persistent - persistent-pagination < 0 # via persistent - - persistent-postgresql < 0 # via persistent - - persistent-qq < 0 # via persistent - - persistent-sqlite < 0 # via persistent - - persistent-template < 0 # via persistent - - persistent-test < 0 # via persistent - persistent-typed-db < 0 # via persistent - pg-harness-client < 0 # via HTTP - pg-harness-server < 0 # via scotty @@ -4854,25 +4847,15 @@ packages: - yeshql < 0 # via yeshql-hdbc - yeshql-core < 0 # MonadFail - yeshql-hdbc < 0 # via HDBC - - yesod < 0 # via yesod-core - yesod-alerts < 0 # via yesod-core - yesod-auth-hashdb < 0 # via yesod-test - - yesod-bin < 0 # via project-template - - yesod-bin < 0 # via shakespeare - - yesod-core < 0 # via blaze-html - yesod-csp < 0 # via yesod-core - yesod-eventsource < 0 # via yesod-core - yesod-fb < 0 # via yesod-core - yesod-form-bootstrap4 < 0 # via yesod-core - yesod-gitrepo < 0 # via yesod-core - - yesod-gitrev < 0 # via yesod-core - - yesod-newsfeed < 0 # via yesod-core - - yesod-persistent < 0 # via persistent - yesod-recaptcha2 < 0 # via yesod-core - - yesod-sitemap < 0 # via yesod-core - - yesod-test < 0 # via blaze-html - yesod-text-markdown < 0 # via persistent - - yesod-websockets < 0 # via wai-websockets - yi-language < 0 # via regex-base-0.94.0.0 "GHC upper bounds": From 442e970671f395f5a4f1e9b6cc05d1f642f52d9f Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sun, 24 Nov 2019 09:18:54 -0800 Subject: [PATCH 0932/2682] rainbow < 0.34.1 per #4994 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index daf3df30..50884012 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4902,6 +4902,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4992 - swagger2 < 2.5 + # https://github.com/commercialhaskell/stackage/issues/4994 + - rainbow < 0.34.1 + # end of packages # Package flags are applied to individual packages, and override the values of From 7b0303049c79ff86d3b5c59036800fc2bbe99b5d Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sun, 24 Nov 2019 09:38:15 -0800 Subject: [PATCH 0933/2682] Expect haddock failure for hw-balancedparens --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 50884012..7bd989ba 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5717,6 +5717,9 @@ expected-haddock-failures: # Problem on the stackage build server, we need to dig deeper into # these if we want them fixed + # internal error when calculating transitive package dependencies + - hw-balancedparens + # "Compilation" errors - MemoTrie # https://github.com/conal/MemoTrie/issues/10 - classy-prelude-yesod From 19eceb9f315e491e3a0b9da5aedfea4dbe685b85 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sun, 24 Nov 2019 10:15:29 -0800 Subject: [PATCH 0934/2682] Expect haddock failure for hw-rankselect --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7bd989ba..11866185 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5719,6 +5719,7 @@ expected-haddock-failures: # internal error when calculating transitive package dependencies - hw-balancedparens + - hw-rankselect # "Compilation" errors - MemoTrie # https://github.com/conal/MemoTrie/issues/10 From f73dfff6edeb9011eb534cedeadcd01a53b96521 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sun, 24 Nov 2019 21:55:36 -0800 Subject: [PATCH 0935/2682] Expect test failure per yesodweb/persistent#989 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 78f45b8e..eaa3dd8e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5553,6 +5553,7 @@ expected-test-failures: - kawhi # https://github.com/commercialhaskell/stackage/issues/4512 - loopbreaker # https://github.com/polysemy-research/loopbreaker/issues/10 - nettle # https://github.com/stbuehler/haskell-nettle/issues/10 + - persistent-sqlite # https://github.com/yesodweb/persistent/issues/989 # Compilation failures - ListLike # No issue tracker, e-mail sent to maintainer From 1946cb8279b4ceb3a85c99fb0ef3ca53a01fe369 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sun, 24 Nov 2019 21:59:01 -0800 Subject: [PATCH 0936/2682] Unblock semirings, closes #4959 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index eaa3dd8e..c7bad091 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4864,9 +4864,6 @@ packages: - Win32 == 2.6.1.0 "Stackage upper bounds": - # https://github.com/commercialhaskell/stackage/issues/4959 - - semirings < 0.5.2 - # https://github.com/commercialhaskell/stackage/issues/4964 - prettyprinter < 1.5 From c85fa65db4ca1e5e8aafdabd3b5174e9130415cc Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sun, 24 Nov 2019 22:01:36 -0800 Subject: [PATCH 0937/2682] Unblock prettyprinter, closes #4964 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c7bad091..b186ee3d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4864,9 +4864,6 @@ packages: - Win32 == 2.6.1.0 "Stackage upper bounds": - # https://github.com/commercialhaskell/stackage/issues/4964 - - prettyprinter < 1.5 - # https://github.com/commercialhaskell/stackage/issues/4966 - megaparsec < 8 - megaparsec-tests < 8 From a01c96463285da369abd69395db93c54379b63d4 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sun, 24 Nov 2019 22:02:17 -0800 Subject: [PATCH 0938/2682] Unblock cookie, closes #4974 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b186ee3d..3c62e5df 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4871,9 +4871,6 @@ packages: - parser-combinators < 1.2.1 - parser-combinators-tests < 1.2.1 - # https://github.com/commercialhaskell/stackage/issues/4974 - - cookie < 0.4.5 - # https://github.com/ekmett/compensated/issues/8 - log-domain < 0.13 From e80dc1c86744f6d3cc1a3470b721d9fcbfcc7c9b Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sun, 24 Nov 2019 22:03:05 -0800 Subject: [PATCH 0939/2682] Unconstrain log-domain --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3c62e5df..58495351 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4871,9 +4871,6 @@ packages: - parser-combinators < 1.2.1 - parser-combinators-tests < 1.2.1 - # https://github.com/ekmett/compensated/issues/8 - - log-domain < 0.13 - # https://github.com/commercialhaskell/stackage/issues/4992 - swagger2 < 2.5 From 3d492cde8bc85eb7905898c23e49f10852476f30 Mon Sep 17 00:00:00 2001 From: Luke Lau Date: Mon, 25 Nov 2019 17:17:08 +0000 Subject: [PATCH 0940/2682] Reinstate network-bsd As well as some packages that depended on it. This is not a complete list though. --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 58495351..2858f2cc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -677,7 +677,7 @@ packages: "Alan Zimmerman @alanz": - ghc-exactprint - - haskell-lsp < 0 # via hslogger + - haskell-lsp - hjsmin - language-javascript - Strafunski-StrategyLib < 0 # via base-4.13.0.0 @@ -4229,7 +4229,7 @@ packages: - hourglass - hsc2hs - hscolour - - hslogger < 0 # via network-3.1.1.0 & network-bsd + - hslogger - hsp - hspec-attoparsec - hspec-contrib @@ -4298,6 +4298,7 @@ packages: - names-th - nanospec - nettle + - network-bsd - network-byte-order - network-info - network-ip @@ -4630,7 +4631,6 @@ packages: - naqsha < 0 # via base-4.13.0.0 - network-anonymous-i2p < 0 # via network-simple - network-attoparsec < 0 # via network-simple - - network-bsd < 0 # via network-3.1.1.0 - network-house < 0 # MonadFail - network-messagepack-rpc < 0 # via data-msgpack - network-multicast < 0 # via network-bsd From 985ee6ce75afff60fca29efaaae35657835ea678 Mon Sep 17 00:00:00 2001 From: Satoshi Egi Date: Tue, 26 Nov 2019 08:28:17 +0900 Subject: [PATCH 0941/2682] Update build-constraints.yaml --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 58495351..c6d93def 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4043,6 +4043,7 @@ packages: "Satoshi Egi @egisatoshi": - egison + - mini-egison "Grandfathered dependencies": - network From 403a88a6a302d16cc91fe20eaf0d1a2bd43badbe Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 26 Nov 2019 08:39:59 +0200 Subject: [PATCH 0942/2682] Drop some packages I no longer maintain Fixes #4998 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index cefb8c99..f3f65f9a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -604,18 +604,15 @@ packages: - th-lift - quickcheck-assertions - - wai-middleware-consul < 0 - wai-middleware-crowd - monad-logger-json - safe-exceptions - - monad-logger-syslog - fsnotify-conduit - pid1 - typed-process - say - unliftio-core - unliftio - - compact < 0 # via base-4.13.0.0 - fsnotify - hinotify From ac8de1fcddfdd68a2256ee22df76dded1552f129 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 26 Nov 2019 14:49:13 +0800 Subject: [PATCH 0943/2682] mmark < 0.0.7.2 (#4966) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index cefb8c99..3cbc2863 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4871,6 +4871,7 @@ packages: - hspec-megaparsec < 2.1 - parser-combinators < 1.2.1 - parser-combinators-tests < 1.2.1 + - mmark < 0.0.7.2 # https://github.com/commercialhaskell/stackage/issues/4992 - swagger2 < 2.5 From 25ed01762486f89e7b667831e01897b1719eb4bc Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 26 Nov 2019 14:50:03 +0800 Subject: [PATCH 0944/2682] monad-logger-syslog < 0.1.6.0 (#4998) --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3cbc2863..93869d8f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4879,6 +4879,8 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4994 - rainbow < 0.34.1 + # https://github.com/commercialhaskell/stackage/issues/4998 + - monad-logger-syslog < 0.1.6.0 # end of packages # Package flags are applied to individual packages, and override the values of From d3f7936942394dc73c268976a2ffadbd1e8d3575 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 26 Nov 2019 14:54:12 +0800 Subject: [PATCH 0945/2682] re-enable HTTP --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 93869d8f..5cbd4d26 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4055,7 +4055,7 @@ packages: - Glob - HDBC < 0 # via time-1.9.3 - HDBC-session < 0 # via HDBC - - HTTP < 0 # via test-framework & test-framework-hunit + - HTTP - HsOpenSSL - HsYAML - JuicyPixels-scale-dct @@ -4245,7 +4245,7 @@ packages: - http-reverse-proxy - http-types - http2 - - httpd-shed < 0 # via network-bsd + - httpd-shed - hw-json-simd - hw-string-parse - hxt From b7b34d27eabcff230ece5f372f8f705c2c78871f Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 26 Nov 2019 14:54:41 +0800 Subject: [PATCH 0946/2682] enable dl-fedora, fedora-haskell-tools, http-directory --- build-constraints.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5cbd4d26..fe7038cd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1471,12 +1471,12 @@ packages: - HaskellNet-SSL < 0 # mime-mail-0.5 via HaskellNet "Jens Petersen @juhp": - - cabal-rpm < 0 # https://github.com/commercialhaskell/stackage/issues/4666 - - dl-fedora < 0 # via http-directory + - cabal-rpm < 0 # time-1.9 https://github.com/commercialhaskell/stackage/issues/4666 + - dl-fedora - fedora-dists - - fedora-haskell-tools < 0 # https://github.com/commercialhaskell/stackage/issues/4662 + - fedora-haskell-tools - hkgr - - http-directory < 0 # via html-conduit + - http-directory - rpmbuild-order - simple-cabal - simple-cmd From a87d8cbffaadc391c48729239b11b3cf255743c2 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 26 Nov 2019 14:56:51 +0800 Subject: [PATCH 0947/2682] try to enable all the HTTP dependents --- build-constraints.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index fe7038cd..6f49f635 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -940,7 +940,7 @@ packages: "Patrick Brisbin @pbrisbin": - bugsnag-haskell < 0 # via yesod-core - - gravatar < 0 # via HTTP + - gravatar - load-env - yesod-auth-oauth2 < 0 # via hoauth2 & yesod-core - yesod-markdown < 0 # pbrisbin/yesod-markdown#65 @@ -1149,12 +1149,12 @@ packages: - tasty-expected-failure "Aditya Bhargava @egonSchiele": - - HandsomeSoup < 0 # via HTTP + - HandsomeSoup "Clint Adams @clinty": - hOpenPGP < 0 # via bzlib - openpgp-asciiarmor - - MusicBrainz < 0 # via HTTP + - MusicBrainz - DAV < 0 # via xml-hamlet - hopenpgp-tools < 0 # via graphviz - opensource @@ -2723,7 +2723,7 @@ packages: - deriveJsonNoPrefix "Hans-Christian Esperer @hce": - - avwx < 0 # via HTTP + - avwx - saltine - wai-session-postgresql @@ -4250,7 +4250,7 @@ packages: - hw-string-parse - hxt - hxt-charproperties - - hxt-http < 0 # via HTTP + - hxt-http - hxt-regex-xmlschema - hxt-unicode - iconv @@ -4667,7 +4667,7 @@ packages: - persistable-types-HDBC-pg < 0 # via HDBC - persistent-pagination < 0 # via persistent - persistent-typed-db < 0 # via persistent - - pg-harness-client < 0 # via HTTP + - pg-harness-client - pg-harness-server < 0 # via scotty - pg-transact < 0 # via tmp-postgres - pinboard < 0 # via time-1.9.3 @@ -4812,7 +4812,7 @@ packages: - union < 0 # via base-4.13.0.0 - universe-dependent-sum < 0 # via some - unliftio-streams < 0 # via io-streams - - uri-templater < 0 # via HTTP + - uri-templater - users-postgresql-simple < 0 # via postgresql-simple - users-test < 0 # via users - wai-cli < 0 # via network-3.1.1.0 From cc8589aa3b29f0b4a0ef1f9b501190ead7faf7cc Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 26 Nov 2019 09:46:48 +0200 Subject: [PATCH 0948/2682] New curator exe with unpacked GC --- automated/build-next.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automated/build-next.sh b/automated/build-next.sh index ebac9bdd..f85a93db 100755 --- a/automated/build-next.sh +++ b/automated/build-next.sh @@ -64,7 +64,7 @@ mkdir -p $ROOT/bin BINDIR=$(cd $ROOT/bin ; pwd) ( # See etc/curator-exes/README.md -CURATOR_EXES=95a207fb4d5bd2e2a255350ce18f55976344eeb71e6f27a25f63e8dba28a4cd1 +CURATOR_EXES=1804f7aadc27032715c0dda005aa9b954909302238b45a1106968c1cdcacfc55 cd $BINDIR rm -f curator stack *.bz2 wget "https://s3.amazonaws.com/download.fpcomplete.com/curator-exes/curator-exes-$CURATOR_EXES.tar.bz2" From 47be1a6c6bdc2a455a3473089d5515b35a9aa022 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 28 Nov 2019 14:58:01 +0800 Subject: [PATCH 0949/2682] disable uri-templater again (iand675/uri-templater#7) --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ca80bf15..7b94c60d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2032,7 +2032,7 @@ packages: - metrics - pipes-wai - serf - - uri-templater + # - uri-templater # https://github.com/iand675/uri-templater/issues/7 "Michael Xavier @MichaelXavier": - uri-bytestring @@ -4809,7 +4809,6 @@ packages: - union < 0 # via base-4.13.0.0 - universe-dependent-sum < 0 # via some - unliftio-streams < 0 # via io-streams - - uri-templater - users-postgresql-simple < 0 # via postgresql-simple - users-test < 0 # via users - wai-cli < 0 # via network-3.1.1.0 From 1451f29dfb2d6bb9aa1768c99a65298155489e05 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 28 Nov 2019 15:03:50 +0800 Subject: [PATCH 0950/2682] re-disable avwx (hce/avwx#2) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7b94c60d..10d5b964 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2720,7 +2720,7 @@ packages: - deriveJsonNoPrefix "Hans-Christian Esperer @hce": - - avwx + # avwx # https://github.com/hce/avwx/issues/2 - saltine - wai-session-postgresql From 989068f3f51794438aac86990ec8d0959da7e410 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 28 Nov 2019 15:26:22 +0800 Subject: [PATCH 0951/2682] feed testsuite fail (bergmark/feed#43) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 10d5b964..033a14c3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5549,6 +5549,7 @@ expected-test-failures: - async-timer # https://github.com/mtesseract/async-timer/issues/8 - commutative # https://github.com/athanclark/commutative/issues/4 - conduit-throttle # https://github.com/mtesseract/conduit-throttle/issues/12 + - feed # https://github.com/bergmark/feed/issues/43 - haddock - haskell-tools-builtin-refactorings - hweblib # https://github.com/aycanirican/hweblib/issues/3 From 0e3d0bf63f2889ada112ac5ec21a2c9bde192f0f Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 28 Nov 2019 15:53:51 +0800 Subject: [PATCH 0952/2682] remove duplicated pg-harness-client [skip ci] --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 033a14c3..2c29045e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4664,7 +4664,6 @@ packages: - persistable-types-HDBC-pg < 0 # via HDBC - persistent-pagination < 0 # via persistent - persistent-typed-db < 0 # via persistent - - pg-harness-client - pg-harness-server < 0 # via scotty - pg-transact < 0 # via tmp-postgres - pinboard < 0 # via time-1.9.3 From ea8de24f6b67384983ccaf289ced6f147340bc92 Mon Sep 17 00:00:00 2001 From: Pi3r Date: Thu, 28 Nov 2019 18:30:05 +0100 Subject: [PATCH 0953/2682] Re-enable pcre-utils --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2c29045e..412e931e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4657,7 +4657,6 @@ packages: - pcf-font < 0 # MonadFail - pcf-font-embed < 0 # via pcf-font - pcre-heavy < 0 # via string-conversions - - pcre-utils < 0 # via regex-pcre-builtin - pedersen-commitment < 0 # via protolude - pencil < 0 # via pandoc - peregrin < 0 # via postgresql-simple From 82bfe689d6640c01a2fe068a07f89ea1be480f3b Mon Sep 17 00:00:00 2001 From: Luke Lau Date: Fri, 29 Nov 2019 00:27:37 +0000 Subject: [PATCH 0954/2682] Reinstate lsp-test --- build-constraints.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2c29045e..bb3c3ef9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4595,8 +4595,6 @@ packages: - loc < 0 # via base-4.13.0.0 - locators < 0 # via cryptohash - logger-thread < 0 # via protolude - - lsp-test < 0 # via conduit-parse - - lsp-test < 0 # via haskell-lsp - machines-binary < 0 # via machines-0.7 - machines-directory < 0 # via machines-0.7 - machines-io < 0 # via machines-0.7 From 02eb3943973d542a56c6e797acc07e100e11456a Mon Sep 17 00:00:00 2001 From: Jonathan Fischoff Date: Fri, 29 Nov 2019 09:27:34 -0500 Subject: [PATCH 0955/2682] Add postgres-options for #4790 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index b32c7ad3..9540eb36 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3219,6 +3219,7 @@ packages: - clock-extras - next-ref < 0 - threads-extras < 0 + - postgres-options - tmp-postgres < 0.3 # https://github.com/commercialhaskell/stackage/issues/4790 - pg-transact - hspec-pg-transact < 0 # via tmp-postgres From 70189af791076ad1a7547c71d5c0c39c64c280f2 Mon Sep 17 00:00:00 2001 From: Omari Norman Date: Fri, 29 Nov 2019 21:28:46 -0500 Subject: [PATCH 0956/2682] Reinstate rainbow I uploaded version 0.34.2.2 to Hackage, which hopefully fixes https://github.com/commercialhaskell/stackage/issues/4994 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b32c7ad3..29d2a336 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4868,9 +4868,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4992 - swagger2 < 2.5 - # https://github.com/commercialhaskell/stackage/issues/4994 - - rainbow < 0.34.1 - # https://github.com/commercialhaskell/stackage/issues/4998 - monad-logger-syslog < 0.1.6.0 # end of packages From c5aa5217943b69ae72f8ed0054da4462563d6e06 Mon Sep 17 00:00:00 2001 From: Travis Cardwell Date: Sun, 1 Dec 2019 16:32:19 +0900 Subject: [PATCH 0957/2682] add ttc --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index b32c7ad3..87735df0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4042,6 +4042,9 @@ packages: - egison - mini-egison + "Travis Cardwell @TravisCardwell": + - ttc + "Grandfathered dependencies": - network - Boolean From 11d13172159be876dd2b6f223741ad35fcf0ce2a Mon Sep 17 00:00:00 2001 From: Rob Stewart Date: Mon, 2 Dec 2019 23:35:58 +0000 Subject: [PATCH 0958/2682] add gitlab-haskell --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index b32c7ad3..3c030583 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -9,6 +9,9 @@ cabal-format-version: "2.4" # Constraints for brand new builds packages: + "Rob Stewart @robstewart57": + - gitlab-haskell + "Callan McGill @callanmcgill": - perfect-vector-shuffle From bd3558752f3364a460a594288f5c1bd9105b3db8 Mon Sep 17 00:00:00 2001 From: recursion-ninja Date: Wed, 4 Dec 2019 07:37:51 -0500 Subject: [PATCH 0959/2682] bv-little test-suite now passes deterministically --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b32c7ad3..c09213be 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3799,7 +3799,7 @@ packages: - starter "Alex Washburn @recursion-ninja": - - bv-little < 0 # via text-show + - bv-little - mono-traversable-keys "Avi Press @aviaviavi": From e4b5d046c9e43647cc7a8a7d8336ca5caf0499df Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Wed, 4 Dec 2019 11:25:49 -0800 Subject: [PATCH 0960/2682] re-enable some hledger-* packages Not hledger-ui/iadd yet, dep issues still to be resolved. --- build-constraints.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b32c7ad3..4d2011eb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1228,10 +1228,10 @@ packages: # be removed, rather than putting an upper bound on hledger-lib and hledger. # (https://github.com/fpco/stackage/issues/3494) # - - hledger < 0 # via base-4.13.0.0 & base-compat-batteries-0.11.0 & easytest-0.3 - - hledger-lib < 0 # via base-4.13.0.0 & base-compat-batteries-0.11.0 & easytest-0.3 - - hledger-ui < 0 # via base-4.13.0.0 & base-compat-batteries-0.11.0 - - hledger-web < 0 # via base-4.13.0.0 + - hledger + - hledger-lib + - hledger-ui < 0 # via brick, ghc-lib-parser-8.8.1.20191204 + - hledger-web # - quickbench < 0 # via docopt - regex-compat-tdfa @@ -2442,7 +2442,7 @@ packages: - flexible-defaults - funcmp - hackage-db - - hledger-interest < 0 # via hledger-lib + - hledger-interest - hopenssl - hsdns - hsemail From f68f50be69e64d5bb4a623f58eb2dd0c2b44c612 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Thu, 5 Dec 2019 04:13:01 +0000 Subject: [PATCH 0961/2682] Restricts ghc-lib-parser #5011 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b32c7ad3..bafac088 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -667,7 +667,7 @@ packages: "Digital Asset ": - ghc-lib - - ghc-lib-parser + - ghc-lib-parser < 8.8.1.20191204 # commercialhaskell/stackage#5011 "Karl Ostmo @kostmo": - perfect-hash-generator From 2ed81cdf695539404ec2a32d7f44edf1c4ce04ee Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Thu, 5 Dec 2019 04:15:15 +0000 Subject: [PATCH 0962/2682] Restricts ghc-lib (based on ghc-lib-parser) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index bafac088..9abbed20 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -666,7 +666,7 @@ packages: - hie-bios "Digital Asset ": - - ghc-lib + - ghc-lib < 8.8.1.20191204 # restricted by ghc-lib-parser - ghc-lib-parser < 8.8.1.20191204 # commercialhaskell/stackage#5011 "Karl Ostmo @kostmo": From feb38e5e02fbb9e11f6f72e991f51b0328675279 Mon Sep 17 00:00:00 2001 From: ygale Date: Thu, 5 Dec 2019 09:43:00 +0200 Subject: [PATCH 0963/2682] Re-add boolean-normal-forms --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9abbed20..f436d16b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1912,7 +1912,7 @@ packages: - annotated-wl-pprint "Yitz Gale @ygale": - - boolean-normal-forms < 0 # via base-4.13.0.0 + - boolean-normal-forms - strict-concurrency - timezone-series - timezone-olson From e365d1f4492ce1b987cad815bfbe935481548774 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Thu, 5 Dec 2019 20:45:39 +0000 Subject: [PATCH 0964/2682] Lift restriction on ghc-lib and ghc-lib-parser --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9abbed20..b32c7ad3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -666,8 +666,8 @@ packages: - hie-bios "Digital Asset ": - - ghc-lib < 8.8.1.20191204 # restricted by ghc-lib-parser - - ghc-lib-parser < 8.8.1.20191204 # commercialhaskell/stackage#5011 + - ghc-lib + - ghc-lib-parser "Karl Ostmo @kostmo": - perfect-hash-generator From 14e684da37affb45b750f01f74598b0f14a64744 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Thu, 5 Dec 2019 20:49:47 +0000 Subject: [PATCH 0965/2682] Restrict genvalidity-text (#5013) genvalidity-text-0.7.0.1 depends on genvalidity-criterion, which is not present --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b32c7ad3..7e66680a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3683,7 +3683,7 @@ packages: - genvalidity-path - genvalidity-property - genvalidity-scientific - - genvalidity-text + - genvalidity-text < 0.7.0.1 # commercialhaskell/stackage#5013 - genvalidity-time - genvalidity-unordered-containers - genvalidity-uuid From 419868f741c235b58e39e9e3cd81782b2140d450 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Thu, 5 Dec 2019 21:41:55 +0000 Subject: [PATCH 0966/2682] Skip hw-ip haddocks (#5014) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7e66680a..251c7c86 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5711,6 +5711,7 @@ skipped-haddocks: - polysemy-zoo # Needs polysemy-plugin GHC plugin - haskell-lsp-types # 0.13.0.0 https://github.com/commercialhaskell/stackage/issues/4563#issuecomment-493899809 - bitvec # https://github.com/commercialhaskell/stackage/issues/4848 +- hw-ip # https://github.com/commercialhaskell/stackage/issues/5014 # end of skipped-haddocks # Benchmarks which should not be built. Note that Stackage builds benchmarks but does not run them. From 10c41ab56008f76d7cede0879368238d94bffb4f Mon Sep 17 00:00:00 2001 From: Pi3r Date: Fri, 6 Dec 2019 13:35:03 +0100 Subject: [PATCH 0967/2682] Re-enable language-puppet --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f6d1aece..ac6c2ace 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2492,7 +2492,7 @@ packages: - strict-base-types - withdependencies < 0 - hruby - - language-puppet < 0 # via hslogger-1.3.0.0 + - language-puppet - tar-conduit "Mark Karpov @mrkkrp": From a82ae9b382ec8dfd388bd7cb54f5883b00fd26eb Mon Sep 17 00:00:00 2001 From: Geoffrey Mainland Date: Fri, 6 Dec 2019 17:23:01 -0500 Subject: [PATCH 0968/2682] Assume responsibility for my packages. --- build-constraints.yaml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3bfaba5f..2c59c7a6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -9,6 +9,13 @@ cabal-format-version: "2.4" # Constraints for brand new builds packages: + "Geoffrey Mainland @mainland": + - exception-mtl + - exception-transformers + - mainland-pretty + - srcloc + - symbol + "Rob Stewart @robstewart57": - gitlab-haskell @@ -4188,8 +4195,6 @@ packages: - entropy - erf - errors - - exception-mtl - - exception-transformers - expiring-cache-map - extensible-exceptions - fail @@ -4282,7 +4287,6 @@ packages: - logging-facade - lrucache - lzma - - mainland-pretty - managed - math-functions - mersenne-random-pure64 @@ -4399,7 +4403,6 @@ packages: - split - splitmix - sql-words - - srcloc - stateref - statistics - step-function @@ -4414,7 +4417,6 @@ packages: - stringbuilder - sundown - syb - - symbol - system-fileio - system-filepath - tabular From c56453899bc77055bb34fa4babf6e05809d71936 Mon Sep 17 00:00:00 2001 From: Paul Rouse Date: Sat, 7 Dec 2019 16:23:56 +0000 Subject: [PATCH 0969/2682] Re-enable yesod-auth-hashdb in nightly It was blocked on `yesod-test`, which now appears to be resolved and is in nightly. --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2c59c7a6..432d48f4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4851,7 +4851,6 @@ packages: - yeshql-core < 0 # MonadFail - yeshql-hdbc < 0 # via HDBC - yesod-alerts < 0 # via yesod-core - - yesod-auth-hashdb < 0 # via yesod-test - yesod-csp < 0 # via yesod-core - yesod-eventsource < 0 # via yesod-core - yesod-fb < 0 # via yesod-core From f669f65e4d5e002c87d78cfd7aca538b22776c77 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 10 Dec 2019 01:25:36 +0800 Subject: [PATCH 0970/2682] reenable cabal-rpm (#4666) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 432d48f4..f8adae4f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1478,7 +1478,7 @@ packages: - HaskellNet-SSL < 0 # mime-mail-0.5 via HaskellNet "Jens Petersen @juhp": - - cabal-rpm < 0 # time-1.9 https://github.com/commercialhaskell/stackage/issues/4666 + - cabal-rpm - dl-fedora - fedora-dists - fedora-haskell-tools From 0b3cf1bed91c28174f77518444bd3bd84788d9a9 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 15 Dec 2019 14:48:03 -0800 Subject: [PATCH 0971/2682] Upper bound boring and vec (#5024) --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f8adae4f..4ebecf7b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4878,6 +4878,10 @@ packages: # https://github.com/commercialhaskell/stackage/issues/4998 - monad-logger-syslog < 0.1.6.0 + + # https://github.com/commercialhaskell/stackage/issues/5024 + - boring < 0.1.3 + - vec < 0.3 # end of packages # Package flags are applied to individual packages, and override the values of From 8a0554ea54d9b17166ce2ba945ca1143fe5a8556 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 15 Dec 2019 15:09:59 -0800 Subject: [PATCH 0972/2682] Upper bound hie-bios (#5025) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4ebecf7b..7a744b25 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4882,6 +4882,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5024 - boring < 0.1.3 - vec < 0.3 + + # https://github.com/commercialhaskell/stackage/issues/5025 + - hie-bios < 0.3 # end of packages # Package flags are applied to individual packages, and override the values of From 4801a726ee30747e1f35e6f2da5b002c4b9924ae Mon Sep 17 00:00:00 2001 From: Yoshikuni Jujo Date: Fri, 20 Dec 2019 17:12:44 +0900 Subject: [PATCH 0973/2682] Reenable vty --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7a744b25..aafc9d7f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4487,7 +4487,7 @@ packages: - vector-builder - vector-space - vector-th-unbox - - vty < 0 # via microlens-0.4.11.2 + - vty - wai - wai-app-static - wai-conduit From d5ce129e29954267fc691a604bab0d448863f1e1 Mon Sep 17 00:00:00 2001 From: Bodigrim Date: Thu, 12 Dec 2019 23:17:37 +0000 Subject: [PATCH 0974/2682] Reenable tasty-rerun --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index aafc9d7f..2a032fc1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2194,7 +2194,6 @@ packages: - exhaustive < 0 # GHC 8.4 via base-4.11.0.0 - libsystemd-journal < 0 # GHC 8.4 via base-4.11.0.0 - network-carbon < 0 # GHC 8.4 via base-4.11.0.0 - - tasty-rerun < 0 # GHC 8.4 via base-4.11.0.0 - logging-effect - dhall-to-cabal < 0 # - reactive-banana # pqueue-1.4.1 @@ -3075,6 +3074,7 @@ packages: - data-interval - vector-rotcev - mod + - tasty-rerun "Ashley Yakeley @AshleyYakeley": - countable From 0c0884583ee67956c3162ef22e4305ee45a6c992 Mon Sep 17 00:00:00 2001 From: Geoffrey Mainland Date: Tue, 10 Dec 2019 12:42:13 -0500 Subject: [PATCH 0975/2682] Re-add ref-fd. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2a032fc1..06722ec8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -13,6 +13,7 @@ packages: - exception-mtl - exception-transformers - mainland-pretty + - ref-fd - srcloc - symbol @@ -4699,7 +4700,6 @@ packages: - rainbox < 0 # via lens-simple - random-source < 0 # via flexible-defaults - rasterific-svg < 0 # via Rasterific - - ref-fd < 0 # bounds failure - references < 0 - regex < 0 # hashable-1.3.0 - regex-applicative-text < 0 # via regex-applicative From d1d0d5dc8a35cf52a3820d14af923693fc0ea2ef Mon Sep 17 00:00:00 2001 From: Devon Hollowood Date: Mon, 9 Dec 2019 22:41:59 -0800 Subject: [PATCH 0976/2682] Re-enable search-algorithms --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 06722ec8..521b01fd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3410,7 +3410,7 @@ packages: - verbosity < 0 # via dhall "Devon Hollowood @devonhollowood": - - search-algorithms < 0 + - search-algorithms "Chris Dornan @cdornan": - sort From abc98dce1cdae85f6fa6ee44332bf37940b8081a Mon Sep 17 00:00:00 2001 From: Stefan Wehr Date: Fri, 13 Dec 2019 15:14:49 +0100 Subject: [PATCH 0977/2682] re-enable haskell-src --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 521b01fd..71ff838f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4228,7 +4228,7 @@ packages: - haskell-gi-overloading - haskell-lexer - haskell-lsp-types - - haskell-src < 0 # via base-4.13.0.0 + - haskell-src - haskell-src-exts - haxl < 0 # via time-1.9.3 - heap From 2d520a995a54bd9a72641d8529523ab3e59ca05b Mon Sep 17 00:00:00 2001 From: Jonathan Fischoff Date: Sat, 14 Dec 2019 10:41:54 -0500 Subject: [PATCH 0978/2682] Remove tmp-postgres version constraint #4790 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 71ff838f..2aa00114 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3231,7 +3231,7 @@ packages: - next-ref < 0 - threads-extras < 0 - postgres-options - - tmp-postgres < 0.3 # https://github.com/commercialhaskell/stackage/issues/4790 + - tmp-postgres - pg-transact - hspec-pg-transact < 0 # via tmp-postgres - postgresql-simple-queue From e396445e29356bce847136a73bd039928a2dfd81 Mon Sep 17 00:00:00 2001 From: Omari Norman Date: Fri, 13 Dec 2019 23:31:15 -0500 Subject: [PATCH 0979/2682] Reinstate rainbox --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2aa00114..48ceb2de 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4697,7 +4697,6 @@ packages: - pure-zlib < 0 # via base-compat-0.11.0 - raaz < 0 # via base-4.13.0.0 - radius < 0 # via iproute - - rainbox < 0 # via lens-simple - random-source < 0 # via flexible-defaults - rasterific-svg < 0 # via Rasterific - references < 0 From fef21e862c3eedb6c817a03e6140acba18ba1508 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Olivier=20Ch=C3=A9ron?= Date: Sun, 22 Dec 2019 11:24:13 +0100 Subject: [PATCH 0980/2682] Restore wreq and mustache --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 48ceb2de..bbfc73dc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4628,7 +4628,6 @@ packages: - mpi-hs < 0 # via store - msgpack < 0 # via base-4.13.0.0 - msgpack-aeson < 0 # via msgpack - - mustache < 0 # Lift Text - mwc-probability-transition < 0 # via logging-effect - mysql-haskell < 0 # via memory-0.15.0 - mysql-haskell-nem < 0 # via io-streams @@ -4833,7 +4832,6 @@ packages: - witherable < 0 # via monoidal-containers - wl-pprint-text < 0 # via base-compat-0.11.0 - wordpress-auth < 0 # via http-types - - wreq < 0 # via authenticate-oauth - ws < 0 # via attoparsec-uri - ws < 0 # via wuss - xenstore < 0 # sClose not in scope @@ -5223,7 +5221,6 @@ skipped-tests: - megaparsec - mighty-metropolis - multiarg - - mustache - opml-conduit - pipes-csv - postgresql-simple From 0495e6565a1a39e1d07e00937b345e2c501b09e5 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 22 Dec 2019 13:37:27 -0800 Subject: [PATCH 0981/2682] Partilly move packages to their original author --- build-constraints.yaml | 39 +++++++++++++-------------------------- 1 file changed, 13 insertions(+), 26 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index bbfc73dc..181bca3c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1072,7 +1072,7 @@ packages: - through-text < 0 # Not my packages - HStringTemplate - - language-ecmascript + - language-ecmascript < 0 # via Diff-0.4.0 - spoon - tagshare @@ -1107,7 +1107,7 @@ packages: "Michal J. Gajda @mgajda": - iterable - FenwickTree - - json-autotype + - json-autotype < 0 # via lens-4.18.1 "Dom De Re @domdere": - cassava-conduit @@ -2074,8 +2074,8 @@ packages: - distributed-closure - inline-java < 0 - inline-r < 0 # via inline-c - - jni - - jvm + - jni < 0 # compilation failure + - jvm < 0 # transitive compilation failure - jvm-streaming < 0 - H < 0 # via inline-r - sparkle < 0 @@ -2096,7 +2096,7 @@ packages: "Michel Boucey @MichelBoucey": - IPv6Addr < 0 # via test-framework & test-framework-hunit - - ip6addr + - ip6addr < 0 # via IPv6Addr - cayley-client < 0 # via lens-4.18.1 - Spintax - glabrous @@ -2459,7 +2459,7 @@ packages: - hsyslog - jailbreak-cabal - lambdabot-core < 0 # via dependent-map-0.3 - - lambdabot-irc-plugins + - lambdabot-irc-plugins < 0 # via lambdabot-core - language-nix - logging-facade-syslog - MonadPrompt @@ -2798,7 +2798,7 @@ packages: - doctemplates < 0 # via doclayout - pandoc - pandoc-citeproc - - ipynb + - ipynb < 0 # via aeson-diff "Karun Ramakrishnan @karun012": - doctest-discover @@ -2865,7 +2865,7 @@ packages: "Fraser Tweedale @frasertweedale": - concise - - jose + - jose < 0 # MonadFail "Yoshikuni Jujo @YoshikuniJujo": - zot @@ -3580,7 +3580,7 @@ packages: "José Lorenzo Rodríguez @lorenzo": - wrecker < 0 # GHC 8.4 via ansigraph - - language-docker + - language-docker < 0 # Data.Text instance of Lift - docker-build-cacher < 0 # GHC 8.4 via turtle - mysql-haskell-nem - hadolint < 0 # via ShellCheck @@ -3890,8 +3890,8 @@ packages: - sendfile "Kristen Kozak @grayjay": - - json-rpc-server - - json-rpc-client + - json-rpc-server < 0 # via base-4.13.0.0 + - json-rpc-client < 0 # via base-4.13.0.0 "Magnus Therning @magthe": - hsini @@ -4271,8 +4271,8 @@ packages: - inspection-testing - integer-logarithms - io-streams-haproxy < 0 # via base-4.13.0.0 - - ixset-typed - - json + - ixset-typed < 0 # via safecopy-0.10.0 + - json < 0 # via base-4.13.0.0 - json-alt - kleene < 0 # via regex-applicative - language-haskell-extract @@ -4577,19 +4577,6 @@ packages: - proto-lens-combinators < 0 # deprecated https://github.com/commercialhaskell/stackage/pull/4358 "Build failures on GHC upgrades ..,,xxx": - - ip6addr < 0 # via IPv6Addr - - ipynb < 0 # via aeson-diff - - ixset-typed < 0 # via safecopy-0.10.0 - - jni < 0 # compilation failure - - jose < 0 # MonadFail - - json < 0 # via base-4.13.0.0 - - json-autotype < 0 # via lens-4.18.1 - - json-rpc-client < 0 # via base-4.13.0.0 - - json-rpc-server < 0 # via base-4.13.0.0 - - jvm < 0 # transitive compilation failure - - lambdabot-irc-plugins < 0 # via lambdabot-core - - language-docker < 0 # Data.Text instance of Lift - - language-ecmascript < 0 # via Diff-0.4.0 - lapack < 0 # via hyper - large-hashable < 0 # compilation failure - learn-physics < 0 # via base-4.13.0.0 From 6608e01c4e771324bbe6f2dab2cb0b14dfb0dc24 Mon Sep 17 00:00:00 2001 From: vrom911 Date: Thu, 26 Dec 2019 20:42:00 +0000 Subject: [PATCH 0982/2682] Reenable shortcut-links --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 181bca3c..08deec2c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2296,7 +2296,6 @@ packages: - microlens-th - microlens-ghc - microlens-contra - - shortcut-links - cheapskate-highlight < 0 # via blaze-html - cheapskate-lucid < 0 # via blaze-html - cmark-lucid < 0 # GHC 8.4 via cmark @@ -3556,6 +3555,7 @@ packages: - first-class-patterns - relude - shellmet + - shortcut-links - summoner < 0 # via base-4.13.0.0 - tomland - typerep-map @@ -4729,7 +4729,6 @@ packages: - sexpr-parser < 0 # via base-4.13.0.0 - shake-language-c < 0 # via fclabels - shikensu < 0 # via flow - - shortcut-links < 0 # MonadFail - show-prettyprint < 0 # via trifecta - shower < 0 # via base-4.13.0.0 - simple < 0 # https://github.com/alevy/simple/issues/23 From 29366ff763401aa8afe4c2c48e61df461ef5b1a3 Mon Sep 17 00:00:00 2001 From: Dmitrii Kovanikov Date: Thu, 26 Dec 2019 20:41:58 +0000 Subject: [PATCH 0983/2682] Reenable ilist --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 08deec2c..7c09648f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2302,7 +2302,6 @@ packages: - cmark-highlight < 0 # GHC 8.4 via cmark - Spock-lucid < 0 # GHC 8.4 via Spock - charsetdetect-ae - - ilist # - text-all # text-1.2.3.0 - fmt < 0 # via doctest-discover @@ -3553,6 +3552,7 @@ packages: - co-log < 0 # via base-4.13.0.0 - co-log-core < 0 # via base-4.13.0.0 - first-class-patterns + - ilist - relude - shellmet - shortcut-links From c99ea54af0ece5f8874854d660618981733d201c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Olivier=20Ch=C3=A9ron?= Date: Sat, 28 Dec 2019 09:40:09 +0100 Subject: [PATCH 0984/2682] Restore hoauth2 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7c09648f..4891f8ff 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2733,7 +2733,7 @@ packages: - wai-session-postgresql "Haisheng Wu @freizl": - - hoauth2 < 0 # via binary-0.8.7.0 + - hoauth2 "Falko Peters @informatikr": - scrypt From acb3d0767f99dfaeb754b5e816782098494a578e Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 2 Dec 2019 09:42:46 +0100 Subject: [PATCH 0985/2682] Move remaining packages from ghc failures section --- build-constraints.yaml | 794 ++++++++++++++--------------------------- 1 file changed, 264 insertions(+), 530 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4891f8ff..d4a3807d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -39,10 +39,10 @@ packages: - ENIG "Chris Penner @ChrisPenner": - - lens-regex-pcre + - lens-regex-pcre < 0 # via pcre-heavy "Emily Pillmore @topos": - - lens-process + - lens-process < 0 # via lens-4.18.1 - microlens-process - nonempty-vector @@ -66,8 +66,8 @@ packages: "Sandy Maguire @isovector": - polysemy - - polysemy-plugin - - polysemy-zoo + - polysemy-plugin < 0 # via polysemy + - polysemy-zoo < 0 # via hedis - ecstasy - interpolatedstring-qq2 < 0 # via template-haskell-2.15.0.0 - prospect @@ -79,7 +79,7 @@ packages: - loopbreaker "William Yao @williamyaoh": - - string-interpolate + - string-interpolate < 0 # via interpolatedstring-perl6 "Roel van Dijk @roelvandijk": - terminal-progress-bar @@ -95,7 +95,7 @@ packages: - skip-var "Dzianis Kabanau @kobargh": - - template-toolkit + - template-toolkit < 0 # via regex-pcre-builtin "Christopher Davenport @ChristopherDavenport": - nonemptymap @@ -106,7 +106,7 @@ packages: "Edward Wastell @edwardwas": - TotalMap < 0 # via base-4.13.0.0 - - sized-grid + - sized-grid < 0 # via base-4.13.0.0 "Antonio Alonso Dominguez @alonsodomin": - hschema < 0 # via natural-transformation @@ -121,13 +121,13 @@ packages: - PyF "Erik Schnetter @eschnett": - - mpi-hs + - mpi-hs < 0 # via store "Yang Bo @Atry": - control-dsl < 0 # via doctest-discover "Laurent P. René de Cotret @LaurentRDC": - - pandoc-pyplot + - pandoc-pyplot < 0 # via pandoc "Andrew Newman @andrewfnewman": - geojson @@ -146,7 +146,7 @@ packages: "Scott N. Walck @walck": - cyclotomic < 0 # via base-4.13.0.0 - - learn-physics + - learn-physics < 0 # via base-4.13.0.0 - TypeCompose # @ghorn @@ -255,7 +255,7 @@ packages: - Hoed < 0 # via regex-tdfa-text "Agustin Camino @acamino": - - state-codes + - state-codes < 0 # via shakespeare "Sebastian Mihai Ardelean @ardeleanasm": - qchas @@ -302,15 +302,15 @@ packages: "Roman Gonzalez @roman": - componentm < 0 # transitive compilation failure - componentm-devel < 0 # transitive compilation failure - - teardown + - teardown < 0 # compilation failure - etc - capataz < 0 # transitive compilation failure "Richard Cook @rcook": - hidden-char < 0 # via base-4.13.0.0 - - oset + - oset < 0 # via base-4.13.0.0 - req-url-extra < 0 # req < 2.1.0 - - sexpr-parser + - sexpr-parser < 0 # via base-4.13.0.0 "Vanessa McHale @vmchale": - tibetan-utils < 0 @@ -357,16 +357,16 @@ packages: - lazyio - markov-chain - midi - - midi-music-box + - midi-music-box < 0 # via diagrams-lib - mbox-utility - - med-module + - med-module < 0 # compilation failure - monoid-transformer - non-empty - non-negative - numeric-prelude - pathtype - pooled-io - - probability + - probability < 0 # MonadFail - quickcheck-transformer - sample-frame - sample-frame-np @@ -401,11 +401,11 @@ packages: - netlib-comfort-array - blas-comfort-array - lapack-comfort-array - - lapack + - lapack < 0 # via hyper - hmm-lapack < 0 # via lapack - - magico - - resistor-cube - - linear-circuit + - magico < 0 # via lapack + - resistor-cube < 0 # via lapack + - linear-circuit < 0 # via lapack # Not a maintainer - cabal-plan - topograph @@ -421,22 +421,22 @@ packages: "Nikita Tchayka @nickseagull": - ramus - - require - - tintin + - require < 0 # via universum + - tintin < 0 # via universum - aws-lambda-haskell-runtime "Simon Jakobi @sjakobi": - path - present < 0 # MonadFail - - threepenny-gui - - snap-server + - threepenny-gui < 0 # via base-4.13.0.0 + - snap-server < 0 # via base-4.13.0.0 - newtype-generics - bsb-http-chunked - coercible-utils - hspec-parsec "Joe M @joe9": - - logger-thread + - logger-thread < 0 # via protolude - text-generic-pretty < 0 # GHC 8.4 via ixset-typed "Li-yao Xia @Lysxia": @@ -451,7 +451,7 @@ packages: "Tobias Dammers @tdammers": - ginger < 0 # via regex-tdfa-1.3.0 - - yeshql + - yeshql < 0 # via yeshql-hdbc "Yair Chuchem @yairchu": - generic-constraints @@ -464,21 +464,21 @@ packages: "Marco Zocca @ocramz": - sparse-linear-algebra - matrix-market-attoparsec - - mwc-probability-transition - - network-multicast + - mwc-probability-transition < 0 # via logging-effect + - network-multicast < 0 # via network-bsd - xeno - - plot-light + - plot-light < 0 # transitive compilation failure - datasets < 0 # via req - lucid-extras - rigel-viz "Joseph Canero @caneroj1": - - sqlite-simple-errors + - sqlite-simple-errors < 0 # via text-1.2.4.0 - median-stream - stm-supply < 0 # GHC 8.4 via Unique - filter-logger < 0 # via scotty & wai-logger - tile - - mbtiles + - mbtiles < 0 # via sqlite-simple "James M.C. Haver II @mchaver": - quickcheck-arbitrary-adt @@ -489,18 +489,18 @@ packages: - if - tcp-streams < 0 # via test-framework - tcp-streams-openssl < 0 # via HsOpenSSL-x509-system - - wire-streams + - wire-streams < 0 # via io-streams - binary-parsers - binary-ieee754 - word24 - - mysql-haskell + - mysql-haskell < 0 # via memory-0.15.0 - mysql-haskell-openssl < 0 - data-has - unboxed-ref "Harendra Kumar @harendra-kumar": - bench-show < 0 # via optparse-applicative-0.15.1.0 - - monad-recorder + - monad-recorder < 0 # compilation failure - packcheck - streamly - unicode-transforms @@ -529,15 +529,15 @@ packages: "Dmitry Bogatov @iu-guest": - once - - mbug + - mbug < 0 # via http-client-0.6.1 "David Johnson @dmjio": - miso < 0 # via servant - envy - - s3-signer + - s3-signer < 0 # via http-types # - google-translate # servant 0.12 # - hackernews # servant 0.12 - - ses-html + - ses-html < 0 # via http-streams # - stripe-haskell # free 5 # - stripe-http-streams # free 5 - stripe-core < 0 # via aeson-1.3.1.0 @@ -566,7 +566,7 @@ packages: - persistent-template - persistent-test # https://github.com/commercialhaskell/stackage/pull/4492 # - stackage-curator # http-conduit 2.3 via amazonka - - store + - store < 0 # via store-core - wai-extra - wai-websockets - warp-tls @@ -576,8 +576,8 @@ packages: - yesod-auth - authenticate-oauth - yesod-bin - - yesod-eventsource - - yesod-gitrepo + - yesod-eventsource < 0 # via yesod-core + - yesod-gitrepo < 0 # via yesod-core - yesod-newsfeed - yesod-sitemap - yesod-static @@ -591,7 +591,7 @@ packages: - monad-unlift - monad-unlift-ref - yaml - - servius + - servius < 0 # via wai-app-static - cryptonite-conduit - streaming-commons @@ -615,7 +615,7 @@ packages: - th-lift - quickcheck-assertions - - wai-middleware-crowd + - wai-middleware-crowd < 0 # via optparse-applicative-0.15.1.0 - monad-logger-json - safe-exceptions - fsnotify-conduit @@ -638,14 +638,14 @@ packages: - time-manager - pantry < 0 # via cryptonite-conduit & hackage-security & hpack & http-download & persistent & persistent-sqlite & persistent-template & rio-orphans & rio-prettyprint & tar-conduit & th-utilities - - mega-sdist + - mega-sdist < 0 # via pantry - http-download - hi-file-parser - rio-prettyprint "Omari Norman @massysett": - rainbow - - rainbox + - rainbox < 0 # via lens-simple - multiarg - Earley - ofx @@ -697,7 +697,7 @@ packages: - mandrill < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build "Jon Schoning @jonschoning": - - pinboard + - pinboard < 0 # via time-1.9.3 - swagger-petstore < 0 # via katip "Jasper Van der Jeugt @jaspervdj": @@ -749,7 +749,7 @@ packages: - HTF < 0 # via haskell-src - xmlgen - stm-stats < 0 - - large-hashable + - large-hashable < 0 # compilation failure "Bart Massey @BartMassey": - parseargs @@ -782,7 +782,7 @@ packages: - tls - tls-debug - vhd < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build - - xenstore + - xenstore < 0 # sClose not in scope "Chris Done @chrisdone": - labels @@ -936,14 +936,14 @@ packages: - SVGFonts < 0 # via diagrams-core - haxr < 0 # GHC 8.4 via HaXml - MonadRandom - - monoid-extras + - monoid-extras < 0 # via base-4.13.0.0 "Vincent Berthoux @Twinside": - JuicyPixels - FontyFruity < 0 # MonadFail - Rasterific < 0 # via vector-algorithms - svg-tree - - rasterific-svg + - rasterific-svg < 0 # via Rasterific - asciidiagram < 0 # via pandoc-types "Patrick Brisbin @pbrisbin": @@ -964,7 +964,7 @@ packages: # - serversession-frontend-yesod # conduit 1.3, yesod 1.6 # - thumbnail-plus # https://github.com/prowdsponsor/thumbnail-plus/issues/5 - yesod-auth-fb - - yesod-fb + - yesod-fb < 0 # via yesod-core "Alexander Altman @pthariensflame": # Maintaining on behalf of @roelvandijk: @@ -983,9 +983,9 @@ packages: - accelerate-llvm-native < 0 # GHC 8.4 via base-4.11.0.0 - accelerate-llvm-ptx < 0 # GHC 8.4 via base-4.11.0.0 - accelerate-examples < 0 # GHC 8.4 via accelerate - - repa - - repa-algorithms - - repa-io + - repa < 0 # via base-4.13.0.0 + - repa-algorithms < 0 # via base-4.13.0.0 + - repa-io < 0 # via base-4.13.0.0 - gloss - gloss-rendering - gloss-algorithms < 0 # via base-4.13.0.0 @@ -1001,7 +1001,7 @@ packages: - cublas < 0 # via cuda - cusparse < 0 # via cuda - cusolver < 0 #4029 - - nvvm + - nvvm < 0 # via cuda - wide-word # @erikd "Dan Burton @DanBurton": @@ -1056,8 +1056,8 @@ packages: - blaze-colonnade < 0 # via profunctors-5.5 "Chris Allen @bitemyapp": - - machines-directory - - machines-io + - machines-directory < 0 # via machines-0.7 + - machines-io < 0 # via machines-0.7 - bloodhound < 0 # via aeson-1.3.1.0 "Adam Bergmark @bergmark": @@ -1102,7 +1102,7 @@ packages: - groundhog-th < 0 # via groundhog "Janne Hellsten @nurpax": - - sqlite-simple + - sqlite-simple < 0 # via base-4.13.0.0 "Michal J. Gajda @mgajda": - iterable @@ -1170,8 +1170,8 @@ packages: - cabal-debian < 0 # via debian "Piyush P Kurur @piyush-kurur": - - raaz - - naqsha + - raaz < 0 # via base-4.13.0.0 + - naqsha < 0 # via base-4.13.0.0 "Joey Hess @joeyh": # - git-annex # Depends on many packages not tracked by Stackage @@ -1185,8 +1185,8 @@ packages: - kanji - microlens-aeson - pipes-random - - servant-xml - - streaming-attoparsec + - servant-xml < 0 # via http-media + - streaming-attoparsec < 0 # via streaming - versions # - vectortiles < 0 @@ -1279,9 +1279,9 @@ packages: "Paul Rouse @paul-rouse": - mysql - mysql-simple - - sphinx + - sphinx < 0 # Could not find module Network - xmlhtml < 0 # GHC 8.4 via hspec-2.5.0 - - yesod-auth-hashdb + - yesod-auth-hashdb < 0 # via yesod-test "Toralf Wittner @twittner": - bytestring-conversion @@ -1291,7 +1291,7 @@ packages: - redis-io < 0 # GHC 8.4 via tinylog - swagger - tinylog - - wai-predicates + - wai-predicates < 0 # MonadFail - wai-routing < 0 # DependencyFailed (PackageName "wai-route") - zeromq4-haskell @@ -1380,13 +1380,13 @@ packages: - reroute < 0 # build faiulre with GHC 8.4 https://github.com/agrafix/Spock/issues/140 - users # - users-persistent # persistent 2.8 - - users-postgresql-simple - - users-test + - users-postgresql-simple < 0 # via postgresql-simple + - users-test < 0 # via users # - validate-input # https://github.com/agrafix/validate-input/issues/3 # - ignore # https://github.com/agrafix/ignore/issues/5 - blaze-bootstrap < 0 # via blaze-html - dataurl - - psql-helpers + - psql-helpers < 0 # via postgresql-simple - superbuffer - timespan < 0 # build failure with GHC 8.4 - distance < 0 # build failure with GHC 8.4 @@ -1416,7 +1416,7 @@ packages: - product-profunctors "Samplecount stefan@samplecount.com @kaoskorobase": - - shake-language-c + - shake-language-c < 0 # via fclabels "David Turner @davecturner": - alarmclock < 0 # via base-4.13.0.0 @@ -1459,15 +1459,15 @@ packages: - hsdev < 0 # via ghc-boot-8.8.1 "Aleksey Kliger @lambdageek": - - unbound-generics + - unbound-generics < 0 # MonadFail - indentation-core < 0 # via base-4.13.0.0 - indentation-parsec < 0 # via base-4.13.0.0 - clang-compilation-database < 0 "Alois Cochard @aloiscochard": - - machines-binary + - machines-binary < 0 # via machines-0.7 # on behalf of Bryan O'Sullivan @bos: - - wreq + - wreq < 0 # via authenticate-oauth "Andraz Bajt @edofic": # - effect-handlers # free 5 @@ -1524,18 +1524,18 @@ packages: - di-monad - exinst < 0 # compilation failure - flay < 0 - - network-simple - - network-simple-tls + - network-simple < 0 # via network-bsd + - network-simple-tls < 0 # via network-simple - pipes-aeson - pipes-attoparsec - pipes-binary - - pipes-network - - pipes-network-tls + - pipes-network < 0 # via network-simple + - pipes-network-tls < 0 # via network-simple-tls - safe-money - vector-bytes-instances - - xmlbf-xeno + - xmlbf-xeno < 0 # via xmlbf - xmlbf-xmlhtml < 0 # GHC 8.4 via xmlhtml via hspec-2.5.0 - - xmlbf + - xmlbf < 0 # MonadFail "Tomas Carnecky @wereHamster": - avers @@ -1552,15 +1552,15 @@ packages: - mole < 0 # GHC 8.4 via base-4.11.0.0 - publicsuffix - rethinkdb-client-driver - - snap-blaze + - snap-blaze < 0 # via snap-core "Alexandr Kurilin @alex_kurilin": - bcrypt "Jeffrey Rosenbluth @jeffreyrosenbluth": - - palette + - palette < 0 # via base-4.13.0.0 - diagrams-canvas - - svg-builder + - svg-builder < 0 # via base-4.13.0.0 "Gabríel Arthúr Pétursson @polarina": - sdl2 @@ -1575,19 +1575,19 @@ packages: - bitcoin-tx < 0 # via hexstring - bitcoin-types < 0 # via base58string & hexstring - hexstring - - network-attoparsec - - network-anonymous-i2p + - network-attoparsec < 0 # via network-simple + - network-anonymous-i2p < 0 # via network-simple - network-anonymous-tor < 0 # build failure w/ socks 0.6, see https://github.com/solatis/haskell-network-anonymous-tor/issues/14 "Timothy Jones @zmthy": - http-media "Greg V @myfreeweb": - - pcre-heavy + - pcre-heavy < 0 # via string-conversions - http-link-header - microformats2-parser < 0 # via blaze-html - hspec-expectations-pretty-diff - - wai-cli + - wai-cli < 0 # via network-3.1.1.0 - magicbane < 0 # via ekg-wai "Francesco Mazzoli @bitonic": @@ -1607,7 +1607,7 @@ packages: "Abhinav Gupta @abhinav": - farmhash - pinch < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build - - sandman + - sandman < 0 # Cabal 3 "Adam C. Foltzer @acfoltzer": - gitrev @@ -1886,8 +1886,8 @@ packages: - gloss < 0 # @benl23x5 # via base-4.13.0.0 - gloss-rendering < 0 # @benl23x5 # via base-4.13.0.0 - gpolyline # @fegu - - postgresql-simple-migration # @ameingast - - statestack # @diagrams + - postgresql-simple-migration < 0 # via time-1.9.3 # @ameingast + - statestack < 0 # via base-4.13.0.0 # @diagrams "Marios Titas @redneb": - HsOpenSSL-x509-system < 0 # via HsOpenSSL @@ -1902,8 +1902,8 @@ packages: "Will Coster @fimad": - prometheus-client - prometheus-metrics-ghc < 0 # Build failure: https://github.com/fimad/prometheus-haskell/issues/39 - - scalpel - - scalpel-core + - scalpel < 0 # via scalpel-core + - scalpel-core < 0 # compilation error - wai-middleware-prometheus < 0 # GHC 8.4 via prometheus-client "William Casarin @jb55": @@ -1934,9 +1934,9 @@ packages: "Mitchell Rosen @mitchellwrosen": - safe-exceptions-checked - tasty-hspec - - termbox - - timer-wheel - - wai-middleware-travisci + - termbox < 0 # via base-4.13.0.0 + - timer-wheel < 0 # via base-4.13.0.0 + - wai-middleware-travisci < 0 # via base-4.13.0.0 "Christiaan Baaij @christiaanb": - ghc-tcplugins-extra @@ -1982,11 +1982,11 @@ packages: - unit-constraint - unfoldable-restricted < 0 # via unfoldable - urlpath - - wai-transformers + - wai-transformers < 0 # via wai-websockets - websockets-rpc < 0 # websockets-simple - websockets-simple < 0 # BuildFailureException with GHC 8.4 - webpage < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build - - ws + - ws < 0 # via attoparsec-uri & wuss "Fumiaki Kinoshita @fumieval": - boundingboxes @@ -1995,9 +1995,9 @@ packages: - extensible < 0 # compilation failure - monad-skeleton - objective < 0 - - winery - - witherable - - xml-lens + - winery < 0 # via fast-builder + - witherable < 0 # via monoidal-containers + - xml-lens < 0 # via case-insensitive-1.2.1.0 "Peter Harpending @pharpend": - editor-open @@ -2010,7 +2010,7 @@ packages: "Michael Thompson @michaelt": - pipes-text < 0 # GHC 8.4 via streaming-commons-0.2.0.0 - - lens-simple + - lens-simple < 0 # via lens-family-2.0.0 - lens-family-core - lens-family @@ -2027,14 +2027,14 @@ packages: - hmatrix-backprop < 0 # via backprop - hmatrix-vector-sized - lens-typelevel < 0 # GHC 8.8 via ghc-typelits-presburger (konn/equational-reasoning-in-haskell#4) - - list-witnesses + - list-witnesses < 0 # via vinyl - nonempty-containers - one-liner-instances - prompt - - servant-cli + - servant-cli < 0 # via servant-server - tagged-binary # - type-combinators-singletons # GHC 8.4 via type-combinators - - typelits-witnesses + - typelits-witnesses < 0 # via dependent-sum - uncertain - vector-sized @@ -2085,7 +2085,7 @@ packages: - bencode < 0 # via base-4.13.0.0 - hsebaysdk - dockerfile - - wai-middleware-throttle + - wai-middleware-throttle < 0 # via token-bucket # - yesod-auth-basic # https://github.com/creichert/yesod-auth-basic/issues/2 "Hirotomo Moriwaki @philopon": @@ -2112,11 +2112,11 @@ packages: - opml-conduit < 0 # refined - rss-conduit < 0 - timerep - - xml-conduit-parse + - xml-conduit-parse < 0 # compilation error "Daniel Cartwright @chessai": - streaming - - streaming-bytestring + - streaming-bytestring < 0 # via streaming - country < 0 # via base-4.13.0.0 - semirings - torsor @@ -2137,10 +2137,10 @@ packages: - hsyslog-udp < 0 - iso3166-country-codes - iso639 - - monoidal-containers + - monoidal-containers < 0 # via base-4.13.0.0 - murmur-hash - - protocol-buffers - - protocol-buffers-descriptor + - protocol-buffers < 0 # MonadFail + - protocol-buffers-descriptor < 0 # via protocol-buffers - regex-pcre - string-class - string-combinators @@ -2170,10 +2170,10 @@ packages: "Vladislav Zavialov @int-index": - transformers-lift < 0 # transformers https://github.com/commercialhaskell/stackage/issues/4408 - - union - - named + - union < 0 # via base-4.13.0.0 + - named < 0 # via base-4.13.0.0 - inj - - shower + - shower < 0 # via base-4.13.0.0 "Stack Builders stackage@stackbuilders.com @stackbuilders": - atomic-write @@ -2251,19 +2251,19 @@ packages: - type-equality "Kirill Zaborsky @qrilka": - - xlsx + - xlsx < 0 # MonadFail "Matt Parsons @parsonsmatt": - monad-logger-prefix - - monad-metrics + - monad-metrics < 0 # via ekg-core # - ekg-cloudwatch # http-conduit 2.3 via amazonka - smtp-mail < 0 # https://github.com/jhickner/smtp-mail/issues/24#issuecomment-499601949 - - liboath-hs + - liboath-hs < 0 # via inline-c-0.8.0.1 - servant-quickcheck < 0 - esqueleto < 0 # via time-1.9.3 - - persistent-typed-db + - persistent-typed-db < 0 # via persistent - persistent-qq - - persistent-pagination + - persistent-pagination < 0 # via persistent "Matthew Pickering @mpickering": - refact @@ -2296,6 +2296,7 @@ packages: - microlens-th - microlens-ghc - microlens-contra + - shortcut-links < 0 # MonadFail - cheapskate-highlight < 0 # via blaze-html - cheapskate-lucid < 0 # via blaze-html - cmark-lucid < 0 # GHC 8.4 via cmark @@ -2319,7 +2320,7 @@ packages: - iso8601-time - loop - netpbm - - network-house + - network-house < 0 # MonadFail - reinterpret-cast - shared-memory - posix-paths @@ -2357,17 +2358,17 @@ packages: - hailgun < 0 # via http-client-0.6.1 - natural-transformation - password - - password-instances + - password-instances < 0 # via persistent - pretty-simple - print-console-colors - read-env-var - - servant-checked-exceptions - - servant-checked-exceptions-core + - servant-checked-exceptions < 0 # via servant-server + - servant-checked-exceptions-core < 0 # via http-media - servant-rawm < 0 # via http-media - servant-static-th < 0 # via http-media - - termonad + - termonad < 0 # via gi-vte - world-peace - - xml-html-qq + - xml-html-qq < 0 # via html-conduit - xml-indexed-cursor "Franklin Chen @FranklinChen": @@ -2393,7 +2394,7 @@ packages: - yi-keymap-cua < 0 # GHC 8.4 via yi-core - yi-keymap-emacs < 0 # GHC 8.4 via yi-core - yi-keymap-vim < 0 # GHC 8.4 via yi-core - - yi-language + - yi-language < 0 # via regex-base-0.94.0.0 - yi-misc-modes < 0 # GHC 8.4 via yi-core - yi-mode-haskell < 0 # GHC 8.4 via yi-core - yi-mode-javascript < 0 # GHC 8.4 via yi-core @@ -2417,13 +2418,13 @@ packages: "Gregory Collins @gregorycollins": - hashtables - io-streams - - openssl-streams + - openssl-streams < 0 # via test-framework-hunit "Andrew Cowie @afcowie": - chronologique - http-common - http-streams < 0 # via io-streams & openssl-streams - - locators + - locators < 0 # via cryptohash - core-data - core-program - core-text @@ -2434,7 +2435,7 @@ packages: "Ivan Miljenovic @ivan-m": - fgl - graphviz < 0 # via polyparse-1.13 - - wl-pprint-text + - wl-pprint-text < 0 # via base-compat-0.11.0 - servant-pandoc < 0 # blocks http-media https://github.com/commercialhaskell/stackage/issues/4483 "Sharif Olorin @olorin": @@ -2463,19 +2464,19 @@ packages: - MonadPrompt - nix-paths - parsec-class - - prim-uniq + - prim-uniq < 0 # via dependent-sum - random-fu < 0 # via random-source - - random-source - - rvar + - random-source < 0 # via flexible-defaults + - rvar < 0 # via random-source - SafeSemaphore - - streamproc + - streamproc < 0 # MonadFail - stringsearch # for cgi - titlecase - X11 - xmonad "Mark Fine @markfine": - - postgresql-schema + - postgresql-schema < 0 # via postgresql-simple - sbp "Jinjing Wang @nfjinjing": @@ -2537,7 +2538,7 @@ packages: "Emmanuel Touzery @emmanueltouzery": - app-settings - hsexif < 0 # via time-1.9.3 - - slack-web + - slack-web < 0 # via base-4.13.0.0 "Nickolay Kudasov @fizruk": - http-api-data @@ -2621,7 +2622,7 @@ packages: - hsndfile-vector < 0 # build failure with GHC 8.4 "yihuang @yihuang": - - tagstream-conduit + - tagstream-conduit < 0 # MonadFail "Johannes Hilden @laserpants": - hashids @@ -2655,7 +2656,7 @@ packages: "Mihaly Barasz klao@nilcons.com @klao": - lens-datetime - - tz + - tz < 0 # via time-1.9.3 - tzdata "Timothy Klim @TimothyKlim": @@ -2663,7 +2664,7 @@ packages: "David Luposchainsky @quchen": - pgp-wordlist - - show-prettyprint + - show-prettyprint < 0 # via trifecta - prettyprinter - prettyprinter-ansi-terminal - prettyprinter-compat-wl-pprint @@ -2685,12 +2686,12 @@ packages: # - reform-hsp # haskell-src-exts via hsx2hs - userid < 0 # GHC 8.4 via base-4.11.0.0 - web-plugins < 0 - - web-routes + - web-routes < 0 # via http-types - web-routes-boomerang < 0 # GHC 8.4 via boomerang - web-routes-happstack < 0 # GHC 8.4 via happstack-server - - web-routes-hsp + - web-routes-hsp < 0 # via web-routes - web-routes-th < 0 # GHC 8.4 via template-haskell-2.13.0.0 - - web-routes-wai + - web-routes-wai < 0 # via web-routes # - hsx2hs # haskell-src-exts "Pedro Tacla Yamada @yamadapc": @@ -2720,9 +2721,9 @@ packages: - yes-precure5-command - th-strict-compat - main-tester - - skews + - skews < 0 # via websockets - wss-client < 0 - - network-messagepack-rpc + - network-messagepack-rpc < 0 # via data-msgpack - network-messagepack-rpc-websocket < 0 - unicode-show - deriveJsonNoPrefix @@ -2730,7 +2731,7 @@ packages: "Hans-Christian Esperer @hce": # avwx # https://github.com/hce/avwx/issues/2 - saltine - - wai-session-postgresql + - wai-session-postgresql < 0 # via wai-session "Haisheng Wu @freizl": - hoauth2 @@ -2742,9 +2743,9 @@ packages: - dawg-ord < 0 "Amit Levy @alevy": - - simple + - simple < 0 # https://github.com/alevy/simple/issues/23 - simple-templates - - simple-session + - simple-session < 0 - postgresql-orm "Sergey Astanin @astanin": @@ -2774,7 +2775,7 @@ packages: "Justus Adam @JustusAdam": # - marvin # https://github.com/JustusAdam/marvin/issues/22 - marvin-interpolate < 0 - - mustache + - mustache < 0 # Lift Text - exit-codes >= 1.0.0 "Cindy Wang @CindyLinz": @@ -2783,19 +2784,20 @@ packages: "Jean-Philippe Bernardy @jyp": - polynomials-bernstein - - typography-geometry + - typography-geometry < 0 # compilation failure "John MacFarlane @jgm": - hsb2hs < 0 # build failure with GHC 8.4 - cmark - - texmath + - texmath < 0 # via pandoc-types - highlighting-kate < 0 # via blaze-html - skylighting - pandoc-types < 1.19 || > 1.19 # Accidental upload, see: https://github.com/fpco/stackage/issues/2223 + - pandoc-types < 0 # via test-framework-quickcheck2 - zip-archive - doctemplates < 0 # via doclayout - - pandoc - - pandoc-citeproc + - pandoc < 0 # via HsYAML-0.2.0.0 + - pandoc-citeproc < 0 # via pandoc-types - ipynb < 0 # via aeson-diff "Karun Ramakrishnan @karun012": @@ -2821,7 +2823,7 @@ packages: - free-vl "Kazuo Koga @kkazuo": - - xlsx-tabular + - xlsx-tabular < 0 # via xlsx "Mikhail Glushenkov @23Skidoo": - Cabal @@ -2839,9 +2841,9 @@ packages: - th-data-compat - th-reify-compat - relational-query - - relational-query-HDBC - - persistable-types-HDBC-pg - - relational-record + - relational-query-HDBC < 0 # via HDBC + - persistable-types-HDBC-pg < 0 # via HDBC + - relational-record < 0 # via relational-query-HDBC - text-ldap - debian-build - aeson-generic-compat @@ -2917,7 +2919,7 @@ packages: - hw-succinct - hw-streams - hw-xml - - pure-zlib + - pure-zlib < 0 # via base-compat-0.11.0 - antiope-core < 0 # via aeson-lens - antiope-dynamodb < 0 # via antiope-core - antiope-messages < 0 # via antiope-core @@ -2927,25 +2929,25 @@ packages: "George Wilson @gwils": - hedgehog-fn - - sv - - sv-cassava - - sv-core + - sv < 0 # via base-4.13.0.0 + - sv-cassava < 0 # via sv-core + - sv-core < 0 # via base-4.13.0.0 - tasty-hedgehog "Ismail Mustafa @ismailmustafa": - handwriting < 0 "Stephen Diehl @sdiehl": - - llvm-hs-pretty + - llvm-hs-pretty < 0 # compilation failure - protolude - repline - picosat < 0 - aos-signature < 0 # via protolude # https://github.com/commercialhaskell/stackage/issues/4682 - bulletproofs < 0 # via protolude - - pedersen-commitment - - merkle-tree - - oblivious-transfer + - pedersen-commitment < 0 # via protolude + - merkle-tree < 0 # via protolude + - oblivious-transfer < 0 # via protolude - pairing < 0 # #4758 - libraft < 0 # via concurrency & ejafu & kg & kg-core & onad-metrics & ostgresql-simple-url & rotolude & uickcheck-state-machine & asty-dejafu - galois-field < 0 # via protolude & wl-pprint-text @@ -2954,7 +2956,7 @@ packages: - api-field-json-th "Patrick Thomson @helium": - - postgresql-transactional + - postgresql-transactional < 0 # via postgresql-simple "Tom Murphy ": - gingersnap < 0 # via snap-core @@ -2970,9 +2972,9 @@ packages: - fold-debounce < 0 # via time-1.9.3 - fold-debounce-conduit < 0 # via base-4.13.0.0 - stopwatch - - wikicfp-scraper - - wild-bind - - wild-bind-x11 + - wikicfp-scraper < 0 # via scalpel-core + - wild-bind < 0 # via base-4.13.0.0 + - wild-bind-x11 < 0 # via base-4.13.0.0 - greskell < 0 # via base-4.13.0.0 - greskell-core < 0 # via base-4.13.0.0 - greskell-websocket < 0 # via base-4.13.0.0 @@ -3078,10 +3080,10 @@ packages: "Ashley Yakeley @AshleyYakeley": - countable - witness - - open-witness + - open-witness < 0 # MonadFail "Victor Denisov @VictorDenisov": - - mongoDB + - mongoDB < 0 # via network-3.1.1.0 - bson < 0 # via network-3.1.1.0 "Alexis King @lexi-lambda": @@ -3105,7 +3107,7 @@ packages: - aern2-real < 0 "Bartosz Nitka @niteria": - - oeis + - oeis < 0 # via test-framework "Gergely Patai @cobbpg": - elerea @@ -3171,8 +3173,8 @@ packages: - rdf "Michael Swan @michael-swan": - - pcf-font - - pcf-font-embed + - pcf-font < 0 # MonadFail + - pcf-font-embed < 0 # via pcf-font "Iago Abal ": - bv @@ -3229,10 +3231,10 @@ packages: - next-ref < 0 - threads-extras < 0 - postgres-options - - tmp-postgres - - pg-transact + - tmp-postgres < 0.3 # https://github.com/commercialhaskell/stackage/issues/4790 + - pg-transact < 0 # via tmp-postgres - hspec-pg-transact < 0 # via tmp-postgres - - postgresql-simple-queue + - postgresql-simple-queue < 0 # via pg-transact - port-utils "Jonathan Knowles @jonathanknowles": @@ -3261,13 +3263,13 @@ packages: - bookkeeping < 0 # GHC 8.4 BuildFailureException Process exited with ExitFailure 1: ./Setup build - ochintin-daicho < 0 # GHC 8.4 DependencyFailed (PackageName "bookkeeping") - transaction - - tonaparser + - tonaparser < 0 # via envy - tonalude - tonatona - - tonatona-logger - - tonatona-servant - - tonatona-persistent-sqlite - - tonatona-persistent-postgresql + - tonatona-logger < 0 # via tonaparser + - tonatona-servant < 0 # via servant-server + - tonatona-persistent-sqlite < 0 # via persistent + - tonatona-persistent-postgresql < 0 # via persistent "Marcin Tolysz @tolysz": - rawstring-qm @@ -3275,9 +3277,9 @@ packages: "Daniel YU ": - salak - salak-yaml - - salak-toml + - salak-toml < 0 # via tomland - tensors - - menshen + - menshen < 0 # via regex-tdfa-1.3.0 - crc32c - boots @@ -3286,7 +3288,7 @@ packages: - inliterate < 0 # via blaze-html & plotlyhs "Hyunje Jun @noraesae": - - line + - line < 0 # via scotty "Hannes Saffrich @m0rphism": [] @@ -3296,7 +3298,7 @@ packages: - wai-middleware-auth < 0 # via hoauth2 # - hip # lens 4.16 via diagrams/chart - massiv - - massiv-io + - massiv-io < 0 # via netpbm - massiv-test - scheduler @@ -3308,7 +3310,7 @@ packages: "Boldizsár Németh @nboldi": - instance-control - - references + - references < 0 - classyplate < 0 # via base-4.13.0.0 - haskell-tools-ast < 0 - haskell-tools-backend-ghc < 0 @@ -3321,7 +3323,7 @@ packages: - haskell-tools-debug < 0 "David Fisher @ddfisher": - - socket-activation + - socket-activation < 0 # via network-3.1.1.0 "aiya000 @aiya000": - throwable-exceptions @@ -3332,7 +3334,7 @@ packages: - viewprof < 0 # via base-4.13.0.0 "Dylan Simon @dylex": - - postgresql-typed + - postgresql-typed < 0 # via HDBC - invertible - ztail < 0 # via time-1.9.3 - zip-stream @@ -3350,9 +3352,9 @@ packages: - javascript-extras < 0 - lens-misc - l10n - - pipes-category - - pipes-fluid - - pipes-misc + - pipes-category < 0 # via pipes-extras + - pipes-fluid < 0 # via these + - pipes-misc < 0 # via pipes-category - stm-extras "Siniša Biđin @sbidin": @@ -3361,15 +3363,15 @@ packages: - sdl2-gfx "Aditya Manthramurthy @donatello": - - minio-hs + - minio-hs < 0 # via protolude "ncaq @ncaq": - debug-trace-var # - haskell-import-graph # fgl via graphviz - string-transform - uniq-deep - - yesod-form-bootstrap4 - - yesod-recaptcha2 + - yesod-form-bootstrap4 < 0 # via yesod-core + - yesod-recaptcha2 < 0 # via yesod-core "Andrei Barbu @abarbu": - nondeterminism @@ -3393,7 +3395,7 @@ packages: "Pavel Yakovlev @zmactep": - hasbolt < 0 # via hex - uniprot-kb - - mmtf + - mmtf < 0 # via data-msgpack "Christopher A. Gorski @cgorski": - general-games @@ -3412,17 +3414,17 @@ packages: "Chris Dornan @cdornan": - sort - - regex - - regex-pcre-text - - regex-with-pcre + - regex < 0 # hashable-1.3.0 + - regex-pcre-text < 0 # via regex-base-0.94.0.0 + - regex-with-pcre < 0 # via regex - possibly - enum-text < 0 # via fmt - - rg + - rg < 0 # via fmt - columnar < 0 # via fmt - enum-text-rio < 0 # via fmt - fmt-for-rio < 0 # via enum-text-rio - no-value - - optparse-enum + - optparse-enum < 0 # via fmt "Elliot Cameron @3noch": [] @@ -3433,7 +3435,7 @@ packages: "Hardy Jones @joneshf": # - katip-rollbar # async 2.2 - rollbar-hs < 0 - - servant-ruby + - servant-ruby < 0 # via servant-foreign - wai-middleware-rollbar < 0 # aeson "Andrey Mokhov @snowleopard": @@ -3481,8 +3483,8 @@ packages: - katip-scalyr-scribe < 0 # via katip "Sebastian Witte @saep": - - nvim-hs - - nvim-hs-contrib + - nvim-hs < 0 # via hslogger + - nvim-hs-contrib < 0 # via nvim-hs # - nvim-hs-ghcid "Sam Protas @SamProtas": @@ -3492,8 +3494,8 @@ packages: "Anton Ekblad @valderman": - selda - - selda-sqlite - - selda-postgresql + - selda-sqlite < 0 # via selda-0.5.0.0 + - selda-postgresql < 0 # via selda-0.5.0.0 - selda-json "Luis Pedro Coelho @luispedro": @@ -3510,7 +3512,7 @@ packages: # - alerta # servant-client 0.12 "Steven Vandevelde @icidasset": - - shikensu + - shikensu < 0 # via flow "George Pollard @Porges": - email-validate @@ -3536,7 +3538,7 @@ packages: - gdp "Levent Erkok @LeventErkok": - - sbv + - sbv < 0 # MonadFail - crackNum "János Tapolczai @jtapolczai": @@ -3575,14 +3577,14 @@ packages: "Daniel Campoverde @alx741": - currencies - alerts < 0 # via blaze-html - - yesod-alerts + - yesod-alerts < 0 # via yesod-core - graphite < 0 # via graphviz "José Lorenzo Rodríguez @lorenzo": - wrecker < 0 # GHC 8.4 via ansigraph - language-docker < 0 # Data.Text instance of Lift - docker-build-cacher < 0 # GHC 8.4 via turtle - - mysql-haskell-nem + - mysql-haskell-nem < 0 # via io-streams - hadolint < 0 # via ShellCheck "Phil Ruffwind @Rufflewind": @@ -3597,7 +3599,7 @@ packages: "typeable.io ": - dom-parser < 0 # via xml-lens - - xml-isogen + - xml-isogen < 0 # via dom-parser "Jeremy Huffman @jeremyjh": - higher-leveldb @@ -3630,22 +3632,22 @@ packages: - colorize-haskell "Chris Martin @chris-martin": - - loc - - partial-semigroup - - path-text-utf8 + - loc < 0 # via base-4.13.0.0 + - partial-semigroup < 0 # via base-4.13.0.0 + - path-text-utf8 < 0 # via base-4.13.0.0 "Type Classes @argumatronic @chris-martin": - aws-cloudfront-signed-cookies - stripe-concepts - stripe-signature - - stripe-scotty - - stripe-wreq + - stripe-scotty < 0 # via scotty + - stripe-wreq < 0 # via wreq "Viacheslav Lotsmanov @unclechu": - qm-interpolated-string "Douglas Burke @DougBurke": - - swish + - swish < 0 # via base-4.13.0.0 - hvega - ihaskell-hvega < 0 @@ -3664,7 +3666,7 @@ packages: - binary-ext "Bob Long @bobjflong": - - yesod-csp + - yesod-csp < 0 # via yesod-core "Alexander Vershilov @qnikst": - stm-conduit @@ -3740,11 +3742,11 @@ packages: - re2 "Bardur Arantsson @BardurArantsson": - - peregrin + - peregrin < 0 # via postgresql-simple - pg-harness-client - - pg-harness-server + - pg-harness-server < 0 # via scotty - unliftio-pool - - unliftio-streams + - unliftio-streams < 0 # via io-streams "Sebastian Graf @sgraf812": - pomaps < 0 # GHC 8.4 via base-4.11.0.0 @@ -3756,7 +3758,7 @@ packages: "Guru Devanla @gdevanla": - pptable - cassava-records < 0 # MonadFail - - pandoc-markdown-ghci-filter + - pandoc-markdown-ghci-filter < 0 # via pandoc "Lucas David Traverso @ludat": - map-syntax < 0 # GHC 8.4 via base-4.11.0.0 @@ -3779,14 +3781,14 @@ packages: - mixpanel-client < 0 - netrc - pretty-sop - - servant-auth + - servant-auth < 0 # via base-4.13.0.0 - servant-auth-server < 0 # via base-4.13.0.0 - servant-auth-client < 0 # via warp-3.3.2 - - servant-auth-swagger - - servant-auth-docs - - servant-elm - - streaming-wai - - systemd + - servant-auth-swagger < 0 # via base-4.13.0.0 + - servant-auth-docs < 0 # via base-4.13.0.0 + - servant-elm < 0 # via wl-pprint-text + - streaming-wai < 0 # via streaming + - systemd < 0 # socketToFd is ambiguous "Andre Van Der Merwe @andrevdm": - bhoogle < 0 @@ -3799,8 +3801,8 @@ packages: "Dmitry Dzhus @dzhus": - csg < 0 # via QuickCheck https://github.com/commercialhaskell/stackage/issues/4444 - simple-vec3 - - static-text - - th-nowq + - static-text < 0 # via template-haskell-2.15.0.0 + - th-nowq < 0 # via time-1.9.3 "Dan Fithian @dfithian": - oauthenticated @@ -3827,7 +3829,7 @@ packages: - tasty-ant-xml "Eugene Smolanka @esmolanka": - - sexp-grammar + - sexp-grammar < 0 # via prettyprinter-1.3.0 and semigroups-0.19 - invertible-grammar < 0 # via profunctors-5.5 "Maximilian Tagher @MaxGabriel": @@ -3844,7 +3846,7 @@ packages: - closed < 0 # via persistent "Chris Coffey @ChrisCoffey": - - servant-tracing + - servant-tracing < 0 # via servant-server - cuckoo-filter - confcrypt < 0 # via crypto-pubkey-openssh & optparse-applicative-0.15.1.0 @@ -3877,7 +3879,7 @@ packages: - util "Ben Sima @bensima": - - yesod-text-markdown + - yesod-text-markdown < 0 # via persistent "Alexander Krupenkin @akru": - web3 < 0 # via base-4.13.0.0 & cryptonite-0.26 & memory-0.15.0 & microlens-mtl-0.2.0.1 & time-1.9.3 @@ -3931,7 +3933,7 @@ packages: - rfc1751 - murmur3 - nqe - - secp256k1-haskell + - secp256k1-haskell < 0 # via string-conversions - rocksdb-haskell - rocksdb-query - haskoin-core < 0 # via secp256k1-haskell @@ -3942,7 +3944,7 @@ packages: - kazura-queue "Eric Torreborre @etorreborre": - - registry + - registry < 0 # also protolude, semigroups, universum "Ryota Kameoka @ryota-ka": - duration @@ -3970,25 +3972,25 @@ packages: "Pavan Rikhi @prikhi": - hs-php-session - - wordpress-auth - - servant-auth-wordpress + - wordpress-auth < 0 # via http-types + - servant-auth-wordpress < 0 # via servant-server - ca-province-codes - mx-state-codes "David Baynard @dbaynard": - - time-qq # see christian-marie/time-qq#3 - - ucam-webauth - - ucam-webauth-types + - time-qq < 0 # see christian-marie/time-qq#3 + - ucam-webauth < 0 # via base-4.13.0.0 + - ucam-webauth-types < 0 # via base-4.13.0.0 "Erick Gonzalez @codemonkeylabs-de": - eap - failable - - ttl-hashtables - - radius - - structured-cli + - ttl-hashtables < 0 # hashable-1.3.0 + - radius < 0 # via iproute + - structured-cli < 0 # MonadFail "Jan Path @janpath": - - smallcheck-series + - smallcheck-series < 0 # via base-4.13.0.0 "Taisuke Hikawa <23.prime.37@gmail.com> @23prime": - oeis2 @@ -4002,26 +4004,26 @@ packages: - Chart-diagrams < 0 # via diagrams-core & diagrams-lib & diagrams-postscript & diagrams-svg & svg-builder "Juri Chomé @2mol": - - msgpack + - msgpack < 0 # via base-4.13.0.0 # - msgpack-rpc # https://github.com/commercialhaskell/stackage/pull/4471 # - msgpack-idl # https://github.com/commercialhaskell/stackage/pull/4471 - - msgpack-aeson + - msgpack-aeson < 0 # via msgpack - int-cast "Akihito Kirisaki @kirisaki": - caster < 0 # via fast-builder "Felix Paulusma @Vlix": - - safe-json + - safe-json < 0 # via time-1.9.3 "Olle Fredriksson @ollef": - rope-utf16-splay "Venkateswara Rao Mandela @vmandela": - - pandoc-csv2table + - pandoc-csv2table < 0 # via pandoc "Elben Shira @elben": - - pencil + - pencil < 0 # via pandoc "ARATA Mizuki @minoki": - unboxing-vector @@ -4334,7 +4336,7 @@ packages: - polyparse - postgresql-libpq - postgresql-simple - - postgresql-simple-url + - postgresql-simple-url < 0 # via postgresql-simple - pretty-hex - pretty-show - prettyprinter-convert-ansi-wl-pprint @@ -4345,7 +4347,7 @@ packages: - process-extras - product-isomorphic - project-template - - protobuf + - protobuf < 0 # via hex - pureMD5 - quickcheck-instances - quickcheck-io @@ -4358,14 +4360,14 @@ packages: - readable - rebase - recursion-schemes - - regex-applicative-text + - regex-applicative-text < 0 # via regex-applicative - regex-base - regex-compat - regex-pcre - regex-pcre-builtin - regex-posix - regex-tdfa - - regex-tdfa-text + - regex-tdfa-text < 0 # via regex-base-0.94.0.0 - relapse - relational-schemas - rerebase @@ -4394,7 +4396,7 @@ packages: - simple-reflect - simple-sendfile - singleton-bool - - size-based + - size-based < 0 # via template-haskell-2.15.0.0 - skein - skylighting-core - snap-core < 0 # via test-framework @@ -4410,8 +4412,8 @@ packages: - stm-delay - stm-hamt - storable-complex - - store-core - - streaming-cassava + - store-core < 0 # MonadFail + - streaming-cassava < 0 # via streaming - strict - strict-list - string-qq @@ -4424,7 +4426,7 @@ packages: - tar - tasty-lua - tasty-th - - tdigest + - tdigest < 0 # via vector-algorithms - temporary - temporary-rc - temporary-resourcet @@ -4433,7 +4435,7 @@ packages: - test-framework-quickcheck2 - test-framework-smallcheck - test-framework-th - - testing-feat + - testing-feat < 0 # via size-based - testing-type-modifiers - text-builder - text-icu @@ -4445,7 +4447,7 @@ packages: - tf-random - th-extras - th-lift-instances - - th-utilities + - th-utilities < 0 # template-haskell - these - these-lens - these-optics @@ -4455,12 +4457,12 @@ packages: - time-parsers - timeit - tls-session-manager - - token-bucket - - tonatona + - token-bucket < 0 # via base-4.13.0.0 + - tonatona < 0 # via tonaparser - transformers-base - tree-diff - trivial-constraint - - true-name + - true-name < 0 # MonadFail - tuple-th - type-fun - type-hint @@ -4469,7 +4471,7 @@ packages: - universe - universe-base - universe-some - - universe-dependent-sum + - universe-dependent-sum < 0 # via some - universe-instances-base - universe-instances-extended - universe-instances-trans @@ -4509,11 +4511,11 @@ packages: - xml - xml-conduit - xml-conduit-writer - - xml-hamlet + - xml-hamlet < 0 # via shakespeare - xml-types - xss-sanitize - - yeshql-core - - yeshql-hdbc + - yeshql-core < 0 # MonadFail + - yeshql-hdbc < 0 # via HDBC - yesod-core - yesod-form - yesod-persistent @@ -4538,8 +4540,7 @@ packages: # - language-lua2 # https://github.com/mitchellwrosen/language-lua2/issues/4 # GHC 8.2.1 - cassava - # https://github.com/commercialhaskell/stackage/issues/3967 - - text-format + - text-format < 0 # via base-4.13.0.0 # Packages without maintainers that cause issues, # this is to prevent us from including them by accident. They can @@ -4576,273 +4577,6 @@ packages: - lens-labels < 0 # deprecated https://github.com/commercialhaskell/stackage/pull/4358 - proto-lens-combinators < 0 # deprecated https://github.com/commercialhaskell/stackage/pull/4358 - "Build failures on GHC upgrades ..,,xxx": - - lapack < 0 # via hyper - - large-hashable < 0 # compilation failure - - learn-physics < 0 # via base-4.13.0.0 - - lens-process < 0 # via lens-4.18.1 - - lens-regex-pcre < 0 # via pcre-heavy - - lens-simple < 0 # via lens-family-2.0.0 - - lens-simple < 0 # via lens-family-core-2.0.0 - - liboath-hs < 0 # via inline-c-0.8.0.1 - - line < 0 # via scotty - - linear-circuit < 0 # via lapack - - list-witnesses < 0 # via vinyl - - llvm-hs-pretty < 0 # compilation failure - - loc < 0 # via base-4.13.0.0 - - locators < 0 # via cryptohash - - logger-thread < 0 # via protolude - - machines-binary < 0 # via machines-0.7 - - machines-directory < 0 # via machines-0.7 - - machines-io < 0 # via machines-0.7 - - magico < 0 # via lapack - - massiv-io < 0 # via netpbm - - mbtiles < 0 # via sqlite-simple - - mbug < 0 # via http-client-0.6.1 - - med-module < 0 # compilation failure - - mega-sdist < 0 # via pantry - - menshen < 0 # via regex-tdfa-1.3.0 - - merkle-tree < 0 # via protolude - - midi-music-box < 0 # via diagrams-lib - - midi-music-box < 0 # via diagrams-postscript - - minio-hs < 0 # via protolude - - mmtf < 0 # via data-msgpack - - monad-metrics < 0 # via ekg-core - - monad-recorder < 0 # compilation failure - - mongoDB < 0 # via network-3.1.1.0 - - monoid-extras < 0 # via base-4.13.0.0 - - monoidal-containers < 0 # via base-4.13.0.0 - - mpi-hs < 0 # via store - - msgpack < 0 # via base-4.13.0.0 - - msgpack-aeson < 0 # via msgpack - - mwc-probability-transition < 0 # via logging-effect - - mysql-haskell < 0 # via memory-0.15.0 - - mysql-haskell-nem < 0 # via io-streams - - mysql-haskell-nem < 0 # via mysql-haskell - - named < 0 # via base-4.13.0.0 - - naqsha < 0 # via base-4.13.0.0 - - network-anonymous-i2p < 0 # via network-simple - - network-attoparsec < 0 # via network-simple - - network-house < 0 # MonadFail - - network-messagepack-rpc < 0 # via data-msgpack - - network-multicast < 0 # via network-bsd - - network-simple < 0 # via network-bsd - - network-simple-tls < 0 # via network-simple - - nvim-hs < 0 # via hslogger - - nvim-hs-contrib < 0 # via nvim-hs - - nvvm < 0 # via cuda - - oblivious-transfer < 0 # via protolude - - oeis < 0 # via test-framework - - oeis < 0 # via test-framework-hunit - - open-witness < 0 # MonadFail - - openssl-streams < 0 # via test-framework-hunit - - optparse-enum < 0 # via fmt - - oset < 0 # via base-4.13.0.0 - - palette < 0 # via base-4.13.0.0 - - pandoc < 0 # via HsYAML-0.2.0.0 - - pandoc-citeproc < 0 # via pandoc-types - - pandoc-csv2table < 0 # via pandoc - - pandoc-markdown-ghci-filter < 0 # via pandoc - - pandoc-pyplot < 0 # via pandoc - - pandoc-types < 0 # via test-framework-quickcheck2 - - partial-semigroup < 0 # via base-4.13.0.0 - - password-instances < 0 # via persistent - - path-text-utf8 < 0 # via base-4.13.0.0 - - pcf-font < 0 # MonadFail - - pcf-font-embed < 0 # via pcf-font - - pcre-heavy < 0 # via string-conversions - - pedersen-commitment < 0 # via protolude - - pencil < 0 # via pandoc - - peregrin < 0 # via postgresql-simple - - persistable-types-HDBC-pg < 0 # via HDBC - - persistent-pagination < 0 # via persistent - - persistent-typed-db < 0 # via persistent - - pg-harness-server < 0 # via scotty - - pg-transact < 0 # via tmp-postgres - - pinboard < 0 # via time-1.9.3 - - pipes-category < 0 # via pipes-extras - - pipes-fluid < 0 # via these - - pipes-misc < 0 # via pipes-category - - pipes-network < 0 # via network-simple - - pipes-network-tls < 0 # via network-simple-tls - - plot-light < 0 # transitive compilation failure - - polysemy-plugin < 0 # via polysemy - - polysemy-zoo < 0 # via hedis - - postgresql-schema < 0 # via postgresql-simple - - postgresql-simple-migration < 0 # via time-1.9.3 - - postgresql-simple-queue < 0 # via pg-transact - - postgresql-simple-url < 0 # via postgresql-simple - - postgresql-transactional < 0 # via postgresql-simple - - postgresql-typed < 0 # via HDBC - - prim-uniq < 0 # via dependent-sum - - probability < 0 # MonadFail - - protobuf < 0 # via hex - - protocol-buffers < 0 # MonadFail - - protocol-buffers-descriptor < 0 # via protocol-buffers - - psql-helpers < 0 # via postgresql-simple - - pure-zlib < 0 # via base-compat-0.11.0 - - raaz < 0 # via base-4.13.0.0 - - radius < 0 # via iproute - - random-source < 0 # via flexible-defaults - - rasterific-svg < 0 # via Rasterific - - references < 0 - - regex < 0 # hashable-1.3.0 - - regex-applicative-text < 0 # via regex-applicative - - regex-pcre-text < 0 # via regex-base-0.94.0.0 - - regex-tdfa-text < 0 # via regex-base-0.94.0.0 - - regex-with-pcre < 0 # via regex - - registry < 0 # also protolude, semigroups, universum - - relational-query-HDBC < 0 # via HDBC - - relational-record < 0 # via relational-query-HDBC - - repa < 0 # via base-4.13.0.0 - - repa-algorithms < 0 # via base-4.13.0.0 - - repa-io < 0 # via base-4.13.0.0 - - require < 0 # via universum - - resistor-cube < 0 # via lapack - - rg < 0 # via fmt - - rvar < 0 # via random-source - - s3-signer < 0 # via http-types - - safe-json < 0 # via time-1.9.3 - - salak-toml < 0 # via tomland - - sandman < 0 # Cabal 3 - - sbv < 0 # MonadFail - - scalpel < 0 # via scalpel-core - - scalpel-core < 0 # compilation error - - secp256k1-haskell < 0 # via string-conversions - - selda-postgresql < 0 # via selda-0.5.0.0 - - selda-sqlite < 0 # via selda-0.5.0.0 - - servant-auth < 0 # via base-4.13.0.0 - - servant-auth-docs < 0 # via base-4.13.0.0 - - servant-auth-swagger < 0 # via base-4.13.0.0 - - servant-auth-wordpress < 0 # via servant-server - - servant-checked-exceptions < 0 # via servant-server - - servant-checked-exceptions-core < 0 # via http-media - - servant-cli < 0 # via servant-server - - servant-elm < 0 # via wl-pprint-text - - servant-ruby < 0 # via servant-foreign - - servant-tracing < 0 # via servant-server - - servant-xml < 0 # via http-media - - servius < 0 # via wai-app-static - - ses-html < 0 # via HsOpenSSL - - ses-html < 0 # via http-streams - - sexp-grammar < 0 # via prettyprinter-1.3.0 and semigroups-0.19 - - sexpr-parser < 0 # via base-4.13.0.0 - - shake-language-c < 0 # via fclabels - - shikensu < 0 # via flow - - show-prettyprint < 0 # via trifecta - - shower < 0 # via base-4.13.0.0 - - simple < 0 # https://github.com/alevy/simple/issues/23 - - simple-session < 0 - - size-based < 0 # via template-haskell-2.15.0.0 - - sized-grid < 0 # via base-4.13.0.0 - - skews < 0 # via websockets - - slack-web < 0 # via base-4.13.0.0 - - smallcheck-series < 0 # via base-4.13.0.0 - - snap-blaze < 0 # via snap-core - - snap-server < 0 # via base-4.13.0.0 - - socket-activation < 0 # via network-3.1.1.0 - - sphinx < 0 # Could not find module Network - - sqlite-simple < 0 # via base-4.13.0.0 - - sqlite-simple-errors < 0 # via text-1.2.4.0 - - state-codes < 0 # via shakespeare - - statestack < 0 # via base-4.13.0.0 - - static-text < 0 # via template-haskell-2.15.0.0 - - store < 0 # via store-core - - store-core < 0 # MonadFail - - streaming-attoparsec < 0 # via streaming - - streaming-bytestring < 0 # via streaming - - streaming-cassava < 0 # via streaming - - streaming-wai < 0 # via streaming - - streamproc < 0 # MonadFail - - string-interpolate < 0 # via interpolatedstring-perl6 - - stripe-scotty < 0 # via scotty - - stripe-wreq < 0 # via wreq - - structured-cli < 0 # MonadFail - - sv < 0 # via base-4.13.0.0 - - sv-cassava < 0 # via sv-core - - sv-core < 0 # via base-4.13.0.0 - - svg-builder < 0 # via base-4.13.0.0 - - swish < 0 # via base-4.13.0.0 - - systemd < 0 # socketToFd is ambiguous - - tagstream-conduit < 0 # MonadFail - - tdigest < 0 # via vector-algorithms - - teardown < 0 # compilation failure - - template-toolkit < 0 # via regex-pcre-builtin - - termbox < 0 # via base-4.13.0.0 - - termonad < 0 # via gi-gtk - - termonad < 0 # via gi-vte - - testing-feat < 0 # via size-based - - texmath < 0 # via pandoc-types - - text-format < 0 # via base-4.13.0.0 - - th-nowq < 0 # via time-1.9.3 - - th-utilities < 0 # template-haskell - - threepenny-gui < 0 # via base-4.13.0.0 - - time-qq < 0 - - timer-wheel < 0 # via base-4.13.0.0 - - tintin < 0 # via universum - - token-bucket < 0 # via base-4.13.0.0 - - tonaparser < 0 # via envy - - tonatona < 0 # via tonaparser - - tonatona-logger < 0 # via tonaparser - - tonatona-persistent-postgresql < 0 # via persistent - - tonatona-persistent-sqlite < 0 # via persistent - - tonatona-servant < 0 # via servant-server - - true-name < 0 # MonadFail - - ttl-hashtables < 0 # hashable-1.3.0 - - typelits-witnesses < 0 # via dependent-sum - - typography-geometry < 0 # compilation failure - - tz < 0 # via time-1.9.3 - - ucam-webauth < 0 # via base-4.13.0.0 - - ucam-webauth-types < 0 # via base-4.13.0.0 - - unbound-generics < 0 # MonadFail - - union < 0 # via base-4.13.0.0 - - universe-dependent-sum < 0 # via some - - unliftio-streams < 0 # via io-streams - - users-postgresql-simple < 0 # via postgresql-simple - - users-test < 0 # via users - - wai-cli < 0 # via network-3.1.1.0 - - wai-middleware-crowd < 0 # via optparse-applicative-0.15.1.0 - - wai-middleware-throttle < 0 # via token-bucket - - wai-middleware-travisci < 0 # via base-4.13.0.0 - - wai-predicates < 0 # MonadFail - - wai-session-postgresql < 0 # via wai-session - - wai-transformers < 0 # via wai-websockets - - web-routes < 0 # via http-types - - web-routes-hsp < 0 # via web-routes - - web-routes-wai < 0 # via web-routes - - wikicfp-scraper < 0 # via scalpel-core - - wild-bind < 0 # via base-4.13.0.0 - - wild-bind-x11 < 0 # via base-4.13.0.0 - - winery < 0 # via fast-builder - - wire-streams < 0 # via io-streams - - witherable < 0 # via monoidal-containers - - wl-pprint-text < 0 # via base-compat-0.11.0 - - wordpress-auth < 0 # via http-types - - ws < 0 # via attoparsec-uri - - ws < 0 # via wuss - - xenstore < 0 # sClose not in scope - - xlsx < 0 # MonadFail - - xlsx-tabular < 0 # via xlsx - - xml-conduit-parse < 0 # compilation error - - xml-hamlet < 0 # via shakespeare - - xml-html-qq < 0 # via html-conduit - - xml-isogen < 0 # via dom-parser - - xml-lens < 0 # via case-insensitive-1.2.1.0 - - xmlbf < 0 # MonadFail - - xmlbf-xeno < 0 # via xmlbf - - yeshql < 0 # via yeshql-hdbc - - yeshql-core < 0 # MonadFail - - yeshql-hdbc < 0 # via HDBC - - yesod-alerts < 0 # via yesod-core - - yesod-csp < 0 # via yesod-core - - yesod-eventsource < 0 # via yesod-core - - yesod-fb < 0 # via yesod-core - - yesod-form-bootstrap4 < 0 # via yesod-core - - yesod-gitrepo < 0 # via yesod-core - - yesod-recaptcha2 < 0 # via yesod-core - - yesod-text-markdown < 0 # via persistent - - yi-language < 0 # via regex-base-0.94.0.0 - "GHC upper bounds": # Need to always match the version shipped with GHC - Win32 == 2.6.1.0 From a7996ce4c90c452b59fd3b84a834cecb728d269a Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sat, 28 Dec 2019 14:32:10 +0100 Subject: [PATCH 0986/2682] Fixes for #5030 --- build-constraints.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d4a3807d..dd1b02ef 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1467,7 +1467,7 @@ packages: "Alois Cochard @aloiscochard": - machines-binary < 0 # via machines-0.7 # on behalf of Bryan O'Sullivan @bos: - - wreq < 0 # via authenticate-oauth + - wreq "Andraz Bajt @edofic": # - effect-handlers # free 5 @@ -2775,7 +2775,7 @@ packages: "Justus Adam @JustusAdam": # - marvin # https://github.com/JustusAdam/marvin/issues/22 - marvin-interpolate < 0 - - mustache < 0 # Lift Text + - mustache - exit-codes >= 1.0.0 "Cindy Wang @CindyLinz": @@ -4427,6 +4427,7 @@ packages: - tasty-lua - tasty-th - tdigest < 0 # via vector-algorithms + - template-haskell-compat-v0208 - temporary - temporary-rc - temporary-resourcet From 1e05cfaf9c42322655294af09fabcce2521e6948 Mon Sep 17 00:00:00 2001 From: Yoshikuni Jujo Date: Sun, 29 Dec 2019 09:55:33 +0900 Subject: [PATCH 0987/2682] Reenable HaXml --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index dd1b02ef..8462c493 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2882,6 +2882,7 @@ packages: - simplest-sqlite < 0 - warp-tls-uid - nowdoc + - HaXml "Jan Gerlinger @JanGe": - irc-dcc < 0 From 22da684c645124ecbd7bc8139e0f496bb66db67d Mon Sep 17 00:00:00 2001 From: Stefan Wehr Date: Sun, 22 Dec 2019 13:26:48 +0100 Subject: [PATCH 0988/2682] re-enable HTF --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index dd1b02ef..053eb66a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -745,8 +745,8 @@ packages: "Philipp Middendorf @pmiddend": - clock - "Stefan Wehr @skogsbaer": - - HTF < 0 # via haskell-src + "Stefan Wehr @skogsbaer": + - HTF - xmlgen - stm-stats < 0 - large-hashable < 0 # compilation failure From 49a8f83d5108335b87784077d4d66c0f6fce025d Mon Sep 17 00:00:00 2001 From: Felix Paulusma Date: Sun, 29 Dec 2019 15:10:13 +0100 Subject: [PATCH 0989/2682] re-added safe-json --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index dd1b02ef..1e5706dd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4014,7 +4014,7 @@ packages: - caster < 0 # via fast-builder "Felix Paulusma @Vlix": - - safe-json < 0 # via time-1.9.3 + - safe-json "Olle Fredriksson @ollef": - rope-utf16-splay From 28774262f072c20332f50e7487cc3343687afd0c Mon Sep 17 00:00:00 2001 From: Jasper Woudenberg Date: Sun, 29 Dec 2019 16:26:07 +0000 Subject: [PATCH 0990/2682] Add bugsnag-hs --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index dd1b02ef..ad08cdb5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4059,6 +4059,9 @@ packages: "Travis Cardwell @TravisCardwell": - ttc + "Jasper Woudenberg @jasperwoudnberg": + - bugsnag-hs + "Grandfathered dependencies": - network - Boolean From 894cfc712509f60375d164221cb847fbd2594563 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sun, 29 Dec 2019 20:01:42 +0100 Subject: [PATCH 0991/2682] Re-enable radius --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 053eb66a..6e570acd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3986,7 +3986,7 @@ packages: - eap - failable - ttl-hashtables < 0 # hashable-1.3.0 - - radius < 0 # via iproute + - radius - structured-cli < 0 # MonadFail "Jan Path @janpath": From 0aedc03aad6b5b85141d7317f45993ab0e868ac1 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sun, 29 Dec 2019 20:04:09 +0100 Subject: [PATCH 0992/2682] path < 0.7.0 for #5036 --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6e570acd..197862f6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4603,6 +4603,10 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5025 - hie-bios < 0.3 + + # https://github.com/commercialhaskell/stackage/issues/5036 + - path < 0.7.0 + # end of packages # Package flags are applied to individual packages, and override the values of From 2287015e4b32f5a1a7fd721789f423c9da48ad4a Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sun, 29 Dec 2019 20:04:58 +0100 Subject: [PATCH 0993/2682] haskeline < 0.8.0 for #5037 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 197862f6..e8aee24c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4607,6 +4607,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5036 - path < 0.7.0 + # https://github.com/commercialhaskell/stackage/issues/5037 + - haskeline < 0.8.0 + # end of packages # Package flags are applied to individual packages, and override the values of From 4955cc74bcce730eefb276860ebce30f6014d75c Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sun, 29 Dec 2019 20:07:33 +0100 Subject: [PATCH 0994/2682] Re-enable accidentally removed rainbox & yesod-auth-hashdb --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e8aee24c..440884b8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -645,7 +645,7 @@ packages: "Omari Norman @massysett": - rainbow - - rainbox < 0 # via lens-simple + - rainbox - multiarg - Earley - ofx @@ -1281,7 +1281,7 @@ packages: - mysql-simple - sphinx < 0 # Could not find module Network - xmlhtml < 0 # GHC 8.4 via hspec-2.5.0 - - yesod-auth-hashdb < 0 # via yesod-test + - yesod-auth-hashdb "Toralf Wittner @twittner": - bytestring-conversion From 21e4e3a1bc19fdbe7e237b3c074c0970d0ce628c Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sun, 29 Dec 2019 20:11:22 +0100 Subject: [PATCH 0995/2682] Try removing tmp-postgres and related bounds --- build-constraints.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 440884b8..94616705 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3231,10 +3231,10 @@ packages: - next-ref < 0 - threads-extras < 0 - postgres-options - - tmp-postgres < 0.3 # https://github.com/commercialhaskell/stackage/issues/4790 - - pg-transact < 0 # via tmp-postgres - - hspec-pg-transact < 0 # via tmp-postgres - - postgresql-simple-queue < 0 # via pg-transact + - tmp-postgres + - pg-transact + - hspec-pg-transact + - postgresql-simple-queue - port-utils "Jonathan Knowles @jonathanknowles": From 07b8a820ebfabda652f701090deadc71d4b9e592 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sun, 29 Dec 2019 20:11:31 +0100 Subject: [PATCH 0996/2682] Re-disable radius --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 94616705..de52b789 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3986,7 +3986,7 @@ packages: - eap - failable - ttl-hashtables < 0 # hashable-1.3.0 - - radius + - radius < 0 # MonadFail - structured-cli < 0 # MonadFail "Jan Path @janpath": From 17ffee635b4a0d91e25d94cee3970fae67a83d0e Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sun, 29 Dec 2019 20:16:08 +0100 Subject: [PATCH 0997/2682] Re-disable hspec-pg-transact --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index de52b789..8801ca2d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3233,7 +3233,7 @@ packages: - postgres-options - tmp-postgres - pg-transact - - hspec-pg-transact + - hspec-pg-transact < 0 # compilation failure (against tmp-postgres?) - postgresql-simple-queue - port-utils From c8e0ab775b718f661d360657ae6f9ecb8e5b0062 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sun, 29 Dec 2019 20:20:45 +0100 Subject: [PATCH 0998/2682] Also remove HaXml from 'removed packages' section --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8462c493..eb67c83e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4564,7 +4564,6 @@ packages: - PSQueue < 0 # build failure with GHC 8.4 (nowhere to report, it's ancient just let it die) - json-builder < 0 # build failure with GHC 8.4 https://github.com/lpsmith/json-builder/issues/2 - type-combinators < 0 # build failure with GHC 8.4 https://github.com/kylcarte/type-combinators/issues/8 - - HaXml < 0 # build failure with GHC 8.4 - preprocessor-tools < 0 # build failure with GHC 8.4 - tinytemplate < 0 # build failure with GHC 8.4 - wai-route < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build From 2be3209f54a5a0ae5c0b2598facec2512ce79ddf Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sun, 29 Dec 2019 20:25:44 +0100 Subject: [PATCH 0999/2682] Also re-disable postgresql-simple-queue --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index bffa06ef..84587d3d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3234,7 +3234,7 @@ packages: - tmp-postgres - pg-transact - hspec-pg-transact < 0 # compilation failure (against tmp-postgres?) - - postgresql-simple-queue + - postgresql-simple-queue < 0 # via hspec-pg-transact - port-utils "Jonathan Knowles @jonathanknowles": From 59b2d08def34f782e2e4e2a6357543c2d7d53a0c Mon Sep 17 00:00:00 2001 From: Yoshikuni Jujo Date: Mon, 30 Dec 2019 12:21:40 +0900 Subject: [PATCH 1000/2682] Reenable yjsvg --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e8374771..52641628 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2871,7 +2871,7 @@ packages: - zot - yjtools - io-machine - - yjsvg < 0 # build failure with GHC 8.4 + - yjsvg - x11-xim - X11-xft - Imlib From 6ef7d548cd617ac4469ca4163d5d658985236275 Mon Sep 17 00:00:00 2001 From: Yoshikuni Jujo Date: Tue, 31 Dec 2019 15:00:22 +0900 Subject: [PATCH 1001/2682] Reenable xturtle --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 52641628..e12dd96e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2875,7 +2875,7 @@ packages: - x11-xim - X11-xft - Imlib - - xturtle < 0 # GHC 8.4 via yjsvg + - xturtle - gluturtle < 0 # build failure with GHC 8.4 - papillon - exception-hierarchy < 0 From 9361d50ebf39037ab76273e17d67b830ae00e2f2 Mon Sep 17 00:00:00 2001 From: Erick Gonzalez Date: Tue, 31 Dec 2019 10:40:05 +0100 Subject: [PATCH 1002/2682] Revised ttl-hashtables package cabal dependencies to relax hashable version, updated radius and structured-cli packages for base-4.13 compatibility --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 52641628..5c140b2e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3986,9 +3986,9 @@ packages: "Erick Gonzalez @codemonkeylabs-de": - eap - failable - - ttl-hashtables < 0 # hashable-1.3.0 - - radius < 0 # MonadFail - - structured-cli < 0 # MonadFail + - ttl-hashtables + - radius + - structured-cli "Jan Path @janpath": - smallcheck-series < 0 # via base-4.13.0.0 From d907dfde6b7c73ca8cfb605fc7439554c77162d8 Mon Sep 17 00:00:00 2001 From: Yoshikuni Jujo Date: Wed, 1 Jan 2020 07:50:23 +0900 Subject: [PATCH 1003/2682] Reenable gluturtle --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2ec44129..d9aea2d4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2876,7 +2876,7 @@ packages: - X11-xft - Imlib - xturtle - - gluturtle < 0 # build failure with GHC 8.4 + - gluturtle - papillon - exception-hierarchy < 0 - simplest-sqlite < 0 From 028935396fea9738717b99f529a61921a6b9abda Mon Sep 17 00:00:00 2001 From: Yoshikuni Jujo Date: Wed, 1 Jan 2020 12:38:10 +0900 Subject: [PATCH 1004/2682] Reenable exception-hierarchy --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d9aea2d4..6349842e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2878,7 +2878,7 @@ packages: - xturtle - gluturtle - papillon - - exception-hierarchy < 0 + - exception-hierarchy - simplest-sqlite < 0 - warp-tls-uid - nowdoc From 0f25535c55c721b3e488e83952ec0abbe566a433 Mon Sep 17 00:00:00 2001 From: Yoshikuni Jujo Date: Thu, 2 Jan 2020 11:29:04 +0900 Subject: [PATCH 1005/2682] Reenable simplest-sqlite --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6349842e..a7460caa 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2879,7 +2879,7 @@ packages: - gluturtle - papillon - exception-hierarchy - - simplest-sqlite < 0 + - simplest-sqlite - warp-tls-uid - nowdoc - HaXml From ab317378f8e4c23077ac6bd848ffb90587d0221e Mon Sep 17 00:00:00 2001 From: Michel Boucey Date: Thu, 2 Jan 2020 21:24:27 +0100 Subject: [PATCH 1006/2682] IPv6Addr package fixed in v1.1.3 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 52641628..6bd37f23 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2095,7 +2095,7 @@ packages: - matrices "Michel Boucey @MichelBoucey": - - IPv6Addr < 0 # via test-framework & test-framework-hunit + - IPv6Addr - ip6addr < 0 # via IPv6Addr - cayley-client < 0 # via lens-4.18.1 - Spintax From 3c923bf97953981aa4eee7b9baf6eecd81b6d83a Mon Sep 17 00:00:00 2001 From: Michel Boucey Date: Fri, 3 Jan 2020 10:41:09 +0100 Subject: [PATCH 1007/2682] ip6addr package fixed in v1.0.1 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index dc54f302..1f1d904a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2096,7 +2096,7 @@ packages: "Michel Boucey @MichelBoucey": - IPv6Addr - - ip6addr < 0 # via IPv6Addr + - ip6addr - cayley-client < 0 # via lens-4.18.1 - Spintax - glabrous From 0c1ed4e9f49c8c162d7d6992ab8842cdd9c1a48a Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Fri, 3 Jan 2020 13:10:10 -0800 Subject: [PATCH 1008/2682] Expect test failure for yesod-auth-hashdb, #5047 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1f1d904a..d821b545 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5306,6 +5306,7 @@ expected-test-failures: - yeshql-core # https://github.com/tdammers/yeshql/issues/6 - yeshql-hdbc # https://github.com/tdammers/yeshql/issues/6 - yesod-gitrev # https://github.com/DanBurton/yesod-gitrev/issues/5 + - yesod-auth-hashdb # https://github.com/commercialhaskell/stackage/issues/5047 # Recursive deps https://github.com/fpco/stackage/issues/1818 - options From ad17eef0aded88b72d30e31cdad774134035ef96 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Fri, 3 Jan 2020 19:12:36 -0800 Subject: [PATCH 1009/2682] Add upper bound for haskell-src-exts, #5048 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d821b545..33225b92 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4235,7 +4235,7 @@ packages: - haskell-lexer - haskell-lsp-types - haskell-src - - haskell-src-exts + - haskell-src-exts < 1.23 # https://github.com/commercialhaskell/stackage/issues/5048 - haxl < 0 # via time-1.9.3 - heap - hex < 0 # via base-4.13.0.0 From 65403f9a38a9a5c4fe9e56a198dc55c0f116ea27 Mon Sep 17 00:00:00 2001 From: Michel Boucey Date: Sat, 4 Jan 2020 13:47:34 +0100 Subject: [PATCH 1010/2682] Gothic package fixed with v1.0.3 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 33225b92..1dd213e8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2102,7 +2102,7 @@ packages: - glabrous - google-oauth2-jwt < 0 # via HsOpenSSL - IPv6DB < 0 - - gothic < 0 # via lens-4.18.1 + - gothic "koral koral@mailoo.org @k0ral": - atom-conduit < 0 From b72bb3fbcc0a53aa9a84e5a34a7e037d2608504c Mon Sep 17 00:00:00 2001 From: Paul Rouse Date: Sat, 4 Jan 2020 14:20:05 +0000 Subject: [PATCH 1011/2682] yesod-auth-hashdb tests working again --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 33225b92..9cda9ea8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5306,7 +5306,6 @@ expected-test-failures: - yeshql-core # https://github.com/tdammers/yeshql/issues/6 - yeshql-hdbc # https://github.com/tdammers/yeshql/issues/6 - yesod-gitrev # https://github.com/DanBurton/yesod-gitrev/issues/5 - - yesod-auth-hashdb # https://github.com/commercialhaskell/stackage/issues/5047 # Recursive deps https://github.com/fpco/stackage/issues/1818 - options From b4397e09ec7a955312e8879be13ad2d6c0ae229c Mon Sep 17 00:00:00 2001 From: Michel Boucey Date: Sun, 5 Jan 2020 10:50:03 +0100 Subject: [PATCH 1012/2682] Cayley-client fixed in v0.4.11 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 25da4aee..f071d881 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2097,7 +2097,7 @@ packages: "Michel Boucey @MichelBoucey": - IPv6Addr - ip6addr - - cayley-client < 0 # via lens-4.18.1 + - cayley-client - Spintax - glabrous - google-oauth2-jwt < 0 # via HsOpenSSL From d87b8ec476f0bb0f4c265570c172f2b4d046fe90 Mon Sep 17 00:00:00 2001 From: Clint Adams Date: Sun, 5 Jan 2020 07:11:08 -0500 Subject: [PATCH 1013/2682] re-enable xml-hamlet and DAV --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 25da4aee..66753edc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1163,7 +1163,7 @@ packages: - hOpenPGP < 0 # via bzlib - openpgp-asciiarmor - MusicBrainz - - DAV < 0 # via xml-hamlet + - DAV - hopenpgp-tools < 0 # via graphviz - opensource - debian < 0 # via bzlib @@ -4516,7 +4516,7 @@ packages: - xml - xml-conduit - xml-conduit-writer - - xml-hamlet < 0 # via shakespeare + - xml-hamlet - xml-types - xss-sanitize - yeshql-core < 0 # MonadFail From 775e7f77de328f337c54d463a46fae5d9950374d Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Sun, 5 Jan 2020 08:18:51 -0800 Subject: [PATCH 1014/2682] re-enable brick, hledger-ui, hledger-iadd --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 25da4aee..ebf22207 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1241,7 +1241,7 @@ packages: # - hledger - hledger-lib - - hledger-ui < 0 # via brick, ghc-lib-parser-8.8.1.20191204 + - hledger-ui - hledger-web # - quickbench < 0 # via docopt @@ -3304,7 +3304,7 @@ packages: - scheduler "Hans-Peter Deifel @hpdeifel": - - hledger-iadd < 0 # via brick + - hledger-iadd "Roy Levien @orome": - crypto-enigma @@ -4109,7 +4109,7 @@ packages: - blaze-svg - blaze-textual - boring - - brick < 0 # via base-4.13.0.0 + - brick - buffer-builder - byteable - bytestring-builder From 9534655554c48f92d713726897633d0606965901 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Sun, 5 Jan 2020 12:25:37 -0800 Subject: [PATCH 1015/2682] Disable DAV due to a build failure, #5054 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6a7b00fe..190e67c6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1163,7 +1163,7 @@ packages: - hOpenPGP < 0 # via bzlib - openpgp-asciiarmor - MusicBrainz - - DAV + - DAV < 0 # https://github.com/commercialhaskell/stackage/issues/5054 - hopenpgp-tools < 0 # via graphviz - opensource - debian < 0 # via bzlib From c689e41f7fd9946bbe69e70b1d87b57643afc077 Mon Sep 17 00:00:00 2001 From: Clint Adams Date: Sun, 5 Jan 2020 20:03:26 -0500 Subject: [PATCH 1016/2682] re-enable DAV DAV 1.3.4 closes #5054 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 190e67c6..6a7b00fe 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1163,7 +1163,7 @@ packages: - hOpenPGP < 0 # via bzlib - openpgp-asciiarmor - MusicBrainz - - DAV < 0 # https://github.com/commercialhaskell/stackage/issues/5054 + - DAV - hopenpgp-tools < 0 # via graphviz - opensource - debian < 0 # via bzlib From 6a33c2963c01c99fbbba83799a7b7a85716bce72 Mon Sep 17 00:00:00 2001 From: Yoshikuni Jujo Date: Mon, 6 Jan 2020 16:08:24 +0900 Subject: [PATCH 1017/2682] add zasni-gerna --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 190e67c6..5e2ed64f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2878,6 +2878,7 @@ packages: - xturtle - gluturtle - papillon + - zasni-gerna - exception-hierarchy - simplest-sqlite - warp-tls-uid From 05f50503c9fbf6e658170da3e5e53434aa6e5aa7 Mon Sep 17 00:00:00 2001 From: Emily Pillmore Date: Sun, 5 Jan 2020 21:46:14 -0500 Subject: [PATCH 1018/2682] add stackage entries for base64 and base64-lens --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 190e67c6..5e11a775 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -42,6 +42,8 @@ packages: - lens-regex-pcre < 0 # via pcre-heavy "Emily Pillmore @topos": + - base64 + - base64-lens - lens-process < 0 # via lens-4.18.1 - microlens-process - nonempty-vector From b9cdcc8af9d1384601bc3504b20dbf6d8f7568bb Mon Sep 17 00:00:00 2001 From: Toshio Ito Date: Tue, 7 Jan 2020 22:32:33 +0900 Subject: [PATCH 1019/2682] re-enable packages of debug-ito. Now they support base-4.13 --- build-constraints.yaml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ccad3e52..db510244 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2973,16 +2973,16 @@ packages: - vivid-supercollider < 0 # via vivid-osc "Toshio Ito @debug-ito": - - fold-debounce < 0 # via time-1.9.3 - - fold-debounce-conduit < 0 # via base-4.13.0.0 + - fold-debounce + - fold-debounce-conduit - stopwatch - wikicfp-scraper < 0 # via scalpel-core - - wild-bind < 0 # via base-4.13.0.0 - - wild-bind-x11 < 0 # via base-4.13.0.0 - - greskell < 0 # via base-4.13.0.0 - - greskell-core < 0 # via base-4.13.0.0 - - greskell-websocket < 0 # via base-4.13.0.0 - - hspec-need-env < 0 # via base-4.13.0.0 + - wild-bind + - wild-bind-x11 + - greskell + - greskell-core + - greskell-websocket + - hspec-need-env "Cies Breijs @cies": - htoml From 0c04b75c0b73ce32ffd02f00488a87da08ec6469 Mon Sep 17 00:00:00 2001 From: Eric Conlon Date: Thu, 9 Jan 2020 13:28:03 -0800 Subject: [PATCH 1020/2682] Add blanks, heart-core, linenoise to ejconlon packages --- build-constraints.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ccad3e52..1e54cf59 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4066,6 +4066,11 @@ packages: "Jasper Woudenberg @jasperwoudnberg": - bugsnag-hs + "Eric Conlon @ejconlon": + - blanks + - heart-core + - linenoise + "Grandfathered dependencies": - network - Boolean From 70c05550b5f59865b3b0995114f3f0d58f3a0292 Mon Sep 17 00:00:00 2001 From: Michael Xavier Date: Thu, 9 Jan 2020 19:59:56 -0800 Subject: [PATCH 1021/2682] Re-enable cron Cron now properly supports MonadFail and builds against GHC 8.4.4, 8.6.5, 8.8.1 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ccad3e52..5c8ec8a1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2049,7 +2049,7 @@ packages: "Michael Xavier @MichaelXavier": - uri-bytestring - - cron < 0 # MonadFail + - cron # - tasty-tap # https://github.com/MichaelXavier/tasty-tap/issues/2 # - tasty-fail-fast # https://github.com/MichaelXavier/tasty-tap/issues/2 - drifter < 0 From 2d22a1857ce2824ea513f461e2bc8cb0f1d0ee0b Mon Sep 17 00:00:00 2001 From: "Scott N. Walck" Date: Fri, 10 Jan 2020 14:39:39 -1000 Subject: [PATCH 1022/2682] Reintroduce cyclotomic into nightly --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ccad3e52..63f7014e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -147,7 +147,7 @@ packages: - valor "Scott N. Walck @walck": - - cyclotomic < 0 # via base-4.13.0.0 + - cyclotomic - learn-physics < 0 # via base-4.13.0.0 - TypeCompose From d958c46a510d24ea3d8ee07a2bb6b1de0f60e2dd Mon Sep 17 00:00:00 2001 From: Eric Conlon Date: Sat, 11 Jan 2020 14:34:42 -0800 Subject: [PATCH 1023/2682] Pin hw-dsv < 0.4.0 to unbreak CI --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ccad3e52..942b4637 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2901,7 +2901,7 @@ packages: - hw-conduit - hw-conduit-merges - hw-diagnostics - - hw-dsv + - hw-dsv < 0.4.0 # the hw-ip bound in hw-dsv is incompatible with latest version of hw-ip - hw-eliasfano - hw-excess - hw-hedgehog From 8a0b1b53aae5e8b3c8ba95128ae8d16841ac6a99 Mon Sep 17 00:00:00 2001 From: Eric Conlon Date: Sat, 11 Jan 2020 14:43:58 -0800 Subject: [PATCH 1024/2682] try to bound the hw-ip library directly --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 942b4637..0ea1a782 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2901,13 +2901,13 @@ packages: - hw-conduit - hw-conduit-merges - hw-diagnostics - - hw-dsv < 0.4.0 # the hw-ip bound in hw-dsv is incompatible with latest version of hw-ip + - hw-dsv - hw-eliasfano - hw-excess - hw-hedgehog - hw-hspec-hedgehog - hw-int - - hw-ip + - hw-ip < 2.4 # the hw-ip bound in hw-dsv is incompatible with latest version of hw-ip - hw-fingertree - hw-fingertree-strict - hw-json From 71f50ee7e42de32ef558c9d2d8821884b599215d Mon Sep 17 00:00:00 2001 From: Eric Conlon Date: Sat, 11 Jan 2020 14:53:09 -0800 Subject: [PATCH 1025/2682] add hsinstall upper bound --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0ea1a782..9ac1ca16 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3227,7 +3227,7 @@ packages: "Dino Morelli @dino-": - epub-metadata - - hsinstall + - hsinstall < 2.5 # hsinstall is missing fmt, a dependency added in hsinstall 2.5 - tce-conf "Jonathan Fischoff @jfischoff": From e3d79fadc3d9e73bd0c967279f483f920ba17530 Mon Sep 17 00:00:00 2001 From: Eric Conlon Date: Sat, 11 Jan 2020 15:13:21 -0800 Subject: [PATCH 1026/2682] add issue tags --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9ac1ca16..bdd8990d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2907,7 +2907,7 @@ packages: - hw-hedgehog - hw-hspec-hedgehog - hw-int - - hw-ip < 2.4 # the hw-ip bound in hw-dsv is incompatible with latest version of hw-ip + - hw-ip < 2.4 # the hw-ip bound in hw-dsv is incompatible with latest version of hw-ip (https://github.com/commercialhaskell/stackage/issues/5063) - hw-fingertree - hw-fingertree-strict - hw-json @@ -3227,7 +3227,7 @@ packages: "Dino Morelli @dino-": - epub-metadata - - hsinstall < 2.5 # hsinstall is missing fmt, a dependency added in hsinstall 2.5 + - hsinstall < 2.5 # hsinstall is missing fmt, a dependency added in hsinstall 2.5 (https://github.com/commercialhaskell/stackage/issues/5064) - tce-conf "Jonathan Fischoff @jfischoff": From 087a676d0d855bb7fd15af644c3e6c606847c36e Mon Sep 17 00:00:00 2001 From: Alexey Kuleshevich Date: Sun, 12 Jan 2020 17:12:00 +0300 Subject: [PATCH 1027/2682] Add new Color package --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ccad3e52..6aa1f32f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3305,6 +3305,7 @@ packages: - massiv-io < 0 # via netpbm - massiv-test - scheduler + - Color "Hans-Peter Deifel @hpdeifel": - hledger-iadd From 1b0a202edba9028d3a05a7aa057d7ca7fee30079 Mon Sep 17 00:00:00 2001 From: Alexey Kuleshevich Date: Sun, 12 Jan 2020 17:19:30 +0300 Subject: [PATCH 1028/2682] Reinstate massiv-io, since netpbm is being included in snapshots --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ccad3e52..15361165 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3302,7 +3302,7 @@ packages: - wai-middleware-auth < 0 # via hoauth2 # - hip # lens 4.16 via diagrams/chart - massiv - - massiv-io < 0 # via netpbm + - massiv-io - massiv-test - scheduler From 9513f3e8ebae93776f911999873f1a4dea4e2287 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Tue, 14 Jan 2020 17:41:45 +0100 Subject: [PATCH 1029/2682] Upgrade path, closes #5036 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ccad3e52..f204c55c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4610,9 +4610,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5025 - hie-bios < 0.3 - # https://github.com/commercialhaskell/stackage/issues/5036 - - path < 0.7.0 - # https://github.com/commercialhaskell/stackage/issues/5037 - haskeline < 0.8.0 From ed7aac4eb4ddd55b307faf308c3e147b2c2fce0f Mon Sep 17 00:00:00 2001 From: Eric Conlon Date: Tue, 14 Jan 2020 14:45:34 -0800 Subject: [PATCH 1030/2682] remove hsinstall upper bound to accept 2.6 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index bdd8990d..06031d66 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3227,7 +3227,7 @@ packages: "Dino Morelli @dino-": - epub-metadata - - hsinstall < 2.5 # hsinstall is missing fmt, a dependency added in hsinstall 2.5 (https://github.com/commercialhaskell/stackage/issues/5064) + - hsinstall - tce-conf "Jonathan Fischoff @jfischoff": From 5587e7fdb6ac581ddd32c348266ee078a7d2c812 Mon Sep 17 00:00:00 2001 From: Eric Conlon Date: Tue, 14 Jan 2020 15:08:03 -0800 Subject: [PATCH 1031/2682] bound hedgehog --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 06031d66..c789e8f6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -267,7 +267,7 @@ packages: - normalization-insensitive < 0 # GHC 8.4 via unicode-transforms "Jacob Stanley @jacobstanley": - - hedgehog + - hedgehog < 1.0.2 # the hedgehog bound in tasty-hedgehog is incompatible with the latest version of hedgehog - hedgehog-quickcheck < 0 # via QuickCheck https://github.com/commercialhaskell/stackage/issues/4444 - transformers-bifunctors - unix-compat From 017168bd3fee0c1951adff46515163d8ec4236c5 Mon Sep 17 00:00:00 2001 From: Eric Conlon Date: Tue, 14 Jan 2020 15:30:50 -0800 Subject: [PATCH 1032/2682] add hedgehog issue link --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c789e8f6..0f1b3872 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -267,7 +267,7 @@ packages: - normalization-insensitive < 0 # GHC 8.4 via unicode-transforms "Jacob Stanley @jacobstanley": - - hedgehog < 1.0.2 # the hedgehog bound in tasty-hedgehog is incompatible with the latest version of hedgehog + - hedgehog < 1.0.2 # the hedgehog bound in tasty-hedgehog is incompatible with the latest version of hedgehog (https://github.com/commercialhaskell/stackage/issues/5068) - hedgehog-quickcheck < 0 # via QuickCheck https://github.com/commercialhaskell/stackage/issues/4444 - transformers-bifunctors - unix-compat From 13936b85fb4fa4187ccc0c2310cd2d67f5e0c1be Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 15 Jan 2020 15:13:10 +0800 Subject: [PATCH 1033/2682] enable pandoc and bunch of related packages --- build-constraints.yaml | 66 ++++++++++++++++++++++-------------------- 1 file changed, 34 insertions(+), 32 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7423c1df..fc7418ef 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -611,7 +611,7 @@ packages: - hybrid-vectors - indents - language-c - - persistent-mongoDB < 0 # via blaze-html & persistent & persistent-qq & persistent-template & persistent-test + - persistent-mongoDB < 0 # via mongoDB, bson - pretty-class - th-expand-syns - th-lift @@ -942,11 +942,11 @@ packages: "Vincent Berthoux @Twinside": - JuicyPixels - - FontyFruity < 0 # MonadFail - - Rasterific < 0 # via vector-algorithms + - FontyFruity + - Rasterific - svg-tree - - rasterific-svg < 0 # via Rasterific - - asciidiagram < 0 # via pandoc-types + - rasterific-svg + - asciidiagram "Patrick Brisbin @pbrisbin": - bugsnag-haskell < 0 # via yesod-core @@ -1386,7 +1386,7 @@ packages: - users-test < 0 # via users # - validate-input # https://github.com/agrafix/validate-input/issues/3 # - ignore # https://github.com/agrafix/ignore/issues/5 - - blaze-bootstrap < 0 # via blaze-html + - blaze-bootstrap - dataurl - psql-helpers < 0 # via postgresql-simple - superbuffer @@ -1585,9 +1585,9 @@ packages: - http-media "Greg V @myfreeweb": - - pcre-heavy < 0 # via string-conversions + - pcre-heavy - http-link-header - - microformats2-parser < 0 # via blaze-html + - microformats2-parser < 0 # via wai-cli - hspec-expectations-pretty-diff - wai-cli < 0 # via network-3.1.1.0 - magicbane < 0 # via ekg-wai @@ -1999,7 +1999,7 @@ packages: - objective < 0 - winery < 0 # via fast-builder - witherable < 0 # via monoidal-containers - - xml-lens < 0 # via case-insensitive-1.2.1.0 + - xml-lens "Peter Harpending @pharpend": - editor-open @@ -2299,10 +2299,10 @@ packages: - microlens-ghc - microlens-contra - shortcut-links < 0 # MonadFail - - cheapskate-highlight < 0 # via blaze-html - - cheapskate-lucid < 0 # via blaze-html - - cmark-lucid < 0 # GHC 8.4 via cmark - - cmark-highlight < 0 # GHC 8.4 via cmark + - cheapskate-highlight + - cheapskate-lucid + - cmark-lucid + - cmark-highlight < 0 # cmark-0.6 - Spock-lucid < 0 # GHC 8.4 via Spock - charsetdetect-ae # - text-all # text-1.2.3.0 @@ -2432,7 +2432,7 @@ packages: - core-text "Sean Hunt @ivan-m": - fgl @@ -2791,16 +2791,18 @@ packages: "John MacFarlane @jgm": - hsb2hs < 0 # build failure with GHC 8.4 - cmark - - texmath < 0 # via pandoc-types - - highlighting-kate < 0 # via blaze-html + - texmath + - highlighting-kate - skylighting - - pandoc-types < 1.19 || > 1.19 # Accidental upload, see: https://github.com/fpco/stackage/issues/2223 - - pandoc-types < 0 # via test-framework-quickcheck2 + - pandoc-types > 1.19 # https://github.com/fpco/stackage/issues/2223 - zip-archive - - doctemplates < 0 # via doclayout - - pandoc < 0 # via HsYAML-0.2.0.0 - - pandoc-citeproc < 0 # via pandoc-types - - ipynb < 0 # via aeson-diff + - doclayout < 0.3 # via pandoc-2.9.1.1 + - doctemplates < 0.8.1 # via doclayout + - emojis + - pandoc + - pandoc-citeproc + - HsYAML-aeson + - ipynb #< 0 # via aeson-diff "Karun Ramakrishnan @karun012": - doctest-discover @@ -3289,7 +3291,7 @@ packages: "Tom Nielsen @glutamate": - plotlyhs - - inliterate < 0 # via blaze-html & plotlyhs + - inliterate "Hyunje Jun @noraesae": - line < 0 # via scotty @@ -3387,7 +3389,7 @@ packages: - tsv2csv "Thomas Sutton @thsutton": - - aeson-diff < 0 # via base-4.13.0.0 + - aeson-diff - edit-distance-vector "Kyle Van Berendonck @donkeybonks": @@ -3509,7 +3511,7 @@ packages: - conduit-zstd "Alex Biehl @alexbiehl": - - haddock-library < 0 # via base-4.13.0.0 + - haddock-library - http-client-openssl "Mark Hopkins @mjhopkins": @@ -3581,7 +3583,7 @@ packages: "Daniel Campoverde @alx741": - currencies - - alerts < 0 # via blaze-html + - alerts - yesod-alerts < 0 # via yesod-core - graphite < 0 # via graphviz @@ -3938,12 +3940,12 @@ packages: - rfc1751 - murmur3 - nqe - - secp256k1-haskell < 0 # via string-conversions + - secp256k1-haskell - rocksdb-haskell - rocksdb-query - - haskoin-core < 0 # via secp256k1-haskell - - haskoin-node < 0 - - haskoin-store < 0 + - haskoin-core + - haskoin-node + - haskoin-store "asakamirai @asakamirai": - kazura-queue @@ -4144,7 +4146,7 @@ packages: - classy-prelude - classy-prelude-conduit - clientsession - - cmark-gfm < 0 # via blaze-html + - cmark-gfm - colour - concurrent-extra - conduit @@ -4439,7 +4441,7 @@ packages: - tar - tasty-lua - tasty-th - - tdigest < 0 # via vector-algorithms + - tdigest - template-haskell-compat-v0208 - temporary - temporary-rc From 1033de68a1b6ded802f0107a77db23cd52a13f8e Mon Sep 17 00:00:00 2001 From: John Ky Date: Wed, 15 Jan 2020 23:21:20 +1100 Subject: [PATCH 1034/2682] Remove hw-ip upper bound --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index fc7418ef..e1506bef 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2909,7 +2909,7 @@ packages: - hw-hedgehog - hw-hspec-hedgehog - hw-int - - hw-ip < 2.4 # the hw-ip bound in hw-dsv is incompatible with latest version of hw-ip (https://github.com/commercialhaskell/stackage/issues/5063) + - hw-ip - hw-fingertree - hw-fingertree-strict - hw-json From 131922643a0d2afa78df5853019477f7d235c53e Mon Sep 17 00:00:00 2001 From: John Ky Date: Wed, 15 Jan 2020 23:23:05 +1100 Subject: [PATCH 1035/2682] Enable asif --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index fc7418ef..13eab4e0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2896,7 +2896,7 @@ packages: - arbor-lru-cache - arbor-postgres - avro < 0 # via pure-zlib - - asif < 0 # via hw-ip + - asif - bits-extra - hw-balancedparens - hw-bits From 767842bedc545ad8b049acc60ecbf0c9e378acda Mon Sep 17 00:00:00 2001 From: John Ky Date: Wed, 15 Jan 2020 23:40:24 +1100 Subject: [PATCH 1036/2682] Enable antiope-core --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index fc7418ef..de197298 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2893,6 +2893,7 @@ packages: - irc-dcc < 0 "John Ky newhoggy@gmail.com @newhoggy": + - aeson-lens - arbor-lru-cache - arbor-postgres - avro < 0 # via pure-zlib @@ -2926,7 +2927,7 @@ packages: - hw-streams - hw-xml - pure-zlib < 0 # via base-compat-0.11.0 - - antiope-core < 0 # via aeson-lens + - antiope-core - antiope-dynamodb < 0 # via antiope-core - antiope-messages < 0 # via antiope-core - antiope-s3 < 0 # via antiope-core & antiope-messages From ac8c09631419db4140b2683d39b1d31ca3723091 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 16 Jan 2020 01:41:46 +0800 Subject: [PATCH 1037/2682] aws-lambda-haskell-runtime failing (#4299) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index fc7418ef..8c7ab447 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -425,7 +425,7 @@ packages: - ramus - require < 0 # via universum - tintin < 0 # via universum - - aws-lambda-haskell-runtime + # - aws-lambda-haskell-runtime # https://github.com/commercialhaskell/stackage/pull/4299 "Simon Jakobi @sjakobi": - path From 7c1205625591bcdb4a94e15fab38c9bffa2551c0 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 16 Jan 2020 01:46:49 +0800 Subject: [PATCH 1038/2682] re-disable haskoin-core (haskoin/haskoin-core#382) --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8c7ab447..27466f8f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3943,9 +3943,9 @@ packages: - secp256k1-haskell - rocksdb-haskell - rocksdb-query - - haskoin-core - - haskoin-node - - haskoin-store + - haskoin-core < 0 # MonadFail https://github.com/haskoin/haskoin-core/issues/382 + - haskoin-node < 0 # via haskoin-core + - haskoin-store < 0 # via haskoin-core "asakamirai @asakamirai": - kazura-queue From d24f541a61b76904e6a3bbe80230aa4cda869419 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 16 Jan 2020 01:52:24 +0800 Subject: [PATCH 1039/2682] disable cheapskate due to MonadFail (jgm/cheapskate#33) --- build-constraints.yaml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 27466f8f..0e8c508d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2299,8 +2299,8 @@ packages: - microlens-ghc - microlens-contra - shortcut-links < 0 # MonadFail - - cheapskate-highlight - - cheapskate-lucid + - cheapskate-highlight < 0 # cheapskate + - cheapskate-lucid < 0 # cheapskate - cmark-lucid - cmark-highlight < 0 # cmark-0.6 - Spock-lucid < 0 # GHC 8.4 via Spock @@ -2432,7 +2432,7 @@ packages: - core-text "Sean Hunt @ivan-m": - fgl @@ -3291,7 +3291,7 @@ packages: "Tom Nielsen @glutamate": - plotlyhs - - inliterate + - inliterate < 0 # cheapskate "Hyunje Jun @noraesae": - line < 0 # via scotty @@ -5608,6 +5608,7 @@ skipped-benchmarks: # These can also be checked for updates periodically. - o-clock # base-4.10 and time-1.8 via tiempo - minisat-solver # Cabal-2.2.0.1 via easyrender + - cmark-gfm # via cheapskate # Compilation failures - cipher-aes # https://github.com/vincenthz/hs-crypto-cipher/issues/46 From a08e5185953653ab1ae8a970b201ab8d5491feeb Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 16 Jan 2020 01:56:26 +0800 Subject: [PATCH 1040/2682] base64 benchmark not building (emilypi/base64#5) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0e8c508d..a21da924 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5412,6 +5412,7 @@ expected-benchmark-failures: - raaz # https://github.com/commercialhaskell/stackage/issues/4766 - thyme - xmlgen # https://github.com/skogsbaer/xmlgen/issues/6 + - base64 # https://github.com/emilypi/base64/issues/5 # end of expected-benchmark-failures From 9ff185cd87b1004c12624ce1f5092287ba1a9b88 Mon Sep 17 00:00:00 2001 From: Eric Conlon Date: Wed, 15 Jan 2020 11:22:21 -0800 Subject: [PATCH 1041/2682] Add climb and heart-app to @ejconlon's packages --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index a21da924..9f975161 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4071,6 +4071,8 @@ packages: "Eric Conlon @ejconlon": - blanks + - climb + - heart-app - heart-core - linenoise From 2adafa0a58486c8e68aeeb813968b178e544ddda Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 16 Jan 2020 08:41:05 +0800 Subject: [PATCH 1042/2682] enable more packages that were blocked by pandoc --- build-constraints.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f1c747c1..96bd7dd7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -129,7 +129,7 @@ packages: - control-dsl < 0 # via doctest-discover "Laurent P. René de Cotret @LaurentRDC": - - pandoc-pyplot < 0 # via pandoc + - pandoc-pyplot "Andrew Newman @andrewfnewman": - geojson @@ -2164,8 +2164,8 @@ packages: - bytestring-to-vector "Jakub Fijałkowski @jakubfijalkowski": - - hlibsass < 0 # template-haskell - - hsass < 0 # via hlibsass + - hlibsass + - hsass "Robert Massaioli @robertmassaioli": - range @@ -3766,7 +3766,7 @@ packages: "Guru Devanla @gdevanla": - pptable - cassava-records < 0 # MonadFail - - pandoc-markdown-ghci-filter < 0 # via pandoc + - pandoc-markdown-ghci-filter "Lucas David Traverso @ludat": - map-syntax < 0 # GHC 8.4 via base-4.11.0.0 @@ -4028,10 +4028,10 @@ packages: - rope-utf16-splay "Venkateswara Rao Mandela @vmandela": - - pandoc-csv2table < 0 # via pandoc + - pandoc-csv2table "Elben Shira @elben": - - pencil < 0 # via pandoc + - pencil "ARATA Mizuki @minoki": - unboxing-vector From d9a2ecad514992aff1b8ff590d6cbe6135aa2070 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 16 Jan 2020 08:49:00 +0800 Subject: [PATCH 1043/2682] re-enable haskoin-core again (haskoin/haskoin-core#382)" This reverts commit 7c1205625591bcdb4a94e15fab38c9bffa2551c0. --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 96bd7dd7..c20bdf89 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3944,9 +3944,9 @@ packages: - secp256k1-haskell - rocksdb-haskell - rocksdb-query - - haskoin-core < 0 # MonadFail https://github.com/haskoin/haskoin-core/issues/382 - - haskoin-node < 0 # via haskoin-core - - haskoin-store < 0 # via haskoin-core + - haskoin-core + - haskoin-node + - haskoin-store "asakamirai @asakamirai": - kazura-queue From 102e24ccdf44aed982d718391e36f2a6fe71a0d8 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 16 Jan 2020 08:53:16 +0800 Subject: [PATCH 1044/2682] Revert "base64 benchmark not building (emilypi/base64#5)" This reverts commit a08e5185953653ab1ae8a970b201ab8d5491feeb. --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c20bdf89..fee0845c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5413,7 +5413,6 @@ expected-benchmark-failures: - raaz # https://github.com/commercialhaskell/stackage/issues/4766 - thyme - xmlgen # https://github.com/skogsbaer/xmlgen/issues/6 - - base64 # https://github.com/emilypi/base64/issues/5 # end of expected-benchmark-failures From 1b72905d981c183832a5c27315a12e3f81f639e8 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 16 Jan 2020 09:19:11 +0800 Subject: [PATCH 1045/2682] allow hedgehog-1.0.2 (#5068) --- build-constraints.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index fee0845c..f1b6b6fc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -267,8 +267,8 @@ packages: - normalization-insensitive < 0 # GHC 8.4 via unicode-transforms "Jacob Stanley @jacobstanley": - - hedgehog < 1.0.2 # the hedgehog bound in tasty-hedgehog is incompatible with the latest version of hedgehog (https://github.com/commercialhaskell/stackage/issues/5068) - - hedgehog-quickcheck < 0 # via QuickCheck https://github.com/commercialhaskell/stackage/issues/4444 + - hedgehog + - hedgehog-quickcheck #< 0 # via QuickCheck https://github.com/commercialhaskell/stackage/issues/4444 - transformers-bifunctors - unix-compat @@ -4206,7 +4206,7 @@ packages: - double-conversion - dual-tree < 0 # via base-4.13.0.0 - easy-file - - easytest < 0 # via hedgehog-1.0.1 + - easytest < 0 # via hedgehog-1 - ed25519 - edit-distance - elm-bridge @@ -4931,7 +4931,7 @@ skipped-tests: - wide-word # via semirings - zlib # tasty-quickcheck, tasty-hunit, tasty - comfort-array # ChasingBottoms - - hw-int # via hw-hspec-hedgehog + - hw-int # Blocked due to tests failing to compile for GHC 8.6 - async-refresh From 800b186e7b6857a363b043c72a6b048320bd404b Mon Sep 17 00:00:00 2001 From: John Ky Date: Wed, 15 Jan 2020 23:26:52 +1100 Subject: [PATCH 1046/2682] Enable avro --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f1b6b6fc..9a414b5a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2896,8 +2896,8 @@ packages: - aeson-lens - arbor-lru-cache - arbor-postgres - - avro < 0 # via pure-zlib - asif + - avro - bits-extra - hw-balancedparens - hw-bits @@ -2926,7 +2926,6 @@ packages: - hw-succinct - hw-streams - hw-xml - - pure-zlib < 0 # via base-compat-0.11.0 - antiope-core - antiope-dynamodb < 0 # via antiope-core - antiope-messages < 0 # via antiope-core From ceb689bbff99e4c178a18b3c3d008a1b36f47b34 Mon Sep 17 00:00:00 2001 From: John Ky Date: Thu, 16 Jan 2020 13:38:40 +1100 Subject: [PATCH 1047/2682] Sort packages under John Ky --- build-constraints.yaml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9a414b5a..a23f0acd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2894,6 +2894,12 @@ packages: "John Ky newhoggy@gmail.com @newhoggy": - aeson-lens + - antiope-core + - antiope-dynamodb < 0 # via antiope-core + - antiope-messages < 0 # via antiope-core + - antiope-s3 < 0 # via antiope-core & antiope-messages + - antiope-sns < 0 # via antiope-core + - antiope-sqs < 0 # via antiope-core - arbor-lru-cache - arbor-postgres - asif @@ -2907,12 +2913,12 @@ packages: - hw-dsv - hw-eliasfano - hw-excess + - hw-fingertree + - hw-fingertree-strict - hw-hedgehog - hw-hspec-hedgehog - hw-int - hw-ip - - hw-fingertree - - hw-fingertree-strict - hw-json - hw-json-simple-cursor - hw-json-standard-cursor @@ -2923,15 +2929,9 @@ packages: - hw-rankselect - hw-rankselect-base - hw-simd - - hw-succinct - hw-streams + - hw-succinct - hw-xml - - antiope-core - - antiope-dynamodb < 0 # via antiope-core - - antiope-messages < 0 # via antiope-core - - antiope-s3 < 0 # via antiope-core & antiope-messages - - antiope-sns < 0 # via antiope-core - - antiope-sqs < 0 # via antiope-core "George Wilson @gwils": - hedgehog-fn From 426f326ad7b3c0e69868abfcfe71404c700383c5 Mon Sep 17 00:00:00 2001 From: John Ky Date: Thu, 16 Jan 2020 13:48:26 +1100 Subject: [PATCH 1048/2682] Enable antiope projects --- build-constraints.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a23f0acd..85dc139f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2895,11 +2895,11 @@ packages: "John Ky newhoggy@gmail.com @newhoggy": - aeson-lens - antiope-core - - antiope-dynamodb < 0 # via antiope-core - - antiope-messages < 0 # via antiope-core - - antiope-s3 < 0 # via antiope-core & antiope-messages - - antiope-sns < 0 # via antiope-core - - antiope-sqs < 0 # via antiope-core + - antiope-dynamodb + - antiope-messages + - antiope-s3 + - antiope-sns + - antiope-sqs - arbor-lru-cache - arbor-postgres - asif From 7d870acf02ee0f6cd7c51ce24b4d4f07818fb226 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 15 Jan 2020 21:14:12 -0800 Subject: [PATCH 1049/2682] Add constraint per arbor/asif#43 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 85dc139f..386ed17f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4621,6 +4621,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5037 - haskeline < 0.8.0 + # https://github.com/arbor/asif/issues/43 + - asif < 6.0.2 + # end of packages # Package flags are applied to individual packages, and override the values of From 847f62c3cbe2db62bdf20682f104ba0b61eb2835 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 15 Jan 2020 21:15:00 -0800 Subject: [PATCH 1050/2682] Block package per haskoin/haskoin-store#12 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 386ed17f..42f0c815 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3945,7 +3945,7 @@ packages: - rocksdb-query - haskoin-core - haskoin-node - - haskoin-store + - haskoin-store < 0 # https://github.com/haskoin/haskoin-store/issues/12 "asakamirai @asakamirai": - kazura-queue From cd1d3959e577f5a59001ce1602c1f71b7e68cdab Mon Sep 17 00:00:00 2001 From: Eric Conlon Date: Wed, 15 Jan 2020 21:16:20 -0800 Subject: [PATCH 1051/2682] (Remove heart-app, as co-log is not present) --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9f975161..58d1b115 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4072,7 +4072,6 @@ packages: "Eric Conlon @ejconlon": - blanks - climb - - heart-app - heart-core - linenoise From c709334f27d5b8bb240f3d3e90ddab1d5bb2de6a Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 15 Jan 2020 21:21:05 -0800 Subject: [PATCH 1052/2682] Unblock dhall, in the spirit of #4860 --- build-constraints.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 42f0c815..e5272d07 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -158,7 +158,7 @@ packages: "Phil de Joux @philderbeast": - siggy-chardust - detour-via-sci - - hpack-dhall < 0 # via dhall & dhall-json + - hpack-dhall < 0 # via hpack "Matthew Ahrens @mpahrens": - forkable-monad @@ -1048,9 +1048,10 @@ packages: - turtle - foldl - bench - - dhall < 0 # via cborg-json - - dhall-bash < 0 # via dhall - - dhall-json < 0 # via dhall + - dhall + - dhall-bash + - dhall-json + - aeson-yaml # req'd by dhall-json # - dhall-nix # deriving-compat via hnix "Andrew Thaddeus Martin @andrewthad": @@ -1119,7 +1120,7 @@ packages: "Ben Gamari @bgamari": - vector-fftw < 0 # GHC 8.4 via base-4.11.0.0 - - cborg-json < 0 # via base-4.13.0.0 + - cborg-json "Roman Cheplyaka @feuerbach": - action-permutations @@ -3414,7 +3415,7 @@ packages: "Peter Trško @trskop": - between - connection-pool - - verbosity < 0 # via dhall + - verbosity "Devon Hollowood @devonhollowood": - search-algorithms @@ -5263,7 +5264,6 @@ expected-test-failures: # Missing test files in sdist # Hopefully gets fixed in the next release... - crypto-pubkey # https://github.com/vincenthz/hs-crypto-pubkey/issues/23 - - dhall-json # https://github.com/dhall-lang/dhall-haskell/issues/996 - doctest-discover # 0.1.0.9 https://github.com/karun012/doctest-discover/issues/22 - graylog # 0.1.0.1 https://github.com/fpco/stackage/pull/1254 From fcffd3a2542f02a83b3d3fd39fcafaaf287d943c Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 15 Jan 2020 21:23:26 -0800 Subject: [PATCH 1053/2682] Block asif per arbor/asif#43 --- build-constraints.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e5272d07..e7754082 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2903,7 +2903,7 @@ packages: - antiope-sqs - arbor-lru-cache - arbor-postgres - - asif + - asif < 0 # https://github.com/arbor/asif/issues/43 - avro - bits-extra - hw-balancedparens @@ -4622,9 +4622,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5037 - haskeline < 0.8.0 - # https://github.com/arbor/asif/issues/43 - - asif < 6.0.2 - # end of packages # Package flags are applied to individual packages, and override the values of From 53f3be4c34972a25dd17b413996ee96c84429f48 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 15 Jan 2020 21:26:26 -0800 Subject: [PATCH 1054/2682] Block package per baig/pandoc-csv2table#27 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e7754082..1412a117 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4028,7 +4028,7 @@ packages: - rope-utf16-splay "Venkateswara Rao Mandela @vmandela": - - pandoc-csv2table + - pandoc-csv2table < 0 # https://github.com/baig/pandoc-csv2table/issues/27 "Elben Shira @elben": - pencil From 2221dba9ebc4f7dbfec3c1780b5e872671af08c4 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 15 Jan 2020 21:41:44 -0800 Subject: [PATCH 1055/2682] Block hlibsass and revdeps per #5075 --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1412a117..abdac281 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2165,8 +2165,8 @@ packages: - bytestring-to-vector "Jakub Fijałkowski @jakubfijalkowski": - - hlibsass - - hsass + - hlibsass < 0 # https://github.com/commercialhaskell/stackage/issues/5075 + - hsass < 0 # via hlibsass "Robert Massaioli @robertmassaioli": - range @@ -4031,7 +4031,7 @@ packages: - pandoc-csv2table < 0 # https://github.com/baig/pandoc-csv2table/issues/27 "Elben Shira @elben": - - pencil + - pencil < 0 # via hsass "ARATA Mizuki @minoki": - unboxing-vector From bf2ebe6bfbbef46987b964284824e75e72ee70fe Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 15 Jan 2020 21:42:14 -0800 Subject: [PATCH 1056/2682] Block package per gdevanla/pandoc-markdown-ghci-filter#3 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index abdac281..4f30b8ff 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3766,7 +3766,7 @@ packages: "Guru Devanla @gdevanla": - pptable - cassava-records < 0 # MonadFail - - pandoc-markdown-ghci-filter + - pandoc-markdown-ghci-filter < 0 # https://github.com/gdevanla/pandoc-markdown-ghci-filter/issues/3 "Lucas David Traverso @ludat": - map-syntax < 0 # GHC 8.4 via base-4.11.0.0 From 200c33a2e252d45ce005e801d30f79712ed97891 Mon Sep 17 00:00:00 2001 From: "(cdep)illabout" Date: Fri, 17 Jan 2020 13:34:47 +0900 Subject: [PATCH 1057/2682] Mark xml-html-qq as building. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e4b74069..610210f8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2371,7 +2371,7 @@ packages: - servant-static-th < 0 # via http-media - termonad < 0 # via gi-vte - world-peace - - xml-html-qq < 0 # via html-conduit + - xml-html-qq - xml-indexed-cursor "Franklin Chen @FranklinChen": From 1931118fabafc03a75e43c37820d8e313ddb641c Mon Sep 17 00:00:00 2001 From: "(cdep)illabout" Date: Fri, 17 Jan 2020 13:48:56 +0900 Subject: [PATCH 1058/2682] Mark servant-static-th as building. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 610210f8..cf3a48d6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2368,7 +2368,7 @@ packages: - servant-checked-exceptions < 0 # via servant-server - servant-checked-exceptions-core < 0 # via http-media - servant-rawm < 0 # via http-media - - servant-static-th < 0 # via http-media + - servant-static-th - termonad < 0 # via gi-vte - world-peace - xml-html-qq From 8cb5ec08738e69b0aee41185b9a361c665053887 Mon Sep 17 00:00:00 2001 From: "(cdep)illabout" Date: Fri, 17 Jan 2020 13:55:11 +0900 Subject: [PATCH 1059/2682] Mark servant-rawm as building. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index cf3a48d6..84575b40 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2367,7 +2367,7 @@ packages: - read-env-var - servant-checked-exceptions < 0 # via servant-server - servant-checked-exceptions-core < 0 # via http-media - - servant-rawm < 0 # via http-media + - servant-rawm - servant-static-th - termonad < 0 # via gi-vte - world-peace From cf12ad68defcd603a98643ef15bb1a51fb4e81f6 Mon Sep 17 00:00:00 2001 From: "(cdep)illabout" Date: Fri, 17 Jan 2020 13:58:36 +0900 Subject: [PATCH 1060/2682] Mark servant-checked-exceptions and servant-checked-exceptions-core as building. --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 84575b40..aa986446 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2365,8 +2365,8 @@ packages: - pretty-simple - print-console-colors - read-env-var - - servant-checked-exceptions < 0 # via servant-server - - servant-checked-exceptions-core < 0 # via http-media + - servant-checked-exceptions + - servant-checked-exceptions-core - servant-rawm - servant-static-th - termonad < 0 # via gi-vte From 4e9d625691f53fe9a30f570b7d84dc12547c3226 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 16 Jan 2020 21:39:08 -0800 Subject: [PATCH 1061/2682] Unconstrain a few things --- build-constraints.yaml | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e4b74069..73b9b4e1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4113,6 +4113,7 @@ packages: - base64-bytestring-type - base64-string - bimap + - bin # req'd by boring - binary-orphans - binary-parser - binary-tagged @@ -4370,6 +4371,7 @@ packages: - quickcheck-io - quickcheck-simple - quickcheck-unicode + - ral # req'd by boring - random - random-shuffle - range-set-list @@ -4607,19 +4609,6 @@ packages: - parser-combinators-tests < 1.2.1 - mmark < 0.0.7.2 - # https://github.com/commercialhaskell/stackage/issues/4992 - - swagger2 < 2.5 - - # https://github.com/commercialhaskell/stackage/issues/4998 - - monad-logger-syslog < 0.1.6.0 - - # https://github.com/commercialhaskell/stackage/issues/5024 - - boring < 0.1.3 - - vec < 0.3 - - # https://github.com/commercialhaskell/stackage/issues/5025 - - hie-bios < 0.3 - # https://github.com/commercialhaskell/stackage/issues/5037 - haskeline < 0.8.0 @@ -5208,6 +5197,7 @@ expected-test-failures: - hasql # PostgreSQL - hasql-transaction # PostgreSQL - hedis + - hie-bios # cabal, stack, ghc; see https://github.com/commercialhaskell/stackage/issues/5025 - hocilib # oracle - hworker - influxdb From 3d50eecd205f559873acdee1a3f9bb01e6878f93 Mon Sep 17 00:00:00 2001 From: "(cdep)illabout" Date: Fri, 17 Jan 2020 14:44:22 +0900 Subject: [PATCH 1062/2682] Remove hailgun because it doesn't build and I don't keep it up to date anymore. --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index aa986446..b6d8210e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2358,7 +2358,6 @@ packages: "Dennis Gosnell @cdepillabout": - envelope - from-sum - - hailgun < 0 # via http-client-0.6.1 - natural-transformation - password - password-instances < 0 # via persistent From d31a7f680cc71bd251b4ae57bafc2d8f8c5ab5ee Mon Sep 17 00:00:00 2001 From: John Ky Date: Sat, 18 Jan 2020 00:01:56 +1100 Subject: [PATCH 1063/2682] Enable asif --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 73b9b4e1..46c304bf 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2903,7 +2903,7 @@ packages: - antiope-sqs - arbor-lru-cache - arbor-postgres - - asif < 0 # https://github.com/arbor/asif/issues/43 + - asif - avro - bits-extra - hw-balancedparens From 7706d18a8ecf0c4c1ab9d6e8d37a9eb9ec2f71e3 Mon Sep 17 00:00:00 2001 From: "(cdep)illabout" Date: Sat, 18 Jan 2020 10:53:47 +0900 Subject: [PATCH 1064/2682] Mark password-instances as building. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 73b9b4e1..732ddabc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2361,7 +2361,7 @@ packages: - hailgun < 0 # via http-client-0.6.1 - natural-transformation - password - - password-instances < 0 # via persistent + - password-instances - pretty-simple - print-console-colors - read-env-var From d12ce31e86963bfe42139fa9c58ce68c17afd68c Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Fri, 17 Jan 2020 18:05:11 -0800 Subject: [PATCH 1065/2682] Block packages per mrkkrp/ghc-syntax-highlighter#14 --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 73b9b4e1..b7a4c714 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2513,7 +2513,7 @@ packages: - flac - flac-picture - forma - - ghc-syntax-highlighter + - ghc-syntax-highlighter < 0 # https://github.com/mrkkrp/ghc-syntax-highlighter/issues/14 - hspec-megaparsec - htaglib - html-entity-map @@ -2522,8 +2522,8 @@ packages: - megaparsec - megaparsec-tests - mmark - - mmark-cli - - mmark-ext + - mmark-cli < 0 # via ghc-syntax-highlighter + - mmark-ext < 0 # via ghc-syntax-highlighter - modern-uri - pagination - parser-combinators From 9a3c3649cb5fbd56761c9a1e8a12a9357361497b Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Fri, 17 Jan 2020 18:25:36 -0800 Subject: [PATCH 1066/2682] Update instructions on how to free up more space --- CURATORS.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CURATORS.md b/CURATORS.md index 0f4492a4..2aef301a 100644 --- a/CURATORS.md +++ b/CURATORS.md @@ -334,6 +334,9 @@ LTS minor bumps typically are run on Sundays. ### Website sync debugging (and other out of disk space errors) * You can detect the problem by running `df`. If you see that `/` is out of space, we have a problem +* If you see that `/var/stackage/` is out of space, you can: + * `rm -r /var/stackage/stackage/automated/lts*/work/unpack-dir/unpacked/` + * `rm -r /var/stackage/stackage/automated/nightly/work/unpack-dir/unpacked/` * (outdated) There are many temp files inside `/home/ubuntu/stackage-server-cron` that can be cleared out occasionally * (outdated) You can then manually run `/home/ubuntu/stackage-server-cron.sh`, or wait for the cron job to do it From 03817f80dc4e9e9ca7645b7ad1f5bafe4ed0da5a Mon Sep 17 00:00:00 2001 From: Shayne Fletcher Date: Sat, 18 Jan 2020 16:34:43 -0500 Subject: [PATCH 1067/2682] add ghc-lib-parser-ex --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9cc3708b..85a7e465 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -682,6 +682,9 @@ packages: - ghc-lib - ghc-lib-parser + "Shayne Fletcher ": + - ghc-lib-parser-ex + "Karl Ostmo @kostmo": - perfect-hash-generator From 694fc18a0c7a811542a8c5d575d41e4fddaae0ca Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sat, 18 Jan 2020 18:43:21 -0800 Subject: [PATCH 1068/2682] Constrain structured-cli until haskeline is unconstrained, see #5037 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9cc3708b..24dde9ff 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4610,6 +4610,7 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5037 - haskeline < 0.8.0 + - structured-cli < 2.6 # end of packages From 055b469883f9d3102f6d2dcdfd08a5cf641a6d8f Mon Sep 17 00:00:00 2001 From: Will Coster Date: Sat, 18 Jan 2020 22:16:20 -0800 Subject: [PATCH 1069/2682] Re-enable scalpel Version 0.6.1 was just published which works with the latest nightly stackage (2019-01-18). --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ed29fbf8..2acd15fe 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1908,8 +1908,8 @@ packages: "Will Coster @fimad": - prometheus-client - prometheus-metrics-ghc < 0 # Build failure: https://github.com/fimad/prometheus-haskell/issues/39 - - scalpel < 0 # via scalpel-core - - scalpel-core < 0 # compilation error + - scalpel + - scalpel-core - wai-middleware-prometheus < 0 # GHC 8.4 via prometheus-client "William Casarin @jb55": From bb2e4838328ac79e93e2d95ff81d7bfe8023226e Mon Sep 17 00:00:00 2001 From: bravit Date: Sun, 19 Jan 2020 13:11:09 +0300 Subject: [PATCH 1070/2682] Enable bunch of diagrams-* packages --- build-constraints.yaml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ed29fbf8..0a50abbf 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -359,7 +359,7 @@ packages: - lazyio - markov-chain - midi - - midi-music-box < 0 # via diagrams-lib + - midi-music-box - mbox-utility - med-module < 0 # compilation failure - monoid-transformer @@ -924,21 +924,21 @@ packages: "Brent Yorgey @byorgey": - active < 0 # via base-4.13.0.0 - - diagrams < 0 # via diagrams-contrib - - diagrams-builder < 0 # via lens-4.17 + - diagrams + - diagrams-builder - diagrams-cairo < 0 # via lens-4.17 - diagrams-canvas < 0 # via lens-4.17 - - diagrams-contrib < 0 # via base-4.13.0.0 - - diagrams-core < 0 # via base-4.13.0.0 & lens-4.18.1 + - diagrams-contrib + - diagrams-core - diagrams-gtk < 0 # via diagrams-cairo - diagrams-html5 < 0 # via lens-4.17 - - diagrams-lib < 0 # via base-4.13.0.0 - - diagrams-postscript < 0 # via base-4.13.0.0 & lens-4.18.1 - - diagrams-rasterific < 0 # via base-4.13.0.0 & lens-4.18.1 & optparse-applicative-0.15.1.0 - - diagrams-solve < 0 # via base-4.13.0.0 - - diagrams-svg < 0 # via base-4.13.0.0 & lens-4.18.1 & optparse-applicative-0.15.1.0 - - force-layout < 0 # via base-4.13.0.0 - - SVGFonts < 0 # via diagrams-core + - diagrams-lib + - diagrams-postscript + - diagrams-rasterific + - diagrams-solve + - diagrams-svg + - force-layout + - SVGFonts - haxr < 0 # GHC 8.4 via HaXml - MonadRandom - monoid-extras < 0 # via base-4.13.0.0 @@ -1566,7 +1566,7 @@ packages: "Jeffrey Rosenbluth @jeffreyrosenbluth": - palette < 0 # via base-4.13.0.0 - diagrams-canvas - - svg-builder < 0 # via base-4.13.0.0 + - svg-builder "Gabríel Arthúr Pétursson @polarina": - sdl2 @@ -4011,7 +4011,7 @@ packages: "Vitaly Bragilevsky @bravit": - Chart - - Chart-diagrams < 0 # via diagrams-core & diagrams-lib & diagrams-postscript & diagrams-svg & svg-builder + - Chart-diagrams "Juri Chomé @2mol": - msgpack < 0 # via base-4.13.0.0 From 98cd8a6a01153e570d1a4daa830e5e7d1c792df4 Mon Sep 17 00:00:00 2001 From: bravit Date: Sun, 19 Jan 2020 13:31:47 +0300 Subject: [PATCH 1071/2682] fix deps --- build-constraints.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0a50abbf..cef34446 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -359,7 +359,7 @@ packages: - lazyio - markov-chain - midi - - midi-music-box + - midi-music-box < 0 # via diagrams-lib - mbox-utility - med-module < 0 # compilation failure - monoid-transformer @@ -923,9 +923,9 @@ packages: - rank2classes < 0 # via template-haskell-2.15.0.0 "Brent Yorgey @byorgey": - - active < 0 # via base-4.13.0.0 + - active - diagrams - - diagrams-builder + - diagrams-builder < 0 # via lens-4.17 - diagrams-cairo < 0 # via lens-4.17 - diagrams-canvas < 0 # via lens-4.17 - diagrams-contrib @@ -941,7 +941,7 @@ packages: - SVGFonts - haxr < 0 # GHC 8.4 via HaXml - MonadRandom - - monoid-extras < 0 # via base-4.13.0.0 + - monoid-extras "Vincent Berthoux @Twinside": - JuicyPixels @@ -1158,7 +1158,7 @@ packages: - hweblib "Joachim Breitner @nomeata": - - circle-packing < 0 # via base-4.13.0.0 + - circle-packing - haskell-spacegoo < 0 # MonadFail - tasty-expected-failure @@ -1893,7 +1893,7 @@ packages: - gloss-rendering < 0 # @benl23x5 # via base-4.13.0.0 - gpolyline # @fegu - postgresql-simple-migration < 0 # via time-1.9.3 # @ameingast - - statestack < 0 # via base-4.13.0.0 # @diagrams + - statestack < 0 "Marios Titas @redneb": - HsOpenSSL-x509-system < 0 # via HsOpenSSL @@ -4208,7 +4208,7 @@ packages: - dlist-instances - dlist-nonempty - double-conversion - - dual-tree < 0 # via base-4.13.0.0 + - dual-tree - easy-file - easytest < 0 # via hedgehog-1 - ed25519 From ea00a6859aa516fef22e68bb6b109f126a83d20c Mon Sep 17 00:00:00 2001 From: bravit Date: Sun, 19 Jan 2020 13:44:07 +0300 Subject: [PATCH 1072/2682] more deps fixes --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index cef34446..15dc22a1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1893,7 +1893,7 @@ packages: - gloss-rendering < 0 # @benl23x5 # via base-4.13.0.0 - gpolyline # @fegu - postgresql-simple-migration < 0 # via time-1.9.3 # @ameingast - - statestack < 0 + - statestack "Marios Titas @redneb": - HsOpenSSL-x509-system < 0 # via HsOpenSSL @@ -4417,7 +4417,7 @@ packages: - simple-reflect - simple-sendfile - singleton-bool - - size-based < 0 # via template-haskell-2.15.0.0 + - size-based < 0 - skein - skylighting-core - snap-core < 0 # via test-framework @@ -4457,7 +4457,7 @@ packages: - test-framework-quickcheck2 - test-framework-smallcheck - test-framework-th - - testing-feat < 0 # via size-based + - testing-feat - testing-type-modifiers - text-builder - text-icu From c5a88eb613c199fb2e03645bf17778021d48d3ae Mon Sep 17 00:00:00 2001 From: Marco Z Date: Sun, 19 Jan 2020 11:47:38 +0100 Subject: [PATCH 1073/2682] Removed 'network-multicast', 'plot-light' --- build-constraints.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ed29fbf8..c51cd4bd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -467,9 +467,7 @@ packages: - sparse-linear-algebra - matrix-market-attoparsec - mwc-probability-transition < 0 # via logging-effect - - network-multicast < 0 # via network-bsd - xeno - - plot-light < 0 # transitive compilation failure - datasets < 0 # via req - lucid-extras - rigel-viz From fe1d1f2f4ec119b4a072a13f52e464d2b9c8b420 Mon Sep 17 00:00:00 2001 From: bravit Date: Sun, 19 Jan 2020 13:51:41 +0300 Subject: [PATCH 1074/2682] enable size-based --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 15dc22a1..4a979d03 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4417,7 +4417,7 @@ packages: - simple-reflect - simple-sendfile - singleton-bool - - size-based < 0 + - size-based - skein - skylighting-core - snap-core < 0 # via test-framework From 8d2e747755952e5622ef4fb669fde243fb268d3d Mon Sep 17 00:00:00 2001 From: Simon Jakobi Date: Sun, 19 Jan 2020 15:32:28 +0100 Subject: [PATCH 1075/2682] Re-enable snap-server and threepenny-gui --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ed29fbf8..0234dc0f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -430,8 +430,8 @@ packages: "Simon Jakobi @sjakobi": - path - present < 0 # MonadFail - - threepenny-gui < 0 # via base-4.13.0.0 - - snap-server < 0 # via base-4.13.0.0 + - threepenny-gui + - snap-server - newtype-generics - bsb-http-chunked - coercible-utils From 75d05a68b581b2662cdf0d662ca94b978a3707a2 Mon Sep 17 00:00:00 2001 From: Simon Jakobi Date: Sun, 19 Jan 2020 15:49:27 +0100 Subject: [PATCH 1076/2682] Re-enable dependencies --- build-constraints.yaml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0234dc0f..1cb29a4a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -539,7 +539,7 @@ packages: - s3-signer < 0 # via http-types # - google-translate # servant 0.12 # - hackernews # servant 0.12 - - ses-html < 0 # via http-streams + - ses-html # - stripe-haskell # free 5 # - stripe-http-streams # free 5 - stripe-core < 0 # via aeson-1.3.1.0 @@ -712,7 +712,7 @@ packages: # profiteur # aeson-1.4.0.0 - psqueues - websockets - - websockets-snap < 0 # via io-streams + - websockets-snap - hakyll < 0 # jaspervdj/hakyll#691 "Sibi Prabakaran @psibi": @@ -1558,7 +1558,7 @@ packages: - mole < 0 # GHC 8.4 via base-4.11.0.0 - publicsuffix - rethinkdb-client-driver - - snap-blaze < 0 # via snap-core + - snap-blaze "Alexandr Kurilin @alex_kurilin": - bcrypt @@ -2428,7 +2428,7 @@ packages: "Andrew Cowie @afcowie": - chronologique - http-common - - http-streams < 0 # via io-streams & openssl-streams + - http-streams - locators < 0 # via cryptohash - core-data - core-program @@ -2968,7 +2968,7 @@ packages: - postgresql-transactional < 0 # via postgresql-simple "Tom Murphy ": - - gingersnap < 0 # via snap-core + - gingersnap - microspec - midair - nano-erl @@ -4292,7 +4292,7 @@ packages: - insert-ordered-containers - inspection-testing - integer-logarithms - - io-streams-haproxy < 0 # via base-4.13.0.0 + - io-streams-haproxy - ixset-typed < 0 # via safecopy-0.10.0 - json < 0 # via base-4.13.0.0 - json-alt @@ -4420,7 +4420,7 @@ packages: - size-based < 0 # via template-haskell-2.15.0.0 - skein - skylighting-core - - snap-core < 0 # via test-framework + - snap-core - some - special-values - splice @@ -4874,7 +4874,6 @@ skipped-tests: - hackage-security # QuickCheck - haddock-library # base-compat-0.10.1, hspec-2.5.1 - haskell-names # via tasty-1.2 - - http-streams # via snap-server-1.1.0.0 - hw-balancedparens # via QuickCheck-2.12.6.1, via hspec-2.6.0 - hw-bits # via QuickCheck-2.12.6.1 - hw-excess # via QuickCheck-2.12.6.1, via hspec-2.6.0 From 54e2c49daed5ec5fe43715a852e3755693552cf6 Mon Sep 17 00:00:00 2001 From: Simon Jakobi Date: Sun, 19 Jan 2020 16:04:55 +0100 Subject: [PATCH 1077/2682] Re-enable openssl-streams --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1cb29a4a..44507207 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2423,7 +2423,7 @@ packages: "Gregory Collins @gregorycollins": - hashtables - io-streams - - openssl-streams < 0 # via test-framework-hunit + - openssl-streams "Andrew Cowie @afcowie": - chronologique From b6dd5c0691f5432d76dec36f69d373c185b5a0f4 Mon Sep 17 00:00:00 2001 From: Simon Jakobi Date: Sun, 19 Jan 2020 16:07:52 +0100 Subject: [PATCH 1078/2682] Re-add http-streams to "skipped-tests" section --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 44507207..bac62547 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4874,6 +4874,7 @@ skipped-tests: - hackage-security # QuickCheck - haddock-library # base-compat-0.10.1, hspec-2.5.1 - haskell-names # via tasty-1.2 + - http-streams # via snap-server-1.1.0.0 - hw-balancedparens # via QuickCheck-2.12.6.1, via hspec-2.6.0 - hw-bits # via QuickCheck-2.12.6.1 - hw-excess # via QuickCheck-2.12.6.1, via hspec-2.6.0 From 20d938ba0610a607d01a0405471d323040092d34 Mon Sep 17 00:00:00 2001 From: Simon Jakobi Date: Sun, 19 Jan 2020 16:16:10 +0100 Subject: [PATCH 1079/2682] Unskip benchmarks for newtype-generics --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index bac62547..5779989a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5556,7 +5556,6 @@ skipped-benchmarks: - monad-logger-prefix - monad-memo - netpbm - - newtype-generics - openpgp-asciiarmor - phantom-state - pretty-simple From 113ae56bc6d2704d6122932d5822f7a383b02f19 Mon Sep 17 00:00:00 2001 From: Dmitrii Kovanikov Date: Sun, 19 Jan 2020 18:30:28 +0000 Subject: [PATCH 1080/2682] Add co-log family of packages --- build-constraints.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ed29fbf8..ea70e190 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3561,8 +3561,9 @@ packages: - universum "Kowainik @chshersh @vrom911": - - co-log < 0 # via base-4.13.0.0 - - co-log-core < 0 # via base-4.13.0.0 + - co-log-core + - co-log + - co-log-polysemy - first-class-patterns - ilist - relude From f7af1a8d5c1b9cbc02abad8367672b2992f1f327 Mon Sep 17 00:00:00 2001 From: Daniel Taskoff Date: Mon, 20 Jan 2020 14:30:23 +0200 Subject: [PATCH 1081/2682] Update a GitHub username after renaming --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ed29fbf8..da4910a4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -93,7 +93,7 @@ packages: [] # - hal # https://github.com/commercialhaskell/stackage/issues/4288 - "Daniel Taskoff @leohaskell": + "Daniel Taskoff @dtaskoff": - skip-var "Dzianis Kabanau @kobargh": From cce2acf49f4b438a4887ac3cd71b8f9abba6a142 Mon Sep 17 00:00:00 2001 From: Daniel Taskoff Date: Mon, 20 Jan 2020 16:08:00 +0200 Subject: [PATCH 1082/2682] Add hlibcpuid --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ed29fbf8..4fb24d8e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -94,6 +94,7 @@ packages: # - hal # https://github.com/commercialhaskell/stackage/issues/4288 "Daniel Taskoff @leohaskell": + - hlibcpuid - skip-var "Dzianis Kabanau @kobargh": From 11f6c00e1e351685250c87efefe0d69fc19b3a3e Mon Sep 17 00:00:00 2001 From: Daniel Taskoff Date: Mon, 20 Jan 2020 16:50:31 +0200 Subject: [PATCH 1083/2682] Add system-info --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ed29fbf8..d6c241b6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -95,6 +95,7 @@ packages: "Daniel Taskoff @leohaskell": - skip-var + - system-info "Dzianis Kabanau @kobargh": - template-toolkit < 0 # via regex-pcre-builtin From 86170092724f8f8cec7cf3d5fb87ff2ed4283d74 Mon Sep 17 00:00:00 2001 From: Pavan Rikhi Date: Mon, 20 Jan 2020 13:12:15 -0500 Subject: [PATCH 1084/2682] Add sitemap-gen --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ed29fbf8..faf54673 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3986,6 +3986,7 @@ packages: - servant-auth-wordpress < 0 # via servant-server - ca-province-codes - mx-state-codes + - sitemap-gen "David Baynard @dbaynard": - time-qq < 0 # see christian-marie/time-qq#3 From 47db116e0df701f7c32f4037fb39bc668423d746 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Mon, 20 Jan 2020 16:50:04 -0800 Subject: [PATCH 1085/2682] Add constraint "byteslice < 0.2.0.0" per #5090 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ed29fbf8..62584f57 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4615,6 +4615,9 @@ packages: - haskeline < 0.8.0 - structured-cli < 2.6 + # https://github.com/commercialhaskell/stackage/issues/5090 + - byteslice < 0.2.0.0 + # end of packages # Package flags are applied to individual packages, and override the values of From 051124c7898f6d837056e691b8bf557827cfa804 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Mon, 20 Jan 2020 17:02:48 -0800 Subject: [PATCH 1086/2682] Unblock chronos, needed for #5085 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c5f70bc0..4fe4f237 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2126,7 +2126,7 @@ packages: - country < 0 # via base-4.13.0.0 - semirings - torsor - - chronos < 0 # also test-framework + - chronos "Kostiantyn Rybnikov @k-bx": - SHA From 20b4a49a6be4fc653853169480721f84265dd0f3 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 21 Jan 2020 15:44:47 +0800 Subject: [PATCH 1087/2682] massiv-test testsuite fail to build (lehins/massiv#90) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4fe4f237..de7946e8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5296,6 +5296,7 @@ expected-test-failures: - haskell-tools-builtin-refactorings - hweblib # https://github.com/aycanirican/hweblib/issues/3 - libraft # https://github.com/commercialhaskell/stackage/issues/4337#issuecomment-462465921 + - massiv-test # https://github.com/lehins/massiv/issues/90 - multiset # doctests require Glob, a hidden package - perf # https://github.com/fpco/stackage/pull/2859 - picosat # https://github.com/fpco/stackage/pull/2382 From e551796314ceec9d28b5b20afc6fcf98baa1d4c5 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 21 Jan 2020 15:50:52 +0800 Subject: [PATCH 1088/2682] massiv-test fails to build (lehins/massiv#90)" not its testsuite This reverts commit 20b4a49a6be4fc653853169480721f84265dd0f3. --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index de7946e8..e6153d8c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3308,7 +3308,7 @@ packages: # - hip # lens 4.16 via diagrams/chart - massiv - massiv-io - - massiv-test + # - massiv-test # https://github.com/lehins/massiv/issues/90 - scheduler - Color @@ -5296,7 +5296,6 @@ expected-test-failures: - haskell-tools-builtin-refactorings - hweblib # https://github.com/aycanirican/hweblib/issues/3 - libraft # https://github.com/commercialhaskell/stackage/issues/4337#issuecomment-462465921 - - massiv-test # https://github.com/lehins/massiv/issues/90 - multiset # doctests require Glob, a hidden package - perf # https://github.com/fpco/stackage/pull/2859 - picosat # https://github.com/fpco/stackage/pull/2382 From dd2bad60412987d433851f36b2bc2112a6289f17 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 21 Jan 2020 16:00:54 +0800 Subject: [PATCH 1089/2682] switch nightly to ghc-8.2.2 --- Dockerfile | 2 +- build-constraints.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index fa3dc0c2..94240b03 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM fpco/pid1:18.04 ENV HOME /home/stackage ENV LANG en_US.UTF-8 -ENV GHCVER 8.8.1 +ENV GHCVER 8.8.2 # NOTE: also update debian-bootstrap.sh when cuda version changes ENV PATH /home/stackage/.stack/programs/x86_64-linux/ghc-$GHCVER/bin:/usr/local/cuda-10.0/bin:/usr/sbin:/usr/bin:/sbin:/bin diff --git a/build-constraints.yaml b/build-constraints.yaml index e6153d8c..818bf383 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1,6 +1,6 @@ ghc-major-version: "8.8" # new curator is supposed to use exact GHC version -ghc-version: "8.8.1" +ghc-version: "8.8.2" # This affects which version of the Cabal file format we allow. We # should ensure that this is always no greater than the version From 115e1ecb3c6a4751b1601757c90e004ca1742886 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Tue, 21 Jan 2020 09:30:50 -0800 Subject: [PATCH 1090/2682] Restore ghc-syntax-highlighter & revdeps --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 818bf383..8b8ca7f4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2515,7 +2515,7 @@ packages: - flac - flac-picture - forma - - ghc-syntax-highlighter < 0 # https://github.com/mrkkrp/ghc-syntax-highlighter/issues/14 + - ghc-syntax-highlighter - hspec-megaparsec - htaglib - html-entity-map @@ -2524,8 +2524,8 @@ packages: - megaparsec - megaparsec-tests - mmark - - mmark-cli < 0 # via ghc-syntax-highlighter - - mmark-ext < 0 # via ghc-syntax-highlighter + - mmark-cli + - mmark-ext - modern-uri - pagination - parser-combinators From a8e9ec70dd54297279c8d74e1bbc72a204c45529 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laurent=20P=2E=20Ren=C3=A9=20de=20Cotret?= Date: Wed, 22 Jan 2020 14:37:54 -0500 Subject: [PATCH 1091/2682] Add pandoc-plot --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 818bf383..9e66c8f0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -132,6 +132,7 @@ packages: "Laurent P. René de Cotret @LaurentRDC": - pandoc-pyplot + - pandoc-plot "Andrew Newman @andrewfnewman": - geojson From 197243ac9f1c17126dbf70392395e831dbc50eee Mon Sep 17 00:00:00 2001 From: Andrew Cowie Date: Thu, 23 Jan 2020 08:08:54 +1100 Subject: [PATCH 1092/2682] Re-allow http-streams tests to be run --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 818bf383..e26e8f6b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4879,7 +4879,6 @@ skipped-tests: - hackage-security # QuickCheck - haddock-library # base-compat-0.10.1, hspec-2.5.1 - haskell-names # via tasty-1.2 - - http-streams # via snap-server-1.1.0.0 - hw-balancedparens # via QuickCheck-2.12.6.1, via hspec-2.6.0 - hw-bits # via QuickCheck-2.12.6.1 - hw-excess # via QuickCheck-2.12.6.1, via hspec-2.6.0 From a6b0db0e93c144d2bb2f71d1d7f3c1263ac58011 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 23 Jan 2020 12:43:18 +0800 Subject: [PATCH 1093/2682] Revert "massiv-test testsuite fail to build (lehins/massiv#90)" This reverts commits e5517963 and 20b4a49a --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 818bf383..b7df651b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3308,7 +3308,7 @@ packages: # - hip # lens 4.16 via diagrams/chart - massiv - massiv-io - # - massiv-test # https://github.com/lehins/massiv/issues/90 + - massiv-test - scheduler - Color From 57062ade279c7aef5d6e3b5bfd368fab55b6ac05 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 23 Jan 2020 12:53:41 +0800 Subject: [PATCH 1094/2682] prettyprinter < 1.6.0 (#5094) --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ae6dc99a..8b8ff7f1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4621,6 +4621,8 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5090 - byteslice < 0.2.0.0 + # https://github.com/commercialhaskell/stackage/issues/5094 + - prettyprinter < 1.6.0 # end of packages # Package flags are applied to individual packages, and override the values of From 63786d0d4eff7b5ea452b8ad0736af5d9111252e Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 23 Jan 2020 13:01:12 +0800 Subject: [PATCH 1095/2682] incremental-parser < 0.4 (#5095) blocked by rank2classes (template-haskell) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8b8ff7f1..45001b5c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -918,7 +918,7 @@ packages: "Mario Blazevic @blamario": - monad-parallel - monad-coroutine - - incremental-parser + - incremental-parser < 0.4 # https://github.com/commercialhaskell/stackage/issues/5095 - monoid-subclasses - picoparsec < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build - rank2classes < 0 # via template-haskell-2.15.0.0 From 61b0ccb921119c458bdde99183bb989100d9f3ba Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 23 Jan 2020 13:06:17 +0800 Subject: [PATCH 1096/2682] unbound small-bytearray-builder (#4919) & byteslice (#5090) --- build-constraints.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 45001b5c..f7126ecf 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -61,7 +61,7 @@ packages: - primitive-offset - primitive-unlifted - run-st - - small-bytearray-builder < 0.3.0.0 # #4919 + - small-bytearray-builder "Robert Vollmert @robx": - configurator-pg < 0 # via base-4.13.0.0 @@ -4618,9 +4618,6 @@ packages: - haskeline < 0.8.0 - structured-cli < 2.6 - # https://github.com/commercialhaskell/stackage/issues/5090 - - byteslice < 0.2.0.0 - # https://github.com/commercialhaskell/stackage/issues/5094 - prettyprinter < 1.6.0 # end of packages From 8a7ec81100d1fa122c11128e083fbc78bc78c193 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 24 Jan 2020 02:52:29 +0800 Subject: [PATCH 1097/2682] servant-0.17 (#5097) --- build-constraints.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f7126ecf..2958bf44 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4620,6 +4620,14 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5094 - prettyprinter < 1.6.0 + + # https://github.com/commercialhaskell/stackage/issues/5097 + - servant < 0.17 + - servant-client < 0.17 + - servant-server < 0.17 + - servant-client-core < 0.17 + - servant-docs < 0.11.5 + - servant-foreign < 0.15.1 # end of packages # Package flags are applied to individual packages, and override the values of From 27ad001f4b3638b831ebfb0981e9817c768650d1 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 24 Jan 2020 13:25:05 +0800 Subject: [PATCH 1098/2682] more servant bumps (#5097) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2958bf44..8012d1ea 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4628,6 +4628,9 @@ packages: - servant-client-core < 0.17 - servant-docs < 0.11.5 - servant-foreign < 0.15.1 + - servant-lucid < 0.9.0.1 + - servant-mock < 0.8.6 + - servant-swagger < 1.1.8 # end of packages # Package flags are applied to individual packages, and override the values of From 06128da8f1d4fd6ec7cf0a1187483fd5588ad85c Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 24 Jan 2020 19:55:30 +0800 Subject: [PATCH 1099/2682] pandoc-plot testsuite needs matlab/plotly/octave/gnuplot and DISPLAY --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8012d1ea..05f0754e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5235,6 +5235,7 @@ expected-test-failures: - network-anonymous-i2p - odbc # "Need ODBC_TEST_CONNECTION_STRING environment variable" - opaleye # PostgreSQL + - pandoc-plot # requires matlab, etc and DISPLAY for tcltk - pandoc-pyplot # requires DISPLAY for tcltk - pantry # https://github.com/commercialhaskell/stackage/issues/4628 - persistent-redis # redis - https://github.com/fpco/stackage/pull/1581 From d62185be6f1fed692d57efa630a61d7ddff347db Mon Sep 17 00:00:00 2001 From: Spencer Janssen Date: Fri, 24 Jan 2020 10:28:07 -0600 Subject: [PATCH 1100/2682] Restore xlsx and xlsx-tabular --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 05f0754e..c0f4921b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2258,7 +2258,7 @@ packages: - type-equality "Kirill Zaborsky @qrilka": - - xlsx < 0 # MonadFail + - xlsx "Matt Parsons @parsonsmatt": - monad-logger-prefix @@ -2831,7 +2831,7 @@ packages: - free-vl "Kazuo Koga @kkazuo": - - xlsx-tabular < 0 # via xlsx + - xlsx-tabular "Mikhail Glushenkov @23Skidoo": - Cabal From a7e4e8f613d43e6685cf357b965ed75b94851034 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sat, 25 Jan 2020 00:31:07 +0800 Subject: [PATCH 1101/2682] Revert "incremental-parser < 0.4 (#5095)" This reverts commit 63786d0d4eff7b5ea452b8ad0736af5d9111252e. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d7411f4e..9a157d22 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -918,7 +918,7 @@ packages: "Mario Blazevic @blamario": - monad-parallel - monad-coroutine - - incremental-parser < 0.4 # https://github.com/commercialhaskell/stackage/issues/5095 + - incremental-parser - monoid-subclasses - picoparsec < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build - rank2classes < 0 # via template-haskell-2.15.0.0 From 6d6bfacdc707e14567bf974c7608403c0dc80d52 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sat, 25 Jan 2020 00:52:53 +0800 Subject: [PATCH 1102/2682] reenable rank2classes (#5095) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9a157d22..c561e2ca 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -921,7 +921,7 @@ packages: - incremental-parser - monoid-subclasses - picoparsec < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build - - rank2classes < 0 # via template-haskell-2.15.0.0 + - rank2classes "Brent Yorgey @byorgey": - active From 4c4ef5d5384654ba0ff2e193ccebf3909cc9811f Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sat, 25 Jan 2020 01:11:28 +0800 Subject: [PATCH 1103/2682] Revert "Re-allow http-streams tests to be run" (#5096) This reverts commit 197243ac9f1c17126dbf70392395e831dbc50eee. --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index c561e2ca..affc397a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4890,6 +4890,7 @@ skipped-tests: - hackage-security # QuickCheck - haddock-library # base-compat-0.10.1, hspec-2.5.1 - haskell-names # via tasty-1.2 + - http-streams # via snap-server-1.1.0.0 - hw-balancedparens # via QuickCheck-2.12.6.1, via hspec-2.6.0 - hw-bits # via QuickCheck-2.12.6.1 - hw-excess # via QuickCheck-2.12.6.1, via hspec-2.6.0 From 765c8aa81fa8f91f760e640121e0b7156489e339 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sat, 25 Jan 2020 02:36:54 +0800 Subject: [PATCH 1104/2682] aur < 6.3.0 (#5097) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index affc397a..b14f912e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4631,6 +4631,7 @@ packages: - servant-lucid < 0.9.0.1 - servant-mock < 0.8.6 - servant-swagger < 1.1.8 + - aur < 6.3.0 # end of packages # Package flags are applied to individual packages, and override the values of From d4f05056e929d0ca66571baab0ebe5d4d64a18bf Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sat, 25 Jan 2020 02:41:46 +0800 Subject: [PATCH 1105/2682] try chronos-bench --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 62c65790..7f15375b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -238,7 +238,7 @@ packages: "Florian Knupfer @knupfer": - type-of-html - type-of-html-static - - chronos-bench < 0 # via chronos + - chronos-bench "Mikolaj Konarski @Mikolaj": - sdl2-ttf From dadfcd89d64c5a2843b27fa54b154cd16802bacd Mon Sep 17 00:00:00 2001 From: Matt Parsons Date: Fri, 24 Jan 2020 13:24:49 -0700 Subject: [PATCH 1106/2682] re-add esqueleto --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7f15375b..2be76297 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2267,7 +2267,7 @@ packages: - smtp-mail < 0 # https://github.com/jhickner/smtp-mail/issues/24#issuecomment-499601949 - liboath-hs < 0 # via inline-c-0.8.0.1 - servant-quickcheck < 0 - - esqueleto < 0 # via time-1.9.3 + - esqueleto - persistent-typed-db < 0 # via persistent - persistent-qq - persistent-pagination < 0 # via persistent From 4c70ff46de0711f1271f9a5cf722467d7024d91b Mon Sep 17 00:00:00 2001 From: Toshio Ito Date: Sat, 25 Jan 2020 11:48:48 +0900 Subject: [PATCH 1107/2682] re-enable wikicfp-scraper Now scalpel-core is fixed and included in stackage nightly. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2be76297..271a7796 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2982,7 +2982,7 @@ packages: - fold-debounce - fold-debounce-conduit - stopwatch - - wikicfp-scraper < 0 # via scalpel-core + - wikicfp-scraper - wild-bind - wild-bind-x11 - greskell From 9403e873bf453ceb00b311c0552a6cc73acb3c1b Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sat, 25 Jan 2020 11:16:17 +0800 Subject: [PATCH 1108/2682] enable haxr --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 271a7796..26e47782 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -940,7 +940,7 @@ packages: - diagrams-svg - force-layout - SVGFonts - - haxr < 0 # GHC 8.4 via HaXml + - haxr - MonadRandom - monoid-extras From db3f6b70bc51f901f410f5e9535397b47d858237 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sat, 25 Jan 2020 11:26:29 +0800 Subject: [PATCH 1109/2682] diagrams-* blocking comments [skip ci] --- build-constraints.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 26e47782..fcff6e72 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -926,13 +926,13 @@ packages: "Brent Yorgey @byorgey": - active - diagrams - - diagrams-builder < 0 # via lens-4.17 - - diagrams-cairo < 0 # via lens-4.17 - - diagrams-canvas < 0 # via lens-4.17 + - diagrams-builder < 0 # haskell-src-exts-simple + - diagrams-cairo < 0 # cairo + - diagrams-canvas < 0 # base-4.13, lens-4.18 - diagrams-contrib - diagrams-core - - diagrams-gtk < 0 # via diagrams-cairo - - diagrams-html5 < 0 # via lens-4.17 + - diagrams-gtk < 0 # cairo + - diagrams-html5 < 0 # lens-4.18 - diagrams-lib - diagrams-postscript - diagrams-rasterific From b84b768f1778477735cfa25546c5f6fcc5da220d Mon Sep 17 00:00:00 2001 From: Dmitry Ivanov Date: Sat, 25 Jan 2020 12:23:56 +0100 Subject: [PATCH 1110/2682] Add opentelemetry --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index fcff6e72..5856cdd3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2388,6 +2388,7 @@ packages: - dyre - io-storage - oo-prototypes + - opentelemetry - planb-token-introspection - pointedlist - unordered-intmap From f76c506678018d307058e9f46831acd12126ee38 Mon Sep 17 00:00:00 2001 From: Vanessa McHale Date: Sat, 25 Jan 2020 09:30:56 -0600 Subject: [PATCH 1111/2682] Add bz2 --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index fcff6e72..f402d12e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -317,8 +317,8 @@ packages: - req-url-extra < 0 # req < 2.1.0 - sexpr-parser < 0 # via base-4.13.0.0 - "Vanessa McHale @vmchale": - - tibetan-utils < 0 + "Vanessa McHale @vmchale": + - bz2 "Henning Thielemann @thielema": - accelerate-arithmetic < 0 # GHC 8.4 via accelerate From 4f434103209cb887a1804a3178024ed56be7d04b Mon Sep 17 00:00:00 2001 From: Matt Parsons Date: Sat, 25 Jan 2020 09:54:12 -0700 Subject: [PATCH 1112/2682] Re-add persistent-{typed-db,persistent-pagination} --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index fcff6e72..7faeb164 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2268,9 +2268,9 @@ packages: - liboath-hs < 0 # via inline-c-0.8.0.1 - servant-quickcheck < 0 - esqueleto - - persistent-typed-db < 0 # via persistent + - persistent-typed-db - persistent-qq - - persistent-pagination < 0 # via persistent + - persistent-pagination "Matthew Pickering @mpickering": - refact From 1cd41b16c3ffb9e71ca8bb15014f01214bb60fc6 Mon Sep 17 00:00:00 2001 From: Simon Jakobi Date: Sat, 25 Jan 2020 19:02:55 +0100 Subject: [PATCH 1113/2682] Add dhall-yaml --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index fcff6e72..7b7a94c4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1055,6 +1055,7 @@ packages: - dhall - dhall-bash - dhall-json + - dhall-yaml - aeson-yaml # req'd by dhall-json # - dhall-nix # deriving-compat via hnix From 5080a471eee5ab364ba5015fc186204161dd0dbc Mon Sep 17 00:00:00 2001 From: Oleg Grenrus Date: Sun, 26 Jan 2020 17:31:00 +0200 Subject: [PATCH 1114/2682] Remove phadej mentions from build-constraints - julian karni weren't active in servant maintenance, i'm not active either - I don't know why I was under `arithmoi` (maybe integer-logarithms, but that's grandfathered dependency atm) - futurice don't have any projects on stackage afaik, and I'm not even employee for some time already. This leaves servant unmaintined on Stackage, so anyone is free to grab that. --- build-constraints.yaml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index fcff6e72..1a00baec 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5752,9 +5752,6 @@ github-users: - RyanGlScott haskell-compat: - RyanGlScott - haskell-servant: - - phadej - - jkarni vivid: - vivid-synth midair: @@ -5768,14 +5765,11 @@ github-users: arithmoi: - Bodigrim - cartazio - - phadej IxpertaSolutions: - Siprj - liskin - trskop - xkollar - futurice: - - phadej ekmett: - RyanGlScott onrock-eng: From dd6d9fbfaf9d7bf0d74f2eec06778d256d2f7d0c Mon Sep 17 00:00:00 2001 From: Venkateswara Rao Mandela Date: Mon, 27 Jan 2020 17:43:00 +0530 Subject: [PATCH 1115/2682] re-enable pandoc-csv2table in nightly baig/pandoc-csv2table#27 is fixed with commit https://github.com/baig/pandoc-csv2table/commit/0bc7c52dba1870feb2361bbc397c7fab8518f213 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index fcff6e72..a7f1c83a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4033,7 +4033,7 @@ packages: - rope-utf16-splay "Venkateswara Rao Mandela @vmandela": - - pandoc-csv2table < 0 # https://github.com/baig/pandoc-csv2table/issues/27 + - pandoc-csv2table "Elben Shira @elben": - pencil < 0 # via hsass From e9b227bbf8cd7a208db373a48ba4a43fb81cdb68 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 28 Jan 2020 11:03:26 +0800 Subject: [PATCH 1116/2682] CURATORS: emphasize that range must be put under source Otherwise constraints are just ignore and will be breakage will reappear on the next build-next.sh without NOPLAN --- CURATORS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CURATORS.md b/CURATORS.md index 0f4492a4..6b06c61c 100644 --- a/CURATORS.md +++ b/CURATORS.md @@ -298,7 +298,7 @@ First run `build-next.sh` to regenerate updated `ltsXX/work/constraints.yaml` an For an LTS minor bump, you'll typically want to: -* Add constraints to package `range:` fields in that `constraints.yaml`. +* Add constraints to package `range:` fields _under_ the `source:` field in that `constraints.yaml`. * Add new packages versioned to `snapshot-incomplete.yaml` (the `@` suffix is optional) * Test, benchmark, haddock failures can also be added to package fields in the `constraints.yaml` if necessary, though it should be avoided if possible for LTS. From c9f555e2a59adf5fbbe92ac42897130bba416b3c Mon Sep 17 00:00:00 2001 From: Viktor Dukhovni Date: Mon, 27 Jan 2020 23:48:49 -0500 Subject: [PATCH 1117/2682] Latest updates of regex and regex-with-pcre build - For regex-with-pcre waiting on: https://github.com/cdornan/regex-pcre-text/pull/2 or equivalent from package maintainer. --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index fcff6e72..8b8f74fd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3425,9 +3425,9 @@ packages: "Chris Dornan @cdornan": - sort - - regex < 0 # hashable-1.3.0 + - regex - regex-pcre-text < 0 # via regex-base-0.94.0.0 - - regex-with-pcre < 0 # via regex + - regex-with-pcre - possibly - enum-text < 0 # via fmt - rg < 0 # via fmt From 359652932a3982646300be2c85433ca567774888 Mon Sep 17 00:00:00 2001 From: Jorah Gao Date: Tue, 28 Jan 2020 17:28:00 +0800 Subject: [PATCH 1118/2682] Add vformat and hkd-default --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index fcff6e72..8f68b8fd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4080,6 +4080,10 @@ packages: - climb - heart-core - linenoise + + "Jorah Gao @gqk007": + - vformat + - hkd-default "Grandfathered dependencies": - network From 490e5f55c294fcb7376a5140217645eadb571449 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 28 Jan 2020 18:28:54 +0800 Subject: [PATCH 1119/2682] add simple-affine-space to @turion --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index fcff6e72..57825554 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -187,6 +187,7 @@ packages: - essence-of-live-coding-pulse < 0 # via base-4.13.0.0 - essence-of-live-coding-quickcheck < 0 # via base-4.13.0.0 - pulse-simple + - simple-affine-space "Paul Johnson @PaulJohnson": - geodetics < 0 # transitive compilation failure From 160d7ac8fea90f8fb967704e2a2c0468f043b84e Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 28 Jan 2020 18:34:38 +0800 Subject: [PATCH 1120/2682] allow prettyprinter 1.6.0 (fixes #5094) this reverts 57062ade --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d5e86c00..615df236 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4620,9 +4620,6 @@ packages: - haskeline < 0.8.0 - structured-cli < 2.6 - # https://github.com/commercialhaskell/stackage/issues/5094 - - prettyprinter < 1.6.0 - # https://github.com/commercialhaskell/stackage/issues/5097 - servant < 0.17 - servant-client < 0.17 From 4354fdacba3761614ddfc9025055adaa7839d1af Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 28 Jan 2020 20:23:20 +0800 Subject: [PATCH 1121/2682] enable megaparsec 8 (#4966) --- build-constraints.yaml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e654e8c9..d809ac7d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4613,14 +4613,6 @@ packages: - Win32 == 2.6.1.0 "Stackage upper bounds": - # https://github.com/commercialhaskell/stackage/issues/4966 - - megaparsec < 8 - - megaparsec-tests < 8 - - hspec-megaparsec < 2.1 - - parser-combinators < 1.2.1 - - parser-combinators-tests < 1.2.1 - - mmark < 0.0.7.2 - # https://github.com/commercialhaskell/stackage/issues/5037 - haskeline < 0.8.0 - structured-cli < 2.6 From 93b0ae75073a9397b7f20010fa8981f1ed9c032a Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Wed, 29 Jan 2020 04:41:58 +0000 Subject: [PATCH 1122/2682] Disables simple-affine-space tests (#5110) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d809ac7d..fbbf39af 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5030,6 +5030,7 @@ skipped-tests: - cpio-conduit # Test file not in tarball https://github.com/da-x/cpio-conduit/issues/1 - jsaddle # Never finishes without framebuffer https://github.com/ghcjs/jsaddle/issues/9 - binary-parsers # https://github.com/winterland1989/binary-parsers/issues/3 + - simple-affine-space # https://github.com/commercialhaskell/stackage/issues/5110 # Missing foreign library - symengine # symengine From 82472cd23dd350534be6e1b51d954f972f676e2d Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Wed, 29 Jan 2020 04:45:09 +0000 Subject: [PATCH 1123/2682] Disable persistent-template test suite (#5111) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index fbbf39af..f16720c8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5031,6 +5031,7 @@ skipped-tests: - jsaddle # Never finishes without framebuffer https://github.com/ghcjs/jsaddle/issues/9 - binary-parsers # https://github.com/winterland1989/binary-parsers/issues/3 - simple-affine-space # https://github.com/commercialhaskell/stackage/issues/5110 + - persistent-template # https://github.com/commercialhaskell/stackage/issues/5111 # Missing foreign library - symengine # symengine From d869492920d141eab845fe6d56c7400fce9ea712 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Wed, 29 Jan 2020 04:48:07 +0000 Subject: [PATCH 1124/2682] re-files skipped persistent-template tests They were erroneously listed as runtime failures when they are actually compilation failures --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f16720c8..7d740464 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5022,7 +5022,7 @@ skipped-tests: - cron # Could not deduce (SOP.All (SOP.All Arbitrary) xss) arising from a use of ‘SOP.hcpure’ - config-ini # https://github.com/aisamanra/config-ini/issues/22 - polysemy-plugin # https://github.com/commercialhaskell/stackage/issues/4733 - + - persistent-template # https://github.com/commercialhaskell/stackage/issues/5111 # Runtime issues - blank-canvas # Never finishes https://github.com/ku-fpg/blank-canvas/issues/73 @@ -5031,7 +5031,6 @@ skipped-tests: - jsaddle # Never finishes without framebuffer https://github.com/ghcjs/jsaddle/issues/9 - binary-parsers # https://github.com/winterland1989/binary-parsers/issues/3 - simple-affine-space # https://github.com/commercialhaskell/stackage/issues/5110 - - persistent-template # https://github.com/commercialhaskell/stackage/issues/5111 # Missing foreign library - symengine # symengine From 53d923f02a943e2f2d318368721110b9f10c7564 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Wed, 29 Jan 2020 05:17:25 +0000 Subject: [PATCH 1125/2682] Skips persistent-typed-db tests --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7d740464..141300f2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5023,6 +5023,7 @@ skipped-tests: - config-ini # https://github.com/aisamanra/config-ini/issues/22 - polysemy-plugin # https://github.com/commercialhaskell/stackage/issues/4733 - persistent-template # https://github.com/commercialhaskell/stackage/issues/5111 + - persistent-typed-db # https://github.com/parsonsmatt/persistent-typed-db/pull/7 # Runtime issues - blank-canvas # Never finishes https://github.com/ku-fpg/blank-canvas/issues/73 From d833c44e2dfbda46c30f5d9fd21b7fb32de12c5d Mon Sep 17 00:00:00 2001 From: Jared Tobin Date: Wed, 29 Jan 2020 19:47:00 +0400 Subject: [PATCH 1126/2682] re-add flat-mcmc --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 141300f2..07fafb64 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2562,7 +2562,7 @@ packages: - hasty-hamiltonian - declarative - sampling - - flat-mcmc < 0 # via monad-par + - flat-mcmc - urbit-hob - hnock @@ -4083,7 +4083,7 @@ packages: - climb - heart-core - linenoise - + "Jorah Gao @gqk007": - vformat - hkd-default From 41b1d28234cce49f3dbe0aacfb718f8a62e18011 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Wed, 29 Jan 2020 17:21:54 +0000 Subject: [PATCH 1127/2682] Re-enable persistent-template test suite --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 141300f2..0e3018f6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5022,7 +5022,6 @@ skipped-tests: - cron # Could not deduce (SOP.All (SOP.All Arbitrary) xss) arising from a use of ‘SOP.hcpure’ - config-ini # https://github.com/aisamanra/config-ini/issues/22 - polysemy-plugin # https://github.com/commercialhaskell/stackage/issues/4733 - - persistent-template # https://github.com/commercialhaskell/stackage/issues/5111 - persistent-typed-db # https://github.com/parsonsmatt/persistent-typed-db/pull/7 # Runtime issues From d106234a837bda0172039ea8583919700cb560e0 Mon Sep 17 00:00:00 2001 From: Aditya Manthramurthy Date: Wed, 29 Jan 2020 11:43:47 -0800 Subject: [PATCH 1128/2682] Re-add minio-hs Remove flag setting no longer needed. --- build-constraints.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 384c49b1..f52faf8e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3377,7 +3377,7 @@ packages: - sdl2-gfx "Aditya Manthramurthy @donatello": - - minio-hs < 0 # via protolude + - minio-hs "ncaq @ncaq": - debug-trace-var @@ -4656,9 +4656,6 @@ package-flags: idris: ffi: true - minio-hs: - live-test: false - hxt: network-uri: true hxt-http: From 9d6eee4b8bd2c5ef3d8acf899b436c161c2a1635 Mon Sep 17 00:00:00 2001 From: Jorah Gao Date: Thu, 30 Jan 2020 15:14:07 +0800 Subject: [PATCH 1129/2682] Add vformat-time and vformat-aeson --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 384c49b1..6d724a2b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4086,6 +4086,8 @@ packages: "Jorah Gao @gqk007": - vformat + - vformat-time + - vformat-aeson - hkd-default "Grandfathered dependencies": From 29c5f6be7b98b2a4dd36c02b9647bf6151336632 Mon Sep 17 00:00:00 2001 From: Mark Karpov Date: Fri, 31 Jan 2020 15:06:37 +0100 Subject: [PATCH 1130/2682] Add Ormolu --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 384c49b1..d9ec435a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2531,6 +2531,7 @@ packages: - mmark-cli - mmark-ext - modern-uri + - ormolu - pagination - parser-combinators - parser-combinators-tests From 6bc1f441fbdea670acd8334dd11116bf2f2f4ca1 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Fri, 31 Jan 2020 14:56:43 +0000 Subject: [PATCH 1131/2682] Restricted network-uri < 2.7.0.0 (#5116) --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 384c49b1..945510a4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -10,7 +10,7 @@ cabal-format-version: "2.4" # Constraints for brand new builds packages: "Geoffrey Mainland @mainland": - - exception-mtl + - exception-mtl[B - exception-transformers - mainland-pretty - ref-fd @@ -4344,7 +4344,7 @@ packages: - network-byte-order - network-info - network-ip - - network-uri + - network-uri < 2.7.0.0 # https://github.com/commercialhaskell/stackage/issues/5116 - newtype - nicify-lib - old-locale From c7e346ebd877df15d81c225fc58bc726879b05bb Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Fri, 31 Jan 2020 14:57:36 +0000 Subject: [PATCH 1132/2682] Restricted pretty-show < 1.10 (#5118) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 945510a4..18f7e096 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4368,7 +4368,7 @@ packages: - postgresql-simple - postgresql-simple-url < 0 # via postgresql-simple - pretty-hex - - pretty-show + - pretty-show < 1.10 # https://github.com/commercialhaskell/stackage/issues/5118 - prettyprinter-convert-ansi-wl-pprint - primes - primitive From fb7eb3b0583e8cd64b1df4c17d794d99e5a98dd7 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Fri, 31 Jan 2020 14:58:23 +0000 Subject: [PATCH 1133/2682] Restricted first-class-faimlies < 0.7.0.0 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 18f7e096..435a550a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -447,7 +447,7 @@ packages: "Li-yao Xia @Lysxia": - boltzmann-samplers - - first-class-families + - first-class-families < 0.7.0.0 # https://github.com/commercialhaskell/stackage/issues/5117 - generic-data - generic-data-surgery < 0 # via generic-data - generic-random From 0c66dc719e122b8fd05b654aa30e5f9d20e7375c Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Fri, 31 Jan 2020 15:03:03 +0000 Subject: [PATCH 1134/2682] Revert typo from 6bc1f44 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 435a550a..6ca3e43c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -10,7 +10,7 @@ cabal-format-version: "2.4" # Constraints for brand new builds packages: "Geoffrey Mainland @mainland": - - exception-mtl[B + - exception-mtl - exception-transformers - mainland-pretty - ref-fd From 19b586c349ccdbd5e4d65b1ae6f0e15ec31c5a29 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sat, 1 Feb 2020 02:31:11 +0000 Subject: [PATCH 1135/2682] Unrestrict first-class-families --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6ca3e43c..e24c0fc6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -447,7 +447,7 @@ packages: "Li-yao Xia @Lysxia": - boltzmann-samplers - - first-class-families < 0.7.0.0 # https://github.com/commercialhaskell/stackage/issues/5117 + - first-class-families - generic-data - generic-data-surgery < 0 # via generic-data - generic-random From c815f235ed072c415bd160c1cc095b039d3de300 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sat, 1 Feb 2020 16:52:57 +0000 Subject: [PATCH 1136/2682] Restricts neat-interpolation < 0.4 (#5119) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5c5ce5ba..f022ec3e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1368,7 +1368,7 @@ packages: - hasql-transaction - list-t - mtl-prelude - - neat-interpolation + - neat-interpolation < 0.4 # https://github.com/commercialhaskell/stackage/issues/5119 - partial-handler - postgresql-binary - slave-thread < 0 From fca52e56c138397d6c39577b1edf57e8fd696923 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sat, 1 Feb 2020 17:54:46 +0000 Subject: [PATCH 1137/2682] Restricts vector < 0.12.1.0 (haskell/vector#287) Note that 0.12.1.0 has been marked as unbuildable (impossible base restriction) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f022ec3e..69a968f2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4516,7 +4516,7 @@ packages: - uuid-types - vault - vec - - vector + - vector < 0.12.1.0 # https://github.com/haskell/vector/issues/287 - vector-algorithms - vector-binary-instances - vector-builder From 64b459037ea0f2086012ab2a5791a376d14dc228 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sun, 2 Feb 2020 01:23:58 +0000 Subject: [PATCH 1138/2682] Restricts ghc-lib-parser-ex < 8.8.4.0 (#5120) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 69a968f2..12fc7a1d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -685,7 +685,7 @@ packages: - ghc-lib-parser "Shayne Fletcher ": - - ghc-lib-parser-ex + - ghc-lib-parser-ex < 8.8.4.0 # https://github.com/commercialhaskell/stackage/issues/5120 "Karl Ostmo @kostmo": - perfect-hash-generator From d3743fb88cbe11b86e82a3c78c1f5bc869aca961 Mon Sep 17 00:00:00 2001 From: Pavan Rikhi Date: Sat, 1 Feb 2020 22:18:04 -0500 Subject: [PATCH 1139/2682] Add tasty-wai --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 12fc7a1d..e452c490 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3992,6 +3992,7 @@ packages: - ca-province-codes - mx-state-codes - sitemap-gen + - tasty-wai "David Baynard @dbaynard": - time-qq < 0 # see christian-marie/time-qq#3 From 984def0da3ab5cd7ca0969f2dce0ec39ae498360 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sun, 2 Feb 2020 17:59:31 +0000 Subject: [PATCH 1140/2682] Unrestricts ghc-lib-parser-ex --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 12fc7a1d..69a968f2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -685,7 +685,7 @@ packages: - ghc-lib-parser "Shayne Fletcher ": - - ghc-lib-parser-ex < 8.8.4.0 # https://github.com/commercialhaskell/stackage/issues/5120 + - ghc-lib-parser-ex "Karl Ostmo @kostmo": - perfect-hash-generator From 4a6e6b89fbebbe72e83da3a89358cd9a073fe9bb Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sun, 2 Feb 2020 18:03:17 +0000 Subject: [PATCH 1141/2682] Unrestricts vector --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 69a968f2..f022ec3e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4516,7 +4516,7 @@ packages: - uuid-types - vault - vec - - vector < 0.12.1.0 # https://github.com/haskell/vector/issues/287 + - vector - vector-algorithms - vector-binary-instances - vector-builder From 6badc028c13319c51f03e004e6734a4be201b45f Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Tue, 4 Feb 2020 03:27:33 +0000 Subject: [PATCH 1142/2682] Restricts linear < 1.21 (#5123) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f022ec3e..4d062baf 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -864,7 +864,7 @@ packages: - lens-action - lens-aeson - lens-properties - - linear + - linear < 1.21 # https://github.com/commercialhaskell/stackage/issues/5123 - linear-accelerate < 0 # GHC 8.4 via accelerate - log-domain - machines From 63f5c05a50a71efdf54531571f8842dbde6f9dda Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Tue, 4 Feb 2020 03:28:24 +0000 Subject: [PATCH 1143/2682] Restricts lens < 4.19 (#5122) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4d062baf..f5778fb8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -860,7 +860,7 @@ packages: - kan-extensions - keys - lca - - lens + - lens < 4.19 # https://github.com/commercialhaskell/stackage/issues/5122 - lens-action - lens-aeson - lens-properties From f3941973f9e1aec8befcd9fbdb48078b5f8369f2 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Tue, 4 Feb 2020 03:36:06 +0000 Subject: [PATCH 1144/2682] Drops sparse-tensor-0.2.1.2 (#5125) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f5778fb8..29d79bf8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -27,7 +27,7 @@ packages: - generic-monoid "Tobias Reinhart @TobiReinhart": - - sparse-tensor + - sparse-tensor < 0 # https://github.com/commercialhaskell/stackage/issues/5125 "Stephan Schiffels @stschiff": - sequence-formats From c6e6a128c952d56b0c73a4cbe828b58918f2d8df Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Tue, 4 Feb 2020 03:37:04 +0000 Subject: [PATCH 1145/2682] Restricts constraints < 0.12 (#5124) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 29d79bf8..38925960 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -836,7 +836,7 @@ packages: - compensated - compressed < 0 - concurrent-supply < 0 # hashable-1.3.0 - - constraints + - constraints < 0.12 # https://github.com/commercialhaskell/stackage/issues/5124 - contravariant - distributive - discrimination < 0 From bacf7776580bb6a83dd4b894f7c0ea7282336e19 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 4 Feb 2020 13:55:18 +0000 Subject: [PATCH 1146/2682] Newer curators EXE --- automated/build-next.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/automated/build-next.sh b/automated/build-next.sh index f85a93db..facbe406 100755 --- a/automated/build-next.sh +++ b/automated/build-next.sh @@ -64,13 +64,15 @@ mkdir -p $ROOT/bin BINDIR=$(cd $ROOT/bin ; pwd) ( # See etc/curator-exes/README.md -CURATOR_EXES=1804f7aadc27032715c0dda005aa9b954909302238b45a1106968c1cdcacfc55 +CURATOR_EXES=84f6e06e11e1bcdab6ec1a302d40213e406748e64ae455bd4ed09a205651a7fd cd $BINDIR rm -f curator stack *.bz2 wget "https://s3.amazonaws.com/download.fpcomplete.com/curator-exes/curator-exes-$CURATOR_EXES.tar.bz2" tar xf "curator-exes-$CURATOR_EXES.tar.bz2" -echo curator: $(./curator --version) -echo stack: $(./stack --version) +echo -n "curator version: " +docker run --rm -v $(pwd)/curator:/exe $IMAGE /exe --version +echo -n "stack version: " +docker run --rm -v $(pwd)/stack:/exe $IMAGE /exe --version ) # We share pantry directory between snapshots while the other content in .stack From 2dcf79cd2324e664ee381dfe6c80012d37fa8bf4 Mon Sep 17 00:00:00 2001 From: "Scott N. Walck" Date: Tue, 4 Feb 2020 14:24:02 -0500 Subject: [PATCH 1147/2682] reintroduce gnuplot gnuplot 0.5.6.1 builds fine with ghc 8.8.2 and current nightly --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1b6c417d..ff142cc8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -353,7 +353,7 @@ packages: - event-list - explicit-exception - fixed-length - - gnuplot < 0 # via time-1.9.3 + - gnuplot - group-by-date - guarded-allocation - iff From ad83b3c2ad3c981e0c57ec6174935ff40a920f00 Mon Sep 17 00:00:00 2001 From: Alexey Kuleshevich Date: Thu, 6 Feb 2020 02:43:52 +0300 Subject: [PATCH 1148/2682] Add flush-queue and safe-decimal packages --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ff142cc8..b2954b18 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3316,6 +3316,8 @@ packages: - massiv-test - scheduler - Color + - safe-decimal + - flush-queue "Hans-Peter Deifel @hpdeifel": - hledger-iadd From c4b413352230a398488b98595aca3c3220185529 Mon Sep 17 00:00:00 2001 From: Alexey Kuleshevich Date: Thu, 6 Feb 2020 03:13:39 +0300 Subject: [PATCH 1149/2682] Reinstate 'scheduler' benchmarks. Upper bound on streamly was removed. Fix #4983 --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ff142cc8..f563b9cc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5493,7 +5493,6 @@ skipped-benchmarks: - identicon # via criterion-1.5.0.0 - pipes # optparse-applicative 0.13 - psqueues # ghc 8.4 via PSQueue build failure - - scheduler # https://github.com/commercialhaskell/stackage/issues/4983 - serialise - skylighting-core # via criterion-1.5.0.0 - snap-server # via criterion-1.5.0.0 From a8aa4590c56513c32b7bf1b907bd7d4380008373 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 6 Feb 2020 06:35:13 +0200 Subject: [PATCH 1150/2682] Expect Haddock build failure alanz/haskell-lsp#220 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 69dfff7c..0b6fadfa 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5461,6 +5461,9 @@ expected-haddock-failures: - vault # commercialhaskell/stackage#4904 - monoid-subclasses + + # https://github.com/alanz/haskell-lsp/issues/220 + - haskell-lsp # end of expected-haddock-failures # For packages with haddock issues From e9b69c41c8e048aba4e5188a11813f9f7f19a4ea Mon Sep 17 00:00:00 2001 From: Flavio Corpa Date: Thu, 6 Feb 2020 10:21:19 +0100 Subject: [PATCH 1151/2682] Add language-avro to Stackage --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0b6fadfa..dfe2ff66 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1315,6 +1315,9 @@ packages: - wl-pprint - AC-Angle - language-protobuf + + "Flavio Corpa @kutyel": + - language-avro "Matvey Aksenov @supki": - terminal-size From 9510b890fa591e8510059f55ca52c01b06fe8533 Mon Sep 17 00:00:00 2001 From: Jonathan Knowles Date: Thu, 6 Feb 2020 17:37:09 +0800 Subject: [PATCH 1152/2682] Update build-constraints.yaml Add the `bech32` package. --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0b6fadfa..b7eefb32 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3252,6 +3252,7 @@ packages: - port-utils "Jonathan Knowles @jonathanknowles": + - bech32 - roc-id "Mahdi Dibaiee @mdibaiee": From 8b1ad18f5c8beaf0a808f19b70f1a46f51deee4c Mon Sep 17 00:00:00 2001 From: "Scott N. Walck" Date: Thu, 6 Feb 2020 09:19:04 -0500 Subject: [PATCH 1153/2682] reintroduce gloss gloss and gloss rendering were multiply listed in build-constraints.yaml --- build-constraints.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0b6fadfa..784ac6c0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1892,8 +1892,6 @@ packages: - bmp # @benl23x5 - ekg-statsd < 0 # @tibbe via base-4.13.0.0 & time-1.9.3 - - gloss < 0 # @benl23x5 # via base-4.13.0.0 - - gloss-rendering < 0 # @benl23x5 # via base-4.13.0.0 - gpolyline # @fegu - postgresql-simple-migration < 0 # via time-1.9.3 # @ameingast - statestack From 8db7c5f5cf9729bb8cc98b9971ff7642b5259913 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 6 Feb 2020 22:15:55 +0800 Subject: [PATCH 1154/2682] enable graphviz, wl-pprint-text, bimaps, misc bio and various blocking comments bio: + ClustalParser + BiobaseEnsembl + DPutils + ForestStructures + OrderedBits + PrimitiveArray + Taxonomy + either-unwrap + elm-export + streaming-bytestring + haskell-import-graph + algebraic-graphs + graphite + servant-elm --- build-constraints.yaml | 47 ++++++++++++++++++++++++++++-------------- 1 file changed, 31 insertions(+), 16 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0b6fadfa..e1466b5b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1173,7 +1173,7 @@ packages: - openpgp-asciiarmor - MusicBrainz - DAV - - hopenpgp-tools < 0 # via graphviz + - hopenpgp-tools < 0 # hOpenPGP & ixset-typed - opensource - debian < 0 # via bzlib - cabal-debian < 0 # via debian @@ -1208,15 +1208,30 @@ packages: - biopsl < 0 # GHC 8.4 via biocore - seqloc < 0 # GHC 8.4 via biocore - bioalign < 0 # build failure with GHC 8.4 - # - BlastHTTP # https://github.com/eggzilla/BlastHTTP/issues/1 + # - BlastHTTP # network-2.8 "Florian Eggenhofer @eggzilla": - # - ClustalParser - # - EntrezHTTP # graphviz via Taxonomy + - ClustalParser + # - EntrezHTTP # biocore - Genbank < 0 # build failure with GHC 8.4 - # - RNAlien # graphviz via Taxonomy - # - Taxonomy # graphviz + # - RNAlien # aeson<=1.4.2 + # - biocore # base + - bimaps + # - BiobaseBlast # SciBaseTypes + # - BiobaseENA # BiobaseTypes + - BiobaseEnsembl + # - BiobaseFasta # BiobaseTypes + # - BiobaseHTTP + # - BiobaseTypes # SciBaseTypes + # - BiobaseXNA # BiobaseTypes & PrimitiveArray + - DPutils + - ForestStructures + - OrderedBits + - PrimitiveArray < 0.10.0.0 + # - SciBaseTypes # log-domain-0.12 + - Taxonomy - ViennaRNAParser + - either-unwrap "Silk ": - aeson-utils @@ -1918,7 +1933,7 @@ packages: "William Casarin @jb55": - bson-lens < 0 # via bson - cased - - elm-export < 0 # via wl-pprint-text + - elm-export # - elm-export-persistent # https://github.com/jb55/elm-export-persistent/issues/2 - pipes-csv - pipes-mongodb < 0 # GHC 8.4 via mongoDB @@ -2125,7 +2140,7 @@ packages: "Daniel Cartwright @chessai": - streaming - - streaming-bytestring < 0 # via streaming + - streaming-bytestring - country < 0 # via base-4.13.0.0 - semirings - torsor @@ -2443,8 +2458,8 @@ packages: "Ivan Miljenovic @ivan-m": - fgl - - graphviz < 0 # via polyparse-1.13 - - wl-pprint-text < 0 # via base-compat-0.11.0 + - graphviz + - wl-pprint-text - servant-pandoc < 0 # blocks http-media https://github.com/commercialhaskell/stackage/issues/4483 "Sharif Olorin @olorin": @@ -2964,7 +2979,7 @@ packages: - oblivious-transfer < 0 # via protolude - pairing < 0 # #4758 - libraft < 0 # via concurrency & ejafu & kg & kg-core & onad-metrics & ostgresql-simple-url & rotolude & uickcheck-state-machine & asty-dejafu - - galois-field < 0 # via protolude & wl-pprint-text + - galois-field < 0 # via protolude "Daishi Nakajima @nakaji-dayo": - api-field-json-th @@ -3384,7 +3399,7 @@ packages: "ncaq @ncaq": - debug-trace-var - # - haskell-import-graph # fgl via graphviz + - haskell-import-graph - string-transform - uniq-deep - yesod-form-bootstrap4 < 0 # via yesod-core @@ -3456,7 +3471,7 @@ packages: - wai-middleware-rollbar < 0 # aeson "Andrey Mokhov @snowleopard": - - algebraic-graphs < 0 # via base-compat-0.11.0 + - algebraic-graphs "Albert Krewinkel @tarleb": - hslua @@ -3596,7 +3611,7 @@ packages: - currencies - alerts - yesod-alerts < 0 # via yesod-core - - graphite < 0 # via graphviz + - graphite "José Lorenzo Rodríguez @lorenzo": - wrecker < 0 # GHC 8.4 via ansigraph @@ -3804,7 +3819,7 @@ packages: - servant-auth-client < 0 # via warp-3.3.2 - servant-auth-swagger < 0 # via base-4.13.0.0 - servant-auth-docs < 0 # via base-4.13.0.0 - - servant-elm < 0 # via wl-pprint-text + - servant-elm - streaming-wai < 0 # via streaming - systemd < 0 # socketToFd is ambiguous @@ -4309,7 +4324,7 @@ packages: - inspection-testing - integer-logarithms - io-streams-haproxy - - ixset-typed < 0 # via safecopy-0.10.0 + - ixset-typed < 0 # via safecopy-0.10.0 and template-haskell - json < 0 # via base-4.13.0.0 - json-alt - kleene < 0 # via regex-applicative From c7987f17c221026e44420692d045943d9a957beb Mon Sep 17 00:00:00 2001 From: Alessandro Marrella Date: Thu, 6 Feb 2020 16:53:54 +0000 Subject: [PATCH 1155/2682] Add kubernetes-webhook-haskell --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index e1466b5b..b6585d08 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4109,6 +4109,9 @@ packages: - vformat-aeson - hkd-default + "Alessandro Marrella @amarrella": + - kubernetes-webhook-haskell + "Grandfathered dependencies": - network - Boolean From 77651e69ade73a89ce4d3aab5c4a8cc194eff46b Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 7 Feb 2020 10:44:11 +0800 Subject: [PATCH 1156/2682] backout BiobaseEnsembl DPutils OrderedBits and hence PrimitiveArray --- build-constraints.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e1466b5b..4f16f495 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1219,15 +1219,15 @@ packages: - bimaps # - BiobaseBlast # SciBaseTypes # - BiobaseENA # BiobaseTypes - - BiobaseEnsembl + # - BiobaseEnsembl # - BiobaseFasta # BiobaseTypes # - BiobaseHTTP # - BiobaseTypes # SciBaseTypes # - BiobaseXNA # BiobaseTypes & PrimitiveArray - - DPutils + # - DPutils - ForestStructures - - OrderedBits - - PrimitiveArray < 0.10.0.0 + # - OrderedBits + # - PrimitiveArray < 0.10.0.0 # - SciBaseTypes # log-domain-0.12 - Taxonomy - ViennaRNAParser From 6f535da18ad487c94e6e269c42fa2dc41a95d91a Mon Sep 17 00:00:00 2001 From: 8c6794b6 <8c6794b6@gmail.com> Date: Sat, 8 Feb 2020 03:34:46 +0900 Subject: [PATCH 1157/2682] Add hpc-codecov --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index b587e3e9..eb7b6214 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4114,6 +4114,9 @@ packages: "Alessandro Marrella @amarrella": - kubernetes-webhook-haskell + "8c6794b6 <8c6794b6@gmail.com> @8c6794b6": + - hpc-codecov + "Grandfathered dependencies": - network - Boolean From 7e694f84ccdafb9232c8946410a1c76732cddf54 Mon Sep 17 00:00:00 2001 From: Jacob Stanley Date: Sat, 8 Feb 2020 04:28:43 +0800 Subject: [PATCH 1158/2682] Relax pretty-show (#5118 resolved) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b587e3e9..c8a68767 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4394,7 +4394,7 @@ packages: - postgresql-simple - postgresql-simple-url < 0 # via postgresql-simple - pretty-hex - - pretty-show < 1.10 # https://github.com/commercialhaskell/stackage/issues/5118 + - pretty-show - prettyprinter-convert-ansi-wl-pprint - primes - primitive From 09da8355d35cb82a2bbc8849cfe9e902a5e7272e Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sat, 8 Feb 2020 19:39:41 +0200 Subject: [PATCH 1159/2682] Upper bound on ghc-lib-parser-ex for #5137 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index c6470154..085fe647 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4657,6 +4657,9 @@ packages: - servant-mock < 0.8.6 - servant-swagger < 1.1.8 - aur < 6.3.0 + + # https://github.com/commercialhaskell/stackage/issues/5137 + - ghc-lib-parser-ex < 8.8.5 # end of packages # Package flags are applied to individual packages, and override the values of From a61850dc25b088798303302135e21f365536aa0a Mon Sep 17 00:00:00 2001 From: Bodigrim Date: Sat, 8 Feb 2020 18:53:34 +0000 Subject: [PATCH 1160/2682] Add integer-roots --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 085fe647..8952cf21 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3106,6 +3106,7 @@ packages: - vector-rotcev - mod - tasty-rerun + - integer-roots "Ashley Yakeley @AshleyYakeley": - countable From 031afc2f420345a87ce10a795b198078332f758a Mon Sep 17 00:00:00 2001 From: "Scott N. Walck" Date: Sat, 8 Feb 2020 19:57:06 -0500 Subject: [PATCH 1161/2682] reintroduce learn-physics --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 085fe647..036ebf1d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -151,7 +151,7 @@ packages: "Scott N. Walck @walck": - cyclotomic - - learn-physics < 0 # via base-4.13.0.0 + - learn-physics - TypeCompose # @ghorn From 1ba4697817b8728eed1e63a2c992c2000142c8d1 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 9 Feb 2020 08:13:59 +0200 Subject: [PATCH 1162/2682] Revert "Expect Haddock build failure alanz/haskell-lsp#220" This reverts commit a8aa4590c56513c32b7bf1b907bd7d4380008373. --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 91ab2630..936a4ca8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5488,9 +5488,6 @@ expected-haddock-failures: - vault # commercialhaskell/stackage#4904 - monoid-subclasses - - # https://github.com/alanz/haskell-lsp/issues/220 - - haskell-lsp # end of expected-haddock-failures # For packages with haddock issues From 860facc9b39b1e19deefd1289f7e81460412d25a Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 9 Feb 2020 10:09:30 +0000 Subject: [PATCH 1163/2682] Build script improvements --- automated/build-next.sh | 29 ++++++++++++++--------------- 1 file changed, 14 insertions(+), 15 deletions(-) diff --git a/automated/build-next.sh b/automated/build-next.sh index facbe406..202ce065 100755 --- a/automated/build-next.sh +++ b/automated/build-next.sh @@ -19,10 +19,8 @@ fi IMAGE=commercialhaskell/stackage:$TAG -CABAL_DIR=$ROOT/cabal PANTRY_DIR=$ROOT/pantry -STACK_DIR=$ROOT/stack-$TAG -GHC_DIR=$ROOT/ghc +STACK_DIR=$ROOT/stack DOT_STACKAGE_DIR=$ROOT/dot-stackage WORKDIR=$ROOT/$TAG/work # ssh key is used for committing snapshots (and their constraints) to Github @@ -30,10 +28,8 @@ SSH_DIR=$ROOT/ssh USERID=$(id -u) mkdir -p \ - "$CABAL_DIR" \ "$PANTRY_DIR" \ "$STACK_DIR" \ - "$GHC_DIR" \ "$DOT_STACKAGE_DIR" \ "$WORKDIR" \ "$SSH_DIR" @@ -63,14 +59,16 @@ require_400_file "$HACKAGE_CREDS" mkdir -p $ROOT/bin BINDIR=$(cd $ROOT/bin ; pwd) ( -# See etc/curator-exes/README.md -CURATOR_EXES=84f6e06e11e1bcdab6ec1a302d40213e406748e64ae455bd4ed09a205651a7fd cd $BINDIR rm -f curator stack *.bz2 -wget "https://s3.amazonaws.com/download.fpcomplete.com/curator-exes/curator-exes-$CURATOR_EXES.tar.bz2" -tar xf "curator-exes-$CURATOR_EXES.tar.bz2" + +curl "https://download.fpcomplete.com/stackage-curator-2/curator-85b021a53833ff310fc66b3fdc5ca3f7828ce18b.bz2" | bunzip2 > curator +chmod +x curator echo -n "curator version: " docker run --rm -v $(pwd)/curator:/exe $IMAGE /exe --version + +curl "https://download.fpcomplete.com/stackage-curator-2/stack-4033c93815477e5b565d9a2a61b54e04da0863ef.bz2" | bunzip2 > stack +chmod +x stack echo -n "stack version: " docker run --rm -v $(pwd)/stack:/exe $IMAGE /exe --version ) @@ -79,11 +77,11 @@ docker run --rm -v $(pwd)/stack:/exe $IMAGE /exe --version # is stored separately (because e.g. Ubuntu releases between LTS and nightly # could differ). Also the order of binds is important. ARGS_COMMON="--rm -v $WORKDIR:$HOME/work -w $HOME/work -v $BINDIR/curator:/usr/bin/curator:ro -v /etc/passwd:/etc/passwd:ro -v /etc/group:/etc/group:ro -v $BINDIR/stack:/usr/bin/stack:ro -v $STACK_DIR:$HOME/.stack -v $PANTRY_DIR:$HOME/.stack/pantry" -ARGS_PREBUILD="$ARGS_COMMON -u $USERID -e HOME=$HOME -v $CABAL_DIR:$HOME/.cabal -v $GHC_DIR:$HOME/.ghc -v $DOT_STACKAGE_DIR:$HOME/.stackage" -ARGS_BUILD="$ARGS_COMMON -v $CABAL_DIR:$HOME/.cabal:ro -v $GHC_DIR:$HOME/.ghc:ro" +ARGS_PREBUILD="$ARGS_COMMON -u $USERID -e HOME=$HOME -v $DOT_STACKAGE_DIR:$HOME/.stackage" +ARGS_BUILD="$ARGS_COMMON" # instance-data is an undocumented feature of S3 used by amazonka, # see https://github.com/brendanhay/amazonka/issues/271 -ARGS_UPLOAD="$ARGS_COMMON -u $USERID -e HOME=$HOME -v $HACKAGE_CREDS:/hackage-creds:ro -v $DOT_STACKAGE_DIR:$HOME/.stackage -v $SSH_DIR:$HOME/.ssh:ro -v $GITCONFIG:$HOME/.gitconfig:ro -v $CABAL_DIR:$HOME/.cabal:ro -e AWS_ACCESS_KEY_ID=$AWS_ACCESS_KEY_ID -e AWS_SECRET_ACCESS_KEY=$AWS_SECRET_ACCESS_KEY" +ARGS_UPLOAD="$ARGS_COMMON -u $USERID -e HOME=$HOME -v $HACKAGE_CREDS:/hackage-creds:ro -v $DOT_STACKAGE_DIR:$HOME/.stackage -v $SSH_DIR:$HOME/.ssh:ro -v $GITCONFIG:$HOME/.gitconfig:ro -e AWS_ACCESS_KEY_ID=$AWS_ACCESS_KEY_ID -e AWS_SECRET_ACCESS_KEY=$AWS_SECRET_ACCESS_KEY" # Make sure we actually need this snapshot. We only check this for LTS releases # since, for nightlies, we'd like to run builds even if they are unnecessary to @@ -139,9 +137,10 @@ docker run $ARGS_UPLOAD $IMAGE /bin/bash -c "exec curator check-target-available # # * Upload the docs to S3 # * Upload the new snapshot .yaml file to the appropriate Github repo, also upload its constraints -# * Register as a new Hackage distro (currently disabled) -docker run $ARGS_UPLOAD $IMAGE /bin/bash -c "curator upload-docs --target $TARGET && curator upload-github --target $TARGET && exec curator hackage-distro --target $TARGET" -# information about the new snapshots on Hackage +docker run $ARGS_UPLOAD $IMAGE /bin/bash -c "curator upload-docs --target $TARGET && curator upload-github --target $TARGET" + +# For some reason, registering on Hackage fails with inscrutable error messages. Disabling. +# docker run $ARGS_UPLOAD $IMAGE /bin/bash -c "exec curator hackage-distro --target $TARGET" $BINDIR/curator legacy-bulk --stackage-snapshots dot-stackage/curator/stackage-snapshots/ --lts-haskell dot-stackage/curator/lts-haskell/ --stackage-nightly dot-stackage/curator/stackage-nightly/ From e2a65a0e8df1c4ab6a3bb1bd2b2f469449e2c558 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 9 Feb 2020 13:14:23 +0200 Subject: [PATCH 1164/2682] Switch to Bionic --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index b37bd3b2..0ee7b9df 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,6 @@ # Disable Docker stuff to try to make it faster sudo: true +dist: bionic # Choose a lightweight base image; we provide our own build tools. language: generic From 087d05308de9dea6c4aabde7d19bd5eabc1e406a Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 9 Feb 2020 12:04:24 +0200 Subject: [PATCH 1165/2682] Use newer curator --- .travis.yml | 7 +------ etc/ci-script.sh | 25 ------------------------- etc/curator-2-check.sh | 2 +- 3 files changed, 2 insertions(+), 32 deletions(-) delete mode 100755 etc/ci-script.sh diff --git a/.travis.yml b/.travis.yml index 0ee7b9df..3dc9707f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,14 +11,9 @@ addons: packages: - libgmp-dev -matrix: - include: - #- env: CHECK_SCRIPT="./etc/ci-script.sh" - - env: CHECK_SCRIPT="./etc/curator-2-check.sh" - # Edit etc/ci-script.sh to change GHC version script: -- $CHECK_SCRIPT +- ./etc/curator-2-check.sh # Caching doesn't work with sudo: true #cache: diff --git a/etc/ci-script.sh b/etc/ci-script.sh deleted file mode 100755 index 192b2a9b..00000000 --- a/etc/ci-script.sh +++ /dev/null @@ -1,25 +0,0 @@ -#!/usr/bin/env bash - -set -euxo pipefail - -export GHCVER=8.8.1 - -# Download and unpack the stack executable -mkdir -p ~/.local/bin -export PATH=$HOME/.local/bin:$PATH -curl -L https://www.stackage.org/stack/linux-x86_64 | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack' - -# Get stackage-curator -wget https://s3.amazonaws.com/stackage-travis/stackage-curator/stackage-curator.bz2 -bunzip2 stackage-curator.bz2 -chmod +x stackage-curator -mv stackage-curator ~/.local/bin - -# Install GHC -stack setup $GHCVER - -# Update the index -stack update - -# Check -exec stack --resolver ghc-$GHCVER exec stackage-curator check diff --git a/etc/curator-2-check.sh b/etc/curator-2-check.sh index ac95ec8c..b006df08 100755 --- a/etc/curator-2-check.sh +++ b/etc/curator-2-check.sh @@ -11,7 +11,7 @@ export PATH=$HOME/.local/bin:$PATH curl -L https://www.stackage.org/stack/linux-x86_64 | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack' # Get new Stackage curator -CURATOR2=stackage-curator-2-f6258124cff9a7e92bcb5704164a70e149080e88 +CURATOR2=curator-85b021a53833ff310fc66b3fdc5ca3f7828ce18b.bz2 wget "https://download.fpcomplete.com/stackage-curator-2/$CURATOR2.bz2" bunzip2 "$CURATOR2.bz2" chmod +x $CURATOR2 From d4457719f806dacd2883598206f2d54dab02c92f Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 9 Feb 2020 12:15:15 +0200 Subject: [PATCH 1166/2682] Missing arg --- .travis.yml | 2 +- etc/{curator-2-check.sh => check.sh} | 17 +++++++---------- 2 files changed, 8 insertions(+), 11 deletions(-) rename etc/{curator-2-check.sh => check.sh} (58%) diff --git a/.travis.yml b/.travis.yml index 3dc9707f..fae1766b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,7 +13,7 @@ addons: # Edit etc/ci-script.sh to change GHC version script: -- ./etc/curator-2-check.sh +- ./etc/check.sh # Caching doesn't work with sudo: true #cache: diff --git a/etc/curator-2-check.sh b/etc/check.sh similarity index 58% rename from etc/curator-2-check.sh rename to etc/check.sh index b006df08..78a5345f 100755 --- a/etc/curator-2-check.sh +++ b/etc/check.sh @@ -11,11 +11,8 @@ export PATH=$HOME/.local/bin:$PATH curl -L https://www.stackage.org/stack/linux-x86_64 | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack' # Get new Stackage curator -CURATOR2=curator-85b021a53833ff310fc66b3fdc5ca3f7828ce18b.bz2 -wget "https://download.fpcomplete.com/stackage-curator-2/$CURATOR2.bz2" -bunzip2 "$CURATOR2.bz2" -chmod +x $CURATOR2 -mv $CURATOR2 ~/.local/bin/stackage-curator-2 +curl "https://download.fpcomplete.com/stackage-curator-2/curator-85b021a53833ff310fc66b3fdc5ca3f7828ce18b.bz2" | bunzip2 > curator +chmod +x curator # Install GHC stack setup $GHCVER @@ -24,8 +21,8 @@ stack setup $GHCVER # because of a different constraints handling in minor LTS version bumps NIGHTLY="nightly-$(date +%Y-%m-%d)" # New curator check -stackage-curator-2 update && - stackage-curator-2 constraints --target=$NIGHTLY && - stackage-curator-2 snapshot-incomplete && - stackage-curator-2 snapshot && - stack --resolver ghc-$GHCVER exec stackage-curator-2 check-snapshot +./curator update && + ./curator constraints --target=$NIGHTLY && + ./curator snapshot-incomplete --target=$NIGHTLY && + ./curator snapshot && + stack --resolver ghc-$GHCVER exec ./curator check-snapshot From a258bcdc29795923b83524f1e0a0fbc3ce34b499 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 5 Feb 2020 10:32:40 +0200 Subject: [PATCH 1167/2682] Use Cabal shipped with GHC --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 936a4ca8..6dbdbeb7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2854,8 +2854,8 @@ packages: - xlsx-tabular "Mikhail Glushenkov @23Skidoo": - - Cabal - - cabal-install < 0 # via base-4.13.0.0 + # Take Cabal shipped with GHC - Cabal + - cabal-install # - pointful # haskell-src-exts "Lennart Kolmodin @kolmodin": From b07c52c2e691bf306709eac2be784e5613c81095 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 9 Feb 2020 14:02:30 +0200 Subject: [PATCH 1168/2682] legacy-bulk inside Docker --- automated/build-next.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automated/build-next.sh b/automated/build-next.sh index 202ce065..27adc744 100755 --- a/automated/build-next.sh +++ b/automated/build-next.sh @@ -142,7 +142,7 @@ docker run $ARGS_UPLOAD $IMAGE /bin/bash -c "curator upload-docs --target $TARGE # For some reason, registering on Hackage fails with inscrutable error messages. Disabling. # docker run $ARGS_UPLOAD $IMAGE /bin/bash -c "exec curator hackage-distro --target $TARGET" -$BINDIR/curator legacy-bulk --stackage-snapshots dot-stackage/curator/stackage-snapshots/ --lts-haskell dot-stackage/curator/lts-haskell/ --stackage-nightly dot-stackage/curator/stackage-nightly/ +docker run $ARGS_UPLOAD $IMAGE curator legacy-bulk --stackage-snapshots dot-stackage/curator/stackage-snapshots/ --lts-haskell dot-stackage/curator/lts-haskell/ --stackage-nightly dot-stackage/curator/stackage-nightly/ ( From 953281e263a51d77434d557b3f52490c9ffeff21 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 9 Feb 2020 14:08:59 +0200 Subject: [PATCH 1169/2682] More cleanups to build script --- automated/.gitignore | 13 ++--- automated/{build-next.sh => build.sh} | 7 ++- automated/check-cabal.sh | 72 ------------------------ automated/cron.sh | 24 -------- automated/new-stackage-format/convert.sh | 35 ------------ automated/nix-build/README.md | 5 -- automated/nix-build/build.sh | 12 ---- automated/nix-build/fetch-nixpkgs.nix | 23 -------- automated/nix-build/nixpkgs-src.json | 6 -- automated/nix-build/snapshot-fixed.nix | 41 -------------- automated/run-nightly.sh | 5 +- 11 files changed, 10 insertions(+), 233 deletions(-) rename automated/{build-next.sh => build.sh} (96%) delete mode 100755 automated/check-cabal.sh delete mode 100755 automated/cron.sh delete mode 100755 automated/new-stackage-format/convert.sh delete mode 100644 automated/nix-build/README.md delete mode 100644 automated/nix-build/build.sh delete mode 100644 automated/nix-build/fetch-nixpkgs.nix delete mode 100644 automated/nix-build/nixpkgs-src.json delete mode 100644 automated/nix-build/snapshot-fixed.nix diff --git a/automated/.gitignore b/automated/.gitignore index 9c4d36e6..c43ceb23 100644 --- a/automated/.gitignore +++ b/automated/.gitignore @@ -1,12 +1,9 @@ -/auth-token /bin/ /gitconfig /hackage-creds -/ssh-nightly/ -/ssh-lts/ -/nighlty/ -/lts-*/ -/stackage-curator/ -/stackage-update/ +/ssh/ +/work/ /aws.sh -/crondir/ +/pantry/ +/stack/ +/dot-stackage/ diff --git a/automated/build-next.sh b/automated/build.sh similarity index 96% rename from automated/build-next.sh rename to automated/build.sh index 27adc744..b077babf 100755 --- a/automated/build-next.sh +++ b/automated/build.sh @@ -12,17 +12,18 @@ source aws.sh SHORTNAME=$(echo $TARGET | cut -d- -f 1) if [ $SHORTNAME = "lts" ] then - TAG=$(echo $TARGET | sed 's@^lts-\([0-9]*\)\.[0-9]*@lts\1@') + TAG=$(echo $TARGET | sed 's@^lts-\([0-9]*\)\.[0-9]*@lts-\1@') + WORKDIR=$ROOT/work/$(echo $TARGET | sed 's@^lts-\([0-9]*\)\.[0-9]*@lts\1@') else TAG=$SHORTNAME + WORKDIR=$ROOT/work/$TAG fi IMAGE=commercialhaskell/stackage:$TAG -PANTRY_DIR=$ROOT/pantry +PANTRY_DIR=$ROOT/stack/pantry STACK_DIR=$ROOT/stack DOT_STACKAGE_DIR=$ROOT/dot-stackage -WORKDIR=$ROOT/$TAG/work # ssh key is used for committing snapshots (and their constraints) to Github SSH_DIR=$ROOT/ssh USERID=$(id -u) diff --git a/automated/check-cabal.sh b/automated/check-cabal.sh deleted file mode 100755 index c920f98a..00000000 --- a/automated/check-cabal.sh +++ /dev/null @@ -1,72 +0,0 @@ -#!/usr/bin/env bash - -# This script is intended for testing Cabal HEAD against a Stackage snapshot. - -set -eux - -ROOT=$(cd $(dirname $0) ; pwd) -TARGET=$1 - -# For nightly-YYYY-MM-DD, tag should be nightly -# For lts-X.Y, tag should be ltsX -SHORTNAME=$(echo $TARGET | cut -d- -f 1) -if [ $SHORTNAME = "lts" ] -then - TAG=$(echo $TARGET | sed 's@^lts-\([0-9]*\)\.[0-9]*@lts\1@') - PLAN_URL=https://raw.githubusercontent.com/fpco/lts-haskell/master/$TARGET.yaml -else - TAG=$SHORTNAME - PLAN_URL=https://raw.githubusercontent.com/fpco/stackage-nightly/master/$TARGET.yaml -fi - -IMAGE=snoyberg/stackage:$TAG - -PLAN_FILE=$TARGET-plan.yaml -DOCMAP_FILE=$TARGET-docmap.yaml -BUNDLE_FILE=$TARGET.bundle= - -CABAL_DIR=$ROOT/cabal -STACK_DIR=$ROOT/stack -GHC_DIR=$ROOT/ghc -DOT_STACKAGE_DIR=$ROOT/dot-stackage -WORKDIR=$ROOT/$TAG/work -EXTRA_BIN_DIR=$ROOT/extra-bin - -mkdir -p \ - "$CABAL_DIR" \ - "$STACK_DIR" \ - "$GHC_DIR" \ - "$DOT_STACKAGE_DIR" \ - "$WORKDIR" \ - "$EXTRA_BIN_DIR" - -curl "$PLAN_URL" > $WORKDIR/$PLAN_FILE - -mkdir -p $ROOT/bin -BINDIR=$(cd $ROOT/bin ; pwd) -( -cd $BINDIR -rm -f stackage-curator stackage-curator.bz2 -wget https://s3.amazonaws.com/stackage-travis/stackage-curator/stackage-curator.bz2 -bunzip2 stackage-curator.bz2 -chmod +x stackage-curator -) - -ARGS_COMMON="--rm -v $WORKDIR:/home/stackage/work -w /home/stackage/work -v $BINDIR/stackage-curator:/usr/bin/stackage-curator:ro -v /etc/passwd:/etc/passwd:ro -v /etc/group:/etc/group:ro -v $EXTRA_BIN_DIR:/home/stackage/bin:ro" -ARGS_PREBUILD="$ARGS_COMMON -u $USER -v $CABAL_DIR:/home/stackage/.cabal -v $STACK_DIR:/home/stackage/.stack -v $GHC_DIR:/home/stackage/.ghc -v $DOT_STACKAGE_DIR:/home/stackage/.stackage" -ARGS_BUILD="$ARGS_COMMON -v $CABAL_DIR:/home/stackage/.cabal:ro -v $STACK_DIR:/home/stackage/.stack:ro -v $GHC_DIR:/home/stackage/.ghc:ro" - -# Get latest stack -curl -L https://www.stackage.org/stack/linux-x86_64 | tar xz --wildcards --strip-components=1 -C $EXTRA_BIN_DIR '*/stack' - -# Do all of the pre-build actions: -# -# * Update the package index -# * Fetch all needed tarballs (the build step does not have write access to the tarball directory) -# * Do a single unpack to create the package index cache (again due to directory perms) -docker run $ARGS_PREBUILD $IMAGE /bin/bash -c "/home/stackage/bin/stack update && stackage-curator fetch --plan-file $PLAN_FILE && cd /tmp && /home/stackage/bin/stack unpack random" - -# Now do the actual build. We need to first set the owner of the home directory -# correctly, so we run the command as root, change owner, and then use sudo to -# switch back to the current user -docker run $ARGS_BUILD $IMAGE /bin/bash -c "chown $USER /home/stackage && sudo -E -u $USER env \"PATH=\$PATH:/home/stackage/bin\" stackage-curator make-bundle --plan-file $PLAN_FILE --docmap-file $DOCMAP_FILE --bundle-file $BUNDLE_FILE --target $TARGET --cabal-from-head" diff --git a/automated/cron.sh b/automated/cron.sh deleted file mode 100755 index 2d804ad8..00000000 --- a/automated/cron.sh +++ /dev/null @@ -1,24 +0,0 @@ -#!/usr/bin/env bash - -set -eux - -cd "$(dirname "${BASH_SOURCE[0]}")" - -CRONDIR=$(pwd)/crondir -mkdir -p $CRONDIR -source aws.sh - -IMAGE=fpco/stackage-server-prod:latest -docker pull $IMAGE - -stack update - -date -echo "Running stackage-server-cron..." -docker run --rm \ - -v $CRONDIR:/home/ubuntu \ - -v $HOME/.stack/indices:/home/ubuntu/.stack/indices:ro \ - --workdir /home/ubuntu \ - -p 17834:17834 \ - $IMAGE \ - bash -c "useradd $(whoami) -u $(id -u); sudo -u $(whoami) env HOME=/home/ubuntu AWS_ACCESS_KEY_ID=$AWS_ACCESS_KEY_ID AWS_SECRET_ACCESS_KEY=$AWS_SECRET_ACCESS_KEY bash -c '/usr/local/bin/stackage-server-cron 2>&1 | tee -a /home/ubuntu/stackage-server-cron.log'" diff --git a/automated/new-stackage-format/convert.sh b/automated/new-stackage-format/convert.sh deleted file mode 100755 index 092b293a..00000000 --- a/automated/new-stackage-format/convert.sh +++ /dev/null @@ -1,35 +0,0 @@ -#!/usr/bin/env bash - -set -eux - -if [[ ! -f convert ]] -then - curl https://s3.amazonaws.com/www.snoyman.com/convert-old-stackage-c9c4d06b31cb7aafedd23aa316b8008c45e4d4dd.bz2 > convert.bz2 - chmod +x convert.bz2 - bunzip2 convert.bz2 -fi - -cd $(dirname ${BASH_SOURCE[0]}) - -for d in lts-haskell stackage-nightly stackage-snapshots -do - if [[ ! -d "$d" ]] - then - git clone https://github.com/commercialhaskell/$d - else - (cd "$d" && git pull || echo "Git pull failed, ignoring") - fi -done - -( -export HOME=$(pwd) -./convert -) - -cd stackage-snapshots -git add lts nightly -git diff-index --quiet HEAD && echo No changes && exit 0 -git config user.name "Stackage build server" -git config user.email "michael@snoyman.com" -git commit -m "More conversions $(date)" -GIT_SSH_COMMAND='ssh -i ../../ssh-lts/id_rsa' git push git@github.com:commercialhaskell/stackage-snapshots master diff --git a/automated/nix-build/README.md b/automated/nix-build/README.md deleted file mode 100644 index 56901b26..00000000 --- a/automated/nix-build/README.md +++ /dev/null @@ -1,5 +0,0 @@ -# Building Stackage with Nix - -The script `build.sh` is supposed to be run in a directory where `curator unpack` -was run - it assumes existence of `unpack-dir` directory with a Stackage -snapshot `stack.yaml` and unpacked packages in it. diff --git a/automated/nix-build/build.sh b/automated/nix-build/build.sh deleted file mode 100644 index 62918fe5..00000000 --- a/automated/nix-build/build.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/usr/bin/env bash - -set -eu +x - -NIX_VERSION="2.0.4" -curl https://nixos.org/releases/nix/nix-$NIX_VERSION/install | sh - -# no code to install stack2nix yet - -stack2nix --cabal2nix-args="--no-hpack" unpack-dir > snapshot.nix - -nix build -f snapshot-fixed.nix diff --git a/automated/nix-build/fetch-nixpkgs.nix b/automated/nix-build/fetch-nixpkgs.nix deleted file mode 100644 index 29cac91f..00000000 --- a/automated/nix-build/fetch-nixpkgs.nix +++ /dev/null @@ -1,23 +0,0 @@ -let - spec = builtins.fromJSON (builtins.readFile ./nixpkgs-src.json); - src = import { - url = "https://github.com/${spec.owner}/${spec.repo}/archive/${spec.rev}.tar.gz"; - inherit (spec) sha256; - }; - nixcfg = import ; -in builtins.derivation { - system = builtins.currentSystem; - name = "${src.name}-unpacked"; - builder = builtins.storePath nixcfg.shell; - inherit src; - args = [ - (builtins.toFile "builder" '' - $coreutils/mkdir $out - cd $out - $gzip -d < $src | $tar -x --strip-components=1 - '') - ]; - coreutils = builtins.storePath nixcfg.coreutils; - tar = builtins.storePath nixcfg.tar; - gzip = builtins.storePath nixcfg.gzip; -} diff --git a/automated/nix-build/nixpkgs-src.json b/automated/nix-build/nixpkgs-src.json deleted file mode 100644 index 00ed9d5d..00000000 --- a/automated/nix-build/nixpkgs-src.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "c2950341d038995bf46a7b72db961bb3d3e9ac12", - "sha256": "0ghirjm6xvsihci3fladrn4nrnh2yr529v7c406hmw0yp25kv0i4" -} diff --git a/automated/nix-build/snapshot-fixed.nix b/automated/nix-build/snapshot-fixed.nix deleted file mode 100644 index bac92a89..00000000 --- a/automated/nix-build/snapshot-fixed.nix +++ /dev/null @@ -1,41 +0,0 @@ -{ pkgs ? import (import ./fetch-nixpkgs.nix) {} -, compiler ? pkgs.haskell.packages.ghc863 -}: -let - snapshot = import ./snapshot.nix { pkgs = pkgs; compiler = compiler; }; -in - snapshot.override (with pkgs.haskell.lib; { - overrides = self: super: { - # disabling packages from non-hackage-packages.nix - futhark = null; - multi-ghc-travis = null; - vaultenv = null; - # native deps - check-email = super.check-email.override { resolv = null; }; - flac = super.flac.override { FLAC = pkgs.flac; }; - freenect = super.freenect.override { freenect_sync = null; libfreenect = null; }; - haskell-gi = super.haskell-gi.override { gobject-introspection = pkgs.gnome3.gobjectIntrospection; }; - HDBC-mysql = super.HDBC-mysql.override { mysqlclient = pkgs.mysql;}; - libffi = super.libffi.override { ffi = null; }; - # fixes - blas-ffi = overrideCabal super.blas-ffi ( - old: { libraryPkgconfigDepends = old.libraryPkgconfigDepends ++ [ pkgs.openblasCompat ]; } - ); - odbc = overrideCabal super.odbc ( - old: { librarySystemDepends = old.librarySystemDepends ++ [ pkgs.freetds ]; } - ); - html-entities = null; # https://github.com/nikita-volkov/html-entities/issues/8 - category = null; # conflict in Prelude.hs - constraint = null; # because of category - lame = null; # fails with 'Total ticks: 451489' - proto-lens-protobuf-types = overrideCabal super.proto-lens-protobuf-types ( - old: { libraryToolDepends = old.libraryToolDepends ++ [ pkgs.protobuf ]; } - ); - # libraft = null; # xxx/postgres/entries.sql: openFile: does not exist (No such file or directory) in libraft-0.2.0.0 - xmlbf-xeno = null; # because of html-entities - xmonad = null; # xmonad requires extra patches for Nix - xmonad-contrib = null; - xmonad-extras = null; - hlibgit2 = disableHardening super.hlibgit2 [ "format" ]; - }; - }) diff --git a/automated/run-nightly.sh b/automated/run-nightly.sh index 7b7ca37a..9f21bd98 100755 --- a/automated/run-nightly.sh +++ b/automated/run-nightly.sh @@ -3,12 +3,9 @@ cd "$(dirname "${BASH_SOURCE[0]}")" while true; do - ./build-next.sh nightly-$(date -u +%F) + ./build.sh nightly-$(date -u +%F) date - #./new-stackage-format/convert.sh > /dev/null 2> /dev/null - #date - sleep 30m echo done From 98b227a06f2709f861f568d47b632c1067f5db93 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 9 Feb 2020 14:10:12 +0200 Subject: [PATCH 1170/2682] Reversed dash logic --- automated/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/automated/build.sh b/automated/build.sh index b077babf..b0d27c19 100755 --- a/automated/build.sh +++ b/automated/build.sh @@ -12,8 +12,8 @@ source aws.sh SHORTNAME=$(echo $TARGET | cut -d- -f 1) if [ $SHORTNAME = "lts" ] then - TAG=$(echo $TARGET | sed 's@^lts-\([0-9]*\)\.[0-9]*@lts-\1@') - WORKDIR=$ROOT/work/$(echo $TARGET | sed 's@^lts-\([0-9]*\)\.[0-9]*@lts\1@') + TAG=$(echo $TARGET | sed 's@^lts-\([0-9]*\)\.[0-9]*@lts\1@') + WORKDIR=$ROOT/work/$(echo $TARGET | sed 's@^lts-\([0-9]*\)\.[0-9]*@lts-\1@') else TAG=$SHORTNAME WORKDIR=$ROOT/work/$TAG From 0fecc4e52281de85b91a2e500df745699169c77f Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 9 Feb 2020 12:15:01 +0000 Subject: [PATCH 1171/2682] Cleaner dir structure --- automated/build.sh | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/automated/build.sh b/automated/build.sh index b0d27c19..985d4873 100755 --- a/automated/build.sh +++ b/automated/build.sh @@ -5,7 +5,7 @@ set -eu +x -o pipefail ROOT=$(cd $(dirname $0) ; pwd) TARGET=$1 -source aws.sh +source work/aws.sh # For nightly-YYYY-MM-DD, tag should be nightly # For lts-X.Y, tag should be ltsX @@ -21,11 +21,11 @@ fi IMAGE=commercialhaskell/stackage:$TAG -PANTRY_DIR=$ROOT/stack/pantry -STACK_DIR=$ROOT/stack -DOT_STACKAGE_DIR=$ROOT/dot-stackage +PANTRY_DIR=$ROOT/work/stack/pantry +STACK_DIR=$ROOT/work/stack +DOT_STACKAGE_DIR=$ROOT/work/dot-stackage # ssh key is used for committing snapshots (and their constraints) to Github -SSH_DIR=$ROOT/ssh +SSH_DIR=$ROOT/work/ssh USERID=$(id -u) mkdir -p \ @@ -35,14 +35,14 @@ mkdir -p \ "$WORKDIR" \ "$SSH_DIR" -GITCONFIG=$ROOT/gitconfig +GITCONFIG=$ROOT/work/gitconfig cat >$GITCONFIG < Date: Sun, 9 Feb 2020 12:21:32 +0000 Subject: [PATCH 1172/2682] Ignore log files --- automated/.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/automated/.gitignore b/automated/.gitignore index c43ceb23..9ab7c2d4 100644 --- a/automated/.gitignore +++ b/automated/.gitignore @@ -7,3 +7,6 @@ /pantry/ /stack/ /dot-stackage/ + +/lts-build.log +/nightly-build.log From 15fff9b9760875bbc9de39b2a174d5b18b9ac639 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 9 Feb 2020 14:24:13 +0200 Subject: [PATCH 1173/2682] Reduce ignore list --- automated/.gitignore | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/automated/.gitignore b/automated/.gitignore index 9ab7c2d4..ee0d0037 100644 --- a/automated/.gitignore +++ b/automated/.gitignore @@ -1,12 +1,2 @@ -/bin/ -/gitconfig -/hackage-creds -/ssh/ /work/ -/aws.sh -/pantry/ -/stack/ -/dot-stackage/ - -/lts-build.log -/nightly-build.log +/*-build.log From 5275742881e34cd5c47e2bef1163e06e7eda9424 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 9 Feb 2020 14:30:41 +0200 Subject: [PATCH 1174/2682] Revert "Use Cabal shipped with GHC" This reverts commit a258bcdc29795923b83524f1e0a0fbc3ce34b499. --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6dbdbeb7..936a4ca8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2854,8 +2854,8 @@ packages: - xlsx-tabular "Mikhail Glushenkov @23Skidoo": - # Take Cabal shipped with GHC - Cabal - - cabal-install + - Cabal + - cabal-install < 0 # via base-4.13.0.0 # - pointful # haskell-src-exts "Lennart Kolmodin @kolmodin": From 3679a5346aa051c7d5aa6b2909d132a3977c0943 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 10 Feb 2020 07:34:26 +0200 Subject: [PATCH 1175/2682] Revert "Upper bound on ghc-lib-parser-ex for #5137" This reverts commit 09da8355d35cb82a2bbc8849cfe9e902a5e7272e. Closes #5137 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 936a4ca8..263dfcc5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4658,9 +4658,6 @@ packages: - servant-mock < 0.8.6 - servant-swagger < 1.1.8 - aur < 6.3.0 - - # https://github.com/commercialhaskell/stackage/issues/5137 - - ghc-lib-parser-ex < 8.8.5 # end of packages # Package flags are applied to individual packages, and override the values of From afb3d22f05fe55c48b08705c929d10d7daf7a855 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 10 Feb 2020 08:03:34 +0200 Subject: [PATCH 1176/2682] Drop some packages that ship with GHC --- build-constraints.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 263dfcc5..2f22c0ef 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -871,7 +871,7 @@ packages: - monadic-arrays - monad-products - monad-st - - mtl + # - mtl take the one that ships with GHC - nats - numeric-extras - parsers @@ -2854,7 +2854,7 @@ packages: - xlsx-tabular "Mikhail Glushenkov @23Skidoo": - - Cabal + # - Cabal take the one that ships with GHC - cabal-install < 0 # via base-4.13.0.0 # - pointful # haskell-src-exts @@ -4385,7 +4385,6 @@ packages: - options - optparse-applicative - parallel - - parsec - path-pieces - pcg-random - persistable-record From 303b1c06030ef736111804778524463a8d4ff163 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 10 Feb 2020 07:06:01 +0000 Subject: [PATCH 1177/2682] Fix legacy conversion script --- automated/build.sh | 18 +++++------------- 1 file changed, 5 insertions(+), 13 deletions(-) diff --git a/automated/build.sh b/automated/build.sh index 985d4873..fb7e0899 100755 --- a/automated/build.sh +++ b/automated/build.sh @@ -82,7 +82,7 @@ ARGS_PREBUILD="$ARGS_COMMON -u $USERID -e HOME=$HOME -v $DOT_STACKAGE_DIR:$HOME/ ARGS_BUILD="$ARGS_COMMON" # instance-data is an undocumented feature of S3 used by amazonka, # see https://github.com/brendanhay/amazonka/issues/271 -ARGS_UPLOAD="$ARGS_COMMON -u $USERID -e HOME=$HOME -v $HACKAGE_CREDS:/hackage-creds:ro -v $DOT_STACKAGE_DIR:$HOME/.stackage -v $SSH_DIR:$HOME/.ssh:ro -v $GITCONFIG:$HOME/.gitconfig:ro -e AWS_ACCESS_KEY_ID=$AWS_ACCESS_KEY_ID -e AWS_SECRET_ACCESS_KEY=$AWS_SECRET_ACCESS_KEY" +ARGS_UPLOAD="$ARGS_COMMON -u $USERID -e HOME=$HOME -v $HACKAGE_CREDS:/hackage-creds:ro -v $DOT_STACKAGE_DIR:$HOME/.stackage -v $SSH_DIR:$HOME/.ssh:ro -v $GITCONFIG:$HOME/.gitconfig:ro -e AWS_ACCESS_KEY_ID=$AWS_ACCESS_KEY_ID -e AWS_SECRET_ACCESS_KEY=$AWS_SECRET_ACCESS_KEY -v $DOT_STACKAGE_DIR:/dot-stackage" # Make sure we actually need this snapshot. We only check this for LTS releases # since, for nightlies, we'd like to run builds even if they are unnecessary to @@ -143,15 +143,14 @@ docker run $ARGS_UPLOAD $IMAGE /bin/bash -c "curator upload-docs --target $TARGE # For some reason, registering on Hackage fails with inscrutable error messages. Disabling. # docker run $ARGS_UPLOAD $IMAGE /bin/bash -c "exec curator hackage-distro --target $TARGET" -docker run $ARGS_UPLOAD $IMAGE curator legacy-bulk --stackage-snapshots dot-stackage/curator/stackage-snapshots/ --lts-haskell dot-stackage/curator/lts-haskell/ --stackage-nightly dot-stackage/curator/stackage-nightly/ +docker run $ARGS_UPLOAD $IMAGE curator legacy-bulk --stackage-snapshots /dot-stackage/curator/stackage-snapshots/ --lts-haskell /dot-stackage/curator/lts-haskell/ --stackage-nightly /dot-stackage/curator/stackage-nightly/ ( - if [ $SHORTNAME = "lts" ] then - cd dot-stackage/curator/lts-haskell + cd $DOT_STACKAGE_DIR/curator/lts-haskell else - cd dot-stackage/curator/stackage-nightly + cd $DOT_STACKAGE_DIR/curator/stackage-nightly fi git add *.yaml @@ -159,14 +158,7 @@ git diff-index --quiet HEAD && echo No changes && exit 0 git config user.name "Stackage build server" git config user.email "michael@snoyman.com" git commit -a -m "More conversions $(date)" - -if [ $SHORTNAME = "lts" ] -then - GIT_SSH_COMMAND="ssh -i $ROOT/ssh-lts/id_rsa" git push origin master -else - GIT_SSH_COMMAND="ssh -i $ROOT/ssh-nightly/id_rsa" git push origin master -fi - +GIT_SSH_COMMAND="ssh -i $SSH_DIR/id_rsa" git push origin master ) echo -n "Completed at " From 997ab28b969f917a9c258cb4e3a925b785ad4b8a Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Mon, 10 Feb 2020 17:46:48 -0800 Subject: [PATCH 1178/2682] Upper bound bz2 (#5149) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2f22c0ef..1c5b6d5a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -319,7 +319,7 @@ packages: - sexpr-parser < 0 # via base-4.13.0.0 "Vanessa McHale @vmchale": - - bz2 + - bz2 < 1.0.0.2 # https://github.com/commercialhaskell/stackage/issues/5149 "Henning Thielemann @thielema": - accelerate-arithmetic < 0 # GHC 8.4 via accelerate From a1a468c8f96cc7cbe33a6beb9428c5476fb63932 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Mon, 10 Feb 2020 17:50:43 -0800 Subject: [PATCH 1179/2682] Upper bound genvalidity-* packages (#5150) --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1c5b6d5a..e6c7f22c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3723,7 +3723,7 @@ packages: - genvalidity - genvalidity-aeson - genvalidity-bytestring - - genvalidity-containers + - genvalidity-containers < 0.8.0.2 # https://github.com/commercialhaskell/stackage/issues/5150 - genvalidity-hspec - genvalidity-hspec-aeson - genvalidity-hspec-binary @@ -3734,7 +3734,7 @@ packages: - genvalidity-property - genvalidity-scientific - genvalidity-text < 0.7.0.1 # commercialhaskell/stackage#5013 - - genvalidity-time + - genvalidity-time < 0.8.0.2 # https://github.com/commercialhaskell/stackage/issues/5150 - genvalidity-unordered-containers - genvalidity-uuid - genvalidity-vector From d9a2bf03fde05c773ec163a7181c1e12f3ad5939 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Mon, 10 Feb 2020 17:58:12 -0800 Subject: [PATCH 1180/2682] Use the proper upper bound for genvalidity-time (#5150) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e6c7f22c..83d402df 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3734,7 +3734,7 @@ packages: - genvalidity-property - genvalidity-scientific - genvalidity-text < 0.7.0.1 # commercialhaskell/stackage#5013 - - genvalidity-time < 0.8.0.2 # https://github.com/commercialhaskell/stackage/issues/5150 + - genvalidity-time < 0.2.1.2 # https://github.com/commercialhaskell/stackage/issues/5150 - genvalidity-unordered-containers - genvalidity-uuid - genvalidity-vector From 0220848150bd0e5d30cc7bf267fc022dc3f29f8b Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Mon, 10 Feb 2020 19:10:53 -0800 Subject: [PATCH 1181/2682] Expect test failure for `haskell-src-exts` (#5151)" ; --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 83d402df..623543c2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5320,6 +5320,7 @@ expected-test-failures: - loopbreaker # https://github.com/polysemy-research/loopbreaker/issues/10 - nettle # https://github.com/stbuehler/haskell-nettle/issues/10 - persistent-sqlite # https://github.com/yesodweb/persistent/issues/989 + - haskell-src-exts # https://github.com/commercialhaskell/stackage/issues/5151 # Compilation failures - ListLike # No issue tracker, e-mail sent to maintainer From b23d0a4e5718b1bfce4f559fe75a057907b31c2a Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Mon, 10 Feb 2020 19:27:11 -0800 Subject: [PATCH 1182/2682] Expect test failure for `genvalidity-containers` (#5152) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 623543c2..9de02d16 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5321,6 +5321,7 @@ expected-test-failures: - nettle # https://github.com/stbuehler/haskell-nettle/issues/10 - persistent-sqlite # https://github.com/yesodweb/persistent/issues/989 - haskell-src-exts # https://github.com/commercialhaskell/stackage/issues/5151 + - genvalidity-containers # https://github.com/commercialhaskell/stackage/issues/5152 # Compilation failures - ListLike # No issue tracker, e-mail sent to maintainer From a4114cf9b25d0631e7d215f7fa76aff2c250aa3f Mon Sep 17 00:00:00 2001 From: Hiromi ISHII Date: Sun, 9 Feb 2020 22:29:13 +0900 Subject: [PATCH 1183/2682] Adds equational-reasoning, ghc-typelits-presburger, singletons-presburger and sized --- build-constraints.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9de02d16..63fe99c0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4117,6 +4117,12 @@ packages: "8c6794b6 <8c6794b6@gmail.com> @8c6794b6": - hpc-codecov + + "Hiromi Ishii @konn": + - equational-reasoning + - ghc-typelits-presburger + - type-natural + - sized "Grandfathered dependencies": - network From 7c19527f19b15d289a167b5f5a3240740ebf119f Mon Sep 17 00:00:00 2001 From: Hiromi ISHII Date: Sun, 9 Feb 2020 22:34:34 +0900 Subject: [PATCH 1184/2682] Adds singletons-presburger --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 63fe99c0..13205fa3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4121,6 +4121,7 @@ packages: "Hiromi Ishii @konn": - equational-reasoning - ghc-typelits-presburger + - singletons-presburger - type-natural - sized From 41d2ef8ddf977681c1d84ae6fe69c447b88dc4ed Mon Sep 17 00:00:00 2001 From: Jorah Gao Date: Sun, 9 Feb 2020 23:12:32 +0800 Subject: [PATCH 1185/2682] Add aeson-default and remove hkd-default --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 13205fa3..770a3060 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4107,10 +4107,10 @@ packages: - linenoise "Jorah Gao @gqk007": + - aeson-default - vformat - vformat-time - vformat-aeson - - hkd-default "Alessandro Marrella @amarrella": - kubernetes-webhook-haskell From b3d5b5f5f413632c90291e795c36cbd819cebde7 Mon Sep 17 00:00:00 2001 From: Kostiantyn Rybnikov Date: Mon, 10 Feb 2020 19:20:33 +0200 Subject: [PATCH 1186/2682] Re-add hedis --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 770a3060..6df539b0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2157,7 +2157,7 @@ packages: - friday < 0 - friday-juicypixels < 0 - hbeanstalk < 0 # sClose not in scope - - hedis < 0 # via test-framework + - hedis - hprotoc < 0 # compilation failure - hsyslog-udp < 0 - iso3166-country-codes From c56cb126493f386f4f827785a0d04208a2c340df Mon Sep 17 00:00:00 2001 From: Maxim Koltsov Date: Tue, 11 Feb 2020 14:43:18 +0300 Subject: [PATCH 1187/2682] Add _old-network: false for bson & mongoDB Packages "bson" and "mongoDB" are compatible with newer network, but require a flag for it. --- build-constraints.yaml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6df539b0..45bea95e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3114,8 +3114,8 @@ packages: - open-witness < 0 # MonadFail "Victor Denisov @VictorDenisov": - - mongoDB < 0 # via network-3.1.1.0 - - bson < 0 # via network-3.1.1.0 + - mongoDB + - bson "Alexis King @lexi-lambda": - freer-simple @@ -4767,6 +4767,12 @@ package-flags: hsdev: docs: false + bson: + _old-network: false + + mongoDB: + _old-network: false + # end of package-flags # Special configure options for individual packages From 6074921b62ccccb047ee700745cea3730385f3b1 Mon Sep 17 00:00:00 2001 From: Maxim Koltsov Date: Tue, 11 Feb 2020 14:44:36 +0300 Subject: [PATCH 1188/2682] Re-enable hyraxAbif Package "hyraxAbif" was released with version 0.2.3.21, which adds compatibility with GHC-8.8. --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 45bea95e..db98001b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3829,7 +3829,6 @@ packages: "Andre Van Der Merwe @andrevdm": - bhoogle < 0 - hyraxAbif - - hyraxAbif < 0 # via binary-0.8.7.0 "David Millar-Durrant @DavidM-D": - indexed-list-literals From 5f55ec17f2acbd042f83135de8a0740709989ba0 Mon Sep 17 00:00:00 2001 From: Maxim Koltsov Date: Tue, 11 Feb 2020 16:05:47 +0300 Subject: [PATCH 1189/2682] Update comment for mongoDB disabled tests --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index db98001b..6767f6b3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5264,7 +5264,7 @@ expected-test-failures: - mangopay # https://github.com/prowdsponsor/mangopay/issues/30 - memcached-binary # memcached - milena - - mongoDB # mongoDB - https://github.com/mongodb-haskell/mongodb/issues/61 + - mongoDB # Requires local MongoDB server - mysql # MySQL - mysql-haskell # Requires local mysql server with a test account, and binlog enabled. - mysql-simple # MySQL From 830b47fb142128897715491f0a703195e875dc73 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 11 Feb 2020 07:03:47 -0800 Subject: [PATCH 1190/2682] genvalidity and related packages (fix #5013, fix #5150, fix #5152, close #5145) --- build-constraints.yaml | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6767f6b3..89125260 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3720,29 +3720,44 @@ packages: - gym-http-api < 0 # via servant servant-client "Tom Sydney Kerckhove @NorfairKing": + - cursor + - cursor-brick + - cursor-fuzzy-time + - cursor-gen + - fuzzy-time - genvalidity - genvalidity-aeson - genvalidity-bytestring - - genvalidity-containers < 0.8.0.2 # https://github.com/commercialhaskell/stackage/issues/5150 + - genvalidity-containers + - genvalidity-criterion - genvalidity-hspec - genvalidity-hspec-aeson - genvalidity-hspec-binary - genvalidity-hspec-cereal - genvalidity-hspec-hashable - genvalidity-hspec-optics + - genvalidity-hspec-persistent + - genvalidity-mergeful + - genvalidity-mergeless - genvalidity-path - genvalidity-property - genvalidity-scientific - - genvalidity-text < 0.7.0.1 # commercialhaskell/stackage#5013 - - genvalidity-time < 0.2.1.2 # https://github.com/commercialhaskell/stackage/issues/5150 + - genvalidity-text + - genvalidity-time + - genvalidity-typed-uuid - genvalidity-unordered-containers - genvalidity-uuid - genvalidity-vector + - mergeful + - mergeless + - pretty-relative-time + - typed-uuid - validity - validity-aeson - validity-bytestring - validity-containers - validity-path + - validity-primitive - validity-scientific - validity-text - validity-time @@ -5333,7 +5348,6 @@ expected-test-failures: - nettle # https://github.com/stbuehler/haskell-nettle/issues/10 - persistent-sqlite # https://github.com/yesodweb/persistent/issues/989 - haskell-src-exts # https://github.com/commercialhaskell/stackage/issues/5151 - - genvalidity-containers # https://github.com/commercialhaskell/stackage/issues/5152 # Compilation failures - ListLike # No issue tracker, e-mail sent to maintainer From 4c0c3a57f8dedc4b913c8231cf978254480de61f Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 11 Feb 2020 07:39:21 -0800 Subject: [PATCH 1191/2682] Disable broken packages, expect test failures (#5154, #5155, #5156, #5157, #5158) --- build-constraints.yaml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 89125260..1f1b9bfb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3724,7 +3724,7 @@ packages: - cursor-brick - cursor-fuzzy-time - cursor-gen - - fuzzy-time + - fuzzy-time < 0 # https://github.com/commercialhaskell/stackage/issues/5154 - genvalidity - genvalidity-aeson - genvalidity-bytestring @@ -3749,9 +3749,9 @@ packages: - genvalidity-uuid - genvalidity-vector - mergeful - - mergeless + - mergeless < 0 # https://github.com/commercialhaskell/stackage/issues/5157 - pretty-relative-time - - typed-uuid + - typed-uuid < 0 # https://github.com/commercialhaskell/stackage/issues/5156 - validity - validity-aeson - validity-bytestring @@ -5456,6 +5456,13 @@ expected-test-failures: # Test-runner expects a cabal-style 'dist-newstyle' directory - hjsmin + + # https://github.com/commercialhaskell/stackage/issues/5155 + - pretty-relative-time + + # https://github.com/commercialhaskell/stackage/issues/5158 + - genvalidity-mergeful + - cursor-gen # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 5362f6f7391ef8a5f06829be0c22eada49cb138a Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 11 Feb 2020 07:46:30 -0800 Subject: [PATCH 1192/2682] Bounds from previous commit (4c0c3a57) --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1f1b9bfb..e85dde27 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3722,7 +3722,7 @@ packages: "Tom Sydney Kerckhove @NorfairKing": - cursor - cursor-brick - - cursor-fuzzy-time + - cursor-fuzzy-time < 0 # via fuzzy-time - cursor-gen - fuzzy-time < 0 # https://github.com/commercialhaskell/stackage/issues/5154 - genvalidity @@ -3738,13 +3738,13 @@ packages: - genvalidity-hspec-optics - genvalidity-hspec-persistent - genvalidity-mergeful - - genvalidity-mergeless + - genvalidity-mergeless < 0 # via mergeless - genvalidity-path - genvalidity-property - genvalidity-scientific - genvalidity-text - genvalidity-time - - genvalidity-typed-uuid + - genvalidity-typed-uuid < 0 # via typed-uuid and mergeless - genvalidity-unordered-containers - genvalidity-uuid - genvalidity-vector From ba75fc0b26959846a83b5693e9b5ea96586f44a1 Mon Sep 17 00:00:00 2001 From: vrom911 Date: Mon, 10 Feb 2020 21:51:13 +0000 Subject: [PATCH 1193/2682] Add membrain --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e85dde27..9140370a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1330,7 +1330,7 @@ packages: - wl-pprint - AC-Angle - language-protobuf - + "Flavio Corpa @kutyel": - language-avro @@ -3591,6 +3591,7 @@ packages: - co-log-polysemy - first-class-patterns - ilist + - membrain - relude - shellmet - shortcut-links From e14835ad150f119769340b95e117d681160c859b Mon Sep 17 00:00:00 2001 From: Jasper Woudenberg Date: Mon, 10 Feb 2020 19:49:54 +0000 Subject: [PATCH 1194/2682] add junit-xml --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9140370a..83049f4b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4114,6 +4114,7 @@ packages: "Jasper Woudenberg @jasperwoudnberg": - bugsnag-hs + - junit-xml "Eric Conlon @ejconlon": - blanks From 3d9a05fccda1e42e9f484aed515358227821a4fd Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 11 Feb 2020 16:21:43 -0800 Subject: [PATCH 1195/2682] Upper bound `generic-lens` (#5161) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 83049f4b..c317d732 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3692,7 +3692,7 @@ packages: - milena < 0 "Csongor Kiss @kcsongor": - - generic-lens + - generic-lens < 2.0.0.0 # https://github.com/commercialhaskell/stackage/issues/5161 "Bogdan Neterebskii @ozzzzz": - cast From e333ce752ec1679133c30ef21d12d8dbc6943cfa Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 11 Feb 2020 18:18:40 -0800 Subject: [PATCH 1196/2682] Skip tests for `servant-rawm` (#5162) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index c317d732..d2b85ff4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5176,6 +5176,7 @@ skipped-tests: - bugsnag-haskell # https://github.com/commercialhaskell/stackage/issues/4759 - genvalidity-hspec-cereal # https://github.com/commercialhaskell/stackage/issues/4909 - genvalidity-hspec-optics # https://github.com/commercialhaskell/stackage/issues/4910 + - servant-rawm # https://github.com/commercialhaskell/stackage/issues/5162 # end of skipped-tests # Tests listed in expected-test-failures configure correctly but may fail to run From 4f56879127ee32b737d0c2677855e23f3081d63b Mon Sep 17 00:00:00 2001 From: Neil Mitchell Date: Tue, 11 Feb 2020 21:43:36 +0000 Subject: [PATCH 1197/2682] Add fuzzy, remove debug --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d2b85ff4..e89d784b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -673,12 +673,12 @@ packages: - hexml - weeder - profiterole - - debug < 0 # via Hoed - record-dot-preprocessor - filepattern - record-hasfield - rattle - hie-bios + - fuzzy "Digital Asset ": - ghc-lib From 54f31e2012f890557c0b68763650408f040140bc Mon Sep 17 00:00:00 2001 From: Pavan Rikhi Date: Tue, 11 Feb 2020 11:52:06 -0500 Subject: [PATCH 1198/2682] Add stack-templatizer --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index e89d784b..927406c3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4029,6 +4029,7 @@ packages: - mx-state-codes - sitemap-gen - tasty-wai + - stack-templatizer "David Baynard @dbaynard": - time-qq < 0 # see christian-marie/time-qq#3 From c9240400cc64770504413faa60f366d3c745ac69 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 12 Feb 2020 08:46:55 +0000 Subject: [PATCH 1199/2682] Add new packages to constraints, not snapshot-incomplete --- CURATORS.md | 2 +- automated/build.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CURATORS.md b/CURATORS.md index 37398cef..f9b14f90 100644 --- a/CURATORS.md +++ b/CURATORS.md @@ -299,7 +299,7 @@ First run `build-next.sh` to regenerate updated `ltsXX/work/constraints.yaml` an For an LTS minor bump, you'll typically want to: * Add constraints to package `range:` fields _under_ the `source:` field in that `constraints.yaml`. -* Add new packages versioned to `snapshot-incomplete.yaml` (the `@` suffix is optional) +* Add new packages to the `constraints.yaml` file * Test, benchmark, haddock failures can also be added to package fields in the `constraints.yaml` if necessary, though it should be avoided if possible for LTS. Then run `NOPLAN=1 build-next.sh` to build the generate an updated snapshot. diff --git a/automated/build.sh b/automated/build.sh index fb7e0899..d6fdd77e 100755 --- a/automated/build.sh +++ b/automated/build.sh @@ -107,7 +107,7 @@ then docker run $ARGS_PREBUILD $IMAGE /bin/bash -c "curator update && curator constraints --target $TARGET && curator snapshot-incomplete --target $TARGET && curator snapshot" fi else - docker run $ARGS_PREBUILD $IMAGE /bin/bash -c "curator snapshot" + docker run $ARGS_PREBUILD $IMAGE /bin/bash -c "curator snapshot-incomplete --target $TARGET && curator snapshot" fi From 15ba7d45257a8abb0b9560a8336a617ce272a479 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 12 Feb 2020 06:38:22 -0800 Subject: [PATCH 1200/2682] Add `gi-*` packages. Merge #5143 manually --- build-constraints.yaml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 927406c3..a8c021db 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3030,15 +3030,18 @@ packages: "Iñaki García Etxebarria @garetxe": - haskell-gi - haskell-gi-base - - gi-atk < 0 # via haskell-gi - - gi-cairo < 0 # via haskell-gi - - gi-glib < 0 # via haskell-gi - - gi-gio < 0 # via haskell-gi - - gi-gobject < 0 # via haskell-gi - - gi-gtk < 0 # via gi-graphene + - gi-atk + - gi-cairo + - gi-gdk < 4 + - gi-gdkpixbuf + - gi-gio + - gi-glib + - gi-gobject + - gi-gtk < 4 - gi-gtk-hs < 0 # via base-compat-0.11.0 - gi-gtksource < 0 # via gi-gdk-4.0.1 & gi-gtk-4.0.1 - gi-javascriptcore < 0 # via haskell-gi + - gi-pango - gi-vte < 0 # via gi-gdk-4.0.1 & gi-gtk-4.0.1 # - gi-webkit2 # https://github.com/fpco/stackage/issues/3415 @@ -4302,9 +4305,6 @@ packages: - ghc-compact - ghc-paths - ghc-prof - - gi-gdk < 0 # via haskell-gi - - gi-gdkpixbuf < 0 # via haskell-gi - - gi-pango < 0 # via haskell-gi - github < 0 # via http-client-0.6.1 - github - groom From d3dfe76b9f5c85187b346d319e67b6fb5746e2f4 Mon Sep 17 00:00:00 2001 From: Jonas Date: Wed, 12 Feb 2020 22:48:17 +0900 Subject: [PATCH 1201/2682] Re-enable apecs and co. --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a8c021db..06547434 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2430,9 +2430,9 @@ packages: - GPipe < 0 # GHC 8.4 via base-4.11.0.0 "Jonas Carpay @jonascarpay": - - apecs < 0 # Template Haskell changes - - apecs-gloss < 0 # via gloss - - apecs-physics < 0 # via inline-c + - apecs + - apecs-gloss + - apecs-physics "Spencer Janssen @spencerjanssen": - Xauth From 4a0ed07646bcef66dd4cfeabe51bf85baf769b4b Mon Sep 17 00:00:00 2001 From: nilsalex Date: Wed, 12 Feb 2020 11:32:02 +0100 Subject: [PATCH 1202/2682] readd sparse-tensor --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 06547434..180b099f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -27,7 +27,7 @@ packages: - generic-monoid "Tobias Reinhart @TobiReinhart": - - sparse-tensor < 0 # https://github.com/commercialhaskell/stackage/issues/5125 + - sparse-tensor "Stephan Schiffels @stschiff": - sequence-formats From aa8bbb09569473d4cf18d9ccc0a0f64e4e8f25d3 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 12 Feb 2020 17:01:55 -0800 Subject: [PATCH 1203/2682] Try `genvalidity-*` packages again --- build-constraints.yaml | 18 +++++------------- 1 file changed, 5 insertions(+), 13 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 180b099f..5361d9c5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3728,7 +3728,7 @@ packages: - cursor-brick - cursor-fuzzy-time < 0 # via fuzzy-time - cursor-gen - - fuzzy-time < 0 # https://github.com/commercialhaskell/stackage/issues/5154 + - fuzzy-time - genvalidity - genvalidity-aeson - genvalidity-bytestring @@ -3742,20 +3742,20 @@ packages: - genvalidity-hspec-optics - genvalidity-hspec-persistent - genvalidity-mergeful - - genvalidity-mergeless < 0 # via mergeless + - genvalidity-mergeless - genvalidity-path - genvalidity-property - genvalidity-scientific - genvalidity-text - genvalidity-time - - genvalidity-typed-uuid < 0 # via typed-uuid and mergeless + - genvalidity-typed-uuid - genvalidity-unordered-containers - genvalidity-uuid - genvalidity-vector - mergeful - - mergeless < 0 # https://github.com/commercialhaskell/stackage/issues/5157 + - mergeless - pretty-relative-time - - typed-uuid < 0 # https://github.com/commercialhaskell/stackage/issues/5156 + - typed-uuid - validity - validity-aeson - validity-bytestring @@ -5074,7 +5074,6 @@ skipped-tests: # Compilation failures - snappy # https://github.com/bos/snappy/issues/1 - - genvalidity-time # https://github.com/NorfairKing/validity/issues/51 - cron # Could not deduce (SOP.All (SOP.All Arbitrary) xss) arising from a use of ‘SOP.hcpure’ - config-ini # https://github.com/aisamanra/config-ini/issues/22 - polysemy-plugin # https://github.com/commercialhaskell/stackage/issues/4733 @@ -5175,8 +5174,6 @@ skipped-tests: - envelope # https://github.com/commercialhaskell/stackage/issues/4669 - algebraic-graphs # https://github.com/commercialhaskell/stackage/issues/4670 - bugsnag-haskell # https://github.com/commercialhaskell/stackage/issues/4759 - - genvalidity-hspec-cereal # https://github.com/commercialhaskell/stackage/issues/4909 - - genvalidity-hspec-optics # https://github.com/commercialhaskell/stackage/issues/4910 - servant-rawm # https://github.com/commercialhaskell/stackage/issues/5162 # end of skipped-tests @@ -5463,10 +5460,6 @@ expected-test-failures: # https://github.com/commercialhaskell/stackage/issues/5155 - pretty-relative-time - - # https://github.com/commercialhaskell/stackage/issues/5158 - - genvalidity-mergeful - - cursor-gen # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run @@ -5602,7 +5595,6 @@ skipped-benchmarks: - fclabels - foldl - generic-lens - - genvalidity-path - hashable - histogram-fill - hmatrix-morpheus From cf3dbaea82734707130aea63cdb39c8c5a556369 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 12 Feb 2020 17:12:45 -0800 Subject: [PATCH 1204/2682] Also test again `pretty-relative-time` --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5361d9c5..262ae87a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5457,9 +5457,6 @@ expected-test-failures: # Test-runner expects a cabal-style 'dist-newstyle' directory - hjsmin - - # https://github.com/commercialhaskell/stackage/issues/5155 - - pretty-relative-time # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From ea7d81e009f5ad1a4903ac5d8894defd8e33d563 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 12 Feb 2020 18:08:22 -0800 Subject: [PATCH 1205/2682] Don't be too eager --- build-constraints.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 262ae87a..f6ace0ac 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5457,6 +5457,10 @@ expected-test-failures: # Test-runner expects a cabal-style 'dist-newstyle' directory - hjsmin + + # https://github.com/commercialhaskell/stackage/issues/5158 + - genvalidity-mergeful + - cursor-gen # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run @@ -5476,6 +5480,7 @@ expected-benchmark-failures: - raaz # https://github.com/commercialhaskell/stackage/issues/4766 - thyme - xmlgen # https://github.com/skogsbaer/xmlgen/issues/6 + - genvalidity-mergeless # https://github.com/commercialhaskell/stackage/issues/5157 # end of expected-benchmark-failures From 9f671da7329e1fbf631b710cb098da4d017fb73c Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 12 Feb 2020 18:57:33 -0800 Subject: [PATCH 1206/2682] More packages not yet fixed (#5156) --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f6ace0ac..8ed38f05 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3748,14 +3748,14 @@ packages: - genvalidity-scientific - genvalidity-text - genvalidity-time - - genvalidity-typed-uuid + - genvalidity-typed-uuid < 0 # via typed-uuid - genvalidity-unordered-containers - genvalidity-uuid - genvalidity-vector - mergeful - mergeless - pretty-relative-time - - typed-uuid + - typed-uuid < 0 # https://github.com/commercialhaskell/stackage/issues/5156 - validity - validity-aeson - validity-bytestring From c73c4b9a4350e6c40558d46c1407e41272319155 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 12 Feb 2020 19:02:55 -0800 Subject: [PATCH 1207/2682] Now build should proceed --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8ed38f05..9f0377e7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5459,8 +5459,9 @@ expected-test-failures: - hjsmin # https://github.com/commercialhaskell/stackage/issues/5158 - - genvalidity-mergeful - cursor-gen + - genvalidity-mergeful + - genvalidity-mergeless # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 3ba4f77c7aa28ae652114ed1c848af5fd53fac7e Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 13 Feb 2020 07:07:43 -0800 Subject: [PATCH 1208/2682] Enable more `genvalidity-*` packages --- build-constraints.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9f0377e7..c6489c4a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3726,7 +3726,7 @@ packages: "Tom Sydney Kerckhove @NorfairKing": - cursor - cursor-brick - - cursor-fuzzy-time < 0 # via fuzzy-time + - cursor-fuzzy-time - cursor-gen - fuzzy-time - genvalidity @@ -3748,14 +3748,14 @@ packages: - genvalidity-scientific - genvalidity-text - genvalidity-time - - genvalidity-typed-uuid < 0 # via typed-uuid + - genvalidity-typed-uuid - genvalidity-unordered-containers - genvalidity-uuid - genvalidity-vector - mergeful - mergeless - pretty-relative-time - - typed-uuid < 0 # https://github.com/commercialhaskell/stackage/issues/5156 + - typed-uuid - validity - validity-aeson - validity-bytestring @@ -5481,7 +5481,6 @@ expected-benchmark-failures: - raaz # https://github.com/commercialhaskell/stackage/issues/4766 - thyme - xmlgen # https://github.com/skogsbaer/xmlgen/issues/6 - - genvalidity-mergeless # https://github.com/commercialhaskell/stackage/issues/5157 # end of expected-benchmark-failures From eabaa5d7dd999ae5bc02b51d7d08afbfffcf19f5 Mon Sep 17 00:00:00 2001 From: David Johnson Date: Wed, 12 Feb 2020 20:53:04 -0500 Subject: [PATCH 1209/2682] Update miso --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c6489c4a..0c4cca1d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -536,7 +536,7 @@ packages: - mbug < 0 # via http-client-0.6.1 "David Johnson @dmjio": - - miso < 0 # via servant + - miso - envy - s3-signer < 0 # via http-types # - google-translate # servant 0.12 From 9546d2c0b5dfebf9a7f8cb135b9aeb94d5409577 Mon Sep 17 00:00:00 2001 From: Naoto Shimazaki Date: Thu, 13 Feb 2020 11:00:36 +0900 Subject: [PATCH 1210/2682] add thread-supervisor, remove cisco-spark-api --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0c4cca1d..34163934 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3652,8 +3652,8 @@ packages: "Naoto Shimazaki @nshimaza": - thread-hierarchy + - thread-supervisor - bitset-word8 - - cisco-spark-api - webex-teams-api - webex-teams-conduit - webex-teams-pipes From 344f03e1e3df140b6a50941d0cb1f3c8323c26a6 Mon Sep 17 00:00:00 2001 From: Pranay Sashank Date: Tue, 11 Feb 2020 15:32:11 +0530 Subject: [PATCH 1211/2682] Add fusion-plugin. --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 34163934..40d4aebb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -510,6 +510,9 @@ packages: - unicode-transforms - xls + "Pranay Sashank @pranaysashank": + - fusion-plugin + "Aleksey Uimanov @s9gf4ult": # - postgresql-query # haskell-src-exts via derive - hreader From 798df5fffe7308c68255eb9b930907731c177cf8 Mon Sep 17 00:00:00 2001 From: Brandon Hamilton Date: Thu, 13 Feb 2020 14:23:03 +0200 Subject: [PATCH 1212/2682] Re-enable network-simple and dependent packages --- build-constraints.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 40d4aebb..d8482240 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -165,7 +165,7 @@ packages: "Matthew Ahrens @mpahrens": - forkable-monad - - butter < 0 # via network-simple + - butter < 0 # MonadFail "Iris Ward @AdituV": - typenums @@ -1554,13 +1554,13 @@ packages: - di-monad - exinst < 0 # compilation failure - flay < 0 - - network-simple < 0 # via network-bsd - - network-simple-tls < 0 # via network-simple + - network-simple + - network-simple-tls - pipes-aeson - pipes-attoparsec - pipes-binary - - pipes-network < 0 # via network-simple - - pipes-network-tls < 0 # via network-simple-tls + - pipes-network + - pipes-network-tls - safe-money - vector-bytes-instances - xmlbf-xeno < 0 # via xmlbf @@ -1605,8 +1605,8 @@ packages: - bitcoin-tx < 0 # via hexstring - bitcoin-types < 0 # via base58string & hexstring - hexstring - - network-attoparsec < 0 # via network-simple - - network-anonymous-i2p < 0 # via network-simple + - network-attoparsec < 0 # MonadFail + - network-anonymous-i2p < 0 # via network-attoparsec - network-anonymous-tor < 0 # build failure w/ socks 0.6, see https://github.com/solatis/haskell-network-anonymous-tor/issues/14 "Timothy Jones @zmthy": From 9c9b381d2a2d813d7960fad2d9d34dadb1c9f043 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 13 Feb 2020 07:12:05 -0800 Subject: [PATCH 1213/2682] `cursor-fuzzy-time` still fails (#5171) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d8482240..d5ee9da9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3729,7 +3729,7 @@ packages: "Tom Sydney Kerckhove @NorfairKing": - cursor - cursor-brick - - cursor-fuzzy-time + - cursor-fuzzy-time < 0 # https://github.com/commercialhaskell/stackage/issues/5171 - cursor-gen - fuzzy-time - genvalidity From 77790c7bcb21fd8875871245df5c5c39a55ec0c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20L=C3=BCtke-Stetzkamp?= Date: Thu, 13 Feb 2020 13:34:41 +0100 Subject: [PATCH 1214/2682] Add more `gi-*` packages to be maintained by @garetxe as agreed. See haskell-gi/haskell-gi#273 --- build-constraints.yaml | 7 ++++++- debian-bootstrap.sh | 3 +++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d5ee9da9..51fb1e2e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3035,18 +3035,23 @@ packages: - haskell-gi-base - gi-atk - gi-cairo + - gi-dbusmenu + - gi-dbusmenugtk3 - gi-gdk < 4 - gi-gdkpixbuf + - gi-gdkx11 < 4 - gi-gio - gi-glib - gi-gobject + - gi-graphene - gi-gtk < 4 - - gi-gtk-hs < 0 # via base-compat-0.11.0 + - gi-gtk-hs - gi-gtksource < 0 # via gi-gdk-4.0.1 & gi-gtk-4.0.1 - gi-javascriptcore < 0 # via haskell-gi - gi-pango - gi-vte < 0 # via gi-gdk-4.0.1 & gi-gtk-4.0.1 # - gi-webkit2 # https://github.com/fpco/stackage/issues/3415 + - gi-xlib "Brandon Simmons @jberryman": - directory-tree diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index f487b160..cb9556f3 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -52,6 +52,8 @@ apt-get install -y \ libclang-3.9-dev \ libcurl4-openssl-dev \ libcwiid-dev \ + libdbusmenu-glib-dev \ + libdbusmenu-gtk3-dev \ libdevil-dev \ libedit-dev \ libedit2 \ @@ -66,6 +68,7 @@ apt-get install -y \ libglu1-mesa-dev \ libgmp3-dev \ libgnutls28-dev \ + libgraphene-1.0-dev \ libgsasl7-dev \ libgsl-dev \ libgtk-3-dev \ From 6d09854ff73308686df367c79ef334961157378f Mon Sep 17 00:00:00 2001 From: Csongor Kiss Date: Thu, 13 Feb 2020 18:34:44 +0000 Subject: [PATCH 1215/2682] Add generic-optics and generic-lens-core --- build-constraints.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 51fb1e2e..9a70988d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3703,7 +3703,9 @@ packages: - milena < 0 "Csongor Kiss @kcsongor": - - generic-lens < 2.0.0.0 # https://github.com/commercialhaskell/stackage/issues/5161 + - generic-lens + - generic-optics + - generic-lens-core "Bogdan Neterebskii @ozzzzz": - cast From d6b16c49a941394e0cfa8f3e576af8967b16a80a Mon Sep 17 00:00:00 2001 From: Jeff Happily Date: Fri, 14 Feb 2020 11:29:11 +0800 Subject: [PATCH 1216/2682] Migrate dockerfiles from stack --- automated/dockerfiles/README.md | 36 +++++ automated/dockerfiles/build.sh | 170 +++++++++++++++++++++ automated/dockerfiles/lts-10.0/Dockerfile | 67 ++++++++ automated/dockerfiles/lts-10.1/Dockerfile | 3 + automated/dockerfiles/lts-10.5/Dockerfile | 3 + automated/dockerfiles/lts-11.0/Dockerfile | 67 ++++++++ automated/dockerfiles/lts-11.22/Dockerfile | 3 + automated/dockerfiles/lts-11.6/Dockerfile | 3 + automated/dockerfiles/lts-12.0/Dockerfile | 69 +++++++++ automated/dockerfiles/lts-12.13/Dockerfile | 3 + automated/dockerfiles/lts-12.15/Dockerfile | 14 ++ automated/dockerfiles/lts-12.21/Dockerfile | 3 + automated/dockerfiles/lts-12.26/Dockerfile | 89 +++++++++++ automated/dockerfiles/lts-13.0/Dockerfile | 69 +++++++++ automated/dockerfiles/lts-13.12/Dockerfile | 93 +++++++++++ automated/dockerfiles/lts-13.20/Dockerfile | 93 +++++++++++ automated/dockerfiles/lts-13.25/Dockerfile | 3 + automated/dockerfiles/lts-13.27/Dockerfile | 9 ++ automated/dockerfiles/lts-13.3/Dockerfile | 10 ++ automated/dockerfiles/lts-14.0/Dockerfile | 89 +++++++++++ automated/dockerfiles/lts-9.0/Dockerfile | 55 +++++++ automated/dockerfiles/lts-9.20/Dockerfile | 3 + automated/dockerfiles/lts-9.21/Dockerfile | 3 + 23 files changed, 957 insertions(+) create mode 100644 automated/dockerfiles/README.md create mode 100755 automated/dockerfiles/build.sh create mode 100644 automated/dockerfiles/lts-10.0/Dockerfile create mode 100644 automated/dockerfiles/lts-10.1/Dockerfile create mode 100644 automated/dockerfiles/lts-10.5/Dockerfile create mode 100644 automated/dockerfiles/lts-11.0/Dockerfile create mode 100644 automated/dockerfiles/lts-11.22/Dockerfile create mode 100644 automated/dockerfiles/lts-11.6/Dockerfile create mode 100644 automated/dockerfiles/lts-12.0/Dockerfile create mode 100644 automated/dockerfiles/lts-12.13/Dockerfile create mode 100644 automated/dockerfiles/lts-12.15/Dockerfile create mode 100644 automated/dockerfiles/lts-12.21/Dockerfile create mode 100644 automated/dockerfiles/lts-12.26/Dockerfile create mode 100644 automated/dockerfiles/lts-13.0/Dockerfile create mode 100644 automated/dockerfiles/lts-13.12/Dockerfile create mode 100644 automated/dockerfiles/lts-13.20/Dockerfile create mode 100644 automated/dockerfiles/lts-13.25/Dockerfile create mode 100644 automated/dockerfiles/lts-13.27/Dockerfile create mode 100644 automated/dockerfiles/lts-13.3/Dockerfile create mode 100644 automated/dockerfiles/lts-14.0/Dockerfile create mode 100644 automated/dockerfiles/lts-9.0/Dockerfile create mode 100644 automated/dockerfiles/lts-9.20/Dockerfile create mode 100644 automated/dockerfiles/lts-9.21/Dockerfile diff --git a/automated/dockerfiles/README.md b/automated/dockerfiles/README.md new file mode 100644 index 00000000..9fb1ec3d --- /dev/null +++ b/automated/dockerfiles/README.md @@ -0,0 +1,36 @@ +dockerfiles/stack-build +======================= + +Build [fpco/stack-build](https://hub.docker.com/r/fpco/stack-build/) Docker +images. This script and its Dockerfiles are used for building images for LTS >= +8.0. + +Usage +----- + + ./build.sh [--push] [--dry-run] [--small] lts-X.Y|lts-X|lts]" + +Options +------- + +`--help`: show this help + +`--push`: push the image after building/tagging it + +`--dry-run`: print the important commands that will be run, but don't actually + run them + +`--small`: build the small variant of the image + +Argument +--------- + +If you specify and exact LTS version, that image will be built. If you only +specify the major version, then an image for the latest minor version for that +major version will be built. If you specify 'lts', an image for the latest LTS +snapshot is built. + +This searches for a Dockerfile for the selected snapshot in +`lts-X.Y/Dockerfile`, and if one isn't found reuses the same image as built the +most recent `lts-X.Y/Dockerfile` found for earlier minor versions of the same +major version. diff --git a/automated/dockerfiles/build.sh b/automated/dockerfiles/build.sh new file mode 100755 index 00000000..7c337949 --- /dev/null +++ b/automated/dockerfiles/build.sh @@ -0,0 +1,170 @@ +#!/usr/bin/env bash + +set -eu +cd "$(dirname "$0")" + +# +# Constants and defaults +# + +DOCKER_REPO=fpco/stack-build +PUSH=false +DRY=false +VARIANT=build + +# +# Functions +# + +# Print usage information and exit with failure status. First argument is an +# error message. +usage() { + echo "$0: $1" >&2 + echo + echo "Usage: $0 [--push] [--dry-run] [--small] lts-X.Y|lts-X|lts]" + echo "See README.md for more information." + echo + exit 1 +} + +# Print a command, and if --dry-run disabled also run it +dry() { + echo ">>> $*" + [[ $DRY = true ]] || "$@" +} + +# Push an image if --push is enabled (otherwise do nothing) +push() { + [[ $PUSH = false ]] || dry docker push "$1" +} + +# Tag an image, and then push it if --push is enabled +tagpush() { + dry docker tag "$1" "$2" + push "$2" +} + +# +# Parse command-line +# + +LTS_SLUG_ARG= +while [[ $# -gt 0 ]]; do + case "$1" in + --push) + PUSH=true + shift + ;; + --dry-run) + DRY=true + shift + ;; + --small) + VARIANT=small + DOCKER_REPO=fpco/stack-build-small + shift + ;; + -*) + usage "Unknown option: $1" + ;; + *) + if [[ -n "$LTS_SLUG_ARG" ]]; then + usage "Cannot specify multiple snaphots: $1" + fi + LTS_SLUG_ARG="$1" + shift + ;; + esac +done + +# +# Determine actual snapshot version from aliases +# + +SNAPSHOTS="$(mktemp "lts-snapshots.json.XXXXXX")" +trap "rm -f \"$SNAPSHOTS\"" EXIT +wget -qO- https://www.stackage.org/download/lts-snapshots.json >"$SNAPSHOTS" + +case "$LTS_SLUG_ARG" in + "") + usage "Missing argument: snapshot or alias" + ;; + lts-*.*) + LTS_SLUG="$LTS_SLUG_ARG" + ;; + *) + LTS_SLUG=$(jq -r ".[\"$LTS_SLUG_ARG\"]" "$SNAPSHOTS") + if [[ -z "$LTS_SLUG" || "$LTS_SLUG" = "null" ]]; then + echo "$0: Cannot find LTS version for slug: $LTS_SLUG_ARG" >&2 + exit 1 + fi + ;; +esac + +LTS_VERSION="${LTS_SLUG#lts-}" +LTS_MAJOR="${LTS_VERSION%.*}" +LTS_MINOR="${LTS_VERSION#*.}" + +# +# Determine latest LTS version +# + +LATEST_LTS_SLUG=$(jq -r ".[\"lts\"]" $SNAPSHOTS) +LATEST_LTS_VERSION="${LATEST_LTS_SLUG#lts-}" +LATEST_LTS_MAJOR="${LATEST_LTS_VERSION%.*}" +LATEST_LTS_MINOR="${LATEST_LTS_VERSION#*.}" + +# +# Determine latest minor version of the selected major version +# + +MAJOR_LATEST_LTS_SLUG=$(jq -r ".[\"lts-$LTS_MAJOR\"]" $SNAPSHOTS) +MAJOR_LATEST_LTS_VERSION="${MAJOR_LATEST_LTS_SLUG#lts-}" +MAJOR_LATEST_LTS_MAJOR="${MAJOR_LATEST_LTS_VERSION%.*}" +MAJOR_LATEST_LTS_MINOR="${MAJOR_LATEST_LTS_VERSION#*.}" + +# +# Find the Dockerfile for the selected snapshot +# + +if [[ -s "$LTS_SLUG/Dockerfile" ]]; then + + # If there is an exact match, build and push that image + + sed "s/\\\$DOCKER_REPO/$(echo $DOCKER_REPO|sed 's/\//\\\//')/g" "$LTS_SLUG/Dockerfile" >"$LTS_SLUG/Dockerfile.sub" + dry docker build -t "$DOCKER_REPO:$LTS_SLUG" --build-arg "DOCKER_REPO=$DOCKER_REPO" --build-arg "LTS_SLUG=$LTS_SLUG" --build-arg "VARIANT=$VARIANT" -f "$LTS_SLUG/Dockerfile.sub" "$LTS_SLUG" + rm -f "$LTS_SLUG/Dockerfile.sub" + push "$DOCKER_REPO:$LTS_SLUG" +else + + # If no exact match, find a dockerfile for any earlier minor version of the + # selected major version, and just create a new tag from version's image with the selected + # minor version (assuming that nothing needs to change), and push it. + + minor=$(( LTS_MINOR - 1 )) + while [[ ! -s "lts-$LTS_MAJOR.$minor/Dockerfile" && $minor -ge 0 ]]; do + minor=$(( minor - 1 )) + done + if [[ $minor -lt 0 ]]; then + echo "$0: Cannot find any Dockerfile for LTS major version" >&2 + exit 1 + fi + dry docker pull "$DOCKER_REPO:lts-$LTS_MAJOR.$minor" || true + tagpush "$DOCKER_REPO:lts-$LTS_MAJOR.$minor" "$DOCKER_REPO:$LTS_SLUG" +fi + +# +# Create and push additional tags +# + +# If we select the latest minor version for the selected major version, then +# also create and push an 'lts-X' tag. +if [[ "$MAJOR_LATEST_LTS_VERSION" = "$LTS_VERSION" ]]; then + tagpush "$DOCKER_REPO:$LTS_SLUG" "$DOCKER_REPO:lts-$LTS_MAJOR" +fi + +# If we selected the latest LTS snapshot, also create and push the 'lts' and 'latest' tags. +if [[ "$LATEST_LTS_VERSION" = "$LTS_VERSION" ]]; then + tagpush "$DOCKER_REPO:$LTS_SLUG" "$DOCKER_REPO:lts" + tagpush "$DOCKER_REPO:$LTS_SLUG" "$DOCKER_REPO:latest" +fi diff --git a/automated/dockerfiles/lts-10.0/Dockerfile b/automated/dockerfiles/lts-10.0/Dockerfile new file mode 100644 index 00000000..7a0b4172 --- /dev/null +++ b/automated/dockerfiles/lts-10.0/Dockerfile @@ -0,0 +1,67 @@ +FROM ubuntu:16.04 + +MAINTAINER Emanuel Borsboom + +ARG GHC_VERSION=8.2.2 +ARG LTS_SLUG=lts-10.0 +ARG PID1_VERSION=0.1.0.1 +ARG STACK_VERSION=1.6.3 +ARG BOOTSTRAP_COMMIT=a8234cb586c3022099a3b0155275ed067df00f72 +ARG DEBIAN_FRONTEND=noninteractive + +# +# Set encoding to UTF-8 and PATH to find GHC and cabal/stack-installed binaries. +# + +ENV LANG=C.UTF-8 \ + LC_ALL=C.UTF-8 \ + PATH=/root/.cabal/bin:/root/.local/bin:/opt/ghc/$GHC_VERSION/bin:$PATH + +# +# Use Stackage's debian-bootstrap.sh script to install system libraries and +# tools required to build any Stackage package. +# + +RUN apt-get update && \ + apt-get install -y wget && \ + wget -qO- https://raw.githubusercontent.com/fpco/stackage/$BOOTSTRAP_COMMIT/debian-bootstrap.sh | bash && \ + rm -rf /var/lib/apt/lists/* + +# +# Create symlink to help tools find GHC documentation +# + +RUN ln -s ghc /opt/ghc/$GHC_VERSION/share/doc/ghc-$GHC_VERSION + +# +# Use 'stack' to install basic Haskell tools like alex, happy, and cpphs. We +# remove most of the STACK_ROOT afterward to save space, but keep the 'share' +# files that some of these tools require. +# + +RUN stack --system-ghc --resolver=$LTS_SLUG --local-bin-path=/usr/local/bin install \ + cabal-install happy alex cpphs gtk2hs-buildtools hscolour && \ + cd $HOME/.stack && \ + find . -type f -not -path './snapshots/*/share/*' -exec rm '{}' \; && \ + find . -type d -print0 |sort -rz |xargs -0 rmdir 2>/dev/null || true + +# +# Install 'pid1' init daemon +# + +RUN wget -O- "https://github.com/fpco/pid1/releases/download/pid1%2F$PID1_VERSION/pid1-$PID1_VERSION-linux-x86_64.tar.gz" | tar xzf - -C /usr/local && \ + chown root:root /usr/local/sbin && \ + chown root:root /usr/local/sbin/pid1 + +# +# Install Stack +# + +RUN wget -qO- https://github.com/commercialhaskell/stack/releases/download/v$STACK_VERSION/stack-$STACK_VERSION-linux-x86_64.tar.gz | tar xz --wildcards --strip-components=1 -C /usr/local/bin '*/stack' + +# +# Set up pid1 entrypoint and default command +# + +ENTRYPOINT ["/usr/local/sbin/pid1"] +CMD ["bash"] diff --git a/automated/dockerfiles/lts-10.1/Dockerfile b/automated/dockerfiles/lts-10.1/Dockerfile new file mode 100644 index 00000000..3ffce11c --- /dev/null +++ b/automated/dockerfiles/lts-10.1/Dockerfile @@ -0,0 +1,3 @@ +FROM fpco/stack-build:lts-10.0 +ARG STACK_VERSION=1.6.3 +RUN wget -qO- https://github.com/commercialhaskell/stack/releases/download/v$STACK_VERSION/stack-$STACK_VERSION-linux-x86_64.tar.gz | tar xz --wildcards --strip-components=1 -C /usr/local/bin '*/stack' diff --git a/automated/dockerfiles/lts-10.5/Dockerfile b/automated/dockerfiles/lts-10.5/Dockerfile new file mode 100644 index 00000000..d2e8ba14 --- /dev/null +++ b/automated/dockerfiles/lts-10.5/Dockerfile @@ -0,0 +1,3 @@ +FROM fpco/stack-build:lts-10.0 +ARG STACK_VERSION=1.6.5 +RUN wget -qO- https://github.com/commercialhaskell/stack/releases/download/v$STACK_VERSION/stack-$STACK_VERSION-linux-x86_64.tar.gz | tar xz --wildcards --strip-components=1 -C /usr/local/bin '*/stack' diff --git a/automated/dockerfiles/lts-11.0/Dockerfile b/automated/dockerfiles/lts-11.0/Dockerfile new file mode 100644 index 00000000..093286da --- /dev/null +++ b/automated/dockerfiles/lts-11.0/Dockerfile @@ -0,0 +1,67 @@ +FROM ubuntu:16.04 + +MAINTAINER Emanuel Borsboom + +ARG GHC_VERSION=8.2.2 +ARG LTS_SLUG=lts-11.0 +ARG PID1_VERSION=0.1.0.1 +ARG STACK_VERSION=1.6.5 +ARG BOOTSTRAP_COMMIT=13ab2b86779c98598e96af7f4c4b9653ba280be5 +ARG DEBIAN_FRONTEND=noninteractive + +# +# Set encoding to UTF-8 and PATH to find GHC and cabal/stack-installed binaries. +# + +ENV LANG=C.UTF-8 \ + LC_ALL=C.UTF-8 \ + PATH=/root/.cabal/bin:/root/.local/bin:/opt/ghc/$GHC_VERSION/bin:$PATH + +# +# Use Stackage's debian-bootstrap.sh script to install system libraries and +# tools required to build any Stackage package. +# + +RUN apt-get update && \ + apt-get install -y wget && \ + wget -qO- https://raw.githubusercontent.com/fpco/stackage/$BOOTSTRAP_COMMIT/debian-bootstrap.sh | bash && \ + rm -rf /var/lib/apt/lists/* + +# +# Create symlink to help tools find GHC documentation +# + +RUN ln -s ghc /opt/ghc/$GHC_VERSION/share/doc/ghc-$GHC_VERSION + +# +# Use 'stack' to install basic Haskell tools like alex, happy, and cpphs. We +# remove most of the STACK_ROOT afterward to save space, but keep the 'share' +# files that some of these tools require. +# + +RUN stack --system-ghc --resolver=$LTS_SLUG --local-bin-path=/usr/local/bin install \ + cabal-install happy alex cpphs gtk2hs-buildtools hscolour && \ + cd $HOME/.stack && \ + find . -type f -not -path './snapshots/*/share/*' -exec rm '{}' \; && \ + find . -type d -print0 |sort -rz |xargs -0 rmdir 2>/dev/null || true + +# +# Install 'pid1' init daemon +# + +RUN wget -O- "https://github.com/fpco/pid1/releases/download/pid1%2F$PID1_VERSION/pid1-$PID1_VERSION-linux-x86_64.tar.gz" | tar xzf - -C /usr/local && \ + chown root:root /usr/local/sbin && \ + chown root:root /usr/local/sbin/pid1 + +# +# Install Stack +# + +RUN wget -qO- https://github.com/commercialhaskell/stack/releases/download/v$STACK_VERSION/stack-$STACK_VERSION-linux-x86_64.tar.gz | tar xz --wildcards --strip-components=1 -C /usr/local/bin '*/stack' + +# +# Set up pid1 entrypoint and default command +# + +ENTRYPOINT ["/usr/local/sbin/pid1"] +CMD ["bash"] diff --git a/automated/dockerfiles/lts-11.22/Dockerfile b/automated/dockerfiles/lts-11.22/Dockerfile new file mode 100644 index 00000000..b2065306 --- /dev/null +++ b/automated/dockerfiles/lts-11.22/Dockerfile @@ -0,0 +1,3 @@ +FROM fpco/stack-build:lts-11.6 +ARG STACK_VERSION=1.9.3 +RUN wget -qO- https://github.com/commercialhaskell/stack/releases/download/v$STACK_VERSION/stack-$STACK_VERSION-linux-x86_64.tar.gz | tar xz --wildcards --strip-components=1 -C /usr/local/bin '*/stack' diff --git a/automated/dockerfiles/lts-11.6/Dockerfile b/automated/dockerfiles/lts-11.6/Dockerfile new file mode 100644 index 00000000..83c5d691 --- /dev/null +++ b/automated/dockerfiles/lts-11.6/Dockerfile @@ -0,0 +1,3 @@ +FROM fpco/stack-build:lts-11.5 +ARG STACK_VERSION=1.7.1 +RUN wget -qO- https://github.com/commercialhaskell/stack/releases/download/v$STACK_VERSION/stack-$STACK_VERSION-linux-x86_64.tar.gz | tar xz --wildcards --strip-components=1 -C /usr/local/bin '*/stack' diff --git a/automated/dockerfiles/lts-12.0/Dockerfile b/automated/dockerfiles/lts-12.0/Dockerfile new file mode 100644 index 00000000..827941ee --- /dev/null +++ b/automated/dockerfiles/lts-12.0/Dockerfile @@ -0,0 +1,69 @@ +FROM ubuntu:16.04 + +MAINTAINER Emanuel Borsboom + +ARG GHC_VERSION=8.4.3 +ARG LTS_SLUG=lts-12.0 +ARG PID1_VERSION=0.1.2.0 +ARG STACK_VERSION=1.7.1 +ARG CUDA_VERSION=8.0 +ARG BOOTSTRAP_COMMIT=56c62ccbf31229ee2b09d3a0b4cd2ad94e7406a8 +ARG DEBIAN_FRONTEND=noninteractive + +# +# Set encoding to UTF-8 and PATH to find GHC and cabal/stack-installed binaries. +# + +ENV LANG=C.UTF-8 \ + LC_ALL=C.UTF-8 \ + PATH=/root/.cabal/bin:/root/.local/bin:/usr/local/cuda-$CUDA_VERSION/bin:/opt/ghc/$GHC_VERSION/bin:$PATH \ + CUDA_PATH=/usr/local/cuda-$CUDA_VERSION \ + LD_LIBRARY_PATH=/usr/local/cuda-$CUDA_VERSION/lib64:/usr/local/cuda-$CUDA_VERSION/nvvm/lib64 +# +# Use Stackage's debian-bootstrap.sh script to install system libraries and +# tools required to build any Stackage package. +# + +RUN apt-get update && \ + apt-get install -y wget && \ + wget -qO- https://raw.githubusercontent.com/fpco/stackage/$BOOTSTRAP_COMMIT/debian-bootstrap.sh | bash && \ + rm -rf /var/lib/apt/lists/* + +# +# Create symlink to help tools find GHC documentation +# + +RUN ln -s ghc /opt/ghc/$GHC_VERSION/share/doc/ghc-$GHC_VERSION + +# +# Use 'stack' to install basic Haskell tools like alex, happy, and cpphs. We +# remove most of the STACK_ROOT afterward to save space, but keep the 'share' +# files that some of these tools require. +# + +RUN stack --system-ghc --resolver=$LTS_SLUG --local-bin-path=/usr/local/bin install \ + cabal-install happy alex cpphs gtk2hs-buildtools hscolour && \ + cd $HOME/.stack && \ + find . -type f -not -path './snapshots/*/share/*' -exec rm '{}' \; && \ + find . -type d -print0 |sort -rz |xargs -0 rmdir 2>/dev/null || true + +# +# Install 'pid1' init daemon +# + +RUN wget -O- "https://github.com/fpco/pid1/releases/download/v$PID1_VERSION/pid1-$PID1_VERSION-linux-x86_64.tar.gz" | tar xzf - -C /usr/local && \ + chown root:root /usr/local/sbin && \ + chown root:root /usr/local/sbin/pid1 + +# +# Install Stack +# + +RUN wget -qO- https://github.com/commercialhaskell/stack/releases/download/v$STACK_VERSION/stack-$STACK_VERSION-linux-x86_64.tar.gz | tar xz --wildcards --strip-components=1 -C /usr/local/bin '*/stack' + +# +# Set up pid1 entrypoint and default command +# + +ENTRYPOINT ["/usr/local/sbin/pid1"] +CMD ["bash"] diff --git a/automated/dockerfiles/lts-12.13/Dockerfile b/automated/dockerfiles/lts-12.13/Dockerfile new file mode 100644 index 00000000..23617aa9 --- /dev/null +++ b/automated/dockerfiles/lts-12.13/Dockerfile @@ -0,0 +1,3 @@ +FROM fpco/stack-build:lts-12.0 +ARG STACK_VERSION=1.9.1 +RUN wget -qO- https://github.com/commercialhaskell/stack/releases/download/v$STACK_VERSION/stack-$STACK_VERSION-linux-x86_64.tar.gz | tar xz --wildcards --strip-components=1 -C /usr/local/bin '*/stack' diff --git a/automated/dockerfiles/lts-12.15/Dockerfile b/automated/dockerfiles/lts-12.15/Dockerfile new file mode 100644 index 00000000..7d309271 --- /dev/null +++ b/automated/dockerfiles/lts-12.15/Dockerfile @@ -0,0 +1,14 @@ +FROM fpco/stack-build:lts-12.0 +ARG STACK_VERSION=1.9.1 +ARG GHC_VERSION=8.4.4 +RUN apt-get update && \ + apt-get install -y \ + ghc-$GHC_VERSION \ + ghc-$GHC_VERSION-dyn \ + ghc-$GHC_VERSION-htmldocs \ + ghc-$GHC_VERSION-prof && \ + rm -rf /var/lib/apt/lists/* +RUN wget -qO- https://github.com/commercialhaskell/stack/releases/download/v$STACK_VERSION/stack-$STACK_VERSION-linux-x86_64.tar.gz | tar xz --wildcards --strip-components=1 -C /usr/local/bin '*/stack' +RUN ln -s ghc-$GHC_VERSION /opt/ghc/$GHC_VERSION/share/doc/ghc +ARG CUDA_VERSION=8.0 +ENV PATH=/root/.cabal/bin:/root/.local/bin:/usr/local/cuda-$CUDA_VERSION/bin:/opt/ghc/$GHC_VERSION/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin diff --git a/automated/dockerfiles/lts-12.21/Dockerfile b/automated/dockerfiles/lts-12.21/Dockerfile new file mode 100644 index 00000000..b8f3e821 --- /dev/null +++ b/automated/dockerfiles/lts-12.21/Dockerfile @@ -0,0 +1,3 @@ +FROM fpco/stack-build:lts-12.15 +ARG STACK_VERSION=1.9.3 +RUN wget -qO- https://github.com/commercialhaskell/stack/releases/download/v$STACK_VERSION/stack-$STACK_VERSION-linux-x86_64.tar.gz | tar xz --wildcards --strip-components=1 -C /usr/local/bin '*/stack' diff --git a/automated/dockerfiles/lts-12.26/Dockerfile b/automated/dockerfiles/lts-12.26/Dockerfile new file mode 100644 index 00000000..edaab49b --- /dev/null +++ b/automated/dockerfiles/lts-12.26/Dockerfile @@ -0,0 +1,89 @@ +FROM ubuntu:16.04 + +MAINTAINER Emanuel Borsboom + +ARG GHC_VERSION=8.4.4 +ARG LTS_SLUG=lts-12.0 +ARG PID1_VERSION=0.1.2.0 +ARG STACK_VERSION=1.9.3 +ARG CUDA_VERSION=8.0 +ARG BOOTSTRAP_COMMIT=7f982f63a3734ddb2a7cbbc52b8cec983c496efa +ARG DEBIAN_FRONTEND=noninteractive +ARG VARIANT=build + +# +# Set encoding to UTF-8 and PATH to find GHC and cabal/stack-installed binaries. +# + +ENV LANG=C.UTF-8 \ + LC_ALL=C.UTF-8 \ + PATH=/root/.cabal/bin:/root/.local/bin:/usr/local/cuda-$CUDA_VERSION/bin:/opt/ghc/$GHC_VERSION/bin:$PATH \ + CUDA_PATH=/usr/local/cuda-$CUDA_VERSION \ + LD_LIBRARY_PATH=/usr/local/cuda-$CUDA_VERSION/lib64:/usr/local/cuda-$CUDA_VERSION/nvvm/lib64 +# +# Use Stackage's debian-bootstrap.sh script to install system libraries and +# tools required to build any Stackage package. +# + +RUN apt-get update && \ + apt-get install -y --no-install-recommends wget netbase ca-certificates && \ + if [ "$VARIANT" = "small" ]; then \ + echo "deb http://ppa.launchpad.net/hvr/ghc/ubuntu xenial main" >>/etc/apt/sources.list && \ + echo "deb-src http://ppa.launchpad.net/hvr/ghc/ubuntu xenial main" >>/etc/apt/sources.list && \ + apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 063DAB2BDC0B3F9FCEBC378BFF3AEACEF6F88286 && \ + apt-get update && \ + apt-get install -y --no-install-recommends \ + ghc-$GHC_VERSION ghc-$GHC_VERSION-htmldocs \ + g++ gcc libc6-dev libffi-dev libgmp-dev make xz-utils zlib1g-dev git gnupg \ + libtinfo-dev; \ + else \ + wget -qO- https://raw.githubusercontent.com/fpco/stackage/$BOOTSTRAP_COMMIT/debian-bootstrap.sh | bash; \ + fi && \ + rm -rf /var/lib/apt/lists/* + +# +# Create symlink to help tools find GHC documentation +# + +RUN ln -s ghc /opt/ghc/$GHC_VERSION/share/doc/ghc-$GHC_VERSION + +# +# Install Stack +# + +RUN wget -qO- https://github.com/commercialhaskell/stack/releases/download/v$STACK_VERSION/stack-$STACK_VERSION-linux-x86_64.tar.gz | tar xz --wildcards --strip-components=1 -C /usr/local/bin '*/stack' + +# +# Configure Stack to use the GHC installed in the Docker image rather than installing its own +# + +RUN mkdir /etc/stack/ && \ + echo "system-ghc: true" >/etc/stack/config.yaml + +# +# Use 'stack' to install basic Haskell tools like alex, happy, and cpphs. We +# remove most of the STACK_ROOT afterward to save space, but keep the 'share' +# files that some of these tools require. +# + +RUN export STACK_ROOT=/usr/local/lib/stack && \ + stack --resolver=$LTS_SLUG --local-bin-path=/usr/local/bin install \ + cabal-install happy alex cpphs gtk2hs-buildtools hscolour hlint hindent && \ + cd $STACK_ROOT && \ + find . -type f -not -path './snapshots/*/share/*' -exec rm '{}' \; && \ + find . -type d -print0 |sort -rz |xargs -0 rmdir 2>/dev/null || true + +# +# Install 'pid1' init daemon +# + +RUN wget -O- "https://github.com/fpco/pid1/releases/download/v$PID1_VERSION/pid1-$PID1_VERSION-linux-x86_64.tar.gz" | tar xzf - -C /usr/local && \ + chown root:root /usr/local/sbin && \ + chown root:root /usr/local/sbin/pid1 + +# +# Set up pid1 entrypoint and default command +# + +ENTRYPOINT ["/usr/local/sbin/pid1"] +CMD ["bash"] diff --git a/automated/dockerfiles/lts-13.0/Dockerfile b/automated/dockerfiles/lts-13.0/Dockerfile new file mode 100644 index 00000000..3fc6836c --- /dev/null +++ b/automated/dockerfiles/lts-13.0/Dockerfile @@ -0,0 +1,69 @@ +FROM ubuntu:16.04 + +MAINTAINER Emanuel Borsboom + +ARG GHC_VERSION=8.6.3 +ARG LTS_SLUG=lts-13.0 +ARG PID1_VERSION=0.1.2.0 +ARG STACK_VERSION=1.9.3 +ARG CUDA_VERSION=10.0 +ARG BOOTSTRAP_COMMIT=26b29f2862462afd47fb916ed0a2c2a6844ebca9 +ARG DEBIAN_FRONTEND=noninteractive + +# +# Set encoding to UTF-8 and PATH to find GHC and cabal/stack-installed binaries. +# + +ENV LANG=C.UTF-8 \ + LC_ALL=C.UTF-8 \ + PATH=/root/.cabal/bin:/root/.local/bin:/usr/local/cuda-$CUDA_VERSION/bin:/opt/ghc/$GHC_VERSION/bin:$PATH \ + CUDA_PATH=/usr/local/cuda-$CUDA_VERSION \ + LD_LIBRARY_PATH=/usr/local/cuda-$CUDA_VERSION/lib64:/usr/local/cuda-$CUDA_VERSION/nvvm/lib64 +# +# Use Stackage's debian-bootstrap.sh script to install system libraries and +# tools required to build any Stackage package. +# + +RUN apt-get update && \ + apt-get install -y wget && \ + wget -qO- https://raw.githubusercontent.com/fpco/stackage/$BOOTSTRAP_COMMIT/debian-bootstrap.sh | bash && \ + rm -rf /var/lib/apt/lists/* + +# +# Create symlink to help tools find GHC documentation +# + +RUN ln -s ghc /opt/ghc/$GHC_VERSION/share/doc/ghc-$GHC_VERSION + +# +# Use 'stack' to install basic Haskell tools like alex, happy, and cpphs. We +# remove most of the STACK_ROOT afterward to save space, but keep the 'share' +# files that some of these tools require. +# + +RUN stack --system-ghc --resolver=$LTS_SLUG --local-bin-path=/usr/local/bin install \ + cabal-install happy alex cpphs gtk2hs-buildtools hscolour && \ + cd $HOME/.stack && \ + find . -type f -not -path './snapshots/*/share/*' -exec rm '{}' \; && \ + find . -type d -print0 |sort -rz |xargs -0 rmdir 2>/dev/null || true + +# +# Install 'pid1' init daemon +# + +RUN wget -O- "https://github.com/fpco/pid1/releases/download/v$PID1_VERSION/pid1-$PID1_VERSION-linux-x86_64.tar.gz" | tar xzf - -C /usr/local && \ + chown root:root /usr/local/sbin && \ + chown root:root /usr/local/sbin/pid1 + +# +# Install Stack +# + +RUN wget -qO- https://github.com/commercialhaskell/stack/releases/download/v$STACK_VERSION/stack-$STACK_VERSION-linux-x86_64.tar.gz | tar xz --wildcards --strip-components=1 -C /usr/local/bin '*/stack' + +# +# Set up pid1 entrypoint and default command +# + +ENTRYPOINT ["/usr/local/sbin/pid1"] +CMD ["bash"] diff --git a/automated/dockerfiles/lts-13.12/Dockerfile b/automated/dockerfiles/lts-13.12/Dockerfile new file mode 100644 index 00000000..c85a6eba --- /dev/null +++ b/automated/dockerfiles/lts-13.12/Dockerfile @@ -0,0 +1,93 @@ +FROM ubuntu:16.04 + +MAINTAINER Emanuel Borsboom + +ARG GHC_VERSION=8.6.4 +ARG LTS_SLUG=lts-13.11 +ARG PID1_VERSION=0.1.2.0 +ARG STACK_VERSION=1.9.3 +ARG CUDA_VERSION=10.0 +ARG BOOTSTRAP_COMMIT=9f2b7ab95c711794257b059604e80ab9ad3c0c45 +ARG DEBIAN_FRONTEND=noninteractive +ARG VARIANT=build + +# +# Set encoding to UTF-8 and PATH to find GHC and cabal/stack-installed binaries. +# + +ENV LANG=C.UTF-8 \ + LC_ALL=C.UTF-8 \ + PATH=/root/.cabal/bin:/root/.local/bin:/usr/local/cuda-$CUDA_VERSION/bin:/opt/ghc/$GHC_VERSION/bin:$PATH \ + CUDA_PATH=/usr/local/cuda-$CUDA_VERSION \ + LD_LIBRARY_PATH=/usr/local/cuda-$CUDA_VERSION/lib64:/usr/local/cuda-$CUDA_VERSION/nvvm/lib64 + +# +# Use Stackage's debian-bootstrap.sh script to install system libraries and +# tools required to build any Stackage package. +# + +RUN apt-get update && \ + apt-get install -y --no-install-recommends wget netbase ca-certificates && \ + if [ "$VARIANT" = "small" ]; then \ + echo "deb http://ppa.launchpad.net/hvr/ghc/ubuntu xenial main" >>/etc/apt/sources.list && \ + echo "deb-src http://ppa.launchpad.net/hvr/ghc/ubuntu xenial main" >>/etc/apt/sources.list && \ + apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 063DAB2BDC0B3F9FCEBC378BFF3AEACEF6F88286 && \ + apt-get update && \ + apt-get install -y --no-install-recommends \ + ghc-$GHC_VERSION ghc-$GHC_VERSION-htmldocs \ + g++ gcc libc6-dev libffi-dev libgmp-dev make xz-utils zlib1g-dev git gnupg \ + libtinfo-dev; \ + else \ + wget -qO- https://raw.githubusercontent.com/fpco/stackage/$BOOTSTRAP_COMMIT/debian-bootstrap.sh | sed "s/^GHCVER=8.6.3$/GHCVER=$GHC_VERSION/" | bash && \ + # Add g++ version required for building 'double-conversion' \ + # (see https://github.com/commercialhaskell/stack/issues/4470) \ + apt-get install -y g++-7; \ + fi && \ + rm -rf /var/lib/apt/lists/* + +# +# Create symlink to help tools find GHC documentation +# + +RUN ln -s ghc /opt/ghc/$GHC_VERSION/share/doc/ghc-$GHC_VERSION + +# +# Install Stack +# + +RUN wget -qO- https://github.com/commercialhaskell/stack/releases/download/v$STACK_VERSION/stack-$STACK_VERSION-linux-x86_64.tar.gz | tar xz --wildcards --strip-components=1 -C /usr/local/bin '*/stack' + +# +# Configure Stack to use the GHC installed in the Docker image rather than installing its own +# + +RUN mkdir /etc/stack/ && \ + echo "system-ghc: true" >/etc/stack/config.yaml + +# +# Use 'stack' to install basic Haskell tools like alex, happy, and cpphs. We +# remove most of the STACK_ROOT afterward to save space, but keep the 'share' +# files that some of these tools require. +# + +RUN export STACK_ROOT=/usr/local/lib/stack && \ + stack --resolver=$LTS_SLUG --local-bin-path=/usr/local/bin install \ + cabal-install happy alex cpphs gtk2hs-buildtools hscolour hlint hindent && \ + cd $STACK_ROOT && \ + find . -type f -not -path './snapshots/*/share/*' -exec rm '{}' \; && \ + find . -type d -print0 |sort -rz |xargs -0 rmdir 2>/dev/null || true + +# +# Install 'pid1' init daemon +# + +RUN wget -O- "https://github.com/fpco/pid1/releases/download/v$PID1_VERSION/pid1-$PID1_VERSION-linux-x86_64.tar.gz" | tar xzf - -C /usr/local && \ + chown root:root /usr/local/sbin && \ + chown root:root /usr/local/sbin/pid1 + +# +# Set up pid1 entrypoint and default command +# + +ENTRYPOINT ["/usr/local/sbin/pid1"] +CMD ["bash"] diff --git a/automated/dockerfiles/lts-13.20/Dockerfile b/automated/dockerfiles/lts-13.20/Dockerfile new file mode 100644 index 00000000..0ac78fcb --- /dev/null +++ b/automated/dockerfiles/lts-13.20/Dockerfile @@ -0,0 +1,93 @@ +FROM ubuntu:16.04 + +MAINTAINER Emanuel Borsboom + +ARG GHC_VERSION=8.6.5 +ARG LTS_SLUG=lts-13.20 +ARG PID1_VERSION=0.1.2.0 +ARG STACK_VERSION=1.9.3 +ARG CUDA_VERSION=10.0 +ARG BOOTSTRAP_COMMIT=9f2b7ab95c711794257b059604e80ab9ad3c0c45 +ARG DEBIAN_FRONTEND=noninteractive +ARG VARIANT=build + +# +# Set encoding to UTF-8 and PATH to find GHC and cabal/stack-installed binaries. +# + +ENV LANG=C.UTF-8 \ + LC_ALL=C.UTF-8 \ + PATH=/root/.cabal/bin:/root/.local/bin:/usr/local/cuda-$CUDA_VERSION/bin:/opt/ghc/$GHC_VERSION/bin:$PATH \ + CUDA_PATH=/usr/local/cuda-$CUDA_VERSION \ + LD_LIBRARY_PATH=/usr/local/cuda-$CUDA_VERSION/lib64:/usr/local/cuda-$CUDA_VERSION/nvvm/lib64 + +# +# Use Stackage's debian-bootstrap.sh script to install system libraries and +# tools required to build any Stackage package. +# + +RUN apt-get update && \ + apt-get install -y --no-install-recommends wget netbase ca-certificates && \ + if [ "$VARIANT" = "small" ]; then \ + echo "deb http://ppa.launchpad.net/hvr/ghc/ubuntu xenial main" >>/etc/apt/sources.list && \ + echo "deb-src http://ppa.launchpad.net/hvr/ghc/ubuntu xenial main" >>/etc/apt/sources.list && \ + apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 063DAB2BDC0B3F9FCEBC378BFF3AEACEF6F88286 && \ + apt-get update && \ + apt-get install -y --no-install-recommends \ + ghc-$GHC_VERSION ghc-$GHC_VERSION-htmldocs \ + g++ gcc libc6-dev libffi-dev libgmp-dev make xz-utils zlib1g-dev git gnupg \ + libtinfo-dev; \ + else \ + wget -qO- https://raw.githubusercontent.com/fpco/stackage/$BOOTSTRAP_COMMIT/debian-bootstrap.sh | sed "s/^GHCVER=8.6.3$/GHCVER=$GHC_VERSION/" | bash && \ + # Add g++ version required for building 'double-conversion' \ + # (see https://github.com/commercialhaskell/stack/issues/4470) \ + apt-get install -y g++-7; \ + fi && \ + rm -rf /var/lib/apt/lists/* + +# +# Create symlink to help tools find GHC documentation +# + +RUN ln -s ghc /opt/ghc/$GHC_VERSION/share/doc/ghc-$GHC_VERSION + +# +# Install Stack +# + +RUN wget -qO- https://github.com/commercialhaskell/stack/releases/download/v$STACK_VERSION/stack-$STACK_VERSION-linux-x86_64.tar.gz | tar xz --wildcards --strip-components=1 -C /usr/local/bin '*/stack' + +# +# Configure Stack to use the GHC installed in the Docker image rather than installing its own +# + +RUN mkdir /etc/stack/ && \ + echo "system-ghc: true" >/etc/stack/config.yaml + +# +# Use 'stack' to install basic Haskell tools like alex, happy, and cpphs. We +# remove most of the STACK_ROOT afterward to save space, but keep the 'share' +# files that some of these tools require. +# + +RUN export STACK_ROOT=/usr/local/lib/stack && \ + stack --resolver=$LTS_SLUG --local-bin-path=/usr/local/bin install \ + cabal-install happy alex cpphs gtk2hs-buildtools hscolour hlint hindent && \ + cd $STACK_ROOT && \ + find . -type f -not -path './snapshots/*/share/*' -exec rm '{}' \; && \ + find . -type d -print0 |sort -rz |xargs -0 rmdir 2>/dev/null || true + +# +# Install 'pid1' init daemon +# + +RUN wget -O- "https://github.com/fpco/pid1/releases/download/v$PID1_VERSION/pid1-$PID1_VERSION-linux-x86_64.tar.gz" | tar xzf - -C /usr/local && \ + chown root:root /usr/local/sbin && \ + chown root:root /usr/local/sbin/pid1 + +# +# Set up pid1 entrypoint and default command +# + +ENTRYPOINT ["/usr/local/sbin/pid1"] +CMD ["bash"] diff --git a/automated/dockerfiles/lts-13.25/Dockerfile b/automated/dockerfiles/lts-13.25/Dockerfile new file mode 100644 index 00000000..94e2439c --- /dev/null +++ b/automated/dockerfiles/lts-13.25/Dockerfile @@ -0,0 +1,3 @@ +FROM $DOCKER_REPO:lts-13.24 +ARG STACK_VERSION=2.1.1 +RUN wget -qO- https://github.com/commercialhaskell/stack/releases/download/v$STACK_VERSION/stack-$STACK_VERSION-linux-x86_64.tar.gz | tar xz --wildcards --strip-components=1 -C /usr/local/bin '*/stack' diff --git a/automated/dockerfiles/lts-13.27/Dockerfile b/automated/dockerfiles/lts-13.27/Dockerfile new file mode 100644 index 00000000..a8d1204e --- /dev/null +++ b/automated/dockerfiles/lts-13.27/Dockerfile @@ -0,0 +1,9 @@ +FROM $DOCKER_REPO:lts-13.26 +ARG VARIANT +RUN if [ "$VARIANT" = "small" ]; then \ + apt-get update && \ + apt-get install -y --no-install-recommends sudo && \ + rm -rf /var/lib/apt/lists/*; \ + fi +ARG STACK_VERSION=2.1.3 +RUN wget -qO- https://github.com/commercialhaskell/stack/releases/download/v$STACK_VERSION/stack-$STACK_VERSION-linux-x86_64-static.tar.gz | tar xz --wildcards --strip-components=1 -C /usr/local/bin '*/stack' diff --git a/automated/dockerfiles/lts-13.3/Dockerfile b/automated/dockerfiles/lts-13.3/Dockerfile new file mode 100644 index 00000000..78e92de7 --- /dev/null +++ b/automated/dockerfiles/lts-13.3/Dockerfile @@ -0,0 +1,10 @@ +FROM fpco/stack-build:lts-13.0 + +# +# Add g++ version required for building 'double-conversion' +# (see https://github.com/commercialhaskell/stack/issues/4470) +# + +RUN apt-get update && \ + apt-get install -y g++-7 && \ + rm -rf /var/lib/apt/lists/* diff --git a/automated/dockerfiles/lts-14.0/Dockerfile b/automated/dockerfiles/lts-14.0/Dockerfile new file mode 100644 index 00000000..9905a75d --- /dev/null +++ b/automated/dockerfiles/lts-14.0/Dockerfile @@ -0,0 +1,89 @@ +FROM ubuntu:18.04 + +LABEL maintainer="manny@fpcomplete.com" + +ARG GHC_VERSION=8.6.5 +ARG LTS_SLUG=lts-14.0 +ARG PID1_VERSION=0.1.2.0 +ARG STACK_VERSION=2.1.3 +ARG CUDA_VERSION=10.0 +ARG JVM_PATH=/usr/lib/jvm/java-8-openjdk-amd64 +ARG LLVM_VERSION=3.9 +ARG BOOTSTRAP_COMMIT=d4143f1845f26e8e99d0a1a8134d6ff535ab98b2 +ARG DEBIAN_FRONTEND=noninteractive +ARG VARIANT=build +ARG STACK_ROOT=/home/stackage/.stack + +# +# Set encoding to UTF-8 and PATH to find GHC and cabal/stack-installed binaries. +# + +ENV LANG=C.UTF-8 \ + LC_ALL=C.UTF-8 \ + PATH=/root/.local/bin:/usr/local/cuda-$CUDA_VERSION/bin:$STACK_ROOT/programs/x86_64-linux/ghc-$GHC_VERSION/bin:$PATH \ + CUDA_PATH=/usr/local/cuda-$CUDA_VERSION \ + CPATH=$JVM_PATH/include:$JVM_PATH/include/linux:/usr/lib/llvm-$LLVM_VERSION/include + +# +# Install pre-requisites +# + +RUN apt-get update && \ + apt-get install -y --no-install-recommends \ + wget netbase ca-certificates g++ gcc libc6-dev libffi-dev libgmp-dev \ + make xz-utils zlib1g-dev git gnupg libtinfo-dev && \ + rm -rf /var/lib/apt/lists/* + +# +# Use Stackage's debian-bootstrap.sh script to install system libraries and +# tools required to build any Stackage package. +# Re-installs 'stack' *after* running debian-bootstrap.sh since that may have +# installed a different version. +# In the case of 'small' image, just install Stack and GHC. +# + +RUN if [ "$VARIANT" != "small" ]; then \ + wget -qO- https://raw.githubusercontent.com/fpco/stackage/$BOOTSTRAP_COMMIT/debian-bootstrap.sh | sed "s/^GHCVER=8.6.5$/GHCVER=$GHC_VERSION/" | GHCVER=$GHC_VERSION bash; \ + fi && \ + wget -qO- https://github.com/commercialhaskell/stack/releases/download/v$STACK_VERSION/stack-$STACK_VERSION-linux-x86_64.tar.gz | tar xz --wildcards --strip-components=1 -C /usr/bin '*/stack' && \ + if [ "$VARIANT" = "small" ]; then \ + stack setup --resolver ghc-$GHC_VERSION; \ + fi && \ + rm -rf /var/lib/apt/lists/* && \ + cd $STACK_ROOT && \ + find . -type f -not -path "./programs/x86_64-linux/ghc-$GHC_VERSION/*" -exec rm '{}' \; && \ + find . -type d -print0 |sort -rz |xargs -0 rmdir 2>/dev/null || true + +# +# Configure Stack to use the GHC installed in the Docker image rather than installing its own +# + +RUN mkdir /etc/stack/ && \ + echo "system-ghc: true" >/etc/stack/config.yaml + +# +# Use 'stack' to install basic Haskell tools like alex, happy, and cpphs. We +# remove most of the STACK_ROOT afterward to save space, but keep the 'share' +# files that some of these tools require. +# + +RUN stack --resolver=$LTS_SLUG --local-bin-path=/usr/bin install \ + happy alex cpphs gtk2hs-buildtools hscolour hlint hindent && \ + cd $STACK_ROOT && \ + find . -type f -not -path './snapshots/*/share/*' -and -not -path "./programs/x86_64-linux/ghc-$GHC_VERSION/*" -exec rm '{}' \; && \ + find . -type d -print0 |sort -rz |xargs -0 rmdir 2>/dev/null || true + +# +# Install 'pid1' init daemon +# + +RUN wget -O- "https://github.com/fpco/pid1/releases/download/v$PID1_VERSION/pid1-$PID1_VERSION-linux-x86_64.tar.gz" | tar xzf - -C /usr/local && \ + chown root:root /usr/local/sbin && \ + chown root:root /usr/local/sbin/pid1 + +# +# Set up pid1 entrypoint and default command +# + +ENTRYPOINT ["/usr/local/sbin/pid1"] +CMD ["bash"] diff --git a/automated/dockerfiles/lts-9.0/Dockerfile b/automated/dockerfiles/lts-9.0/Dockerfile new file mode 100644 index 00000000..d5a479ae --- /dev/null +++ b/automated/dockerfiles/lts-9.0/Dockerfile @@ -0,0 +1,55 @@ +FROM ubuntu:16.04 + +MAINTAINER Emanuel Borsboom + +ARG GHC_VERSION=8.0.2 +ARG LTS_SLUG=lts-9.0 +ARG PID1_VERSION=0.1.0.1 +ARG BOOTSTRAP_COMMIT=1bc67bb54eda08c90d8421bc11d257354a379d11 +ARG DEBIAN_FRONTEND=noninteractive + +# +# Set encoding to UTF-8 and PATH to find GHC and cabal/stack-installed binaries. +# + +ENV LANG=C.UTF-8 \ + LC_ALL=C.UTF-8 \ + PATH=/root/.cabal/bin:/root/.local/bin:/opt/ghc/$GHC_VERSION/bin:$PATH + +# +# Use Stackage's debian-bootstrap.sh script to install system libraries and +# tools required to build any Stackage package. +# + +RUN apt-get update && \ + apt-get install -y wget && \ + wget -qO- https://raw.githubusercontent.com/fpco/stackage/$BOOTSTRAP_COMMIT/debian-bootstrap.sh | bash && \ + ln -s ghc /opt/ghc/$GHC_VERSION/share/doc/ghc-$GHC_VERSION && \ + rm -rf /var/lib/apt/lists/* + +# +# Use 'stack' to install basic Haskell tools like alex, happy, and cpphs. We +# remove most of the STACK_ROOT afterward to save space, but keep the 'share' +# files that some of these tools require. +# + +RUN stack --system-ghc --resolver=$LTS_SLUG --local-bin-path=/usr/local/bin install \ + cabal-install happy alex cpphs gtk2hs-buildtools hscolour && \ + cd $HOME/.stack && \ + find . -type f -not -path './snapshots/*/share/*' -exec rm '{}' \; && \ + find . -type d -print0 |sort -rz |xargs -0 rmdir 2>/dev/null || true + +# +# Install proper 'pid1' init daemon +# + +RUN wget -O- "https://github.com/fpco/pid1/releases/download/pid1%2F$PID1_VERSION/pid1-$PID1_VERSION-linux-x86_64.tar.gz" | tar xzf - -C /usr/local && \ + chown root:root /usr/local/sbin && \ + chown root:root /usr/local/sbin/pid1 + +# +# Set up pid1 entrypoint and default command +# + +ENTRYPOINT ["/usr/local/sbin/pid1"] +CMD ["bash"] diff --git a/automated/dockerfiles/lts-9.20/Dockerfile b/automated/dockerfiles/lts-9.20/Dockerfile new file mode 100644 index 00000000..b524e980 --- /dev/null +++ b/automated/dockerfiles/lts-9.20/Dockerfile @@ -0,0 +1,3 @@ +FROM fpco/stack-build:lts-9.0 +ARG STACK_VERSION=1.6.1 +RUN wget -qO- https://github.com/commercialhaskell/stack/releases/download/v$STACK_VERSION/stack-$STACK_VERSION-linux-x86_64.tar.gz | tar xz --wildcards --strip-components=1 -C /usr/local/bin '*/stack' diff --git a/automated/dockerfiles/lts-9.21/Dockerfile b/automated/dockerfiles/lts-9.21/Dockerfile new file mode 100644 index 00000000..4a875c91 --- /dev/null +++ b/automated/dockerfiles/lts-9.21/Dockerfile @@ -0,0 +1,3 @@ +FROM fpco/stack-build:lts-9.0 +ARG STACK_VERSION=1.6.5 +RUN wget -qO- https://github.com/commercialhaskell/stack/releases/download/v$STACK_VERSION/stack-$STACK_VERSION-linux-x86_64.tar.gz | tar xz --wildcards --strip-components=1 -C /usr/local/bin '*/stack' From 0f114e0414058bdd82cb77aa1a585a1be9ad7a6d Mon Sep 17 00:00:00 2001 From: Jeff Happily Date: Fri, 14 Feb 2020 12:04:53 +0800 Subject: [PATCH 1217/2682] Modify docker build script --- automated/build.sh | 9 ++ automated/dockerfiles/README.md | 7 +- automated/dockerfiles/build.sh | 52 ++--------- automated/dockerfiles/lts-14.0/Dockerfile.sub | 89 +++++++++++++++++++ 4 files changed, 109 insertions(+), 48 deletions(-) create mode 100644 automated/dockerfiles/lts-14.0/Dockerfile.sub diff --git a/automated/build.sh b/automated/build.sh index d6fdd77e..5815fe4f 100755 --- a/automated/build.sh +++ b/automated/build.sh @@ -145,6 +145,15 @@ docker run $ARGS_UPLOAD $IMAGE /bin/bash -c "curator upload-docs --target $TARGE docker run $ARGS_UPLOAD $IMAGE curator legacy-bulk --stackage-snapshots /dot-stackage/curator/stackage-snapshots/ --lts-haskell /dot-stackage/curator/lts-haskell/ --stackage-nightly /dot-stackage/curator/stackage-nightly/ +# Build and push docker image fpco/stack-build & fpco/stack-build-small for current release + +if [ $SHORTNAME = "lts" ] +then + $ROOT/dockerfiles/build.sh $TARGET + $ROOT/dockerfiles/build.sh --push $TARGET + $ROOT/dockerfiles/build.sh --push --small $TARGET +fi + ( if [ $SHORTNAME = "lts" ] then diff --git a/automated/dockerfiles/README.md b/automated/dockerfiles/README.md index 9fb1ec3d..9fd65199 100644 --- a/automated/dockerfiles/README.md +++ b/automated/dockerfiles/README.md @@ -8,7 +8,7 @@ images. This script and its Dockerfiles are used for building images for LTS >= Usage ----- - ./build.sh [--push] [--dry-run] [--small] lts-X.Y|lts-X|lts]" + ./build.sh [--push] [--dry-run] [--small] lts-X.Y" Options ------- @@ -25,10 +25,7 @@ Options Argument --------- -If you specify and exact LTS version, that image will be built. If you only -specify the major version, then an image for the latest minor version for that -major version will be built. If you specify 'lts', an image for the latest LTS -snapshot is built. +The image for the selected LTS version will be built. This searches for a Dockerfile for the selected snapshot in `lts-X.Y/Dockerfile`, and if one isn't found reuses the same image as built the diff --git a/automated/dockerfiles/build.sh b/automated/dockerfiles/build.sh index 7c337949..d80d4823 100755 --- a/automated/dockerfiles/build.sh +++ b/automated/dockerfiles/build.sh @@ -21,7 +21,7 @@ VARIANT=build usage() { echo "$0: $1" >&2 echo - echo "Usage: $0 [--push] [--dry-run] [--small] lts-X.Y|lts-X|lts]" + echo "Usage: $0 [--push] [--dry-run] [--small] lts-X.Y]" echo "See README.md for more information." echo exit 1 @@ -77,27 +77,16 @@ while [[ $# -gt 0 ]]; do esac done -# -# Determine actual snapshot version from aliases -# - -SNAPSHOTS="$(mktemp "lts-snapshots.json.XXXXXX")" -trap "rm -f \"$SNAPSHOTS\"" EXIT -wget -qO- https://www.stackage.org/download/lts-snapshots.json >"$SNAPSHOTS" - case "$LTS_SLUG_ARG" in "") - usage "Missing argument: snapshot or alias" + usage "Missing argument: snapshot" ;; lts-*.*) LTS_SLUG="$LTS_SLUG_ARG" ;; *) - LTS_SLUG=$(jq -r ".[\"$LTS_SLUG_ARG\"]" "$SNAPSHOTS") - if [[ -z "$LTS_SLUG" || "$LTS_SLUG" = "null" ]]; then - echo "$0: Cannot find LTS version for slug: $LTS_SLUG_ARG" >&2 - exit 1 - fi + echo "$0: Wrong snapshot format: $LTS_SLUG_ARG" >&2 + exit 1 ;; esac @@ -105,24 +94,6 @@ LTS_VERSION="${LTS_SLUG#lts-}" LTS_MAJOR="${LTS_VERSION%.*}" LTS_MINOR="${LTS_VERSION#*.}" -# -# Determine latest LTS version -# - -LATEST_LTS_SLUG=$(jq -r ".[\"lts\"]" $SNAPSHOTS) -LATEST_LTS_VERSION="${LATEST_LTS_SLUG#lts-}" -LATEST_LTS_MAJOR="${LATEST_LTS_VERSION%.*}" -LATEST_LTS_MINOR="${LATEST_LTS_VERSION#*.}" - -# -# Determine latest minor version of the selected major version -# - -MAJOR_LATEST_LTS_SLUG=$(jq -r ".[\"lts-$LTS_MAJOR\"]" $SNAPSHOTS) -MAJOR_LATEST_LTS_VERSION="${MAJOR_LATEST_LTS_SLUG#lts-}" -MAJOR_LATEST_LTS_MAJOR="${MAJOR_LATEST_LTS_VERSION%.*}" -MAJOR_LATEST_LTS_MINOR="${MAJOR_LATEST_LTS_VERSION#*.}" - # # Find the Dockerfile for the selected snapshot # @@ -157,14 +128,9 @@ fi # Create and push additional tags # -# If we select the latest minor version for the selected major version, then -# also create and push an 'lts-X' tag. -if [[ "$MAJOR_LATEST_LTS_VERSION" = "$LTS_VERSION" ]]; then - tagpush "$DOCKER_REPO:$LTS_SLUG" "$DOCKER_REPO:lts-$LTS_MAJOR" -fi +# Create and push an 'lts-X' tag. +tagpush "$DOCKER_REPO:$LTS_SLUG" "$DOCKER_REPO:lts-$LTS_MAJOR" -# If we selected the latest LTS snapshot, also create and push the 'lts' and 'latest' tags. -if [[ "$LATEST_LTS_VERSION" = "$LTS_VERSION" ]]; then - tagpush "$DOCKER_REPO:$LTS_SLUG" "$DOCKER_REPO:lts" - tagpush "$DOCKER_REPO:$LTS_SLUG" "$DOCKER_REPO:latest" -fi +# Create and push the 'lts' and 'latest' tags. +tagpush "$DOCKER_REPO:$LTS_SLUG" "$DOCKER_REPO:lts" +tagpush "$DOCKER_REPO:$LTS_SLUG" "$DOCKER_REPO:latest" diff --git a/automated/dockerfiles/lts-14.0/Dockerfile.sub b/automated/dockerfiles/lts-14.0/Dockerfile.sub new file mode 100644 index 00000000..9905a75d --- /dev/null +++ b/automated/dockerfiles/lts-14.0/Dockerfile.sub @@ -0,0 +1,89 @@ +FROM ubuntu:18.04 + +LABEL maintainer="manny@fpcomplete.com" + +ARG GHC_VERSION=8.6.5 +ARG LTS_SLUG=lts-14.0 +ARG PID1_VERSION=0.1.2.0 +ARG STACK_VERSION=2.1.3 +ARG CUDA_VERSION=10.0 +ARG JVM_PATH=/usr/lib/jvm/java-8-openjdk-amd64 +ARG LLVM_VERSION=3.9 +ARG BOOTSTRAP_COMMIT=d4143f1845f26e8e99d0a1a8134d6ff535ab98b2 +ARG DEBIAN_FRONTEND=noninteractive +ARG VARIANT=build +ARG STACK_ROOT=/home/stackage/.stack + +# +# Set encoding to UTF-8 and PATH to find GHC and cabal/stack-installed binaries. +# + +ENV LANG=C.UTF-8 \ + LC_ALL=C.UTF-8 \ + PATH=/root/.local/bin:/usr/local/cuda-$CUDA_VERSION/bin:$STACK_ROOT/programs/x86_64-linux/ghc-$GHC_VERSION/bin:$PATH \ + CUDA_PATH=/usr/local/cuda-$CUDA_VERSION \ + CPATH=$JVM_PATH/include:$JVM_PATH/include/linux:/usr/lib/llvm-$LLVM_VERSION/include + +# +# Install pre-requisites +# + +RUN apt-get update && \ + apt-get install -y --no-install-recommends \ + wget netbase ca-certificates g++ gcc libc6-dev libffi-dev libgmp-dev \ + make xz-utils zlib1g-dev git gnupg libtinfo-dev && \ + rm -rf /var/lib/apt/lists/* + +# +# Use Stackage's debian-bootstrap.sh script to install system libraries and +# tools required to build any Stackage package. +# Re-installs 'stack' *after* running debian-bootstrap.sh since that may have +# installed a different version. +# In the case of 'small' image, just install Stack and GHC. +# + +RUN if [ "$VARIANT" != "small" ]; then \ + wget -qO- https://raw.githubusercontent.com/fpco/stackage/$BOOTSTRAP_COMMIT/debian-bootstrap.sh | sed "s/^GHCVER=8.6.5$/GHCVER=$GHC_VERSION/" | GHCVER=$GHC_VERSION bash; \ + fi && \ + wget -qO- https://github.com/commercialhaskell/stack/releases/download/v$STACK_VERSION/stack-$STACK_VERSION-linux-x86_64.tar.gz | tar xz --wildcards --strip-components=1 -C /usr/bin '*/stack' && \ + if [ "$VARIANT" = "small" ]; then \ + stack setup --resolver ghc-$GHC_VERSION; \ + fi && \ + rm -rf /var/lib/apt/lists/* && \ + cd $STACK_ROOT && \ + find . -type f -not -path "./programs/x86_64-linux/ghc-$GHC_VERSION/*" -exec rm '{}' \; && \ + find . -type d -print0 |sort -rz |xargs -0 rmdir 2>/dev/null || true + +# +# Configure Stack to use the GHC installed in the Docker image rather than installing its own +# + +RUN mkdir /etc/stack/ && \ + echo "system-ghc: true" >/etc/stack/config.yaml + +# +# Use 'stack' to install basic Haskell tools like alex, happy, and cpphs. We +# remove most of the STACK_ROOT afterward to save space, but keep the 'share' +# files that some of these tools require. +# + +RUN stack --resolver=$LTS_SLUG --local-bin-path=/usr/bin install \ + happy alex cpphs gtk2hs-buildtools hscolour hlint hindent && \ + cd $STACK_ROOT && \ + find . -type f -not -path './snapshots/*/share/*' -and -not -path "./programs/x86_64-linux/ghc-$GHC_VERSION/*" -exec rm '{}' \; && \ + find . -type d -print0 |sort -rz |xargs -0 rmdir 2>/dev/null || true + +# +# Install 'pid1' init daemon +# + +RUN wget -O- "https://github.com/fpco/pid1/releases/download/v$PID1_VERSION/pid1-$PID1_VERSION-linux-x86_64.tar.gz" | tar xzf - -C /usr/local && \ + chown root:root /usr/local/sbin && \ + chown root:root /usr/local/sbin/pid1 + +# +# Set up pid1 entrypoint and default command +# + +ENTRYPOINT ["/usr/local/sbin/pid1"] +CMD ["bash"] From b042207abe4969d36f6fb5ec4604e64630aa97c5 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 13 Feb 2020 20:34:34 -0800 Subject: [PATCH 1218/2682] Disable some `gi-*` packages (#5174) --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 51fb1e2e..25a5a05e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3035,15 +3035,15 @@ packages: - haskell-gi-base - gi-atk - gi-cairo - - gi-dbusmenu - - gi-dbusmenugtk3 + - gi-dbusmenu < 0 # https://github.com/commercialhaskell/stackage/issues/5174 + - gi-dbusmenugtk3 < 0 # via gi-dbusmenu - gi-gdk < 4 - gi-gdkpixbuf - gi-gdkx11 < 4 - gi-gio - gi-glib - gi-gobject - - gi-graphene + - gi-graphene < 0 # https://github.com/commercialhaskell/stackage/issues/5174 - gi-gtk < 4 - gi-gtk-hs - gi-gtksource < 0 # via gi-gdk-4.0.1 & gi-gtk-4.0.1 From d2e0696e7ab8653974535eebd65edcf2f43143d4 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 14 Feb 2020 06:36:47 -0800 Subject: [PATCH 1219/2682] Test on the new docker container --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 25a5a05e..51fb1e2e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3035,15 +3035,15 @@ packages: - haskell-gi-base - gi-atk - gi-cairo - - gi-dbusmenu < 0 # https://github.com/commercialhaskell/stackage/issues/5174 - - gi-dbusmenugtk3 < 0 # via gi-dbusmenu + - gi-dbusmenu + - gi-dbusmenugtk3 - gi-gdk < 4 - gi-gdkpixbuf - gi-gdkx11 < 4 - gi-gio - gi-glib - gi-gobject - - gi-graphene < 0 # https://github.com/commercialhaskell/stackage/issues/5174 + - gi-graphene - gi-gtk < 4 - gi-gtk-hs - gi-gtksource < 0 # via gi-gdk-4.0.1 & gi-gtk-4.0.1 From ce61cacda34d261da74ba79475676350e517efd4 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 14 Feb 2020 07:02:12 -0800 Subject: [PATCH 1220/2682] Run some tests for old issues (#4848, #4707) --- build-constraints.yaml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 51fb1e2e..ebb5c0e9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3436,7 +3436,7 @@ packages: - dvorak "OnRock Engineering ": - - github-webhooks < 0 # unknown + - github-webhooks # 0 # unknown "Pavel Yakovlev @zmactep": - hasbolt < 0 # via hex @@ -5443,9 +5443,6 @@ expected-test-failures: # Cannot reproduce locally, looks like it may be a bug in Stack or curator - shake-language-c - # https://github.com/commercialhaskell/stackage/issues/4707 - - blaze-colonnade - # https://github.com/commercialhaskell/stackage/issues/4722 - tasty-discover @@ -5534,7 +5531,7 @@ skipped-haddocks: - sparkle # Java function failures tweag/sparkle#144 - polysemy-zoo # Needs polysemy-plugin GHC plugin - haskell-lsp-types # 0.13.0.0 https://github.com/commercialhaskell/stackage/issues/4563#issuecomment-493899809 -- bitvec # https://github.com/commercialhaskell/stackage/issues/4848 +# bitvec # https://github.com/commercialhaskell/stackage/issues/4848 - hw-ip # https://github.com/commercialhaskell/stackage/issues/5014 # end of skipped-haddocks From 65480d791ac3ec2794b18acb9fba5d195709160a Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 14 Feb 2020 07:09:26 -0800 Subject: [PATCH 1221/2682] Cleanup from previous tests --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ebb5c0e9..e711cef1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3436,7 +3436,7 @@ packages: - dvorak "OnRock Engineering ": - - github-webhooks # 0 # unknown + - github-webhooks < 0 # unknown "Pavel Yakovlev @zmactep": - hasbolt < 0 # via hex @@ -5531,7 +5531,6 @@ skipped-haddocks: - sparkle # Java function failures tweag/sparkle#144 - polysemy-zoo # Needs polysemy-plugin GHC plugin - haskell-lsp-types # 0.13.0.0 https://github.com/commercialhaskell/stackage/issues/4563#issuecomment-493899809 -# bitvec # https://github.com/commercialhaskell/stackage/issues/4848 - hw-ip # https://github.com/commercialhaskell/stackage/issues/5014 # end of skipped-haddocks From 7a8c07059d50daa982ce8db5f827bf8fd85d7c04 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 14 Feb 2020 07:15:49 -0800 Subject: [PATCH 1222/2682] More old issues tests (#4337, #4972, #4904) --- build-constraints.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e711cef1..fd434865 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4831,7 +4831,7 @@ skipped-tests: - http-media # base-4.13 # fails with ghc 8.8 - - alex # as of alex-3.2.4 + # alex # as of alex-3.2.4 # Cyclic dependencies - base-orphans # via hspec @@ -5368,7 +5368,6 @@ expected-test-failures: - haddock - haskell-tools-builtin-refactorings - hweblib # https://github.com/aycanirican/hweblib/issues/3 - - libraft # https://github.com/commercialhaskell/stackage/issues/4337#issuecomment-462465921 - multiset # doctests require Glob, a hidden package - perf # https://github.com/fpco/stackage/pull/2859 - picosat # https://github.com/fpco/stackage/pull/2382 @@ -5522,7 +5521,7 @@ expected-haddock-failures: # https://github.com/haskell/haddock/issues/1091 - vault # commercialhaskell/stackage#4904 - - monoid-subclasses + # monoid-subclasses # end of expected-haddock-failures # For packages with haddock issues From 80f1a8bd8d5a480ca02ea9a4b5be2572cff81841 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 14 Feb 2020 07:32:48 -0800 Subject: [PATCH 1223/2682] `alex` still fails --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index fd434865..66b338e9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4831,7 +4831,7 @@ skipped-tests: - http-media # base-4.13 # fails with ghc 8.8 - # alex # as of alex-3.2.4 + - alex # as of alex-3.2.4 # Cyclic dependencies - base-orphans # via hspec From 80c6c7cd87519862947b73b0999b67f464c4b30a Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 14 Feb 2020 07:40:27 -0800 Subject: [PATCH 1224/2682] Two more tests (#4984, #4995) --- build-constraints.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 66b338e9..9bbd9bba 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1172,7 +1172,7 @@ packages: - HandsomeSoup "Clint Adams @clinty": - - hOpenPGP < 0 # via bzlib + - hOpenPGP # 0 # via bzlib - openpgp-asciiarmor - MusicBrainz - DAV @@ -5206,7 +5206,7 @@ expected-test-failures: - distributed-process - distributed-process-execution # https://github.com/haskell-distributed/distributed-process-execution/issues/2 - distributed-process-task - - egison # https://github.com/commercialhaskell/stackage/issues/4984 + # egison # https://github.com/commercialhaskell/stackage/issues/4984 - foldl-statistics # https://github.com/data61/foldl-statistics/issues/2 - fsnotify # Often runs out of inotify handles - forma @@ -5520,8 +5520,6 @@ expected-haddock-failures: # https://github.com/haskell/haddock/issues/1091 - vault - # commercialhaskell/stackage#4904 - # monoid-subclasses # end of expected-haddock-failures # For packages with haddock issues From cb9648eb85cdc65d9bd96eca13b499d5fb31a9f7 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 14 Feb 2020 07:46:33 -0800 Subject: [PATCH 1225/2682] Keep bound on `hOpenPGP` (#5175, #4995) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9bbd9bba..19fb6a34 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1172,7 +1172,7 @@ packages: - HandsomeSoup "Clint Adams @clinty": - - hOpenPGP # 0 # via bzlib + - hOpenPGP < 0 # via bzlib, https://github.com/commercialhaskell/stackage/issues/5175 - openpgp-asciiarmor - MusicBrainz - DAV From d4d7a3c21a9012e61f5d05b53ee992e225d7e75b Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 14 Feb 2020 07:49:34 -0800 Subject: [PATCH 1226/2682] Cleanup --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 19fb6a34..d87a2227 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5206,7 +5206,6 @@ expected-test-failures: - distributed-process - distributed-process-execution # https://github.com/haskell-distributed/distributed-process-execution/issues/2 - distributed-process-task - # egison # https://github.com/commercialhaskell/stackage/issues/4984 - foldl-statistics # https://github.com/data61/foldl-statistics/issues/2 - fsnotify # Often runs out of inotify handles - forma From 0485f7dad5822ccec503871de497cfaef37f14ef Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 15 Feb 2020 07:30:19 -0800 Subject: [PATCH 1227/2682] Enable `cursor-fuzzy-time` (#5171) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d87a2227..fd96d631 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3734,7 +3734,7 @@ packages: "Tom Sydney Kerckhove @NorfairKing": - cursor - cursor-brick - - cursor-fuzzy-time < 0 # https://github.com/commercialhaskell/stackage/issues/5171 + - cursor-fuzzy-time - cursor-gen - fuzzy-time - genvalidity From 5573a606ef451797ca36f6a4c64337e65abfc1a4 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 15 Feb 2020 07:40:12 -0800 Subject: [PATCH 1228/2682] Update `CURATOR.md` to the current state --- CURATORS.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/CURATORS.md b/CURATORS.md index f9b14f90..be2c7d93 100644 --- a/CURATORS.md +++ b/CURATORS.md @@ -280,13 +280,13 @@ we're just not there yet. ``` # Run a nightly build -/opt/stackage-build/stackage/automated/run-nightly.sh +/var/stackage/stackage/automated/run-nightly.sh # Run an LTS minor bump -/opt/stackage-build/stackage/automated/build-next.sh lts-14.17 +/var/stackage/stackage/automated/build.sh lts-15.1 # Run an LTS major bump -/opt/stackage-build/stackage/automated/build-next.sh lts-15.0 +/var/stackage/stackage/automated/build.sh lts-16.0 ``` Recommended: run these from inside a `tmux` session. If you get version bound @@ -294,7 +294,7 @@ problems on nightly or LTS major, you need to fix build-constraints.yaml (see info above). ### Building LTS minor releases -First run `build-next.sh` to regenerate updated `ltsXX/work/constraints.yaml` and `ltsXX/work/snapshot-incomplete.yaml` files. +First run `build.sh` to regenerate updated `ltsXX/work/constraints.yaml` and `ltsXX/work/snapshot-incomplete.yaml` files. For an LTS minor bump, you'll typically want to: @@ -302,9 +302,9 @@ For an LTS minor bump, you'll typically want to: * Add new packages to the `constraints.yaml` file * Test, benchmark, haddock failures can also be added to package fields in the `constraints.yaml` if necessary, though it should be avoided if possible for LTS. -Then run `NOPLAN=1 build-next.sh` to build the generate an updated snapshot. +Then run `NOPLAN=1 build.sh` to build the generate an updated snapshot. -This replaces `CONSTRAINTS=...' /opt/stackage-build/stackage/automated/build.sh lts-x.y` for the old curator-1. +This replaces `CONSTRAINTS=...' /var/stackage/stackage/automated/build.sh lts-x.y` for the old curator-1. If a build fails for bounds reasons, see all of the advice above. If the code itself doesn't build, or tests fail, open up an issue and then either put in a From 43857f812ed09164180f5b4b5c410ce2a2eae82b Mon Sep 17 00:00:00 2001 From: Omari Norman Date: Sun, 16 Feb 2020 12:57:47 -0500 Subject: [PATCH 1229/2682] Add squeather 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 fd96d631..9410d0bf 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -658,6 +658,7 @@ packages: - ofx - accuerr - timelens + - squeather "Neil Mitchell @ndmitchell": - hlint From 9f98daf4c95914be24b94c1e3d0b26aca84c857a Mon Sep 17 00:00:00 2001 From: Dmitrii Kovanikov Date: Sun, 16 Feb 2020 20:32:20 +0000 Subject: [PATCH 1230/2682] Add colourista --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index fd96d631..29542d3c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3600,6 +3600,7 @@ packages: - co-log-core - co-log - co-log-polysemy + - colourista - first-class-patterns - ilist - membrain @@ -4145,7 +4146,7 @@ packages: "8c6794b6 <8c6794b6@gmail.com> @8c6794b6": - hpc-codecov - + "Hiromi Ishii @konn": - equational-reasoning - ghc-typelits-presburger From 4f510bb8f13c9d000a47d1f974c0f0a7918b683e Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 16 Feb 2020 14:32:26 -0800 Subject: [PATCH 1231/2682] Upper bounds for newest issues (#5181, #5182, #5183) --- build-constraints.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index fd96d631..60694231 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -67,7 +67,7 @@ packages: - configurator-pg < 0 # via base-4.13.0.0 "Sandy Maguire @isovector": - - polysemy + - polysemy < 1.3.0.0 # https://github.com/commercialhaskell/stackage/issues/5183 - polysemy-plugin < 0 # via polysemy - polysemy-zoo < 0 # via hedis - ecstasy @@ -2039,8 +2039,8 @@ packages: "Michael Thompson @michaelt": - pipes-text < 0 # GHC 8.4 via streaming-commons-0.2.0.0 - lens-simple < 0 # via lens-family-2.0.0 - - lens-family-core - - lens-family + - lens-family-core < 2.1.0 #https://github.com/commercialhaskell/stackage/issues/5182 + - lens-family < 2.1.0 #https://github.com/commercialhaskell/stackage/issues/5182 "Justin Le @mstksg": - advent-of-code-api @@ -2826,7 +2826,7 @@ packages: - doclayout < 0.3 # via pandoc-2.9.1.1 - doctemplates < 0.8.1 # via doclayout - emojis - - pandoc + - pandoc < 2.9.2 # https://github.com/commercialhaskell/stackage/issues/5181 - pandoc-citeproc - HsYAML-aeson - ipynb #< 0 # via aeson-diff From 5a75c29d82519330d2a1e35b90d0a1208e5bac97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Sun, 16 Feb 2020 04:25:44 +0100 Subject: [PATCH 1232/2682] bump domenkozar packages --- build-constraints.yaml | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index fd96d631..50a5dd2e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2602,7 +2602,7 @@ packages: - rank1dynamic "Dave Tapley @dukedave": - - inline-c-cpp < 0 # via inline-c + - inline-c-cpp "Takahiro Himura @himura": - lens-regex @@ -2896,7 +2896,7 @@ packages: "Fraser Tweedale @frasertweedale": - concise - - jose < 0 # MonadFail + - jose "Yoshikuni Jujo @YoshikuniJujo": - zot @@ -3838,20 +3838,17 @@ packages: - transformers-fix "Domen Kozar @domenkozar": - - cachix < 0 # #4752 - - cachix-api < 0 # via http-media & protolude & servant-auth & servant-auth-server & servant-auth-swagger & swagger2 - - elm2nix < 0 # via req - - mixpanel-client < 0 + - elm2nix + - mixpanel-client - netrc - pretty-sop - - servant-auth < 0 # via base-4.13.0.0 - - servant-auth-server < 0 # via base-4.13.0.0 + - servant-auth + - servant-auth-server - servant-auth-client < 0 # via warp-3.3.2 - - servant-auth-swagger < 0 # via base-4.13.0.0 - - servant-auth-docs < 0 # via base-4.13.0.0 + - servant-auth-swagger + - servant-auth-docs - servant-elm - - streaming-wai < 0 # via streaming - - systemd < 0 # socketToFd is ambiguous + - systemd "Andre Van Der Merwe @andrevdm": - bhoogle < 0 From 92f939c6094464c2fefd1df4c3eda7289253785e Mon Sep 17 00:00:00 2001 From: Jeff Happily Date: Mon, 17 Feb 2020 16:06:48 +0800 Subject: [PATCH 1233/2682] Add dockerfile for lts 15 --- automated/dockerfiles/lts-15.0/Dockerfile | 89 +++++++++++++++++++++++ 1 file changed, 89 insertions(+) create mode 100644 automated/dockerfiles/lts-15.0/Dockerfile diff --git a/automated/dockerfiles/lts-15.0/Dockerfile b/automated/dockerfiles/lts-15.0/Dockerfile new file mode 100644 index 00000000..848c5d0e --- /dev/null +++ b/automated/dockerfiles/lts-15.0/Dockerfile @@ -0,0 +1,89 @@ +FROM ubuntu:18.04 + +LABEL maintainer="manny@fpcomplete.com" + +ARG GHC_VERSION=8.8.2 +ARG LTS_SLUG=lts-15.0 +ARG PID1_VERSION=0.1.2.0 +ARG STACK_VERSION=2.1.3 +ARG CUDA_VERSION=10.0 +ARG JVM_PATH=/usr/lib/jvm/java-8-openjdk-amd64 +ARG LLVM_PATH=/usr/lib/llvm-7 +ARG BOOTSTRAP_COMMIT=77790c7bcb21fd8875871245df5c5c39a55ec0c1 +ARG DEBIAN_FRONTEND=noninteractive +ARG VARIANT=build +ARG STACK_ROOT=/home/stackage/.stack + +# +# Set encoding to UTF-8 and PATH to find GHC and cabal/stack-installed binaries. +# + +ENV LANG=C.UTF-8 \ + LC_ALL=C.UTF-8 \ + PATH=/root/.local/bin:/usr/local/cuda-$CUDA_VERSION/bin:$STACK_ROOT/programs/x86_64-linux/ghc-$GHC_VERSION/bin:$PATH \ + CUDA_PATH=/usr/local/cuda-$CUDA_VERSION \ + CPATH=$JVM_PATH/include:$JVM_PATH/include/linux:$LLVM_PATH/include + +# +# Install pre-requisites +# + +RUN apt-get update && \ + apt-get install -y --no-install-recommends \ + wget netbase ca-certificates g++ gcc libc6-dev libffi-dev libgmp-dev \ + make xz-utils zlib1g-dev git gnupg libtinfo-dev && \ + rm -rf /var/lib/apt/lists/* + +# +# Use Stackage's debian-bootstrap.sh script to install system libraries and +# tools required to build any Stackage package. +# Re-installs 'stack' *after* running debian-bootstrap.sh since that may have +# installed a different version. +# In the case of 'small' image, just install Stack and GHC. +# + +RUN if [ "$VARIANT" != "small" ]; then \ + wget -qO- https://raw.githubusercontent.com/fpco/stackage/$BOOTSTRAP_COMMIT/debian-bootstrap.sh | sed "s/^GHCVER=8.6.5$/GHCVER=$GHC_VERSION/" | GHCVER=$GHC_VERSION bash; \ + fi && \ + wget -qO- https://github.com/commercialhaskell/stack/releases/download/v$STACK_VERSION/stack-$STACK_VERSION-linux-x86_64.tar.gz | tar xz --wildcards --strip-components=1 -C /usr/bin '*/stack' && \ + if [ "$VARIANT" = "small" ]; then \ + stack setup --resolver ghc-$GHC_VERSION; \ + fi && \ + rm -rf /var/lib/apt/lists/* && \ + cd $STACK_ROOT && \ + find . -type f -not -path "./programs/x86_64-linux/ghc-$GHC_VERSION/*" -exec rm '{}' \; && \ + find . -type d -print0 |sort -rz |xargs -0 rmdir 2>/dev/null || true + +# +# Configure Stack to use the GHC installed in the Docker image rather than installing its own +# + +RUN mkdir /etc/stack/ && \ + echo "system-ghc: true" >/etc/stack/config.yaml + +# +# Use 'stack' to install basic Haskell tools like alex, happy, and cpphs. We +# remove most of the STACK_ROOT afterward to save space, but keep the 'share' +# files that some of these tools require. +# + +RUN stack --resolver=$LTS_SLUG --local-bin-path=/usr/bin install \ + happy alex cpphs gtk2hs-buildtools hscolour hlint hindent && \ + cd $STACK_ROOT && \ + find . -type f -not -path './snapshots/*/share/*' -and -not -path "./programs/x86_64-linux/ghc-$GHC_VERSION/*" -exec rm '{}' \; && \ + find . -type d -print0 |sort -rz |xargs -0 rmdir 2>/dev/null || true + +# +# Install 'pid1' init daemon +# + +RUN wget -O- "https://github.com/fpco/pid1/releases/download/v$PID1_VERSION/pid1-$PID1_VERSION-linux-x86_64.tar.gz" | tar xzf - -C /usr/local && \ + chown root:root /usr/local/sbin && \ + chown root:root /usr/local/sbin/pid1 + +# +# Set up pid1 entrypoint and default command +# + +ENTRYPOINT ["/usr/local/sbin/pid1"] +CMD ["bash"] From 3c9ab241adacb348fdb878942e1689af9d719e74 Mon Sep 17 00:00:00 2001 From: Ryan Scott Date: Mon, 17 Feb 2020 07:42:40 -0500 Subject: [PATCH 1234/2682] Enable linear-1.21 All of the dependencies listed in #5123 that were blocking version 1.21 of `linear` have been updated to allow building with it. Fixes #5123. --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3fe5f55e..eb92d8db 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -867,7 +867,7 @@ packages: - lens-action - lens-aeson - lens-properties - - linear < 1.21 # https://github.com/commercialhaskell/stackage/issues/5123 + - linear - linear-accelerate < 0 # GHC 8.4 via accelerate - log-domain - machines @@ -4142,7 +4142,7 @@ packages: "8c6794b6 <8c6794b6@gmail.com> @8c6794b6": - hpc-codecov - + "Hiromi Ishii @konn": - equational-reasoning - ghc-typelits-presburger From c5313ca0fb820e553d7f2bd3bac3c7e7a5d32531 Mon Sep 17 00:00:00 2001 From: Clint Adams Date: Mon, 17 Feb 2020 09:10:28 -0500 Subject: [PATCH 1235/2682] Re-enable debian, which has been switched to bz2 from bzlib --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3fe5f55e..083a3eba 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1172,13 +1172,13 @@ packages: - HandsomeSoup "Clint Adams @clinty": - - hOpenPGP < 0 # via bzlib, https://github.com/commercialhaskell/stackage/issues/5175 + - hOpenPGP < 0 # via ixset-typed, https://github.com/commercialhaskell/stackage/issues/5175 - openpgp-asciiarmor - MusicBrainz - DAV - hopenpgp-tools < 0 # hOpenPGP & ixset-typed - opensource - - debian < 0 # via bzlib + - debian - cabal-debian < 0 # via debian "Piyush P Kurur @piyush-kurur": From 5f56a304690ccf3e71305099b7a6b65440d38700 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 17 Feb 2020 15:38:55 +0100 Subject: [PATCH 1236/2682] Remove servant upper bound and close #5097 --- build-constraints.yaml | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index fe1f9771..49fa8cdd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4677,17 +4677,6 @@ packages: - haskeline < 0.8.0 - structured-cli < 2.6 - # https://github.com/commercialhaskell/stackage/issues/5097 - - servant < 0.17 - - servant-client < 0.17 - - servant-server < 0.17 - - servant-client-core < 0.17 - - servant-docs < 0.11.5 - - servant-foreign < 0.15.1 - - servant-lucid < 0.9.0.1 - - servant-mock < 0.8.6 - - servant-swagger < 1.1.8 - - aur < 6.3.0 # end of packages # Package flags are applied to individual packages, and override the values of From e06b88dc9f595f6e7ccf1893defa05b1ee2563b5 Mon Sep 17 00:00:00 2001 From: Emily Pillmore Date: Tue, 18 Feb 2020 00:03:58 -0500 Subject: [PATCH 1237/2682] add base16, base16-lens, base32, base32-lens --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 49fa8cdd..0f2ff3fb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -42,6 +42,10 @@ packages: - lens-regex-pcre < 0 # via pcre-heavy "Emily Pillmore @topos": + - base16 + - base16-lens + - base32 + - base32-lens - base64 - base64-lens - lens-process < 0 # via lens-4.18.1 From ca7a4f4d4cc133720b343fd7c0a1f3a54df855ff Mon Sep 17 00:00:00 2001 From: Leonhard Markert Date: Tue, 18 Feb 2020 09:59:02 +0100 Subject: [PATCH 1238/2682] Update build instructions ... to bring them closer to what's described in MAINTAINERS.md. In particular, the `cd` and `rm -f stack.yaml` steps were missing. --- .github/PULL_REQUEST_TEMPLATE.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index abff59f4..464d08c6 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -4,5 +4,6 @@ Checklist: - [ ] On your own machine, in a _new directory_, you have successfully run the following set of commands (replace `$package` with the name of the package that is submitted, and `$version` with the version of the package you want to get into Stackage): stack unpack $package-$version # $version is optional - stack init --resolver nightly + cd $package-$version + rm -f stack.yaml && stack init --resolver nightly stack build --resolver nightly --haddock --test --bench --no-run-benchmarks From 168e3c4b1224e97b81be6cbd702ef4b3c766215a Mon Sep 17 00:00:00 2001 From: Leonhard Markert Date: Tue, 18 Feb 2020 08:50:52 +0100 Subject: [PATCH 1239/2682] add monad-bayes --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 49fa8cdd..881a5567 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2565,6 +2565,9 @@ packages: - wave - zip + "Leonhard Markert @curiousleo": + - monad-bayes + "Emmanuel Touzery @emmanueltouzery": - app-settings - hsexif < 0 # via time-1.9.3 From d83e0c5cfea90bb6a1a4a6738bd48eaaed5e56a2 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Tue, 18 Feb 2020 19:10:39 +0100 Subject: [PATCH 1240/2682] Re-introduce servant upper bounds for #5191 --- build-constraints.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 881a5567..fd9ea702 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4680,6 +4680,18 @@ packages: - haskeline < 0.8.0 - structured-cli < 2.6 + # https://github.com/commercialhaskell/stackage/issues/5191 - compilation failures + - servant < 0.17 + - servant-client < 0.17 + - servant-server < 0.17 + - servant-client-core < 0.17 + - servant-docs < 0.11.5 + - servant-foreign < 0.15.1 + - servant-lucid < 0.9.0.1 + - servant-mock < 0.8.6 + - servant-swagger < 1.1.8 + - aur < 6.3.0 + # end of packages # Package flags are applied to individual packages, and override the values of From 38cb5f89d3812588b2f0fe83f32a4cbaec187b8a Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Tue, 18 Feb 2020 20:03:38 +0100 Subject: [PATCH 1241/2682] Expect egison tests to fail egison/egison#150 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index fd9ea702..f6dfe27d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5487,6 +5487,7 @@ expected-benchmark-failures: - raaz # https://github.com/commercialhaskell/stackage/issues/4766 - thyme - xmlgen # https://github.com/skogsbaer/xmlgen/issues/6 + - egison # https://github.com/egison/egison/issues/150 # end of expected-benchmark-failures From 0572d4ec28406012049f58cebed39c54ef6350d4 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Tue, 18 Feb 2020 20:05:30 +0100 Subject: [PATCH 1242/2682] Remove polysemy upper bound and close #5183 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f6dfe27d..966cbc6f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -67,7 +67,7 @@ packages: - configurator-pg < 0 # via base-4.13.0.0 "Sandy Maguire @isovector": - - polysemy < 1.3.0.0 # https://github.com/commercialhaskell/stackage/issues/5183 + - polysemy - polysemy-plugin < 0 # via polysemy - polysemy-zoo < 0 # via hedis - ecstasy From 5fa02e3ff26e4da3e535247a71dd21bd8ef98994 Mon Sep 17 00:00:00 2001 From: Clint Adams Date: Tue, 18 Feb 2020 22:05:51 -0500 Subject: [PATCH 1243/2682] Re-enable cabal-debian, unblocked by debian's switch from bzlib to bz2 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index df979e29..8668a391 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1184,7 +1184,7 @@ packages: - hopenpgp-tools < 0 # hOpenPGP & ixset-typed - opensource - debian - - cabal-debian < 0 # via debian + - cabal-debian "Piyush P Kurur @piyush-kurur": - raaz < 0 # via base-4.13.0.0 From 77cc3ceb298a96a90c0ae34bb7813431a6f25d28 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Wed, 19 Feb 2020 14:26:28 +0100 Subject: [PATCH 1244/2682] Add fusion-plugin-types --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index df979e29..a43b5f2c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -515,6 +515,7 @@ packages: - xls "Pranay Sashank @pranaysashank": + - fusion-plugin-types - fusion-plugin "Aleksey Uimanov @s9gf4ult": From 55dd735a06d6799cd168a8c95808be004e1a2f58 Mon Sep 17 00:00:00 2001 From: Frank Doepper Date: Wed, 19 Feb 2020 10:03:32 +0100 Subject: [PATCH 1245/2682] add amqp-utils depends on magic, maybe @jgoerzen wants to take his part --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index df979e29..9830b087 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4159,6 +4159,10 @@ packages: - type-natural - sized + "Frank Doepper @woffs": + - amqp-utils + - magic + "Grandfathered dependencies": - network - Boolean From 26690e66055fa1b28c98216da6a8e557d86ba451 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Wed, 19 Feb 2020 15:34:27 +0100 Subject: [PATCH 1246/2682] Revert "Re-enable cabal-debian, unblocked by debian's switch from bzlib to bz2" #5192 This reverts commit 5fa02e3ff26e4da3e535247a71dd21bd8ef98994. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5f63ef92..b41203e3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1185,7 +1185,7 @@ packages: - hopenpgp-tools < 0 # hOpenPGP & ixset-typed - opensource - debian - - cabal-debian + - cabal-debian < 0 # build failure https://github.com/commercialhaskell/stackage/pull/5192#issuecomment-588263681 "Piyush P Kurur @piyush-kurur": - raaz < 0 # via base-4.13.0.0 From 1154569771c146c81ccb75e49d6bf1a8a6f62209 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Wed, 19 Feb 2020 16:14:04 +0100 Subject: [PATCH 1247/2682] Re-enable egison benchmarks egison/egison#150 --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b41203e3..590dc575 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5496,7 +5496,6 @@ expected-benchmark-failures: - raaz # https://github.com/commercialhaskell/stackage/issues/4766 - thyme - xmlgen # https://github.com/skogsbaer/xmlgen/issues/6 - - egison # https://github.com/egison/egison/issues/150 # end of expected-benchmark-failures From eeb5b20cd9f97e4e604301edef90ab6cffe526d3 Mon Sep 17 00:00:00 2001 From: Brandon Chinn Date: Wed, 19 Feb 2020 16:12:45 -0800 Subject: [PATCH 1248/2682] Add hpc-lcov --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 590dc575..e97fadfa 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4103,6 +4103,7 @@ packages: "Brandon Chinn @brandon-leapyear": - aeson-schemas - github-rest + - hpc-lcov - th-test-utils "Akshay Mankar @akshaymankar": From c270b9936c3a2ae271a92dc764ad5d343f44e423 Mon Sep 17 00:00:00 2001 From: Alexey Kotlyarov Date: Thu, 20 Feb 2020 10:21:33 +1100 Subject: [PATCH 1249/2682] Add back serverless-haskell --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 590dc575..30d37ae1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3826,7 +3826,7 @@ packages: "Alexey Kotlyarov @koterpillar": - appendmap - - serverless-haskell < 0 # via aeson-extra + - serverless-haskell "Guru Devanla @gdevanla": - pptable From bbc449d8dbeb73b1161f5367e7a7b732a28f7da0 Mon Sep 17 00:00:00 2001 From: Jonathan Knowles Date: Thu, 20 Feb 2020 09:43:59 +0800 Subject: [PATCH 1250/2682] Add `bech32-th` package. --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 590dc575..b3c717aa 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3290,6 +3290,7 @@ packages: "Jonathan Knowles @jonathanknowles": - bech32 + - bech32-th - roc-id "Mahdi Dibaiee @mdibaiee": From 83aa53c7f433a7573b720826e88b2c8b8ec66456 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 20 Feb 2020 14:31:55 +0800 Subject: [PATCH 1251/2682] add resolv --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 590dc575..f7300116 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4474,6 +4474,7 @@ packages: - relapse - relational-schemas - rerebase + - resolv - resource-pool - resourcet - rfc5051 @@ -4987,6 +4988,7 @@ skipped-tests: - psqueues # via QuickCheck-2.12.6.1 - pure-zlib # via QuickCheck-2.12.6.1 - records-sop # via hspec-2.7.0 + - resolv # via tasty-1.2 - serialise - servant # via hspec-2.7.0 - servant-client # via hspec-2.7.0 From 776064c5175499ac889c5a4c717f387f523cb332 Mon Sep 17 00:00:00 2001 From: Pavel Krajcevski Date: Thu, 20 Feb 2020 22:23:02 -0800 Subject: [PATCH 1252/2682] Re-enable HCodecs after Mokosha/HCodecs#2 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1a2ef52d..084e897e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1356,7 +1356,7 @@ packages: - netwire-input-glfw - yoga - freetype2 - - HCodecs < 0 # MonadFail + - HCodecs "Emanuel Borsboom @borsboom": - BoundedChan From fbd8e5a89d46e0307484a906ddde119cf9a648ee Mon Sep 17 00:00:00 2001 From: Clint Adams Date: Fri, 21 Feb 2020 08:59:55 -0500 Subject: [PATCH 1253/2682] Re-enable cabal-debian --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 084e897e..b2e9fe82 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1185,7 +1185,7 @@ packages: - hopenpgp-tools < 0 # hOpenPGP & ixset-typed - opensource - debian - - cabal-debian < 0 # build failure https://github.com/commercialhaskell/stackage/pull/5192#issuecomment-588263681 + - cabal-debian "Piyush P Kurur @piyush-kurur": - raaz < 0 # via base-4.13.0.0 From 111edfc7771ad6738082db29e95b9a8c05c17d3b Mon Sep 17 00:00:00 2001 From: TheMatten Date: Fri, 21 Feb 2020 18:54:35 +0100 Subject: [PATCH 1254/2682] Change contact person for `polysemy-*` packages --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 881a5567..ab3c2526 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -67,9 +67,6 @@ packages: - configurator-pg < 0 # via base-4.13.0.0 "Sandy Maguire @isovector": - - polysemy < 1.3.0.0 # https://github.com/commercialhaskell/stackage/issues/5183 - - polysemy-plugin < 0 # via polysemy - - polysemy-zoo < 0 # via hedis - ecstasy - interpolatedstring-qq2 < 0 # via template-haskell-2.15.0.0 - prospect @@ -78,6 +75,9 @@ packages: - type-errors "Matej Niznik @TheMatten": + - polysemy + - polysemy-plugin < 0 # via polysemy + - polysemy-zoo < 0 # via hedis - loopbreaker "William Yao @williamyaoh": From d544bda4e30fe9bf0f6b1e8eee2d164b1537d7f3 Mon Sep 17 00:00:00 2001 From: TheMatten Date: Fri, 21 Feb 2020 19:01:57 +0100 Subject: [PATCH 1255/2682] Change email address of TheMatten --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ab3c2526..82e8ada3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -74,7 +74,7 @@ packages: - unagi-chan - type-errors - "Matej Niznik @TheMatten": + "Matej Niznik @TheMatten": - polysemy - polysemy-plugin < 0 # via polysemy - polysemy-zoo < 0 # via hedis From ca2cd4de6962267c17059f609cfdefbb0b26bcd8 Mon Sep 17 00:00:00 2001 From: Dmitry Dzhus Date: Fri, 21 Feb 2020 16:37:38 +0000 Subject: [PATCH 1256/2682] Re-enable static-text-0.2.0.5, add th-env, th-nowq --- build-constraints.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b2e9fe82..09086ecc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3871,8 +3871,9 @@ packages: "Dmitry Dzhus @dzhus": - csg < 0 # via QuickCheck https://github.com/commercialhaskell/stackage/issues/4444 - simple-vec3 - - static-text < 0 # via template-haskell-2.15.0.0 - - th-nowq < 0 # via time-1.9.3 + - static-text + - th-env + - th-nowq "Dan Fithian @dfithian": - oauthenticated From 1b19f4e4d5bb74b478e2b1694109140cc27827fc Mon Sep 17 00:00:00 2001 From: Kai Zhang Date: Fri, 21 Feb 2020 16:25:25 -0800 Subject: [PATCH 1257/2682] add haskell-igraph --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index b2e9fe82..ec07d9cb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2127,6 +2127,7 @@ packages: "Kai Zhang @kaizhang": - matrices + - haskell-igraph "Michel Boucey @MichelBoucey": - IPv6Addr From c9ff3e17fe6682ab1ff63ee96e8aab3a7b6278bc Mon Sep 17 00:00:00 2001 From: Doug Burke Date: Sat, 22 Feb 2020 08:20:19 -0500 Subject: [PATCH 1258/2682] Re-enable swish-0.10.0.3 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b2e9fe82..20a6a295 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3706,7 +3706,7 @@ packages: - qm-interpolated-string "Douglas Burke @DougBurke": - - swish < 0 # via base-4.13.0.0 + - swish - hvega - ihaskell-hvega < 0 From 9fd10d4c09ae2e101e92e6309064ee97d85b3978 Mon Sep 17 00:00:00 2001 From: Ziyang Liu Date: Sat, 22 Feb 2020 08:40:27 -0800 Subject: [PATCH 1259/2682] add multi-containers --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index b2e9fe82..6c25d1fb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4166,6 +4166,9 @@ packages: - amqp-utils - magic + "Ziyang Liu @zliu41": + - multi-containers + "Grandfathered dependencies": - network - Boolean From 0fd01b68622bf3fbaa2ee5daa19764cbcf805ff7 Mon Sep 17 00:00:00 2001 From: David Himmelstrup Date: Sun, 23 Feb 2020 17:50:09 +0800 Subject: [PATCH 1260/2682] Add chiphunk. --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index b2e9fe82..beb75fb5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4069,6 +4069,7 @@ packages: - oeis2 "David Himmelstrup @lemmih": + - chiphunk - reanimate-svg - reanimate < 0 # via base-4.13.0.0 From cdbb13b836cf22d789bfdb5f93cb48005eddc409 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 24 Feb 2020 09:20:49 +0100 Subject: [PATCH 1261/2682] selective < 0.4 for #5206 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4acddf94..dd59c806 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4708,6 +4708,9 @@ packages: - servant-swagger < 1.1.8 - aur < 6.3.0 + # https://github.com/commercialhaskell/stackage/issues/5206 + - selective < 0.4 + # end of packages # Package flags are applied to individual packages, and override the values of From af4c071a26d4d0fa4b38d9797ee2d4be44289794 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Mon, 24 Feb 2020 14:59:57 -0800 Subject: [PATCH 1262/2682] Remove upper bound for selective, closes #5206 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b6eb2db6..09b98776 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4710,9 +4710,6 @@ packages: - servant-swagger < 1.1.8 - aur < 6.3.0 - # https://github.com/commercialhaskell/stackage/issues/5206 - - selective < 0.4 - # end of packages # Package flags are applied to individual packages, and override the values of From 774071bce050388cce5c9319b4e6d61b73b97320 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Mon, 24 Feb 2020 15:11:12 -0800 Subject: [PATCH 1263/2682] Add upper bounds for rebase, selective, #5207 --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 09b98776..47616c1a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4710,6 +4710,10 @@ packages: - servant-swagger < 1.1.8 - aur < 6.3.0 + # https://github.com/commercialhaskell/stackage/issues/5207 + - rebase < 1.5 + - selective < 0.4 + # end of packages # Package flags are applied to individual packages, and override the values of From b500563de0c4ba9373a6d4e89f8ca9144def4514 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Mon, 24 Feb 2020 15:40:50 -0800 Subject: [PATCH 1264/2682] Add upper bounds for ghc-lib, ghc-lib-parser, #5208 --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 47616c1a..aba08e5e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4714,6 +4714,10 @@ packages: - rebase < 1.5 - selective < 0.4 + # https://github.com/commercialhaskell/stackage/issues/5208 + - ghc-lib-parser < 8.8.3.20200224 + - ghc-lib < 8.8.3.20200224 + # end of packages # Package flags are applied to individual packages, and override the values of From 503491fdae721d2d061eaf18742c93d1f58b4347 Mon Sep 17 00:00:00 2001 From: David Himmelstrup Date: Tue, 25 Feb 2020 09:21:32 +0800 Subject: [PATCH 1265/2682] Re-enable reanimate --- build-constraints.yaml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index aba08e5e..3420c8ac 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4073,7 +4073,7 @@ packages: "David Himmelstrup @lemmih": - chiphunk - reanimate-svg - - reanimate < 0 # via base-4.13.0.0 + - reanimate "Vitaly Bragilevsky @bravit": - Chart @@ -4710,14 +4710,9 @@ packages: - servant-swagger < 1.1.8 - aur < 6.3.0 - # https://github.com/commercialhaskell/stackage/issues/5207 - - rebase < 1.5 + # https://github.com/commercialhaskell/stackage/issues/5206 - selective < 0.4 - # https://github.com/commercialhaskell/stackage/issues/5208 - - ghc-lib-parser < 8.8.3.20200224 - - ghc-lib < 8.8.3.20200224 - # end of packages # Package flags are applied to individual packages, and override the values of From b4c61c225ac10a05997e25d7aa68c90eacf44009 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Mon, 24 Feb 2020 21:11:48 -0800 Subject: [PATCH 1266/2682] Add HasBigDecimal --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index aba08e5e..8b2c2ac1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4180,6 +4180,7 @@ packages: - FloatingHex - GenericPretty - Glob + - HasBigDecimal - HDBC < 0 # via time-1.9.3 - HDBC-session < 0 # via HDBC - HTTP From 4c68a7fcc9635d4e5aa4cd49cff5fa0ffd0632be Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Tue, 25 Feb 2020 11:08:12 -0800 Subject: [PATCH 1267/2682] Remove upper bounds for rebase, closes #5207 --- build-constraints.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8b2c2ac1..3a91b8f8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4711,10 +4711,6 @@ packages: - servant-swagger < 1.1.8 - aur < 6.3.0 - # https://github.com/commercialhaskell/stackage/issues/5207 - - rebase < 1.5 - - selective < 0.4 - # https://github.com/commercialhaskell/stackage/issues/5208 - ghc-lib-parser < 8.8.3.20200224 - ghc-lib < 8.8.3.20200224 From 90ec06aa102837fb1e9d77a256bd728220f0fcd7 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Tue, 25 Feb 2020 11:13:15 -0800 Subject: [PATCH 1268/2682] Remove upper bounds for ghc-lib, closes #5208 --- build-constraints.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3a91b8f8..cbaed472 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4711,10 +4711,6 @@ packages: - servant-swagger < 1.1.8 - aur < 6.3.0 - # https://github.com/commercialhaskell/stackage/issues/5208 - - ghc-lib-parser < 8.8.3.20200224 - - ghc-lib < 8.8.3.20200224 - # end of packages # Package flags are applied to individual packages, and override the values of From 90aad46e899a5951b304e66129bac22830749b55 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Tue, 25 Feb 2020 11:49:23 -0800 Subject: [PATCH 1269/2682] Skip tests for primitive-extras, #5210 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index cbaed472..7de54372 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5109,6 +5109,7 @@ skipped-tests: - config-ini # https://github.com/aisamanra/config-ini/issues/22 - polysemy-plugin # https://github.com/commercialhaskell/stackage/issues/4733 - persistent-typed-db # https://github.com/parsonsmatt/persistent-typed-db/pull/7 + - primitive-extras # https://github.com/commercialhaskell/stackage/issues/5210 # Runtime issues - blank-canvas # Never finishes https://github.com/ku-fpg/blank-canvas/issues/73 From d6f2820a3fca1acc16c38c1ecacb3f5964de19d5 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Thu, 27 Feb 2020 17:09:50 -0800 Subject: [PATCH 1270/2682] Add upper bound for small-bytearray-builder, #5211 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2a536023..63916965 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4711,6 +4711,9 @@ packages: - servant-swagger < 1.1.8 - aur < 6.3.0 + # https://github.com/commercialhaskell/stackage/issues/5211 + - small-bytearray-builder < 0.3.4 + # end of packages # Package flags are applied to individual packages, and override the values of From 5914906872a1484d887584810d965a2ec7bfb45f Mon Sep 17 00:00:00 2001 From: Travis Whitaker Date: Thu, 27 Feb 2020 17:24:51 -0800 Subject: [PATCH 1271/2682] Add data-compat, deepseq-instances. --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index e231798b..ed31a24c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3093,6 +3093,8 @@ packages: - cpuinfo - lmdb - rdf + - data-compat + - deepseq-instances "Michael Swan @michael-swan": - pcf-font From 821492ace7841cfbd1ab25322e737a1af9b7d4e5 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Thu, 27 Feb 2020 17:36:39 -0800 Subject: [PATCH 1272/2682] Expect test failure for dhall-yaml, #5212 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 63916965..3affb828 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5492,6 +5492,9 @@ expected-test-failures: - cursor-gen - genvalidity-mergeful - genvalidity-mergeless + + # https://github.com/commercialhaskell/stackage/issues/5212 + - dhall-yaml # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 00ef782af0cc8b7ddb6d7055fc856211267de001 Mon Sep 17 00:00:00 2001 From: Sibi Prabakaran Date: Sun, 1 Mar 2020 12:33:15 +0530 Subject: [PATCH 1273/2682] Add streamly-bytestring --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 85d207a4..5f0d6811 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -741,6 +741,7 @@ packages: - shelly - persistent-redis < 0 # GHC 8.4 via hedis - fakedata + - streamly-bytestring "haskell-openal": - OpenAL From 1ee4892814daa59cb9eb52bb44ecc0747a2aa7f1 Mon Sep 17 00:00:00 2001 From: Maxim Koltsov Date: Sun, 1 Mar 2020 12:13:10 +0300 Subject: [PATCH 1274/2682] Enable data-msgpack and related packages --- build-constraints.yaml | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 85d207a4..8abb6640 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2760,10 +2760,10 @@ packages: - yes-precure5-command - th-strict-compat - main-tester - - skews < 0 # via websockets - - wss-client < 0 - - network-messagepack-rpc < 0 # via data-msgpack - - network-messagepack-rpc-websocket < 0 + - skews + - wss-client + - network-messagepack-rpc + - network-messagepack-rpc-websocket - unicode-show - deriveJsonNoPrefix @@ -3272,7 +3272,7 @@ packages: - perf < 0 "Iphigenia Df @iphydf": - - data-msgpack < 0 # via data-msgpack-types + - data-msgpack # - network-msgpack-rpc # conduit 1.3 "Dino Morelli @dino-": @@ -3454,7 +3454,7 @@ packages: "Pavel Yakovlev @zmactep": - hasbolt < 0 # via hex - uniprot-kb - - mmtf < 0 # via data-msgpack + - mmtf < 0 # MonadFail "Christopher A. Gorski @cgorski": - general-games @@ -4289,7 +4289,6 @@ packages: - data-inttrie - data-lens-light - data-memocombinators - - data-msgpack-types < 0 # MonadFail - data-msgpack-types - data-serializer - data-textual @@ -5071,7 +5070,6 @@ skipped-tests: - servant-cassava - siggy-chardust - simple-vec3 - - skews - skylighting-core - speedy-slice - static-text @@ -5497,6 +5495,9 @@ expected-test-failures: # https://github.com/commercialhaskell/stackage/issues/5212 - dhall-yaml + + # https://github.com/iij-ii/direct-hs/issues/100 + - skews # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 805214e4ccad2e1c8de6e5a2cb1ffbf388828892 Mon Sep 17 00:00:00 2001 From: Marek Fajkus Date: Sun, 1 Mar 2020 16:11:42 +0100 Subject: [PATCH 1275/2682] Add aeson-combinators --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 85d207a4..5b9e166a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -92,6 +92,7 @@ packages: "Marek Fajkus @turboMaCk": - wai-enforce-https + - aeson-combinators "Fernando Freire @dogonthehorizon": [] From 6832810cfc00d680134ffc77584a34a6044864ac Mon Sep 17 00:00:00 2001 From: Pavan Rikhi Date: Mon, 2 Mar 2020 00:46:45 -0500 Subject: [PATCH 1276/2682] Add immortal-queue --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 85d207a4..0bd7f88f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4053,6 +4053,7 @@ packages: - sitemap-gen - tasty-wai - stack-templatizer + - immortal-queue "David Baynard @dbaynard": - time-qq < 0 # see christian-marie/time-qq#3 From 172f397fbfe18ec16a39cf8c9b1fb6eeb9e2ce60 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Sun, 1 Mar 2020 22:17:59 -0800 Subject: [PATCH 1277/2682] Add upper bound for unliftio-core, #5218 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 85d207a4..65c78785 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4716,6 +4716,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5211 - small-bytearray-builder < 0.3.4 + # https://github.com/commercialhaskell/stackage/issues/5218 + - unliftio-core < 0.2 + # end of packages # Package flags are applied to individual packages, and override the values of From d64b69a2e9a5db85d4811de0367eeb8f97590079 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Sun, 1 Mar 2020 22:22:58 -0800 Subject: [PATCH 1278/2682] Add upper bounds for hledger packages, #5219 --- build-constraints.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 65c78785..c26e1966 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4719,6 +4719,12 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5218 - unliftio-core < 0.2 + # https://github.com/commercialhaskell/stackage/issues/5219 + - hledger-lib < 1.17 + - hledger < 1.17 + - hledger-ui < 1.17 + - hledger-web < 1.17 + # end of packages # Package flags are applied to individual packages, and override the values of From aa152d8378539e7141f3230d913e5c6e07ebebba Mon Sep 17 00:00:00 2001 From: Maxim Koltsov Date: Mon, 2 Mar 2020 14:19:22 +0300 Subject: [PATCH 1279/2682] Enable hasbolt --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 40355a15..c641820c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3454,7 +3454,7 @@ packages: - github-webhooks < 0 # unknown "Pavel Yakovlev @zmactep": - - hasbolt < 0 # via hex + - hasbolt - uniprot-kb - mmtf < 0 # MonadFail From 33e76df11e3774ced3a98433a1b00f2448d27cd3 Mon Sep 17 00:00:00 2001 From: David Hewson Date: Mon, 2 Mar 2020 18:31:34 +0000 Subject: [PATCH 1280/2682] Re-enabled alarmclock and bank-holidays-england I'm now joint maintainer on both these packages and have released new versions that work on 8.8 --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 40355a15..de240be2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1457,8 +1457,8 @@ packages: - shake-language-c < 0 # via fclabels "David Turner @davecturner": - - alarmclock < 0 # via base-4.13.0.0 - - bank-holidays-england < 0 # via base-4.13.0.0 + - alarmclock + - bank-holidays-england "Haskell Servant ": - servant From ee098f767f46fcf17fd956a0e67dae37b5ddb519 Mon Sep 17 00:00:00 2001 From: Ziyang Liu Date: Tue, 3 Mar 2020 08:13:22 -0800 Subject: [PATCH 1281/2682] Add indexed-containers, math-extras and min-max-pqueue --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index eb17c913..12eefcee 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4175,6 +4175,9 @@ packages: - magic "Ziyang Liu @zliu41": + - indexed-containers + - math-extras + - min-max-pqueue - multi-containers "Grandfathered dependencies": From 88cbb5dae9445d2fcb3ee01a847f55f32d952322 Mon Sep 17 00:00:00 2001 From: Matt Parsons Date: Tue, 3 Mar 2020 09:24:10 -0700 Subject: [PATCH 1282/2682] Add hspec-hedgehog --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index eb17c913..54900c00 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2301,6 +2301,7 @@ packages: - persistent-typed-db - persistent-qq - persistent-pagination + - hspec-hedgehog "Matthew Pickering @mpickering": - refact From a643107c7828e8cbc7e032390a358b03810daf48 Mon Sep 17 00:00:00 2001 From: Matt Parsons Date: Tue, 3 Mar 2020 11:28:16 -0700 Subject: [PATCH 1283/2682] Remove persistent-typed-db from skipped-tests Issue is fixed in 0.1.0.1 --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index eb17c913..f2dfd401 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5123,7 +5123,6 @@ skipped-tests: - cron # Could not deduce (SOP.All (SOP.All Arbitrary) xss) arising from a use of ‘SOP.hcpure’ - config-ini # https://github.com/aisamanra/config-ini/issues/22 - polysemy-plugin # https://github.com/commercialhaskell/stackage/issues/4733 - - persistent-typed-db # https://github.com/parsonsmatt/persistent-typed-db/pull/7 - primitive-extras # https://github.com/commercialhaskell/stackage/issues/5210 # Runtime issues From 8658f5e75b1506802b2bfc584d592eb8a5840f8e Mon Sep 17 00:00:00 2001 From: Matt Parsons Date: Sun, 16 Feb 2020 10:05:19 -0700 Subject: [PATCH 1284/2682] Add hedgehog-fakedata --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index fd96d631..1d3d5d1d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2289,6 +2289,7 @@ packages: - liboath-hs < 0 # via inline-c-0.8.0.1 - servant-quickcheck < 0 - esqueleto + - hedgehog-fakedata - persistent-typed-db - persistent-qq - persistent-pagination From 4c16c404604085509d82cdc230c83766ff1a5cf9 Mon Sep 17 00:00:00 2001 From: Daniel Casanueva Date: Wed, 4 Mar 2020 13:36:58 +0100 Subject: [PATCH 1285/2682] Bring back HaTeX to stackage --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index eb17c913..b210e2e8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1045,7 +1045,7 @@ packages: - Clipboard - grouped-list < 0 # via base-4.13.0.0 - haskintex < 0 # via hint - - HaTeX < 0 # MonadFail + - HaTeX - include-file - matrix - pcre-light From 7303a94c94c5337d000317aa926f8c5d2db51b74 Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Fri, 6 Mar 2020 14:12:48 +0000 Subject: [PATCH 1286/2682] mini-egison, extra upper bounds --- build-constraints.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index eb17c913..2f39d3c9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4137,6 +4137,8 @@ packages: "Satoshi Egi @egisatoshi": - egison - mini-egison + # - egison-pattern-src + # - egison-pattern-src-th-mode "Travis Cardwell @TravisCardwell": - ttc @@ -4727,6 +4729,13 @@ packages: - hledger-ui < 1.17 - hledger-web < 1.17 + # https://github.com/commercialhaskell/stackage/issues/new + - mini-egison <1.0.0 + + # + - extra < 1.7 + + # end of packages # Package flags are applied to individual packages, and override the values of From 08aa99de1f17a53d62584e306f8377c5055d6cd5 Mon Sep 17 00:00:00 2001 From: Vaclav Svejcar Date: Fri, 6 Mar 2020 20:47:39 +0100 Subject: [PATCH 1287/2682] Add headroom package --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2f39d3c9..6e82f717 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4178,6 +4178,9 @@ packages: "Ziyang Liu @zliu41": - multi-containers + + "Vaclav Svejcar @vaclavsvejcar": + - headroom "Grandfathered dependencies": - network From 3ec7911c97dd7366321aafcf9204e333861ed92d Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Fri, 6 Mar 2020 16:25:56 -0800 Subject: [PATCH 1288/2682] allow hledger 1.17 hledger-iadd-1.3.10 has a revision for it now. --- build-constraints.yaml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2f39d3c9..4cd202ad 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4723,12 +4723,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5218 - unliftio-core < 0.2 - # https://github.com/commercialhaskell/stackage/issues/5219 - - hledger-lib < 1.17 - - hledger < 1.17 - - hledger-ui < 1.17 - - hledger-web < 1.17 - # https://github.com/commercialhaskell/stackage/issues/new - mini-egison <1.0.0 From 7ab170b5beb416787d1adb69728b730f2dee8af9 Mon Sep 17 00:00:00 2001 From: Robert Vollmert Date: Sat, 7 Mar 2020 12:16:30 +0100 Subject: [PATCH 1289/2682] Enable configurator-pg. Upper bound on base has been relaxed. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2f39d3c9..2a15ca91 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -68,7 +68,7 @@ packages: - small-bytearray-builder "Robert Vollmert @robx": - - configurator-pg < 0 # via base-4.13.0.0 + - configurator-pg "Sandy Maguire @isovector": - ecstasy From c5e7f511b8b54ebd8294798f07fa5bdccc54b225 Mon Sep 17 00:00:00 2001 From: Robert Vollmert Date: Sat, 7 Mar 2020 12:56:26 +0100 Subject: [PATCH 1290/2682] Enable interpolatedstring-perl6. This was disabled in 33c842ddf91a199e5 as a miscellaneous GHC 8.8- related build failure. It builds fine for me now with nightly. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2f39d3c9..4a840f27 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1367,7 +1367,7 @@ packages: - here - hlibgit2 # - gitlib-libgit2 # via gitlib: https://github.com/jwiegley/gitlib/issues/72 - - interpolatedstring-perl6 < 0 + - interpolatedstring-perl6 - iproute - missing-foreign - MissingH < 0 # via array-0.5.4.0 & base-4.13.0.0 & containers-0.6.2.1 & directory-1.3.3.2 & filepath-1.4.2.1 & old-time-1.1.0.3 & process-1.6.5.1 & time-1.9.3 & unix-2.7.2.2 From 10041be07c6b809b8f57dd1c007b6095fcee9633 Mon Sep 17 00:00:00 2001 From: Robert Vollmert Date: Sat, 7 Mar 2020 12:58:45 +0100 Subject: [PATCH 1291/2682] Enable string-interpolate. It was marked blocked by interpolatedstring-perl6, which is reenabled. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4a840f27..520e5f62 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -85,7 +85,7 @@ packages: - loopbreaker "William Yao @williamyaoh": - - string-interpolate < 0 # via interpolatedstring-perl6 + - string-interpolate "Roel van Dijk @roelvandijk": - terminal-progress-bar From 7df8cfccd8736533bc4a7964498eee3c32c7ca73 Mon Sep 17 00:00:00 2001 From: Robert Vollmert Date: Sat, 7 Mar 2020 13:50:35 +0100 Subject: [PATCH 1292/2682] Enable hspec-wai-json. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2f39d3c9..1cce248e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -921,7 +921,7 @@ packages: - hspec-core - hspec-discover - hspec-wai - - hspec-wai-json < 0 # via hspec-wai + - hspec-wai-json - aeson-qq - interpolate - doctest From d86c669576a09eb04704480178857efa2268a977 Mon Sep 17 00:00:00 2001 From: Dmitry Ivanov Date: Sat, 7 Mar 2020 20:48:45 +0100 Subject: [PATCH 1293/2682] Add more opentelemetry packages, remove abandoned yi packages --- build-constraints.yaml | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2f39d3c9..27c76fc1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2419,24 +2419,15 @@ packages: - io-storage - oo-prototypes - opentelemetry + - opentelemetry-wai + - opentelemetry-http-client + - opentelemetry-lightstep - planb-token-introspection - pointedlist - unordered-intmap - word-trie - xdg-basedir - - yi-core < 0 # GHC 8.4 build failure - - yi-frontend-vty < 0 # GHC 8.4 via yi-core - - yi-fuzzy-open < 0 # GHC 8.4 via yi-core - - yi-ireader < 0 # GHC 8.4 via yi-core - - yi-keymap-cua < 0 # GHC 8.4 via yi-core - - yi-keymap-emacs < 0 # GHC 8.4 via yi-core - - yi-keymap-vim < 0 # GHC 8.4 via yi-core - - yi-language < 0 # via regex-base-0.94.0.0 - - yi-misc-modes < 0 # GHC 8.4 via yi-core - - yi-mode-haskell < 0 # GHC 8.4 via yi-core - - yi-mode-javascript < 0 # GHC 8.4 via yi-core - yi-rope - - yi-snippet < 0 # GHC 8.4 via yi-core "Tobias Bexelius @tobbebex": - GPipe < 0 # GHC 8.4 via base-4.11.0.0 From b1899b0bc0704259462114285f31f5b73d29b287 Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Sun, 8 Mar 2020 14:56:47 +0000 Subject: [PATCH 1294/2682] rank2classes-1.4, fb-2.0.1 (bounds) --- build-constraints.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2f39d3c9..f94ac424 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4722,6 +4722,7 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5218 - unliftio-core < 0.2 + - fb < 2.0.1 # https://github.com/commercialhaskell/stackage/issues/5219 - hledger-lib < 1.17 @@ -4732,9 +4733,11 @@ packages: # https://github.com/commercialhaskell/stackage/issues/new - mini-egison <1.0.0 - # + # https://github.com/commercialhaskell/stackage/issues/5228 - extra < 1.7 + # https://github.com/commercialhaskell/stackage/issues/5236 + - rank2classes < 1.4 # end of packages From 8c0036bcfb5020ebd20c5fb4fc8f4247f35f4044 Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Sun, 8 Mar 2020 15:08:32 +0000 Subject: [PATCH 1295/2682] remove bounds constraints on doclayout, doctemplates, pandoc (#5181) --- build-constraints.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f94ac424..bd181312 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2833,12 +2833,12 @@ packages: - texmath - highlighting-kate - skylighting - - pandoc-types > 1.19 # https://github.com/fpco/stackage/issues/2223 + - pandoc-types - zip-archive - - doclayout < 0.3 # via pandoc-2.9.1.1 - - doctemplates < 0.8.1 # via doclayout + - doclayout + - doctemplates - emojis - - pandoc < 2.9.2 # https://github.com/commercialhaskell/stackage/issues/5181 + - pandoc - pandoc-citeproc - HsYAML-aeson - ipynb #< 0 # via aeson-diff From 81ae77fce9055cfa74844973589eb8b452484774 Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Sun, 8 Mar 2020 18:06:24 +0000 Subject: [PATCH 1296/2682] first-class-families-0.8.0.0 bounds (#5237) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index bd181312..f0ecea98 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -452,7 +452,7 @@ packages: "Li-yao Xia @Lysxia": - boltzmann-samplers - - first-class-families + - first-class-families < 0.8.0.0 - generic-data - generic-data-surgery < 0 # via generic-data - generic-random From 457ac7102771db9e41dccdaf6521db7647f75b9f Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Mon, 9 Mar 2020 09:38:34 -0700 Subject: [PATCH 1297/2682] Correct instructions for rerogranized dirs --- CURATORS.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CURATORS.md b/CURATORS.md index be2c7d93..0fa768d2 100644 --- a/CURATORS.md +++ b/CURATORS.md @@ -335,8 +335,8 @@ LTS minor bumps typically are run on Sundays. * You can detect the problem by running `df`. If you see that `/` is out of space, we have a problem * If you see that `/var/stackage/` is out of space, you can: - * `rm -r /var/stackage/stackage/automated/lts*/work/unpack-dir/unpacked/` - * `rm -r /var/stackage/stackage/automated/nightly/work/unpack-dir/unpacked/` + * `rm -r /var/stackage/stackage/automated/work/lts*/unpack-dir/unpacked/` + * `rm -r /var/stackage/stackage/automated/work/nightly/unpack-dir/unpacked/` * (outdated) There are many temp files inside `/home/ubuntu/stackage-server-cron` that can be cleared out occasionally * (outdated) You can then manually run `/home/ubuntu/stackage-server-cron.sh`, or wait for the cron job to do it From cc033e384f368d2c295719579453733fa0b7b43d Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Mon, 9 Mar 2020 09:43:49 -0700 Subject: [PATCH 1298/2682] Add bytestring-mmap --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f0ecea98..70906053 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -477,6 +477,7 @@ packages: - matrix-market-attoparsec - mwc-probability-transition < 0 # via logging-effect - xeno + - bytestring-mmap # required by xeno - datasets < 0 # via req - lucid-extras - rigel-viz From 5e5dd7c8b1430eb2982ef48f839a8168d45b0483 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Mon, 9 Mar 2020 10:21:20 -0700 Subject: [PATCH 1299/2682] Upgrade to ghc 8.8.3, see #5238 --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 46ec8247..63d033f1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1,6 +1,6 @@ ghc-major-version: "8.8" # new curator is supposed to use exact GHC version -ghc-version: "8.8.2" +ghc-version: "8.8.3" # This affects which version of the Cabal file format we allow. We # should ensure that this is always no greater than the version @@ -518,7 +518,7 @@ packages: "Pranay Sashank @pranaysashank": - fusion-plugin-types - - fusion-plugin + - fusion-plugin < 0 # ghc-8.8.3 "Aleksey Uimanov @s9gf4ult": # - postgresql-query # haskell-src-exts via derive @@ -3862,7 +3862,7 @@ packages: "Andre Van Der Merwe @andrevdm": - bhoogle < 0 - - hyraxAbif + - hyraxAbif < 0 # directory-1.3.6.0 (ghc-8.8.3) "David Millar-Durrant @DavidM-D": - indexed-list-literals From dbdc2ea715d280a2cccd1555662a094c44b239ff Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Tue, 10 Mar 2020 09:23:39 -0700 Subject: [PATCH 1300/2682] Add xeno to expected test failures per ocramz/xeno#37 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 63d033f1..b727bb05 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5377,6 +5377,7 @@ expected-test-failures: - crypto-pubkey # https://github.com/vincenthz/hs-crypto-pubkey/issues/23 - doctest-discover # 0.1.0.9 https://github.com/karun012/doctest-discover/issues/22 - graylog # 0.1.0.1 https://github.com/fpco/stackage/pull/1254 + - xeno # 0.4 https://github.com/ocramz/xeno/issues/37 # Assertion failures, these can be real bugs or just limitations # in the test cases. From 1d87fb3ef2799f998c2be4cf82b776ef393a459c Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 11 Mar 2020 10:22:34 -0700 Subject: [PATCH 1301/2682] Revert "Add xeno to expected test failures per ocramz/xeno#37" This reverts commit dbdc2ea715d280a2cccd1555662a094c44b239ff. --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b727bb05..63d033f1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5377,7 +5377,6 @@ expected-test-failures: - crypto-pubkey # https://github.com/vincenthz/hs-crypto-pubkey/issues/23 - doctest-discover # 0.1.0.9 https://github.com/karun012/doctest-discover/issues/22 - graylog # 0.1.0.1 https://github.com/fpco/stackage/pull/1254 - - xeno # 0.4 https://github.com/ocramz/xeno/issues/37 # Assertion failures, these can be real bugs or just limitations # in the test cases. From 9944d59b85fed6a06e2d65ca2efa059b173755e0 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 11 Mar 2020 10:27:46 -0700 Subject: [PATCH 1302/2682] Expect test failure per robx/configurator-pg#9 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 63d033f1..4c144ba9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5374,6 +5374,7 @@ expected-test-failures: # Missing test files in sdist # Hopefully gets fixed in the next release... + - configurator-pg # 0.2.0 https://github.com/robx/configurator-pg/issues/9 - crypto-pubkey # https://github.com/vincenthz/hs-crypto-pubkey/issues/23 - doctest-discover # 0.1.0.9 https://github.com/karun012/doctest-discover/issues/22 - graylog # 0.1.0.1 https://github.com/fpco/stackage/pull/1254 From d18878a7c72f91b13a900cc783303195b78effc1 Mon Sep 17 00:00:00 2001 From: Robert Vollmert Date: Thu, 12 Mar 2020 11:07:19 +0100 Subject: [PATCH 1303/2682] Enable tests for configurator-pg Version 0.2.1 has been released adding the missing files. --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4c144ba9..63d033f1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5374,7 +5374,6 @@ expected-test-failures: # Missing test files in sdist # Hopefully gets fixed in the next release... - - configurator-pg # 0.2.0 https://github.com/robx/configurator-pg/issues/9 - crypto-pubkey # https://github.com/vincenthz/hs-crypto-pubkey/issues/23 - doctest-discover # 0.1.0.9 https://github.com/karun012/doctest-discover/issues/22 - graylog # 0.1.0.1 https://github.com/fpco/stackage/pull/1254 From 2072a84d03d2ddfcfc89d9bdfb1410684e4a1341 Mon Sep 17 00:00:00 2001 From: Pavan Rikhi Date: Fri, 13 Mar 2020 05:56:07 -0400 Subject: [PATCH 1304/2682] Add wai-middleware-clacks GNU Terry Pratchett --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4c144ba9..a811185f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4050,6 +4050,7 @@ packages: - tasty-wai - stack-templatizer - immortal-queue + - wai-middleware-clacks "David Baynard @dbaynard": - time-qq < 0 # see christian-marie/time-qq#3 From cfa2242a4e68a48aae65dfddf3132bfef64cb732 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Fri, 13 Mar 2020 16:25:28 -0400 Subject: [PATCH 1305/2682] Add constraint "jira-wiki-markup < 1.1" per #5241 --- build-constraints.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4c144ba9..b547e152 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4175,7 +4175,7 @@ packages: - math-extras - min-max-pqueue - multi-containers - + "Vaclav Svejcar @vaclavsvejcar": - headroom @@ -4733,6 +4733,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5236 - rank2classes < 1.4 + # https://github.com/commercialhaskell/stackage/issues/5241 + - jira-wiki-markup < 1.1 + # end of packages # Package flags are applied to individual packages, and override the values of From afddc5219138b319f862e65e1d28e4394f26b5ea Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Fri, 13 Mar 2020 16:51:11 -0400 Subject: [PATCH 1306/2682] Block packages that are blocking upgrade, see #5161 --- build-constraints.yaml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 259bf753..fafebffe 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2934,8 +2934,8 @@ packages: - antiope-sns - antiope-sqs - arbor-lru-cache - - arbor-postgres - - asif + - arbor-postgres < 0 # generic-lens 2.0.0.0 + - asif < 0 # hw-ip due to generic-lens 2.0.0.0 - avro - bits-extra - hw-balancedparens @@ -2943,28 +2943,28 @@ packages: - hw-conduit - hw-conduit-merges - hw-diagnostics - - hw-dsv - - hw-eliasfano + - hw-dsv < 0 # generic-lens 2.0.0.0 + - hw-eliasfano < 0 # generic-lens 2.0.0.0 - hw-excess - hw-fingertree - hw-fingertree-strict - hw-hedgehog - hw-hspec-hedgehog - hw-int - - hw-ip - - hw-json - - hw-json-simple-cursor - - hw-json-standard-cursor + - hw-ip < 0 # generic-lens 2.0.0.0 + - hw-json < 0 # generic-lens 2.0.0.0 + - hw-json-simple-cursor < 0 # generic-lens 2.0.0.0 + - hw-json-standard-cursor < 0 # generic-lens 2.0.0.0 - hw-mquery - - hw-packed-vector + - hw-packed-vector < 0 # generic-lens 2.0.0.0 - hw-parser - hw-prim - - hw-rankselect + - hw-rankselect < 0 # generic-lens 2.0.0.0 - hw-rankselect-base - - hw-simd + - hw-simd < 0 # hw-rankselect due to generic-lens 2.0.0.0 - hw-streams - - hw-succinct - - hw-xml + - hw-succinct < 0 # hw-rankselect due to generic-lens 2.0.0.0 + - hw-xml < 0 # generic-lens 2.0.0.0 "George Wilson @gwils": - hedgehog-fn From 117ac9f8e75d4f2c5717b480f06985940f440298 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Fri, 13 Mar 2020 17:20:23 -0400 Subject: [PATCH 1307/2682] Restore broadcast-chan --- build-constraints.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index fafebffe..f3ac309f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1363,7 +1363,6 @@ packages: "Emanuel Borsboom @borsboom": - BoundedChan - - broadcast-chan < 0 # compilation failure - fuzzcheck - here - hlibgit2 @@ -5629,7 +5628,6 @@ skipped-benchmarks: - bit-stream - bitset-word8 - blake2 - - broadcast-chan - bv-little - bytestring-conversion - case-insensitive From e6c83a73adcea112a965f8c87bc9a685f887c0fd Mon Sep 17 00:00:00 2001 From: Yo Eight Date: Sat, 14 Mar 2020 00:36:55 +0100 Subject: [PATCH 1308/2682] Add eventstore back. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f3ac309f..056a6201 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2667,7 +2667,7 @@ packages: - pusher-http-haskell "Yorick Laupa yo.eight@gmail.com @YoEight": - - eventstore < 0 # via dns + - eventstore - dotnet-timespan - eventsource-api < 0 # GHC 8.4 build failure - eventsource-geteventstore-store < 0 # GHC 8.4 via protolude From 5bbfa5c66c1c07e9a02772d4541bb20b4a7f7476 Mon Sep 17 00:00:00 2001 From: Sibi Prabakaran Date: Sat, 14 Mar 2020 15:02:30 +0530 Subject: [PATCH 1309/2682] fb package: Un-constrain fb to use latest version --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f3ac309f..12732ed1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4724,7 +4724,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5218 - unliftio-core < 0.2 - - fb < 2.0.1 # https://github.com/commercialhaskell/stackage/issues/new - mini-egison <1.0.0 From 4c9dceb68d8c65b1ed1fcb52dd36f9b60c050d2f Mon Sep 17 00:00:00 2001 From: Sibi Prabakaran Date: Sat, 14 Mar 2020 15:04:01 +0530 Subject: [PATCH 1310/2682] yesod-fb - Remove the constraint to allow newer versions --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f3ac309f..89e7d7d4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -983,7 +983,7 @@ packages: # - serversession-frontend-yesod # conduit 1.3, yesod 1.6 # - thumbnail-plus # https://github.com/prowdsponsor/thumbnail-plus/issues/5 - yesod-auth-fb - - yesod-fb < 0 # via yesod-core + - yesod-fb "Alexander Altman @pthariensflame": # Maintaining on behalf of @roelvandijk: From 7537118a727e1aaa466b2e4f38a7ca9f0450cfb5 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sun, 15 Mar 2020 21:43:38 -0700 Subject: [PATCH 1311/2682] Add more packages under @khibino --- build-constraints.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f3ac309f..89fa819c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2886,6 +2886,9 @@ packages: - json-rpc-generic - protocol-radius - protocol-radius-test + - th-bang-compat + - th-constraint-compat + - persistable-record "wren romano @wrengr": - bytestring-lexing @@ -4447,7 +4450,6 @@ packages: - parallel - path-pieces - pcg-random - - persistable-record - pipes-bytestring - pipes-group - placeholders From 67341a822a3f5036f5f21a6838f999a103f38f4e Mon Sep 17 00:00:00 2001 From: Eric Conlon Date: Mon, 16 Mar 2020 12:10:00 -0700 Subject: [PATCH 1312/2682] Re-enable ekg with 8.8 compatibility (ekg-0.4.0.15) --- build-constraints.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 89fa819c..1bfaeac0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1308,9 +1308,6 @@ packages: - wai-middleware-caching - wai-middleware-caching-lru < 0 - wai-middleware-caching-redis < 0 # GHC 8.4 via hedis - # not package maintainer - - ekg < 0 # via base-4.13.0.0 - - ekg-json < 0 # via base-4.13.0.0 "Paul Rouse @paul-rouse": - mysql @@ -1920,7 +1917,6 @@ packages: - wuss - bmp # @benl23x5 - - ekg-statsd < 0 # @tibbe via base-4.13.0.0 & time-1.9.3 - gpolyline # @fegu - postgresql-simple-migration < 0 # via time-1.9.3 # @ameingast - statestack @@ -2165,7 +2161,6 @@ packages: - data-ordlist - digits - dns - - ekg-core < 0 # via base-4.13.0.0 - friday < 0 - friday-juicypixels < 0 - hbeanstalk < 0 # sClose not in scope @@ -4151,6 +4146,11 @@ packages: - climb - heart-core - linenoise + # Maintainership with @23Skidoo + - ekg + - ekg-core + - ekg-json + - ekg-statsd "Jorah Gao @gqk007": - aeson-default From b0b07e16b639181bbac641875d1068b491de9833 Mon Sep 17 00:00:00 2001 From: Eric Conlon Date: Tue, 17 Mar 2020 10:47:27 -0700 Subject: [PATCH 1313/2682] enable monad-metrics --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1bfaeac0..9b93baa6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2287,7 +2287,7 @@ packages: "Matt Parsons @parsonsmatt": - monad-logger-prefix - - monad-metrics < 0 # via ekg-core + - monad-metrics # - ekg-cloudwatch # http-conduit 2.3 via amazonka - smtp-mail < 0 # https://github.com/jhickner/smtp-mail/issues/24#issuecomment-499601949 - liboath-hs < 0 # via inline-c-0.8.0.1 From 52718334ae60827a58652d158f2f3eecd606e667 Mon Sep 17 00:00:00 2001 From: Sasha Bogicevic Date: Tue, 17 Mar 2020 22:19:13 +0100 Subject: [PATCH 1314/2682] Add plaid package --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f3ac309f..62be86f8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -9,6 +9,9 @@ cabal-format-version: "2.4" # Constraints for brand new builds packages: + "Sasha Bogicevic @v0d1ch": + - plaid + "Geoffrey Mainland @mainland": - exception-mtl - exception-transformers From 12c0dc03a198c7235c2eb86b26f91d1b19ed02af Mon Sep 17 00:00:00 2001 From: Alexey Kuleshevich Date: Wed, 18 Mar 2020 07:38:01 +0300 Subject: [PATCH 1315/2682] Add new package pvar --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6784fcbd..89fdcfd0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3356,6 +3356,7 @@ packages: - Color - safe-decimal - flush-queue + - pvar "Hans-Peter Deifel @hpdeifel": - hledger-iadd From 1e3798aed27dd8425756b665236371dac3f17ae2 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 18 Mar 2020 15:01:44 +0800 Subject: [PATCH 1316/2682] re-enable hyraxAbif (#5238) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 00e3fb01..02b95ca6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3865,7 +3865,7 @@ packages: "Andre Van Der Merwe @andrevdm": - bhoogle < 0 - - hyraxAbif < 0 # directory-1.3.6.0 (ghc-8.8.3) + - hyraxAbif "David Millar-Durrant @DavidM-D": - indexed-list-literals From 32e0a14d785c3187202808ad2a70767396dd8518 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 18 Mar 2020 15:35:41 +0800 Subject: [PATCH 1317/2682] revert "extra < 1.7" (#5228) --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 02b95ca6..b8d1301f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4734,9 +4734,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/new - mini-egison <1.0.0 - # https://github.com/commercialhaskell/stackage/issues/5228 - - extra < 1.7 - # https://github.com/commercialhaskell/stackage/issues/5236 - rank2classes < 1.4 From eaabf0fb100c210722e7fad11881ce231f9c1ed5 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 18 Mar 2020 15:59:44 +0800 Subject: [PATCH 1318/2682] Revert "revert "extra < 1.7" (#5228)" intro still has low bound This reverts commit 32e0a14d785c3187202808ad2a70767396dd8518. --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index b8d1301f..02b95ca6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4734,6 +4734,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/new - mini-egison <1.0.0 + # https://github.com/commercialhaskell/stackage/issues/5228 + - extra < 1.7 + # https://github.com/commercialhaskell/stackage/issues/5236 - rank2classes < 1.4 From 9ed4ffedb929a2a5b5e42a02d3cb51257d14370f Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 18 Mar 2020 16:05:40 +0800 Subject: [PATCH 1319/2682] enable mini-egison and egison-pattern-src* (#5227) --- build-constraints.yaml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 02b95ca6..dc39a609 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4135,8 +4135,8 @@ packages: "Satoshi Egi @egisatoshi": - egison - mini-egison - # - egison-pattern-src - # - egison-pattern-src-th-mode + - egison-pattern-src + - egison-pattern-src-th-mode "Travis Cardwell @TravisCardwell": - ttc @@ -4731,9 +4731,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5218 - unliftio-core < 0.2 - # https://github.com/commercialhaskell/stackage/issues/new - - mini-egison <1.0.0 - # https://github.com/commercialhaskell/stackage/issues/5228 - extra < 1.7 From 75049e08337d6ae265f4d9d187c24ab9a3995bf8 Mon Sep 17 00:00:00 2001 From: Veronika Romashkina Date: Wed, 18 Mar 2020 13:14:26 +0000 Subject: [PATCH 1320/2682] Add validation-selective --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index dc39a609..c17a13b4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3620,6 +3620,7 @@ packages: - summoner < 0 # via base-4.13.0.0 - tomland - typerep-map + - validation-selective "Dmitrii Kovanikov @chshersh": - type-errors-pretty From 87231e307cbc0ec932dfb684fa94818f932d2d0f Mon Sep 17 00:00:00 2001 From: Clint Adams Date: Wed, 18 Mar 2020 17:09:22 -0400 Subject: [PATCH 1321/2682] Re-enable ixset-typed and revdeps hOpenPGP and hopenpgp-tools --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index dc39a609..9b193bcb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1184,11 +1184,11 @@ packages: - HandsomeSoup "Clint Adams @clinty": - - hOpenPGP < 0 # via ixset-typed, https://github.com/commercialhaskell/stackage/issues/5175 + - hOpenPGP - openpgp-asciiarmor - MusicBrainz - DAV - - hopenpgp-tools < 0 # hOpenPGP & ixset-typed + - hopenpgp-tools - opensource - debian - cabal-debian @@ -4400,7 +4400,7 @@ packages: - inspection-testing - integer-logarithms - io-streams-haproxy - - ixset-typed < 0 # via safecopy-0.10.0 and template-haskell + - ixset-typed - json < 0 # via base-4.13.0.0 - json-alt - kleene < 0 # via regex-applicative From d38e9bd4994412483ea5fb9e4463265c34a9f5f7 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 19 Mar 2020 19:09:42 +0800 Subject: [PATCH 1322/2682] revert "extra < 1.7" (#5228) --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index dc39a609..fc001634 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4731,9 +4731,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5218 - unliftio-core < 0.2 - # https://github.com/commercialhaskell/stackage/issues/5228 - - extra < 1.7 - # https://github.com/commercialhaskell/stackage/issues/5236 - rank2classes < 1.4 From 51fc543d7e86da238d7cfb2114b73eb97bc40ad1 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 19 Mar 2020 19:12:58 +0800 Subject: [PATCH 1323/2682] higher-leveldb < 0.6.0.0 (#5218) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1750d2b5..44ec989b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4731,6 +4731,7 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5218 - unliftio-core < 0.2 + - higher-leveldb < 0.6.0.0 # https://github.com/commercialhaskell/stackage/issues/5236 - rank2classes < 1.4 From 54b5ce262591370139b30c3b742ff920383c248f Mon Sep 17 00:00:00 2001 From: Pavan Rikhi Date: Thu, 19 Mar 2020 11:15:41 -0400 Subject: [PATCH 1324/2682] Add hledger-stockquotes --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 52ab3ea1..7f3d3f00 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4055,6 +4055,7 @@ packages: - stack-templatizer - immortal-queue - wai-middleware-clacks + - hledger-stockquotes "David Baynard @dbaynard": - time-qq < 0 # see christian-marie/time-qq#3 From 55ded216230e3b5ef7f52d01d4df16e1e9d5bf58 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 20 Mar 2020 13:55:04 +0800 Subject: [PATCH 1325/2682] hopenpgp-tools failed (#5250) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 52ab3ea1..60ebc821 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1188,7 +1188,7 @@ packages: - openpgp-asciiarmor - MusicBrainz - DAV - - hopenpgp-tools + # - hopenpgp-tools # https://github.com/commercialhaskell/stackage/pull/5250 - opensource - debian - cabal-debian From 452bc05b6ce3aef6438f5120ef99472734084ad5 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 20 Mar 2020 14:08:11 +0800 Subject: [PATCH 1326/2682] enable protobuf by skipping testsuite since it depends on hex which doesn't build with base-4.13 --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 60ebc821..2259870a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4473,7 +4473,7 @@ packages: - process-extras - product-isomorphic - project-template - - protobuf < 0 # via hex + - protobuf - pureMD5 - quickcheck-instances - quickcheck-io @@ -5022,6 +5022,7 @@ skipped-tests: - mmtf # via hspec-2.7.0 - next-ref # hspec 2.3 - partial-order # HUnit 1.6 + - protobuf # hex-0.1.2 - psqueues # via QuickCheck-2.12.6.1 - pure-zlib # via QuickCheck-2.12.6.1 - records-sop # via hspec-2.7.0 From 0f68a308b51cf4b89235c1e107e9fcfde3cb2be3 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sat, 21 Mar 2020 11:24:32 +0800 Subject: [PATCH 1327/2682] cfenv testsuite failing (tomphp/haskell-cfenv#1) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index b8e7ec41..73244d40 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5523,6 +5523,9 @@ expected-test-failures: # https://github.com/iij-ii/direct-hs/issues/100 - skews + + # https://github.com/tomphp/haskell-cfenv/issues/1 + - cfenv # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 2a56201dbe93ece37c0e5b8e8efe2a23c3604eca Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sat, 21 Mar 2020 11:51:29 +0800 Subject: [PATCH 1328/2682] Revert "hopenpgp-tools failed (#5250)" This reverts commit 55ded216230e3b5ef7f52d01d4df16e1e9d5bf58. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 73244d40..54172516 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1188,7 +1188,7 @@ packages: - openpgp-asciiarmor - MusicBrainz - DAV - # - hopenpgp-tools # https://github.com/commercialhaskell/stackage/pull/5250 + - hopenpgp-tools - opensource - debian - cabal-debian From f469ef22df11d0cb44e0ccbdb4726ae4c02ebc47 Mon Sep 17 00:00:00 2001 From: aiya000 Date: Sat, 21 Mar 2020 16:36:33 +0900 Subject: [PATCH 1329/2682] Add character-cases --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 54172516..a8693a6a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3382,6 +3382,7 @@ packages: - socket-activation < 0 # via network-3.1.1.0 "aiya000 @aiya000": + - character-cases - throwable-exceptions "Mitsutoshi Aoe @maoe": From 7c1973571b4d1526c1edd3ecf462d37876182cb0 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sat, 21 Mar 2020 22:14:49 +0800 Subject: [PATCH 1330/2682] haskell-lsp < 0.21 (#5253) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 54172516..48161ba5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4740,6 +4740,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5241 - jira-wiki-markup < 1.1 + # https://github.com/commercialhaskell/stackage/issues/5253 + - haskell-lsp < 0.21 + - haskell-lsp-types < 0.21 # end of packages # Package flags are applied to individual packages, and override the values of From 25e9cd0beae741440e8cad1cb08d3c6dbbd0eb41 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 22 Mar 2020 21:28:27 +0800 Subject: [PATCH 1331/2682] Revert "haskell-lsp < 0.21" (closes #5253) This reverts commit 7c1973571b4d1526c1edd3ecf462d37876182cb0. --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 48161ba5..54172516 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4740,9 +4740,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5241 - jira-wiki-markup < 1.1 - # https://github.com/commercialhaskell/stackage/issues/5253 - - haskell-lsp < 0.21 - - haskell-lsp-types < 0.21 # end of packages # Package flags are applied to individual packages, and override the values of From e57735b2f55b088c9152b6b1ebddcea8e7b3dfae Mon Sep 17 00:00:00 2001 From: Sibi Prabakaran Date: Sun, 22 Mar 2020 20:46:20 +0530 Subject: [PATCH 1332/2682] Add yesod-auth-fb package --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a8693a6a..4941d706 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -738,7 +738,7 @@ packages: - tldr - fb - yesod-fb - - yesod-auth-fb < 0 # https://github.com/psibi/yesod-auth-fb/issues/4 + - yesod-auth-fb - hourglass-orphans - wai-slack-middleware - sysinfo From 71f423bfec3b98511094f1fd0e5c84c47f6fc7bd Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 23 Mar 2020 10:06:41 +0800 Subject: [PATCH 1333/2682] ghc-lib-parser-ex < 8.8.6.0 (#5255) --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4941d706..5c519535 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4741,6 +4741,8 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5241 - jira-wiki-markup < 1.1 + # https://github.com/commercialhaskell/stackage/issues/5255 + - ghc-lib-parser-ex < 8.8.6.0 # end of packages # Package flags are applied to individual packages, and override the values of From 29b789c1700c4e1140a1014d4cba8e961d3c2ba9 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 23 Mar 2020 10:16:37 +0800 Subject: [PATCH 1334/2682] revert "haskell-src-exts < 1.23" (#5048) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5c519535..b0e792ac 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4361,7 +4361,7 @@ packages: - haskell-lexer - haskell-lsp-types - haskell-src - - haskell-src-exts < 1.23 # https://github.com/commercialhaskell/stackage/issues/5048 + - haskell-src-exts - haxl < 0 # via time-1.9.3 - heap - hex < 0 # via base-4.13.0.0 From dc587bf48c038886c8190eb703e808239d4a0629 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 23 Mar 2020 10:27:58 +0800 Subject: [PATCH 1335/2682] try enabling a bunch of h-s-e packages and update some --- build-constraints.yaml | 39 +++++++++++++++++++-------------------- 1 file changed, 19 insertions(+), 20 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b0e792ac..26dcd5e1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -296,8 +296,8 @@ packages: - openexr-write "Pasqualino Assini @tittoassini": - # - zm # haskell-src-exts via derive - # - flat # haskell-src-exts via derive + # - zm + - flat - model < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build "Jose Iborra @pepeiborra": @@ -310,7 +310,7 @@ packages: - floatshow - NoHoed - threepenny-editors < 0 # GHC 8.4 - # - clr-inline # haskell-src-exts via here # possibly nondeterministic failures, see https://github.com/fpco/stackage/issues/2510 + - clr-inline - strict-types < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build "Roman Gonzalez @roman": @@ -524,7 +524,7 @@ packages: - fusion-plugin < 0 # ghc-8.8.3 "Aleksey Uimanov @s9gf4ult": - # - postgresql-query # haskell-src-exts via derive + - postgresql-query - hreader - hset @@ -1262,8 +1262,8 @@ packages: # - rest-client # http-types 0.12 - rest-core < 0 # GHC 8.4 via base-4.11.0.0 - rest-snap < 0 # GHC 8.4 via rest-core - # - rest-gen # haskell-src-exts - # - rest-happstack # haskell-src-exts via rest-gen + # - rest-gen + # - rest-happstack # containers - rest-stringmap < 0 # via aeson-1.4.0.0 - rest-types < 0 # GHC 8.4 via base-4.11.0.0 # - rest-wai # http-types 0.12 @@ -2341,7 +2341,7 @@ packages: - Spock-lucid < 0 # GHC 8.4 via Spock - charsetdetect-ae # - text-all # text-1.2.3.0 - - fmt < 0 # via doctest-discover + - fmt "Takano Akio tak@anoak.io @takano-akio": - fast-builder < 0 # via true-name @@ -2609,10 +2609,9 @@ packages: "Takahiro Himura @himura": - lens-regex - # haskell-src-exts via derive - # - twitter-conduit - # - twitter-types - # - twitter-types-lens + - twitter-conduit + - twitter-types + - twitter-types-lens "Robbin C. @robbinch": - zim-parser @@ -2705,17 +2704,17 @@ packages: "Jeremy Shaw @stepcut": - boomerang < 0 # GHC 8.4 via template-haskell-2.13.0.0 - # - happstack-hsp # haskell-src-exts via hsx2hs + # - happstack-hsp # harp - happstack-jmacro < 0 # GHC 8.4 via happstack-server - - happstack-server < 0 + - happstack-server - happstack-server-tls < 0 # GHC 8.4 via happstack-server - hsx-jmacro < 0 - ixset < 0 # GHC 8.4 via syb-with-class - - reform < 0 # build failure with GHC 8.4 - - reform-blaze < 0 # GHC 8.4 via reform - - reform-hamlet < 0 # GHC 8.4 via reform - - reform-happstack < 0 # GHC 8.4 via happstack-server - # - reform-hsp # haskell-src-exts via hsx2hs + - reform + - reform-blaze + - reform-hamlet + - reform-happstack + # - reform-hsp # hsx2hs - userid < 0 # GHC 8.4 via base-4.11.0.0 - web-plugins < 0 - web-routes < 0 # via http-types @@ -2862,7 +2861,7 @@ packages: "Mikhail Glushenkov @23Skidoo": # - Cabal take the one that ships with GHC - cabal-install < 0 # via base-4.13.0.0 - # - pointful # haskell-src-exts + # - pointful # haskell-src-exts-simple "Lennart Kolmodin @kolmodin": - binary-bits < 0 # MonadFail @@ -3602,7 +3601,7 @@ packages: - listsafe "Serokell @serokell": - # - importify # haskell-src-exts via haskell-names + # - importify - log-warper < 0 # GHC 8.4 via lifted-async-0.10.0.1 - o-clock - universum From a6634c7921601e3163a5b2f2d8414e0ea660865a Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 23 Mar 2020 10:28:37 +0800 Subject: [PATCH 1336/2682] bump Dockerfile to 8.8.3 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 94240b03..520b94ac 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM fpco/pid1:18.04 ENV HOME /home/stackage ENV LANG en_US.UTF-8 -ENV GHCVER 8.8.2 +ENV GHCVER 8.8.3 # NOTE: also update debian-bootstrap.sh when cuda version changes ENV PATH /home/stackage/.stack/programs/x86_64-linux/ghc-$GHCVER/bin:/usr/local/cuda-10.0/bin:/usr/sbin:/usr/bin:/sbin:/bin From 543a3057857ab29bb49ea8e10c2f4834059ec4bd Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 23 Mar 2020 10:45:46 +0800 Subject: [PATCH 1337/2682] enable cheapskate (jgm/cheapskate#33) --- build-constraints.yaml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 26dcd5e1..32280070 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2334,8 +2334,8 @@ packages: - microlens-ghc - microlens-contra - shortcut-links < 0 # MonadFail - - cheapskate-highlight < 0 # cheapskate - - cheapskate-lucid < 0 # cheapskate + - cheapskate-highlight + - cheapskate-lucid - cmark-lucid - cmark-highlight < 0 # cmark-0.6 - Spock-lucid < 0 # GHC 8.4 via Spock @@ -2458,7 +2458,7 @@ packages: - core-text "Sean Hunt @ivan-m": - fgl @@ -3336,7 +3336,7 @@ packages: "Tom Nielsen @glutamate": - plotlyhs - - inliterate < 0 # cheapskate + - inliterate "Hyunje Jun @noraesae": - line < 0 # via scotty @@ -5736,7 +5736,6 @@ skipped-benchmarks: # These can also be checked for updates periodically. - o-clock # base-4.10 and time-1.8 via tiempo - minisat-solver # Cabal-2.2.0.1 via easyrender - - cmark-gfm # via cheapskate # Compilation failures - cipher-aes # https://github.com/vincenthz/hs-crypto-cipher/issues/46 From 1665b0081cb4837f573deb6956831169ab3a92ed Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 24 Mar 2020 00:46:34 +0800 Subject: [PATCH 1338/2682] redisable failing: flat, postgresql-query, twitter-types --- build-constraints.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 32280070..7565e404 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -297,7 +297,7 @@ packages: "Pasqualino Assini @tittoassini": # - zm - - flat + # - flat # fails to build - model < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build "Jose Iborra @pepeiborra": @@ -524,7 +524,7 @@ packages: - fusion-plugin < 0 # ghc-8.8.3 "Aleksey Uimanov @s9gf4ult": - - postgresql-query + # - postgresql-query # build errors - hreader - hset @@ -2609,9 +2609,9 @@ packages: "Takahiro Himura @himura": - lens-regex - - twitter-conduit - - twitter-types - - twitter-types-lens + # - twitter-conduit # twitter-types + # - twitter-types # MonadFail + # - twitter-types-lens # "Robbin C. @robbinch": - zim-parser From 3615964bad926b846f6b85d4765b94ef19423bcb Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 24 Mar 2020 01:31:26 +0800 Subject: [PATCH 1339/2682] also redisable clr-inline Building test suite 'spec' for clr-inline-0.2.0.1.. [14 of 17] Compiling Clr.Inline.IEnumerable /var/stackage/work/unpack-dir/unpacked/clr-inline-0.2.0.1-bb74dca2b6dc4ff940300ceac868fdad61f49222a793f5bbc15c3aef92c8ce53/src/C lr/Inline/IEnumerable.hs:1:1: error: Illegal static expression: static Clr.Inline.Utils.Embed.ClrBytecode (Data.ByteString.pack [77, 90, 144, ....]) Use StaticPointers to enable this extension | 1 | {-# LANGUAGE DataKinds #-} | ^ --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7565e404..5929c518 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -310,7 +310,7 @@ packages: - floatshow - NoHoed - threepenny-editors < 0 # GHC 8.4 - - clr-inline + # - clr-inline # Illegal static expression: static Clr.Inline.Utils.Embed.ClrBytecode - strict-types < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build "Roman Gonzalez @roman": From df214e55b18dde817262892f723cfd9921018c00 Mon Sep 17 00:00:00 2001 From: Ivan Gromakovskii Date: Tue, 24 Mar 2020 21:21:53 +0300 Subject: [PATCH 1340/2682] Add with-utf8 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5929c518..bebc8ed3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3605,6 +3605,7 @@ packages: - log-warper < 0 # GHC 8.4 via lifted-async-0.10.0.1 - o-clock - universum + - with-utf8 "Kowainik @chshersh @vrom911": - co-log-core From 1abe2a030d79c720b1f93fba47a2942e4c89a4ef Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 25 Mar 2020 12:24:49 +0800 Subject: [PATCH 1341/2682] enable base-noprelude for pandoc --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5929c518..c2890f45 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4224,6 +4224,7 @@ packages: - assoc - attoparsec - auto-update + - base-noprelude - base64-bytestring - base64-bytestring-type - base64-string @@ -4335,7 +4336,7 @@ packages: - fail - fast-logger - fast-math - - fib < 0 # via base-noprelude + - fib < 0 # via base-noprelude-4.13 - file-embed - file-embed-lzma - filemanip @@ -4676,7 +4677,6 @@ packages: # this is to prevent us from including them by accident. They can # be removed from this list if they are fixed. "Unmaintained packages with compilation failures": - - base-noprelude < 0 # via base-4.13.0.0 - doctest-discover-configurator < 0 - flexible-defaults < 0 # MonadFail - haskell-tools-builtin-refactorings < 0 # bounds failure From 45aabba144489ee7d55f32abcfb88703ae97b85d Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 25 Mar 2020 12:36:32 +0800 Subject: [PATCH 1342/2682] feed testsuite should build now (bergmark/feed#43) --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c2890f45..e6e7cdec 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5417,7 +5417,6 @@ expected-test-failures: - async-timer # https://github.com/mtesseract/async-timer/issues/8 - commutative # https://github.com/athanclark/commutative/issues/4 - conduit-throttle # https://github.com/mtesseract/conduit-throttle/issues/12 - - feed # https://github.com/bergmark/feed/issues/43 - haddock - haskell-tools-builtin-refactorings - hweblib # https://github.com/aycanirican/hweblib/issues/3 From db39449818ef87fe14746ef6971a2e09c4f2a306 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 25 Mar 2020 12:38:40 +0800 Subject: [PATCH 1343/2682] try re-enabling 'download' --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e6e7cdec..5f99520e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -732,7 +732,7 @@ packages: - hakyll < 0 # jaspervdj/hakyll#691 "Sibi Prabakaran @psibi": - - download < 0 # via feed + - download - textlocal - shell-conduit - tldr From 079e9f81be752f9990307b1b8104f81f2ee35ae4 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 25 Mar 2020 12:43:24 +0800 Subject: [PATCH 1344/2682] pandoc-2.9.2.1 allows jira-wiki-markup-1.1 (#5241) --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5f99520e..2ee5069b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4737,9 +4737,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5236 - rank2classes < 1.4 - # https://github.com/commercialhaskell/stackage/issues/5241 - - jira-wiki-markup < 1.1 - # https://github.com/commercialhaskell/stackage/issues/5255 - ghc-lib-parser-ex < 8.8.6.0 # end of packages From a35330146833dd69145cfae82e2e79e3dd838c2b Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 25 Mar 2020 12:51:40 +0800 Subject: [PATCH 1345/2682] ghc-lib < 8.10.1.20200324 (#5257) --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2ee5069b..5dae82c6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4739,6 +4739,10 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5255 - ghc-lib-parser-ex < 8.8.6.0 + + # https://github.com/commercialhaskell/stackage/issues/5257 + - ghc-lib-parser < 8.10.1.20200324 + - ghc-lib < 8.10.1.20200324 # end of packages # Package flags are applied to individual packages, and override the values of From 16bc8236387379234cb869ee4541bc52c85e8790 Mon Sep 17 00:00:00 2001 From: Fumiaki Kinoshita Date: Wed, 25 Mar 2020 16:01:33 +0900 Subject: [PATCH 1346/2682] Update @fumieval's set --- build-constraints.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5dae82c6..2333a22e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2027,12 +2027,10 @@ packages: - boundingboxes - control-bool - drinkery - - extensible < 0 # compilation failure - monad-skeleton - - objective < 0 - - winery < 0 # via fast-builder - - witherable < 0 # via monoidal-containers - xml-lens + - witherable-class + - deriving-aeson "Peter Harpending @pharpend": - editor-open From 1de36c5caee347497f913ae71a8282b19a9a783c Mon Sep 17 00:00:00 2001 From: Veronika Romashkina Date: Wed, 25 Mar 2020 17:27:50 +0000 Subject: [PATCH 1347/2682] Add life-sync --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5dae82c6..25bdfe28 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3613,6 +3613,7 @@ packages: - colourista - first-class-patterns - ilist + - life-sync - membrain - relude - shellmet From be97efb6b186cf29caed40551744b3adf38e7134 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Thu, 26 Mar 2020 00:33:12 +0000 Subject: [PATCH 1348/2682] Constrain packages that depend on GHC 8.10 --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5dae82c6..15627148 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2265,7 +2265,7 @@ packages: - deriving-compat - dotgen - echo - - eliminators + - eliminators < 0.7 # GHC 8.10 via base-4.14 & template-haskell-2.16 - generic-deriving - hashmap - invariant @@ -3069,7 +3069,7 @@ packages: "Richard Eisenberg @goldfirere": - th-desugar - - singletons + - singletons < 2.7 # GHC 8.10 via Cabal-3.2 & base-4.14 - HUnit-approx - units-parser < 0 # BuildFailureException Process exited with ExitFailure 1: dist/build/main/main From 0a075f02e0784ae00a9867411f629c7be936051b Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Thu, 26 Mar 2020 00:34:00 +0000 Subject: [PATCH 1349/2682] Constrain th-desugar < 1.11 (#5260) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 15627148..78c366dc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3068,7 +3068,7 @@ packages: - hpio < 0 # GHC 8.4 via protolude "Richard Eisenberg @goldfirere": - - th-desugar + - th-desugar < 1.11 # https://github.com/commercialhaskell/stackage/issues/5260 - singletons < 2.7 # GHC 8.10 via Cabal-3.2 & base-4.14 - HUnit-approx - units-parser < 0 # BuildFailureException Process exited with ExitFailure 1: dist/build/main/main From 46ace1424a7294e5399459ea3f6b021c1bc07494 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Thu, 26 Mar 2020 00:38:00 +0000 Subject: [PATCH 1350/2682] Constrain hslua < 1.1.0 (#5261) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 78c366dc..d45400d3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3498,7 +3498,7 @@ packages: - algebraic-graphs "Albert Krewinkel @tarleb": - - hslua + - hslua < 1.1.0 # https://github.com/commercialhaskell/stackage/issues/5261 - hslua-aeson - hslua-module-system - hslua-module-text From 28eb21b0e677f2885fdb9dea391e346f37cdd976 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Thu, 26 Mar 2020 15:16:03 +0000 Subject: [PATCH 1351/2682] Drops language-avro (#5262) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d45400d3..4414c68a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1344,7 +1344,7 @@ packages: - language-protobuf "Flavio Corpa @kutyel": - - language-avro + - language-avro < 0 # avro-0.5.0.0 https://github.com/commercialhaskell/stackage/issues/5262 "Matvey Aksenov @supki": - terminal-size From cc7ad65c99d6b3fa7d92e81eff9029b00bfd9fc1 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Thu, 26 Mar 2020 15:24:19 +0000 Subject: [PATCH 1352/2682] Unconstraints th-desugar (#5260) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4414c68a..28e95af5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3068,7 +3068,7 @@ packages: - hpio < 0 # GHC 8.4 via protolude "Richard Eisenberg @goldfirere": - - th-desugar < 1.11 # https://github.com/commercialhaskell/stackage/issues/5260 + - th-desugar - singletons < 2.7 # GHC 8.10 via Cabal-3.2 & base-4.14 - HUnit-approx - units-parser < 0 # BuildFailureException Process exited with ExitFailure 1: dist/build/main/main From 19cdd05b84124298141dbc5514bb4dea72cf77b4 Mon Sep 17 00:00:00 2001 From: Jeff Happily Date: Thu, 26 Mar 2020 23:23:52 +0800 Subject: [PATCH 1353/2682] Add dockerfile for lts-15.5 --- automated/dockerfiles/lts-15.5/Dockerfile | 89 +++++++++++++++++++++++ 1 file changed, 89 insertions(+) create mode 100644 automated/dockerfiles/lts-15.5/Dockerfile diff --git a/automated/dockerfiles/lts-15.5/Dockerfile b/automated/dockerfiles/lts-15.5/Dockerfile new file mode 100644 index 00000000..8826ddb2 --- /dev/null +++ b/automated/dockerfiles/lts-15.5/Dockerfile @@ -0,0 +1,89 @@ +FROM ubuntu:18.04 + +LABEL maintainer="manny@fpcomplete.com" + +ARG GHC_VERSION=8.8.3 +ARG LTS_SLUG=lts-15.0 +ARG PID1_VERSION=0.1.2.0 +ARG STACK_VERSION=2.1.3 +ARG CUDA_VERSION=10.0 +ARG JVM_PATH=/usr/lib/jvm/java-8-openjdk-amd64 +ARG LLVM_PATH=/usr/lib/llvm-7 +ARG BOOTSTRAP_COMMIT=77790c7bcb21fd8875871245df5c5c39a55ec0c1 +ARG DEBIAN_FRONTEND=noninteractive +ARG VARIANT=build +ARG STACK_ROOT=/home/stackage/.stack + +# +# Set encoding to UTF-8 and PATH to find GHC and cabal/stack-installed binaries. +# + +ENV LANG=C.UTF-8 \ + LC_ALL=C.UTF-8 \ + PATH=/root/.local/bin:/usr/local/cuda-$CUDA_VERSION/bin:$STACK_ROOT/programs/x86_64-linux/ghc-$GHC_VERSION/bin:$PATH \ + CUDA_PATH=/usr/local/cuda-$CUDA_VERSION \ + CPATH=$JVM_PATH/include:$JVM_PATH/include/linux:$LLVM_PATH/include + +# +# Install pre-requisites +# + +RUN apt-get update && \ + apt-get install -y --no-install-recommends \ + wget netbase ca-certificates g++ gcc libc6-dev libffi-dev libgmp-dev \ + make xz-utils zlib1g-dev git gnupg libtinfo-dev && \ + rm -rf /var/lib/apt/lists/* + +# +# Use Stackage's debian-bootstrap.sh script to install system libraries and +# tools required to build any Stackage package. +# Re-installs 'stack' *after* running debian-bootstrap.sh since that may have +# installed a different version. +# In the case of 'small' image, just install Stack and GHC. +# + +RUN if [ "$VARIANT" != "small" ]; then \ + wget -qO- https://raw.githubusercontent.com/fpco/stackage/$BOOTSTRAP_COMMIT/debian-bootstrap.sh | sed "s/^GHCVER=8.6.5$/GHCVER=$GHC_VERSION/" | GHCVER=$GHC_VERSION bash; \ + fi && \ + wget -qO- https://github.com/commercialhaskell/stack/releases/download/v$STACK_VERSION/stack-$STACK_VERSION-linux-x86_64.tar.gz | tar xz --wildcards --strip-components=1 -C /usr/bin '*/stack' && \ + if [ "$VARIANT" = "small" ]; then \ + stack setup --resolver ghc-$GHC_VERSION; \ + fi && \ + rm -rf /var/lib/apt/lists/* && \ + cd $STACK_ROOT && \ + find . -type f -not -path "./programs/x86_64-linux/ghc-$GHC_VERSION/*" -exec rm '{}' \; && \ + find . -type d -print0 |sort -rz |xargs -0 rmdir 2>/dev/null || true + +# +# Configure Stack to use the GHC installed in the Docker image rather than installing its own +# + +RUN mkdir /etc/stack/ && \ + echo "system-ghc: true" >/etc/stack/config.yaml + +# +# Use 'stack' to install basic Haskell tools like alex, happy, and cpphs. We +# remove most of the STACK_ROOT afterward to save space, but keep the 'share' +# files that some of these tools require. +# + +RUN stack --resolver=$LTS_SLUG --local-bin-path=/usr/bin install \ + happy alex cpphs gtk2hs-buildtools hscolour hlint hindent && \ + cd $STACK_ROOT && \ + find . -type f -not -path './snapshots/*/share/*' -and -not -path "./programs/x86_64-linux/ghc-$GHC_VERSION/*" -exec rm '{}' \; && \ + find . -type d -print0 |sort -rz |xargs -0 rmdir 2>/dev/null || true + +# +# Install 'pid1' init daemon +# + +RUN wget -O- "https://github.com/fpco/pid1/releases/download/v$PID1_VERSION/pid1-$PID1_VERSION-linux-x86_64.tar.gz" | tar xzf - -C /usr/local && \ + chown root:root /usr/local/sbin && \ + chown root:root /usr/local/sbin/pid1 + +# +# Set up pid1 entrypoint and default command +# + +ENTRYPOINT ["/usr/local/sbin/pid1"] +CMD ["bash"] From 344eec021e08ffd346f76adbfc4287ee3dfe5ea6 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Thu, 26 Mar 2020 15:27:14 +0000 Subject: [PATCH 1354/2682] Reverts cc7ad65 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 28e95af5..4414c68a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3068,7 +3068,7 @@ packages: - hpio < 0 # GHC 8.4 via protolude "Richard Eisenberg @goldfirere": - - th-desugar + - th-desugar < 1.11 # https://github.com/commercialhaskell/stackage/issues/5260 - singletons < 2.7 # GHC 8.10 via Cabal-3.2 & base-4.14 - HUnit-approx - units-parser < 0 # BuildFailureException Process exited with ExitFailure 1: dist/build/main/main From 8875bf28d4e47819143e7ce99a86df0aac20df5b Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Thu, 26 Mar 2020 15:59:55 +0000 Subject: [PATCH 1355/2682] Updates th-desugar comment to explain constraint --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4414c68a..5ceae41f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3068,7 +3068,7 @@ packages: - hpio < 0 # GHC 8.4 via protolude "Richard Eisenberg @goldfirere": - - th-desugar < 1.11 # https://github.com/commercialhaskell/stackage/issues/5260 + - th-desugar < 1.11 # GHC 8.10 via singletons-2.7 & eliminators-0.7 - singletons < 2.7 # GHC 8.10 via Cabal-3.2 & base-4.14 - HUnit-approx - units-parser < 0 # BuildFailureException Process exited with ExitFailure 1: dist/build/main/main From c45ea76fe57fbd3955227f86638c7c01690dda94 Mon Sep 17 00:00:00 2001 From: Jeff Happily Date: Fri, 27 Mar 2020 17:21:06 +0800 Subject: [PATCH 1356/2682] Modify logic to allow building old version --- automated/dockerfiles/build.sh | 41 +++++++++++++++++++++++++++++----- 1 file changed, 36 insertions(+), 5 deletions(-) diff --git a/automated/dockerfiles/build.sh b/automated/dockerfiles/build.sh index d80d4823..3709664f 100755 --- a/automated/dockerfiles/build.sh +++ b/automated/dockerfiles/build.sh @@ -90,10 +90,36 @@ case "$LTS_SLUG_ARG" in ;; esac +# +# Determine if lts slug is latest +# + +SNAPSHOTS="$(mktemp "lts-snapshots.json.XXXXXX")" +trap "rm -f \"$SNAPSHOTS\"" EXIT +wget -qO- https://www.stackage.org/download/lts-snapshots.json >"$SNAPSHOTS" + LTS_VERSION="${LTS_SLUG#lts-}" LTS_MAJOR="${LTS_VERSION%.*}" LTS_MINOR="${LTS_VERSION#*.}" +# +# Determine latest LTS version +# + +LATEST_LTS_SLUG=$(jq -r ".[\"lts\"]" $SNAPSHOTS) +LATEST_LTS_VERSION="${LATEST_LTS_SLUG#lts-}" +LATEST_LTS_MAJOR="${LATEST_LTS_VERSION%.*}" +LATEST_LTS_MINOR="${LATEST_LTS_VERSION#*.}" + +# +# Determine latest minor version of the selected major version +# + +MAJOR_LATEST_LTS_SLUG=$(jq -r ".[\"lts-$LTS_MAJOR\"]" $SNAPSHOTS) +MAJOR_LATEST_LTS_VERSION="${MAJOR_LATEST_LTS_SLUG#lts-}" +MAJOR_LATEST_LTS_MAJOR="${MAJOR_LATEST_LTS_VERSION%.*}" +MAJOR_LATEST_LTS_MINOR="${MAJOR_LATEST_LTS_VERSION#*.}" + # # Find the Dockerfile for the selected snapshot # @@ -128,9 +154,14 @@ fi # Create and push additional tags # -# Create and push an 'lts-X' tag. -tagpush "$DOCKER_REPO:$LTS_SLUG" "$DOCKER_REPO:lts-$LTS_MAJOR" +# If we select the latest minor version for the selected major version, then +# also create and push an 'lts-X' tag. +if [[ $LTS_MINOR -ge $MAJOR_LATEST_LTS_MINOR ]]; then + tagpush "$DOCKER_REPO:$LTS_SLUG" "$DOCKER_REPO:lts-$LTS_MAJOR" +fi -# Create and push the 'lts' and 'latest' tags. -tagpush "$DOCKER_REPO:$LTS_SLUG" "$DOCKER_REPO:lts" -tagpush "$DOCKER_REPO:$LTS_SLUG" "$DOCKER_REPO:latest" +# If we selected the latest LTS snapshot, also create and push the 'lts' and 'latest' tags. +if [[ "$LTS_MAJOR" = "$LATEST_LTS_MAJOR" ]] && [[ $LTS_MINOR -ge $LATEST_LTS_MINOR ]]; then + tagpush "$DOCKER_REPO:$LTS_SLUG" "$DOCKER_REPO:lts" + tagpush "$DOCKER_REPO:$LTS_SLUG" "$DOCKER_REPO:latest" +fi From 9e105dd5ed88d1873f528149c2afbfe63c519808 Mon Sep 17 00:00:00 2001 From: Jeff Happily Date: Fri, 27 Mar 2020 17:56:08 +0800 Subject: [PATCH 1357/2682] Add message for LTS minor release --- CURATORS.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CURATORS.md b/CURATORS.md index 0fa768d2..42ce5bae 100644 --- a/CURATORS.md +++ b/CURATORS.md @@ -294,6 +294,8 @@ problems on nightly or LTS major, you need to fix build-constraints.yaml (see info above). ### Building LTS minor releases +Before running the build, please make sure that the Dockerfile in `automated/dockerfiles/lts-X.Y` is up to date, where X is the major version that you're building and Y is the latest minor version of X. If any changes need to be made, (eg, new GHC version), copy `lts-X.Y/Dockerfile` to `lts-X.Z/Dockerfile`, where Z is the minor version you're building, and include the new changes. + First run `build.sh` to regenerate updated `ltsXX/work/constraints.yaml` and `ltsXX/work/snapshot-incomplete.yaml` files. For an LTS minor bump, you'll typically want to: From 755b6558e45c5ef98f4838ac6286379c2f3efcc1 Mon Sep 17 00:00:00 2001 From: Flavio Corpa Date: Fri, 27 Mar 2020 13:21:09 +0100 Subject: [PATCH 1358/2682] Unconstraints language-avro Fixes #5262 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7df0141d..91cb54fc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1344,7 +1344,7 @@ packages: - language-protobuf "Flavio Corpa @kutyel": - - language-avro < 0 # avro-0.5.0.0 https://github.com/commercialhaskell/stackage/issues/5262 + - language-avro "Matvey Aksenov @supki": - terminal-size From 7ae6d489875406cfec4d18f690ee151fab2da33e Mon Sep 17 00:00:00 2001 From: Erik Schnetter Date: Fri, 27 Mar 2020 14:45:16 -0400 Subject: [PATCH 1359/2682] Re-enable mpi-hs I split mpi-hs into multiple packages. The base package has no dependency on "store" any more. I will submit the other packages to stackage once mpi-hs is active again. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7df0141d..d9ccfbff 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -133,7 +133,7 @@ packages: - PyF "Erik Schnetter @eschnett": - - mpi-hs < 0 # via store + - mpi-hs "Yang Bo @Atry": - control-dsl < 0 # via doctest-discover From 8c77cf8ed32ef317c96f2ef749237029f7c137a0 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sat, 28 Mar 2020 00:04:11 +0000 Subject: [PATCH 1360/2682] Constraints ghc-exactprint (#5268) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7df0141d..762b933f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -705,7 +705,7 @@ packages: - perfect-hash-generator "Alan Zimmerman @alanz": - - ghc-exactprint + - ghc-exactprint < 0.6.3 # https://github.com/commercialhaskell/stackage/issues/5268 - haskell-lsp - hjsmin - language-javascript From feda817ef857b6693a3a209c1b9b8f69d7e50868 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sat, 28 Mar 2020 00:05:36 +0000 Subject: [PATCH 1361/2682] Unconstrains structured-cli and haskeline (#5037) --- build-constraints.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 762b933f..d36868eb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4710,10 +4710,6 @@ packages: - Win32 == 2.6.1.0 "Stackage upper bounds": - # https://github.com/commercialhaskell/stackage/issues/5037 - - haskeline < 0.8.0 - - structured-cli < 2.6 - # https://github.com/commercialhaskell/stackage/issues/5191 - compilation failures - servant < 0.17 - servant-client < 0.17 From 64e5f0c321e944d39bb89720232f5e84ab7c7ccd Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sat, 28 Mar 2020 00:07:09 +0000 Subject: [PATCH 1362/2682] Fixes typo from 8c77cf8 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d36868eb..ad8672e7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -705,7 +705,7 @@ packages: - perfect-hash-generator "Alan Zimmerman @alanz": - - ghc-exactprint < 0.6.3 # https://github.com/commercialhaskell/stackage/issues/5268 + - ghc-exactprint < 0.6.3 # https://github.com/commercialhaskell/stackage/issues/5268 - haskell-lsp - hjsmin - language-javascript From 7834173acb65b96230405a34df5d33d43b1b7364 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sat, 28 Mar 2020 00:20:50 +0000 Subject: [PATCH 1363/2682] Restricts haskeline and structured-cli (#5269) --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ad8672e7..c8a880a9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3513,7 +3513,7 @@ packages: - tensorflow-test - pier-core < 0 - pier < 0 - - haskeline + - haskeline < 0.8 # https://github.com/commercialhaskell/stackage/issues/5269 - ghc-source-gen "Christof Schramm ": @@ -4066,7 +4066,7 @@ packages: - failable - ttl-hashtables - radius - - structured-cli + - structured-cli < 2.6 # https://github.com/commercialhaskell/stackage/issues/5269 "Jan Path @janpath": - smallcheck-series < 0 # via base-4.13.0.0 From 0546d4cb207e27245d730ea8694b69a2fce871b7 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sat, 28 Mar 2020 00:24:16 +0000 Subject: [PATCH 1364/2682] Restricts repline < 0.3 (#5269) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c8a880a9..12c4a3e4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2976,7 +2976,7 @@ packages: "Stephen Diehl @sdiehl": - llvm-hs-pretty < 0 # compilation failure - protolude - - repline + - repline < 0.3 # https://github.com/commercialhaskell/stackage/issues/5269 - picosat < 0 - aos-signature < 0 # via protolude # https://github.com/commercialhaskell/stackage/issues/4682 From 0ddf655cf0c5d569cef11699dffc4f80b15cdcd3 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sat, 28 Mar 2020 00:31:15 +0000 Subject: [PATCH 1365/2682] Restricts QuickCheck < 2.14 (#5271) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 12c4a3e4..7c2c4fb8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4209,7 +4209,7 @@ packages: - NumInstances - Only - ParsecTools - - QuickCheck + - QuickCheck < 2.14 # https://github.com/commercialhaskell/stackage/issues/5271 - RSA - aeson-compat - aeson-extra < 0 # via semialign From dca2bd9f78b87c27159a94deb1a4c830cbee78c0 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sat, 28 Mar 2020 23:34:15 +0000 Subject: [PATCH 1366/2682] Constrains jira-wiki-markup < 1.2.0 (#5272) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7c2c4fb8..406dcdf6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3500,7 +3500,7 @@ packages: - hslua-aeson - hslua-module-system - hslua-module-text - - jira-wiki-markup + - jira-wiki-markup < 1.2.0 # https://github.com/commercialhaskell/stackage/issues/5272 "Judah Jacobson @judah": - proto-lens-protobuf-types From 7063df2832c4a76e43c1afaccc32abd6841b0e58 Mon Sep 17 00:00:00 2001 From: Veronika Romashkina Date: Sun, 29 Mar 2020 13:26:30 +0100 Subject: [PATCH 1367/2682] Reenable summoner --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 406dcdf6..a2bd19ed 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2263,7 +2263,7 @@ packages: - deriving-compat - dotgen - echo - - eliminators < 0.7 # GHC 8.10 via base-4.14 & template-haskell-2.16 + - eliminators < 0.7 # GHC 8.10 via base-4.14 & template-haskell-2.16 - generic-deriving - hashmap - invariant @@ -3616,7 +3616,7 @@ packages: - relude - shellmet - shortcut-links - - summoner < 0 # via base-4.13.0.0 + - summoner - tomland - typerep-map - validation-selective From f5665dab2fbea141d79c7bf9080831bf3602c317 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sun, 29 Mar 2020 16:59:36 +0000 Subject: [PATCH 1368/2682] Constrains dhall < 1.31.0 (#5275) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 406dcdf6..97e94fec 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1068,7 +1068,7 @@ packages: - turtle - foldl - bench - - dhall + - dhall < 1.31.0 # https://github.com/commercialhaskell/stackage/issues/5275 - dhall-bash - dhall-json - dhall-yaml From c1d7eeb568e50b8384ca4672e17a6b9f0b0568e3 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sun, 29 Mar 2020 17:03:42 +0000 Subject: [PATCH 1369/2682] Additional constraints via dhall < 1.31.0 (#5275) --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f95ad807..715b247a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1069,9 +1069,9 @@ packages: - foldl - bench - dhall < 1.31.0 # https://github.com/commercialhaskell/stackage/issues/5275 - - dhall-bash - - dhall-json - - dhall-yaml + - dhall-bash < 1.0.29 # via dhall + - dhall-json < 1.6.3 # via dhall + - dhall-yaml < 1.0.3 # via dhall - aeson-yaml # req'd by dhall-json # - dhall-nix # deriving-compat via hnix From 208a62e6d25de7822a7e27fe49e3e61f07dad7a4 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sun, 29 Mar 2020 21:48:36 +0000 Subject: [PATCH 1370/2682] Constrains tldr < 0.6.3 (#5277) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 715b247a..0d9c2c71 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -735,7 +735,7 @@ packages: - download - textlocal - shell-conduit - - tldr + - tldr < 0.6.3 # https://github.com/commercialhaskell/stackage/issues/5277 - fb - yesod-fb - yesod-auth-fb From 50388f1b76beea1c2bbcf888ea067e6f44e501bc Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Mon, 30 Mar 2020 00:31:50 +0000 Subject: [PATCH 1371/2682] Disable mpi-hs (#5278) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6e182c01..ef55000c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -133,7 +133,7 @@ packages: - PyF "Erik Schnetter @eschnett": - - mpi-hs + - mpi-hs < 0 # https://github.com/commercialhaskell/stackage/issues/5278 "Yang Bo @Atry": - control-dsl < 0 # via doctest-discover From da55d91a420ab28629c71d250fc81c73e2a62074 Mon Sep 17 00:00:00 2001 From: Erik Schnetter Date: Sun, 29 Mar 2020 21:51:36 -0400 Subject: [PATCH 1372/2682] Re-enable mpi-hs Switch MPI library dependency from OpenMPI to MPICH. (This is very likely fine since OpenMPI was added for mpi-hs.) We use MPICH since OpenMPI in Xenial does not support multi-threading yet. Closes #5278. --- build-constraints.yaml | 2 +- debian-bootstrap.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ef55000c..6e182c01 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -133,7 +133,7 @@ packages: - PyF "Erik Schnetter @eschnett": - - mpi-hs < 0 # https://github.com/commercialhaskell/stackage/issues/5278 + - mpi-hs "Yang Bo @Atry": - control-dsl < 0 # via doctest-discover diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index cb9556f3..05b9aa96 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -92,13 +92,13 @@ apt-get install -y \ libmono-2.0-dev \ libmp3lame-dev \ libmpfr-dev \ + libmpich-dev \ libmysqlclient-dev \ libncurses5-dev \ libnfc-dev \ liboath-dev \ libnotify-dev \ libopenal-dev \ - libopenmpi-dev \ libpango1.0-dev \ libpcap0.8-dev \ libpcre2-dev \ From df2aa07c89e18ed66910c0903cc616bdfdab1c06 Mon Sep 17 00:00:00 2001 From: Juan Paucar Date: Sun, 29 Mar 2020 21:50:47 -0500 Subject: [PATCH 1373/2682] Reenable hapistrano --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ef55000c..a01f9520 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2212,7 +2212,7 @@ packages: - atomic-write - dbcleaner < 0 # via postgresql-simple - dotenv - - hapistrano < 0 # via path-io-1.5.0 & time-1.9.3 + - hapistrano - hspec-golden - inflections - stache @@ -5852,7 +5852,6 @@ github-users: clckwrks: - stepcut stackbuilders: - - javcasas - jsl - sestrella - juanpaucar From 64a3abc83f1c4986baa65d6d6e5b729007d452f0 Mon Sep 17 00:00:00 2001 From: Neil Mitchell Date: Mon, 30 Mar 2020 07:20:59 +0100 Subject: [PATCH 1374/2682] Move the weeder owner --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ef55000c..f56bf15a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -685,7 +685,6 @@ packages: - extra - ghcid - hexml - - weeder - profiterole - record-dot-preprocessor - filepattern @@ -2230,6 +2229,7 @@ packages: - network-carbon < 0 # GHC 8.4 via base-4.11.0.0 - logging-effect - dhall-to-cabal < 0 + - weeder # - reactive-banana # pqueue-1.4.1 "Antoni Silvestre @asilvestre": From 142bf62a3a368764e74e481acf954c4a5548031f Mon Sep 17 00:00:00 2001 From: Veronika Romashkina Date: Mon, 30 Mar 2020 09:02:33 +0100 Subject: [PATCH 1375/2682] Add summoner-tui --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ef55000c..f3ced5cd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3618,6 +3618,7 @@ packages: - shellmet - shortcut-links - summoner + - summoner-tui - tomland - typerep-map - validation-selective From 82cc9d3f15a8a1ed3f85668e4321cacc388a4ee1 Mon Sep 17 00:00:00 2001 From: Jeff Happily Date: Mon, 30 Mar 2020 21:33:08 +0800 Subject: [PATCH 1376/2682] Modify message --- CURATORS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CURATORS.md b/CURATORS.md index 42ce5bae..94baf7bf 100644 --- a/CURATORS.md +++ b/CURATORS.md @@ -294,7 +294,7 @@ problems on nightly or LTS major, you need to fix build-constraints.yaml (see info above). ### Building LTS minor releases -Before running the build, please make sure that the Dockerfile in `automated/dockerfiles/lts-X.Y` is up to date, where X is the major version that you're building and Y is the latest minor version of X. If any changes need to be made, (eg, new GHC version), copy `lts-X.Y/Dockerfile` to `lts-X.Z/Dockerfile`, where Z is the minor version you're building, and include the new changes. +Before running the build, please make sure that the Dockerfile in `automated/dockerfiles/lts-X.Y` is up to date, where X is the major version that you're building and Y is the latest minor version of X for which a Dockerfile exists. If any changes need to be made, (eg, new GHC version), copy `lts-X.Y/Dockerfile` to `lts-X.Z/Dockerfile`, where Z is the minor version you're building, and include the new changes. First run `build.sh` to regenerate updated `ltsXX/work/constraints.yaml` and `ltsXX/work/snapshot-incomplete.yaml` files. From 524eef541fb2e322f75b2ff50001dc282ff177fe Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Mon, 30 Mar 2020 19:34:33 +0000 Subject: [PATCH 1377/2682] Drops mpi-hs (#5278) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 98a5150e..f75d3760 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -133,7 +133,7 @@ packages: - PyF "Erik Schnetter @eschnett": - - mpi-hs + - mpi-hs < 0 # https://github.com/commercialhaskell/stackage/issues/5278 "Yang Bo @Atry": - control-dsl < 0 # via doctest-discover From 4b5dacc43bd189323c69bfdea442f35f74e5bc3a Mon Sep 17 00:00:00 2001 From: Pepe Iborra Date: Mon, 30 Mar 2020 22:47:59 +0100 Subject: [PATCH 1378/2682] Remove some of my packages and add ghc-check --- build-constraints.yaml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f75d3760..a1197b49 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -302,16 +302,11 @@ packages: "Jose Iborra @pepeiborra": # - arrowp-qq # build failure https://github.com/pepeiborra/arrowp/issues/8 - - clr-marshal - - clr-host - haskell-src-exts-util - hexml-lens - hp2pretty - floatshow - - NoHoed - - threepenny-editors < 0 # GHC 8.4 - # - clr-inline # Illegal static expression: static Clr.Inline.Utils.Embed.ClrBytecode - - strict-types < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build + - ghc-check "Roman Gonzalez @roman": - componentm < 0 # transitive compilation failure From 614c915c5c512f36b45fa40cd8d324e1a0e3a39b Mon Sep 17 00:00:00 2001 From: Chris Martin Date: Wed, 1 Apr 2020 15:00:25 -0600 Subject: [PATCH 1379/2682] Reenable loc --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f75d3760..de005dd7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3693,7 +3693,7 @@ packages: - colorize-haskell "Chris Martin @chris-martin": - - loc < 0 # via base-4.13.0.0 + - loc - partial-semigroup < 0 # via base-4.13.0.0 - path-text-utf8 < 0 # via base-4.13.0.0 From 9d5d164f43ed9d51a032d34c983bd3fcb04550ed Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Thu, 2 Apr 2020 01:08:38 +0000 Subject: [PATCH 1380/2682] Restricts cabal2spec < 2.6 (#5264) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f75d3760..25ae0e93 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2470,7 +2470,7 @@ packages: "Peter Simons @peti": - cabal2nix < 0 # via hpack - - cabal2spec + - cabal2spec < 2.6 # GHC 8.10 via Cabal-3.2 - cgi < 0 # via multipart - distribution-nixpkgs - distribution-opensuse From 8748d0d5c9ce351d379dc10ba0b865e928038cff Mon Sep 17 00:00:00 2001 From: Chris Martin Date: Wed, 1 Apr 2020 23:50:10 -0600 Subject: [PATCH 1381/2682] Reenable partial-semigroup --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a86965f1..393dda1a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3689,7 +3689,7 @@ packages: "Chris Martin @chris-martin": - loc - - partial-semigroup < 0 # via base-4.13.0.0 + - partial-semigroup - path-text-utf8 < 0 # via base-4.13.0.0 "Type Classes @argumatronic @chris-martin": From 4a1c62d569e3906b7bb50d5234d00b9f8f2335d5 Mon Sep 17 00:00:00 2001 From: Dan Fithian Date: Thu, 2 Apr 2020 11:29:06 -0400 Subject: [PATCH 1382/2682] Add file-path-th --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index a86965f1..0d0fc3d2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3878,6 +3878,7 @@ packages: - oauthenticated - datadog - interpolator + - file-path-th "Raghu Kaippully @rkaippully": - starter From e329c31214da80592669677446a77d49247c58da Mon Sep 17 00:00:00 2001 From: Chris Martin Date: Thu, 2 Apr 2020 12:32:00 -0600 Subject: [PATCH 1383/2682] Reenable path-text-utf8 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a86965f1..a751f31e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3690,7 +3690,7 @@ packages: "Chris Martin @chris-martin": - loc - partial-semigroup < 0 # via base-4.13.0.0 - - path-text-utf8 < 0 # via base-4.13.0.0 + - path-text-utf8 "Type Classes @argumatronic @chris-martin": - aws-cloudfront-signed-cookies From 884104d9e7094382c56cb2cf8a7d74baf7a70ea8 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sat, 4 Apr 2020 18:32:28 +0000 Subject: [PATCH 1384/2682] Disable HsYAML and universe-base tests (#5271) --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 97c44de3..332562e0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5156,6 +5156,7 @@ skipped-tests: - cryptohash-sha1 - cryptohash-sha256 - cryptohash-sha512 + - HsYAML - lzma - resolv - token-bucket @@ -5196,6 +5197,7 @@ skipped-tests: - range-set-list - time-parsers - time-parsers + - universe-base - vec # Uses Cabal's "library internal" stanza feature From 551069dfdbf3d29b598d8712bdfcf140be90cefa Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sat, 4 Apr 2020 21:55:31 +0300 Subject: [PATCH 1385/2682] Follow redirects --- automated/build.sh | 4 ++-- etc/check.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/automated/build.sh b/automated/build.sh index 5815fe4f..ae7e515f 100755 --- a/automated/build.sh +++ b/automated/build.sh @@ -63,12 +63,12 @@ BINDIR=$(cd $ROOT/work/bin ; pwd) cd $BINDIR rm -f curator stack *.bz2 -curl "https://download.fpcomplete.com/stackage-curator-2/curator-85b021a53833ff310fc66b3fdc5ca3f7828ce18b.bz2" | bunzip2 > curator +curl -L "https://download.fpcomplete.com/stackage-curator-2/curator-85b021a53833ff310fc66b3fdc5ca3f7828ce18b.bz2" | bunzip2 > curator chmod +x curator echo -n "curator version: " docker run --rm -v $(pwd)/curator:/exe $IMAGE /exe --version -curl "https://download.fpcomplete.com/stackage-curator-2/stack-4033c93815477e5b565d9a2a61b54e04da0863ef.bz2" | bunzip2 > stack +curl -L "https://download.fpcomplete.com/stackage-curator-2/stack-4033c93815477e5b565d9a2a61b54e04da0863ef.bz2" | bunzip2 > stack chmod +x stack echo -n "stack version: " docker run --rm -v $(pwd)/stack:/exe $IMAGE /exe --version diff --git a/etc/check.sh b/etc/check.sh index 78a5345f..d571a9c1 100755 --- a/etc/check.sh +++ b/etc/check.sh @@ -11,7 +11,7 @@ export PATH=$HOME/.local/bin:$PATH curl -L https://www.stackage.org/stack/linux-x86_64 | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack' # Get new Stackage curator -curl "https://download.fpcomplete.com/stackage-curator-2/curator-85b021a53833ff310fc66b3fdc5ca3f7828ce18b.bz2" | bunzip2 > curator +curl -L "https://download.fpcomplete.com/stackage-curator-2/curator-85b021a53833ff310fc66b3fdc5ca3f7828ce18b.bz2" | bunzip2 > curator chmod +x curator # Install GHC From 221bf7b6a724dad44ca09e4297dde5f667135439 Mon Sep 17 00:00:00 2001 From: Adrian Sieber <36796532+ad-si@users.noreply.github.com> Date: Sat, 4 Apr 2020 22:42:05 +0000 Subject: [PATCH 1386/2682] Add ulid --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 332562e0..c33704ae 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4187,6 +4187,9 @@ packages: "Vaclav Svejcar @vaclavsvejcar": - headroom + "Adrian Sieber @ad-si": + - ulid + "Grandfathered dependencies": - network - Boolean From a001947f3c585a04e8c8360962f1c337ae42153d Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 5 Apr 2020 10:40:20 +0300 Subject: [PATCH 1387/2682] Add back mpi-hs (closes #5278) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c33704ae..300c5eb4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -133,7 +133,7 @@ packages: - PyF "Erik Schnetter @eschnett": - - mpi-hs < 0 # https://github.com/commercialhaskell/stackage/issues/5278 + - mpi-hs "Yang Bo @Atry": - control-dsl < 0 # via doctest-discover From 923aa1a3ed7264d972f7ccc1a504a6044be1c8e3 Mon Sep 17 00:00:00 2001 From: ncaq Date: Sun, 5 Apr 2020 19:43:30 +0900 Subject: [PATCH 1388/2682] added: Reenable: yesod-form-bootstrap4, yesod-recaptcha2 I tested these packages with new yesod-core. --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 300c5eb4..cbd0014c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3419,8 +3419,8 @@ packages: - haskell-import-graph - string-transform - uniq-deep - - yesod-form-bootstrap4 < 0 # via yesod-core - - yesod-recaptcha2 < 0 # via yesod-core + - yesod-form-bootstrap4 + - yesod-recaptcha2 "Andrei Barbu @abarbu": - nondeterminism From ca2b5947a3f477de9300ebea2233c10afd4bb0e6 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Mon, 6 Apr 2020 20:33:29 -0700 Subject: [PATCH 1389/2682] Upper bound haddock-library (#5293) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index cbd0014c..da5a24d9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4739,6 +4739,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5257 - ghc-lib-parser < 8.10.1.20200324 - ghc-lib < 8.10.1.20200324 + + # https://github.com/commercialhaskell/stackage/issues/5293 + - haddock-library < 1.9.0 # end of packages # Package flags are applied to individual packages, and override the values of From e9b16909dcab88f59986bc431183335b8d4c332f Mon Sep 17 00:00:00 2001 From: Albert Krewinkel Date: Tue, 7 Apr 2020 13:42:07 +0200 Subject: [PATCH 1390/2682] Add hslua-module-doclayout --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index da5a24d9..2be8271b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3493,6 +3493,7 @@ packages: "Albert Krewinkel @tarleb": - hslua < 1.1.0 # https://github.com/commercialhaskell/stackage/issues/5261 - hslua-aeson + - hslua-module-doclayout - hslua-module-system - hslua-module-text - jira-wiki-markup < 1.2.0 # https://github.com/commercialhaskell/stackage/issues/5272 From 1c8ff80b363973671c9a79beb1fe281b4deb6e0e Mon Sep 17 00:00:00 2001 From: Ziyang Liu Date: Mon, 6 Apr 2020 13:54:36 -0700 Subject: [PATCH 1391/2682] Add hadoop-streaming --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index da5a24d9..680d7eb1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4179,6 +4179,7 @@ packages: - magic "Ziyang Liu @zliu41": + - hadoop-streaming - indexed-containers - math-extras - min-max-pqueue From 28f4fa654bee1d9e80a388426204e5051cd3a75b Mon Sep 17 00:00:00 2001 From: Emily Pillmore Date: Wed, 8 Apr 2020 12:43:37 -0400 Subject: [PATCH 1392/2682] add smash ecosystem --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 680d7eb1..0f1eefee 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -54,6 +54,10 @@ packages: - lens-process < 0 # via lens-4.18.1 - microlens-process - nonempty-vector + - smash + - smash-aeson + - smash-microlens + - smash-lens "Matthieu Monsch @mtth": - flags-applicative From 7163f2f48de313897da40e00179ab470d32d1469 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 8 Apr 2020 15:43:33 -0700 Subject: [PATCH 1393/2682] Disable testing datadog (#5297) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 680d7eb1..a0f0daad 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5119,6 +5119,7 @@ skipped-tests: - system-fileio # ansi-terminal-0.8 via chell - system-filepath # ansi-terminal-0.8 via chell - buffer-builder # per HTF per cpphs per polyparse (ghc 8.6 failure) + - datadog # https://github.com/commercialhaskell/stackage/issues/5297 # Blocked by stackage upper bounds. These can be re-enabled once # the relevant stackage upper bound is lifted. From c2c44b1af4f0ee6454b6b827f2174fcccab98d42 Mon Sep 17 00:00:00 2001 From: Will Sewell Date: Wed, 8 Apr 2020 22:44:20 +0100 Subject: [PATCH 1394/2682] Re-add benchpress The latest version (https://hackage.haskell.org/package/benchpress-0.2.2.13) is compatible up with base < 4.14 . --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a0f0daad..d51574ef 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2653,7 +2653,7 @@ packages: - fuzzyset "Will Sewell @willsewell": - - benchpress < 0 # via base-4.13.0.0 + - benchpress - pusher-http-haskell "Yorick Laupa yo.eight@gmail.com @YoEight": From fed0dbaa0a3d37c905b734a8aa58b3dbb11f6571 Mon Sep 17 00:00:00 2001 From: Emily Pillmore Date: Wed, 8 Apr 2020 12:44:28 -0400 Subject: [PATCH 1395/2682] Add smash, smash-aeson, smash-microlens, smash-lens --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d51574ef..a88e117e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -54,6 +54,10 @@ packages: - lens-process < 0 # via lens-4.18.1 - microlens-process - nonempty-vector + - smash + - smash-aeson + - smash-microlens + - smash-lens "Matthieu Monsch @mtth": - flags-applicative From 2ff8c92d83baa76c0087519b8cdc09f305553acc Mon Sep 17 00:00:00 2001 From: Dan Fithian Date: Thu, 9 Apr 2020 09:18:49 -0400 Subject: [PATCH 1396/2682] Update build-constraints.yaml --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a88e117e..6c0ef3bd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5123,7 +5123,6 @@ skipped-tests: - system-fileio # ansi-terminal-0.8 via chell - system-filepath # ansi-terminal-0.8 via chell - buffer-builder # per HTF per cpphs per polyparse (ghc 8.6 failure) - - datadog # https://github.com/commercialhaskell/stackage/issues/5297 # Blocked by stackage upper bounds. These can be re-enabled once # the relevant stackage upper bound is lifted. From defe4fb88794285141d75b056113ee5be02cd299 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 11 Apr 2020 06:58:49 -0700 Subject: [PATCH 1397/2682] Expect haddock failure for butcher (#5299) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6c0ef3bd..a22f7b33 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5588,6 +5588,9 @@ expected-haddock-failures: # https://github.com/haskell/haddock/issues/1091 - vault + + # https://github.com/commercialhaskell/stackage/issues/5299 + - butcher # end of expected-haddock-failures # For packages with haddock issues From 17ad793e382c42d5dc4bcbd7996e8c607ffaa630 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 12 Apr 2020 14:59:03 -0700 Subject: [PATCH 1398/2682] Test hpack, registry and butcher --- build-constraints.yaml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a22f7b33..528cbf32 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1376,7 +1376,7 @@ packages: - ghc-events < 0 # build failure with GHC 8.4 - monad-extras - optparse-simple - - hpack < 0 # MonadFail https://github.com/sol/hpack/issues/371 + - hpack - bindings-uname - stack < 9.9.9 # see https://github.com/fpco/stackage/issues/3563 - stack < 0 # via hackage-security @@ -4019,7 +4019,7 @@ packages: - kazura-queue "Eric Torreborre @etorreborre": - - registry < 0 # also protolude, semigroups, universum + - registry "Ryota Kameoka @ryota-ka": - duration @@ -5588,9 +5588,6 @@ expected-haddock-failures: # https://github.com/haskell/haddock/issues/1091 - vault - - # https://github.com/commercialhaskell/stackage/issues/5299 - - butcher # end of expected-haddock-failures # For packages with haddock issues From c8bcb459878d71931e49f1d59a31cf5c83a49373 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 12 Apr 2020 15:05:08 -0700 Subject: [PATCH 1399/2682] Disable tests for registry (#5302) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 528cbf32..f7ab6c42 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5244,6 +5244,9 @@ skipped-tests: - algebraic-graphs # https://github.com/commercialhaskell/stackage/issues/4670 - bugsnag-haskell # https://github.com/commercialhaskell/stackage/issues/4759 - servant-rawm # https://github.com/commercialhaskell/stackage/issues/5162 + + # https://github.com/commercialhaskell/stackage/issues/5302 + - registry # end of skipped-tests # Tests listed in expected-test-failures configure correctly but may fail to run From b12f77eb56fa0cddb7a8cef9f5ed44889b3104e2 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 13 Apr 2020 10:23:11 +0800 Subject: [PATCH 1400/2682] enable stack and bunch of packaging related packages like hackage-security --- build-constraints.yaml | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f7ab6c42..3fdd8e8f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -173,7 +173,7 @@ packages: "Phil de Joux @philderbeast": - siggy-chardust - detour-via-sci - - hpack-dhall < 0 # via hpack + - hpack-dhall "Matthew Ahrens @mpahrens": - forkable-monad @@ -653,8 +653,8 @@ packages: - githash - time-manager - - pantry < 0 # via cryptonite-conduit & hackage-security & hpack & http-download & persistent & persistent-sqlite & persistent-template & rio-orphans & rio-prettyprint & tar-conduit & th-utilities - - mega-sdist < 0 # via pantry + - pantry + - mega-sdist - http-download - hi-file-parser - rio-prettyprint @@ -824,6 +824,8 @@ packages: - weigh - odbc # - structured-haskell-mode # https://github.com/chrisdone/structured-haskell-mode/issues/156 + - casa-client + - casa-types "Alberto G. Corona @agocorona": - RefSerialize @@ -1379,7 +1381,7 @@ packages: - hpack - bindings-uname - stack < 9.9.9 # see https://github.com/fpco/stackage/issues/3563 - - stack < 0 # via hackage-security + - stack "Michael Sloan @mgsloan": - th-orphans @@ -1521,6 +1523,7 @@ packages: - fedora-haskell-tools - hkgr - http-directory + - pagure-cli - rpmbuild-order - simple-cabal - simple-cmd @@ -2468,7 +2471,7 @@ packages: - nagios-check "Peter Simons @peti": - - cabal2nix < 0 # via hpack + - cabal2nix - cabal2spec < 2.6 # GHC 8.10 via Cabal-3.2 - cgi < 0 # via multipart - distribution-nixpkgs @@ -2857,7 +2860,7 @@ packages: "Mikhail Glushenkov @23Skidoo": # - Cabal take the one that ships with GHC - - cabal-install < 0 # via base-4.13.0.0 + - cabal-install #< 0 # via Cabal # - pointful # haskell-src-exts-simple "Lennart Kolmodin @kolmodin": @@ -4360,7 +4363,7 @@ packages: - github - groom - groups - - hackage-security < 0 # via base-4.13.0.0 + - hackage-security - hashable - haskell-gi-overloading - haskell-lexer @@ -4423,6 +4426,7 @@ packages: - lockfree-queue - log-base - logging-facade + - lukko - lrucache - lzma - managed @@ -4494,7 +4498,7 @@ packages: - readable - rebase - recursion-schemes - - regex-applicative-text < 0 # via regex-applicative + - regex-applicative-text - regex-base - regex-compat - regex-pcre From fb941c86688a78729bdc29a9435a91125fa0483a Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 13 Apr 2020 10:25:50 +0800 Subject: [PATCH 1401/2682] redisable cabal-install (needs Cabal-3.2) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3fdd8e8f..93562270 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2860,7 +2860,7 @@ packages: "Mikhail Glushenkov @23Skidoo": # - Cabal take the one that ships with GHC - - cabal-install #< 0 # via Cabal + - cabal-install < 0 # via Cabal # - pointful # haskell-src-exts-simple "Lennart Kolmodin @kolmodin": From 2ef343b5042df01df1e3c49021eca3804181ce60 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 13 Apr 2020 10:40:14 +0800 Subject: [PATCH 1402/2682] mega-sdist failed to build MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Building executable 'mega-sdist' for mega-sdist-0.4.0.1.. [1 of 2] Compiling Paths_mega_sdist [2 of 2] Compiling Main /var/stackage/work/unpack-dir/unpacked/mega-sdist-0.4.0.1-b7dcfdabbabab05ba32d3e30197037e262eb4fac4bb168451d19ad14b25f1099/mega- sdist.hs:233:11: error: Not in scope: ‘rpmCabal’ | 233 | , rpmCabal = Nothing | ^^^^^^^^ --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 93562270..8472d1a3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -564,7 +564,6 @@ packages: "Michael Snoyman michael@snoyman.com @snoyberg": - bzlib-conduit - - mega-sdist - case-insensitive - classy-prelude-yesod - conduit-combinators @@ -654,7 +653,7 @@ packages: - time-manager - pantry - - mega-sdist + - mega-sdist < 0 # Cabal issues - http-download - hi-file-parser - rio-prettyprint From f1893a8d92411bd984bb94466caf85f0ca3e4de3 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 13 Apr 2020 10:43:29 +0800 Subject: [PATCH 1403/2682] stack-2.1 failed to build with Cabal-3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [1 of 2] Compiling Main ( /var/stackage/work/unpack-dir/unpacked/stack-2.1.3.1-ec7fb20d187731e0b610eb0567bf940e4c43c 690b8c611670d066e0a751660b5/Setup.hs, /var/stackage/work/unpack-dir/unpacked/stack-2.1.3.1-ec7fb20d187731e0b610eb0567bf940e4c43c690b 8c611670d066e0a751660b5/.stack-work/dist/x86_64-linux/Cabal-3.0.1.0/setup/Main.o ) /var/stackage/work/unpack-dir/unpacked/stack-2.1.3.1-ec7fb20d187731e0b610eb0567bf940e4c43c690b8c611670d066e0a751660b5/Setup.hs:6 :42: error: Module ‘Distribution.Package’ does not export ‘InstalledPackageId’ | 6 | import Distribution.Package ( PackageId, InstalledPackageId, packageVersion, packageName ) | ^^^^^^^^^^^^^^^^^^ /var/stackage/work/unpack-dir/unpacked/stack-2.1.3.1-ec7fb20d187731e0b610eb0567bf940e4c43c690b8c611670d066e0a751660b5/Setup.hs:8 :60: error: Module ‘Distribution.InstalledPackageInfo’ does not export ‘installedPackageId’ | 8 | import Distribution.InstalledPackageInfo (sourcePackageId, installedPackageId) | ^^^^^^^^^^^^^^^^^^ /var/stackage/work/unpack-dir/unpacked/stack-2.1.3.1-ec7fb20d187731e0b610eb0567bf940e4c43c690b8c611670d066e0a751660b5/Setup.hs:1 0:36: error: Module ‘Distribution.Simple.Utils’ does not export ‘rewriteFile’ | 10 | import Distribution.Simple.Utils ( rewriteFile, createDirectoryIfMissingVerbose ) | ^^^^^^^^^^^ /var/stackage/work/unpack-dir/unpacked/stack-2.1.3.1-ec7fb20d187731e0b610eb0567bf940e4c43c690b8c611670d066e0a751660b5/Setup.hs:1 1:41: error: Module ‘Distribution.Simple.BuildPaths’ does not export ‘autogenModulesDir’ | 11 | import Distribution.Simple.BuildPaths ( autogenModulesDir ) | ^^^^^^^^^^^^^^^^^ /var/stackage/work/unpack-dir/unpacked/stack-2.1.3.1-ec7fb20d187731e0b610eb0567bf940e4c43c690b8c611670d066e0a751660b5/Setup.hs:1 8:31: error: Module ‘Distribution.Version’ does not export ‘showVersion’ | 18 | import Distribution.Version ( showVersion ) | ^^^^^^^^^^^ --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8472d1a3..50ea6664 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1380,7 +1380,7 @@ packages: - hpack - bindings-uname - stack < 9.9.9 # see https://github.com/fpco/stackage/issues/3563 - - stack + - stack < 0 # build issues with Cabal "Michael Sloan @mgsloan": - th-orphans From d49f32029152554a48171d9f3983dc1509e9c57d Mon Sep 17 00:00:00 2001 From: Mihai Giurgeanu Date: Sun, 12 Apr 2020 00:32:57 +0300 Subject: [PATCH 1404/2682] Add sqlcli, sqlcli-odbc, logging. --- build-constraints.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 50ea6664..53b60294 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -9,6 +9,12 @@ cabal-format-version: "2.4" # Constraints for brand new builds packages: + "Mihai Giurgeanu @mihaigiurgeanu": + - sqlcli + - sqlcli-odbc + # not a maintainer + - logging + "Sasha Bogicevic @v0d1ch": - plaid From 67d0b0dd04bbeafbb0c8742a0088462bb91af5e4 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Mon, 13 Apr 2020 16:18:08 -0700 Subject: [PATCH 1405/2682] re-enable hakyll cf jaspervdj/hakyll#730 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 50ea6664..de3efe9a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -726,7 +726,7 @@ packages: - psqueues - websockets - websockets-snap - - hakyll < 0 # jaspervdj/hakyll#691 + - hakyll "Sibi Prabakaran @psibi": - download From 0b6ff790f4e046db3bf4b90649f19d2e578ca4ff Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Tue, 14 Apr 2020 19:44:10 +0200 Subject: [PATCH 1406/2682] ghc-syntax-highlighter upper bound #5257 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 50ea6664..6f8530af 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4747,6 +4747,7 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5257 - ghc-lib-parser < 8.10.1.20200324 - ghc-lib < 8.10.1.20200324 + - ghc-syntax-highlighter < 0.0.6.0 # https://github.com/commercialhaskell/stackage/issues/5293 - haddock-library < 1.9.0 From 7c99fc873fb8cd7c54dff45db5a8d13bd83cf9f2 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Tue, 14 Apr 2020 19:55:27 +0200 Subject: [PATCH 1407/2682] Re-enable haskell-lsp-types haddocks, closes #5305 --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7dcb638c..e5b1ac5b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5603,7 +5603,6 @@ skipped-haddocks: - modular # https://github.com/haskell/haddock/issues/900 - sparkle # Java function failures tweag/sparkle#144 - polysemy-zoo # Needs polysemy-plugin GHC plugin -- haskell-lsp-types # 0.13.0.0 https://github.com/commercialhaskell/stackage/issues/4563#issuecomment-493899809 - hw-ip # https://github.com/commercialhaskell/stackage/issues/5014 # end of skipped-haddocks From 758621b6e0e23519985033ab4c3bdea11ac72651 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Tue, 14 Apr 2020 20:00:18 +0200 Subject: [PATCH 1408/2682] Disable urlpath #5300 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e5b1ac5b..32cc6240 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2016,7 +2016,7 @@ packages: - tries < 0 # GHC 8.4 via bytestring-trie - unit-constraint - unfoldable-restricted < 0 # via unfoldable - - urlpath + # - urlpath - wai-transformers < 0 # via wai-websockets - websockets-rpc < 0 # websockets-simple - websockets-simple < 0 # BuildFailureException with GHC 8.4 From 9e6a04b301d539bebecfad4203fc170e89d9be75 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Wed, 15 Apr 2020 07:17:08 +0200 Subject: [PATCH 1409/2682] arithmoi < 0.11.0.0 for #5306 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f024f524..b309964b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4758,6 +4758,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5293 - haddock-library < 1.9.0 + + # https://github.com/commercialhaskell/stackage/issues/5306 + - arithmoi < 0.11.0.0 # end of packages # Package flags are applied to individual packages, and override the values of From 065fee33d9d692cdf219a8d6c3695717aa8d4cb6 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Wed, 15 Apr 2020 07:26:20 +0200 Subject: [PATCH 1410/2682] Expect genvalidity-typed-uuid tests to fail NofairKing/typed-uuid#2 --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b309964b..892db357 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5285,8 +5285,9 @@ expected-test-failures: - distributed-process-execution # https://github.com/haskell-distributed/distributed-process-execution/issues/2 - distributed-process-task - foldl-statistics # https://github.com/data61/foldl-statistics/issues/2 - - fsnotify # Often runs out of inotify handles - forma + - fsnotify # Often runs out of inotify handles + - genvalidity-typed-uuid # https://github.com/NorfairKing/typed-uuid/issues/2 - hastache - idris # https://github.com/fpco/stackage/issues/1382 - ihaskell # https://github.com/gibiansky/IHaskell/issues/551 From 6412056356137ef7975c63872ad448bb19a38059 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Wed, 15 Apr 2020 18:33:05 +0200 Subject: [PATCH 1411/2682] Remove upper bounds and close #5257 --- build-constraints.yaml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 892db357..8b494409 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4751,11 +4751,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5255 - ghc-lib-parser-ex < 8.8.6.0 - # https://github.com/commercialhaskell/stackage/issues/5257 - - ghc-lib-parser < 8.10.1.20200324 - - ghc-lib < 8.10.1.20200324 - - ghc-syntax-highlighter < 0.0.6.0 - # https://github.com/commercialhaskell/stackage/issues/5293 - haddock-library < 1.9.0 From b3bd60a37bc88e227b2999bea34c38f7c19ce103 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 15 Apr 2020 21:33:37 +0300 Subject: [PATCH 1412/2682] Drop tracing transitive deps #5289 --- build-constraints.yaml | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8b494409..56503454 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -69,16 +69,6 @@ packages: - flags-applicative - more-containers - tracing - # transitive dependencies for tracing - - ip - - byteslice - - bytesmith - - contiguous - - natural-arithmetic - - primitive-offset - - primitive-unlifted - - run-st - - small-bytearray-builder "Robert Vollmert @robx": - configurator-pg @@ -1406,7 +1396,7 @@ packages: - partial-handler - postgresql-binary - slave-thread < 0 - - stm-containers + - stm-containers < 0 # https://github.com/commercialhaskell/stackage/pull/5289#issuecomment-610353366 - refined < 0 # https://github.com/nikita-volkov/refined/issues/33 "Iustin Pop @iustin": @@ -4485,7 +4475,6 @@ packages: - prettyprinter-convert-ansi-wl-pprint - primes - primitive - - primitive-extras - primitive-unaligned - process-extras - product-isomorphic @@ -4555,7 +4544,6 @@ packages: - statistics - step-function - stm-delay - - stm-hamt - storable-complex - store-core < 0 # MonadFail - streaming-cassava < 0 # via streaming @@ -4738,9 +4726,6 @@ packages: - servant-swagger < 1.1.8 - aur < 6.3.0 - # https://github.com/commercialhaskell/stackage/issues/5211 - - small-bytearray-builder < 0.3.4 - # https://github.com/commercialhaskell/stackage/issues/5218 - unliftio-core < 0.2 - higher-leveldb < 0.6.0.0 @@ -5726,7 +5711,6 @@ skipped-benchmarks: - sorted-list - sourcemap - stache - - stm-hamt - tar - tar-conduit - text-builder From 7e94eb9f1e422dbb5dac22d02a4736f0fb6df381 Mon Sep 17 00:00:00 2001 From: Robert Vollmert Date: Wed, 15 Apr 2020 21:39:02 +0200 Subject: [PATCH 1413/2682] Add postgrest --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8b494409..87fafa79 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -82,6 +82,7 @@ packages: "Robert Vollmert @robx": - configurator-pg + - postgrest "Sandy Maguire @isovector": - ecstasy @@ -5378,6 +5379,7 @@ expected-test-failures: - postgresql-simple-migration - postgresql-simple-queue - postgresql-typed # PostgreSQL + - postgrest # PostgreSQL - purescript # git 128 https://github.com/purescript/purescript/issues/2292 - rattle # needs fsatrace - redis-io From bc4fbc746abe9fbac4d057881ec77f51f40f4746 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 16 Apr 2020 08:39:33 +0300 Subject: [PATCH 1414/2682] Install AWS CLI --- debian-bootstrap.sh | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index 05b9aa96..4d66a10a 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -17,9 +17,19 @@ mkdir -p /home/stackage export LANG=C.UTF-8 export DEBIAN_FRONTEND=noninteractive -# Get curl +# Get curl and unzip apt-get update -apt-get install -y curl +apt-get install -y curl unzip + +# Install AWS CLI +mkdir -p /tmp/awscli +( +cd /tmp/awscli +curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" +unzip awscliv2.zip +./aws/install +) +rm -rf /tmp/awscli # Get Stack and GHC curl -sSL https://get.haskellstack.org/ | sh -s - -d /usr/bin From 4b95ec4d7a1a17c0db75e9e19ec7efe71bbbcb5b Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Thu, 16 Apr 2020 08:58:00 +0200 Subject: [PATCH 1415/2682] CURATORS.md: curator has moved --- CURATORS.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CURATORS.md b/CURATORS.md index 94baf7bf..80da8441 100644 --- a/CURATORS.md +++ b/CURATORS.md @@ -18,7 +18,7 @@ This section sketches out at a high level how the entire Stackage build/curation process works: * [build-constraints.yaml](https://github.com/commercialhaskell/stackage/blob/master/build-constraints.yaml) specifies packages to be included in Stackage -* [curator](https://github.com/commercialhaskell/stack/tree/master/subs/curator) combines build-constraints.yaml with the current state of Hackage to create a build plan for a Stackage Nightly +* [curator](https://github.com/commercialhaskell/curator) combines build-constraints.yaml with the current state of Hackage to create a build plan for a Stackage Nightly * `curator` can check that build plan to ensure all version bounds are consistent * The [Travis job](https://github.com/commercialhaskell/stackage/blob/master/.travis.yml) performs these two steps to provide immediate feedback on pull requests * Docker Hub [builds](https://github.com/commercialhaskell/stackage/blob/master/Dockerfile) a [Docker image](https://hub.docker.com/r/commercialhaskell/stackage/) for running builds @@ -291,7 +291,7 @@ we're just not there yet. Recommended: run these from inside a `tmux` session. If you get version bound problems on nightly or LTS major, you need to fix build-constraints.yaml (see -info above). +info above). ### Building LTS minor releases Before running the build, please make sure that the Dockerfile in `automated/dockerfiles/lts-X.Y` is up to date, where X is the major version that you're building and Y is the latest minor version of X for which a Dockerfile exists. If any changes need to be made, (eg, new GHC version), copy `lts-X.Y/Dockerfile` to `lts-X.Z/Dockerfile`, where Z is the minor version you're building, and include the new changes. From c604da5af7734074339f61faa5d14837501b838c Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Thu, 16 Apr 2020 09:19:15 +0200 Subject: [PATCH 1416/2682] optics upper bounds for #5309 --- build-constraints.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8b494409..dec45ee2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4756,6 +4756,11 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5306 - arithmoi < 0.11.0.0 + + # https://github.com/commercialhaskell/stackage/issues/5309 + - optics-core < 0.3 + - optics-extra < 0.3 + - optics-th < 0.3 # end of packages # Package flags are applied to individual packages, and override the values of From ccb816e2e23dc8f09d2796f027a756d5bf3ef53a Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Thu, 16 Apr 2020 09:31:59 +0200 Subject: [PATCH 1417/2682] optics < 0.3 for #5309 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index dec45ee2..e37b787b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4758,6 +4758,7 @@ packages: - arithmoi < 0.11.0.0 # https://github.com/commercialhaskell/stackage/issues/5309 + - optics < 0.3 - optics-core < 0.3 - optics-extra < 0.3 - optics-th < 0.3 From 91150f1df2e0439bab670b7970a0a9fbc702ec19 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 16 Apr 2020 11:24:28 +0300 Subject: [PATCH 1418/2682] Upper bound on optics-vl --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index e37b787b..11bd56c8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4762,6 +4762,8 @@ packages: - optics-core < 0.3 - optics-extra < 0.3 - optics-th < 0.3 + - optics < 0.3 + - optics-vl < 0.2.1 # end of packages # Package flags are applied to individual packages, and override the values of From 1afd08ff0a3c3627f17eb1b928d35f337db40e08 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 16 Apr 2020 12:20:39 +0300 Subject: [PATCH 1419/2682] Newer curator --- automated/build.sh | 2 +- debian-bootstrap.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/automated/build.sh b/automated/build.sh index ae7e515f..d1d36efd 100755 --- a/automated/build.sh +++ b/automated/build.sh @@ -63,7 +63,7 @@ BINDIR=$(cd $ROOT/work/bin ; pwd) cd $BINDIR rm -f curator stack *.bz2 -curl -L "https://download.fpcomplete.com/stackage-curator-2/curator-85b021a53833ff310fc66b3fdc5ca3f7828ce18b.bz2" | bunzip2 > curator +curl -L "https://s3.amazonaws.com/haddock.stackage.org/curator/curator-80cd5b697f5b00ba13b1bba89cf31918201ce6f0.bz2" | bunzip2 > curator chmod +x curator echo -n "curator version: " docker run --rm -v $(pwd)/curator:/exe $IMAGE /exe --version diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index 4d66a10a..e688b670 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -27,7 +27,7 @@ mkdir -p /tmp/awscli cd /tmp/awscli curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" unzip awscliv2.zip -./aws/install +./aws/install --bin-dir /usr/bin ) rm -rf /tmp/awscli From 4bb6147268dbf51f606688dd3f6b1ffc6b911017 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 16 Apr 2020 13:32:19 +0300 Subject: [PATCH 1420/2682] Newer curator exe --- automated/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automated/build.sh b/automated/build.sh index d1d36efd..9eb969cf 100755 --- a/automated/build.sh +++ b/automated/build.sh @@ -63,7 +63,7 @@ BINDIR=$(cd $ROOT/work/bin ; pwd) cd $BINDIR rm -f curator stack *.bz2 -curl -L "https://s3.amazonaws.com/haddock.stackage.org/curator/curator-80cd5b697f5b00ba13b1bba89cf31918201ce6f0.bz2" | bunzip2 > curator +curl -L "https://download.fpcomplete.com/stackage-curator-2/curator-7c719d6d48839c94a79dc2ad2ace89074e3dd997.bz2" | bunzip2 > curator chmod +x curator echo -n "curator version: " docker run --rm -v $(pwd)/curator:/exe $IMAGE /exe --version From abd3da2a0f329502ae6dd7fb7d0497b321aa5f4d Mon Sep 17 00:00:00 2001 From: Chris Martin Date: Thu, 16 Apr 2020 12:20:57 -0600 Subject: [PATCH 1421/2682] Add d10 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 11bd56c8..0880e286 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3707,6 +3707,7 @@ packages: "Type Classes @argumatronic @chris-martin": - aws-cloudfront-signed-cookies + - d10 - stripe-concepts - stripe-signature - stripe-scotty < 0 # via scotty From abec05978501021a897236d09bdf52c65a1ecd8e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20B=C3=A4renz?= Date: Fri, 17 Apr 2020 13:59:15 +0200 Subject: [PATCH 1422/2682] Re-enable rhine* and essence-of-live-coding* The restrictive upper bounds have been removed in the latest hackage releases. --- build-constraints.yaml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 11bd56c8..e1412841 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -196,14 +196,13 @@ packages: "Manuel Bärenz @turion": - dunai - - rhine < 0 # via base-4.13.0.0 - - rhine-gloss < 0 # via base-4.13.0.0 - - dunai-core < 0 # via base-4.13.0.0 + - rhine + - rhine-gloss - finite-typelits - - essence-of-live-coding < 0 # via base-4.13.0.0 - - essence-of-live-coding-gloss < 0 # via base-4.13.0.0 - - essence-of-live-coding-pulse < 0 # via base-4.13.0.0 - - essence-of-live-coding-quickcheck < 0 # via base-4.13.0.0 + - essence-of-live-coding + - essence-of-live-coding-gloss + - essence-of-live-coding-pulse + - essence-of-live-coding-quickcheck - pulse-simple - simple-affine-space From beb64df8faf1c1b9e6bde33254dc7e98d0fd6374 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Fri, 17 Apr 2020 18:55:18 +0200 Subject: [PATCH 1423/2682] genvalidity-typed-uuid should be fixed NofairKing/typed-uuid#2 --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 11bd56c8..0602a6fd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5290,7 +5290,6 @@ expected-test-failures: - foldl-statistics # https://github.com/data61/foldl-statistics/issues/2 - forma - fsnotify # Often runs out of inotify handles - - genvalidity-typed-uuid # https://github.com/NorfairKing/typed-uuid/issues/2 - hastache - idris # https://github.com/fpco/stackage/issues/1382 - ihaskell # https://github.com/gibiansky/IHaskell/issues/551 From 32247194830460aed8e835633dc37f6e6b78ad14 Mon Sep 17 00:00:00 2001 From: Kei Hibino Date: Sat, 18 Apr 2020 15:52:23 +0900 Subject: [PATCH 1424/2682] re-add packages about relational-record depend on HDBC. --- build-constraints.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c9c06294..911fb100 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2869,9 +2869,9 @@ packages: - th-data-compat - th-reify-compat - relational-query - - relational-query-HDBC < 0 # via HDBC - - persistable-types-HDBC-pg < 0 # via HDBC - - relational-record < 0 # via relational-query-HDBC + - relational-query-HDBC + - persistable-types-HDBC-pg + - relational-record - text-ldap - debian-build - aeson-generic-compat @@ -4204,8 +4204,8 @@ packages: - GenericPretty - Glob - HasBigDecimal - - HDBC < 0 # via time-1.9.3 - - HDBC-session < 0 # via HDBC + - HDBC + - HDBC-session - HTTP - HsOpenSSL - HsYAML From 688c9d04ab22329d445141526460d67e3bf38218 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sat, 18 Apr 2020 12:24:15 +0200 Subject: [PATCH 1425/2682] Re-enable MissingH and dependents --- build-constraints.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 911fb100..4b70c9a4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1365,7 +1365,7 @@ packages: - interpolatedstring-perl6 - iproute - missing-foreign - - MissingH < 0 # via array-0.5.4.0 & base-4.13.0.0 & containers-0.6.2.1 & directory-1.3.3.2 & filepath-1.4.2.1 & old-time-1.1.0.3 & process-1.6.5.1 & time-1.9.3 & unix-2.7.2.2 + - MissingH - multimap - parallel-io - text-binary @@ -2723,7 +2723,7 @@ packages: "Pedro Tacla Yamada @yamadapc": - ascii-progress - drawille < 0 - - file-modules < 0 # via MissingH + - file-modules - frontmatter - read-editor # - list-prompt # https://github.com/yamadapc/list-prompt/issues/3 @@ -3893,7 +3893,7 @@ packages: "Avi Press @aviaviavi": - curl-runnings < 0 - - cryptocompare < 0 # via MissingH + - cryptocompare "Jack Kiefer @JackKiefer": - herms < 0 @@ -4028,7 +4028,7 @@ packages: - ghci-hexcalc "Nikos Karagianndis @nkarag": - - DBFunctor < 0 # via MissingH + - DBFunctor "Marat Khafizov @xafizoff": - n2o From d432eddf7249ec3f18616766b7222ad6f6bbd0ab Mon Sep 17 00:00:00 2001 From: Alexander Vershilov Date: Sat, 18 Apr 2020 21:14:57 +0300 Subject: [PATCH 1426/2682] add co-log-concurrent. --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4b70c9a4..74575306 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3732,6 +3732,7 @@ packages: "Alexander Vershilov @qnikst": - stm-conduit + - co-log-concurrent "Tung Dao @tungd": - time-locale-vietnamese From 05a2e36a52d949e6a38a0d1f6088a0cff123c2c3 Mon Sep 17 00:00:00 2001 From: Chris Martin Date: Sat, 18 Apr 2020 12:49:02 -0600 Subject: [PATCH 1427/2682] add data-forest --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4b70c9a4..58652a73 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3691,6 +3691,7 @@ packages: - colorize-haskell "Chris Martin @chris-martin": + - data-forest - loc - partial-semigroup - path-text-utf8 From c116763e15cd32b1c20636435b6413dedb8e745e Mon Sep 17 00:00:00 2001 From: Erik Schnetter Date: Sat, 18 Apr 2020 19:04:59 -0400 Subject: [PATCH 1428/2682] New packages mpi-hs-binary and mpi-hs-cereal There is also a package `mpi-hs-store`, but it depends on `store`, and that fell out of Stackage some time ago. --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4b70c9a4..51cb7808 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -135,6 +135,8 @@ packages: "Erik Schnetter @eschnett": - mpi-hs + - mpi-hs-binary + - mpi-hs-cereal "Yang Bo @Atry": - control-dsl < 0 # via doctest-discover From 1e02897cdce57887925fc3034c8b3e2a87027ac3 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sun, 19 Apr 2020 13:58:59 +0200 Subject: [PATCH 1429/2682] dunai upper bound for #5316 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 63335f98..fb30ac45 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4754,6 +4754,9 @@ packages: - optics-th < 0.3 - optics < 0.3 - optics-vl < 0.2.1 + + # https://github.com/commercialhaskell/stackage/issues/5316 + - dunai < 0.7.0 # end of packages # Package flags are applied to individual packages, and override the values of From 2c9e89852c1fedda6d6013be3c1da09f2fada460 Mon Sep 17 00:00:00 2001 From: Guillaume Bouchard Date: Sun, 19 Apr 2020 20:31:02 +0200 Subject: [PATCH 1430/2682] Add krank and pretty-terminal `pretty-terminal` is a dependency of `krank`, so I'm adding it at the same time. It is a really simple package (with only dependency to `base` and `text`). --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index fb30ac45..d74e5e3e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -131,6 +131,8 @@ packages: - modular "Guillaume Bouchard @guibou": + - krank + - pretty-terminal - PyF "Erik Schnetter @eschnett": From f504eba90bf05e5d5e3071839427aea479d50990 Mon Sep 17 00:00:00 2001 From: kwannoel <47273164+kwannoel@users.noreply.github.com> Date: Mon, 20 Apr 2020 14:48:44 +0800 Subject: [PATCH 1431/2682] add servant-docs-simple --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index fb30ac45..4157bad9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3631,6 +3631,9 @@ packages: "Holmusk @arbus": - elm-street < 0 # via base-4.13.0.0 & warp-3.3.2 + + "Noel Kwan @kwannoel": + - servant-docs-simple "Lorenz Moesenlechner @moesenle": - servant-websockets From 89d0bf88a3448aefb891cffab73b0ac9b41b8bab Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Mon, 20 Apr 2020 20:33:21 -0700 Subject: [PATCH 1432/2682] Remove upper bound for dunai, closes #5316 --- build-constraints.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index fb30ac45..a4aeb070 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4755,8 +4755,6 @@ packages: - optics < 0.3 - optics-vl < 0.2.1 - # https://github.com/commercialhaskell/stackage/issues/5316 - - dunai < 0.7.0 # end of packages # Package flags are applied to individual packages, and override the values of From a5361ec29c4b03971da02475c2281c85f4703d64 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 21 Apr 2020 07:15:40 +0300 Subject: [PATCH 1433/2682] Newer Stack executable with more debugging --- automated/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automated/build.sh b/automated/build.sh index 9eb969cf..f1344348 100755 --- a/automated/build.sh +++ b/automated/build.sh @@ -68,7 +68,7 @@ chmod +x curator echo -n "curator version: " docker run --rm -v $(pwd)/curator:/exe $IMAGE /exe --version -curl -L "https://download.fpcomplete.com/stackage-curator-2/stack-4033c93815477e5b565d9a2a61b54e04da0863ef.bz2" | bunzip2 > stack +curl -L "https://download.fpcomplete.com/stackage-curator-2/stack-fffc0a40e2253788f6b9cb7471c03fd571d69bde.bz2" | bunzip2 > stack chmod +x stack echo -n "stack version: " docker run --rm -v $(pwd)/stack:/exe $IMAGE /exe --version From d3aed566e695fd4f82b06bac83528b7c9528e869 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 21 Apr 2020 07:15:47 +0300 Subject: [PATCH 1434/2682] Skip newer typerep-map --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index fc7a214d..287c2f3b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4760,6 +4760,8 @@ packages: - optics < 0.3 - optics-vl < 0.2.1 + # https://github.com/commercialhaskell/stack/issues/5264 + - typerep-map < 0.3.3 # end of packages # Package flags are applied to individual packages, and override the values of From 865e60af1902fb9259fb55f3d6c87034eb470d81 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 21 Apr 2020 07:20:11 +0300 Subject: [PATCH 1435/2682] Revert "Skip newer typerep-map" This reverts commit d3aed566e695fd4f82b06bac83528b7c9528e869. --- build-constraints.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 287c2f3b..fc7a214d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4760,8 +4760,6 @@ packages: - optics < 0.3 - optics-vl < 0.2.1 - # https://github.com/commercialhaskell/stack/issues/5264 - - typerep-map < 0.3.3 # end of packages # Package flags are applied to individual packages, and override the values of From 462c766c2d95dcf75cfce8460197325468b95dc2 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Wed, 22 Apr 2020 19:45:38 -0700 Subject: [PATCH 1436/2682] Add upper bound for protolude, #5319 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index fc7a214d..21d00b2b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4760,6 +4760,9 @@ packages: - optics < 0.3 - optics-vl < 0.2.1 + # https://github.com/commercialhaskell/stackage/issues/5319 + - protolude < 0.3 + # end of packages # Package flags are applied to individual packages, and override the values of From 6a58de5523d0b56295722b70e3c37b829d687617 Mon Sep 17 00:00:00 2001 From: Dmitry Ivanov Date: Thu, 23 Apr 2020 23:01:08 +0200 Subject: [PATCH 1437/2682] Update opentelemetry packages --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 21d00b2b..b2efbf6a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2418,8 +2418,8 @@ packages: - io-storage - oo-prototypes - opentelemetry + - opentelemetry-extra - opentelemetry-wai - - opentelemetry-http-client - opentelemetry-lightstep - planb-token-introspection - pointedlist From 721c6baf47232d8d24ec700f6a739c5b87c00b33 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Thu, 23 Apr 2020 22:23:12 -0700 Subject: [PATCH 1438/2682] Add upper bound for swagger2, #5322 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 21d00b2b..0f11824e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4763,6 +4763,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5319 - protolude < 0.3 + # https://github.com/commercialhaskell/stackage/issues/5322 + - swagger2 < 2.6 + # end of packages # Package flags are applied to individual packages, and override the values of From 126ad50871091b834b4fc0498bb28d94c306dc2f Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Thu, 23 Apr 2020 22:36:52 -0700 Subject: [PATCH 1439/2682] Try enabling ghc-events --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0f11824e..5f2875b7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1374,7 +1374,7 @@ packages: - parallel-io - text-binary - Chart-cairo < 0 # GHC 8.4 via cairo - - ghc-events < 0 # build failure with GHC 8.4 + - ghc-events - monad-extras - optparse-simple - hpack From 72149c630159f57e71874073ac91660c1c422879 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Fri, 24 Apr 2020 20:03:00 -0700 Subject: [PATCH 1440/2682] Add upper bound for base64-bytestring, #5323 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7098cc5b..01471dd8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4766,6 +4766,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5322 - swagger2 < 2.6 + # https://github.com/commercialhaskell/stackage/issues/5323 + - base64-bytestring < 1.1 + # end of packages # Package flags are applied to individual packages, and override the values of From 49870510744e281cfa17be71042fa750d2b2c769 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Sat, 25 Apr 2020 12:46:24 -0700 Subject: [PATCH 1441/2682] Add upper bound for cabal2nix, #5324 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 01471dd8..37a9db60 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4769,6 +4769,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5323 - base64-bytestring < 1.1 + # https://github.com/commercialhaskell/stackage/issues/5324 + - cabal2nix < 2.15.2 + # end of packages # Package flags are applied to individual packages, and override the values of From edb909e1bedd71da19b508d6de27bdefcde90a84 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Sat, 25 Apr 2020 12:48:37 -0700 Subject: [PATCH 1442/2682] Add upper bound for hw-balancedparens, #5325 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 37a9db60..498d3e80 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4772,6 +4772,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5324 - cabal2nix < 2.15.2 + # https://github.com/commercialhaskell/stackage/issues/5325 + - hw-balancedparens < 0.4 + # end of packages # Package flags are applied to individual packages, and override the values of From 7608c23e42d41427dbf7f61a21f6f20aaa10bb03 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Sat, 25 Apr 2020 21:14:53 -0700 Subject: [PATCH 1443/2682] Add upper bound for string-interpolate, #5326 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 498d3e80..8c715724 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4775,6 +4775,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5325 - hw-balancedparens < 0.4 + # https://github.com/commercialhaskell/stackage/issues/5326 + - string-interpolate < 0.2.0.2 + # end of packages # Package flags are applied to individual packages, and override the values of From 064f745b9dcde15b0e53a428bd26fb1efe8d96b2 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Sun, 26 Apr 2020 11:55:32 -0700 Subject: [PATCH 1444/2682] Remove upper bound for hw-balancedparens, closes #5325 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8c715724..0e66cbae 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4772,9 +4772,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5324 - cabal2nix < 2.15.2 - # https://github.com/commercialhaskell/stackage/issues/5325 - - hw-balancedparens < 0.4 - # https://github.com/commercialhaskell/stackage/issues/5326 - string-interpolate < 0.2.0.2 From 6ad0bcb5431e35a0d892ac579f1cf99c5b70f4cc Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Sun, 26 Apr 2020 12:01:08 -0700 Subject: [PATCH 1445/2682] Remove upper bound for string-interpolate, closes #5326 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0e66cbae..37a9db60 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4772,9 +4772,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5324 - cabal2nix < 2.15.2 - # https://github.com/commercialhaskell/stackage/issues/5326 - - string-interpolate < 0.2.0.2 - # end of packages # Package flags are applied to individual packages, and override the values of From 3970f257d62386c05d9d9a1a9e7d1805f355658b Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Sun, 26 Apr 2020 19:33:04 -0700 Subject: [PATCH 1446/2682] Revert "Restore broadcast-chan" This reverts commit 117ac9f8e75d4f2c5717b480f06985940f440298. --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 37a9db60..3100bce3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1362,6 +1362,7 @@ packages: "Emanuel Borsboom @borsboom": - BoundedChan + - broadcast-chan < 0 # compilation failure - fuzzcheck - here - hlibgit2 @@ -5670,6 +5671,7 @@ skipped-benchmarks: - bit-stream - bitset-word8 - blake2 + - broadcast-chan - bv-little - bytestring-conversion - case-insensitive From 813644c4dfcc193d4c11cf14ff8a541a2133c690 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Mon, 2 Mar 2020 12:21:01 -0800 Subject: [PATCH 1447/2682] Revert "Revert "Add taffybar and dependencies"" This reverts commit 227d11caa366055c777417e38404001d8bd67c6b. --- build-constraints.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3100bce3..5479ef61 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4117,6 +4117,19 @@ packages: "Elben Shira @elben": - pencil < 0 # via hsass + "Ivan Malison @IvanMalison": + - ConfigFile + - dbus-hslogger + - gi-cairo-connector + - gi-cairo-render + - gtk-sni-tray + - gtk-strut + - rate-limit + - status-notifier-item + - taffybar + - time-units + - xml-helpers + "ARATA Mizuki @minoki": - unboxing-vector From f30b1f8776cc525639c23aa0bbfcc92450985388 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Sun, 26 Apr 2020 19:33:51 -0700 Subject: [PATCH 1448/2682] Restore broadcast-chan --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5479ef61..4320ae15 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1362,7 +1362,7 @@ packages: "Emanuel Borsboom @borsboom": - BoundedChan - - broadcast-chan < 0 # compilation failure + - broadcast-chan - fuzzcheck - here - hlibgit2 From 4e62da12a26821d76c6b071625f6968dc9e9def1 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Mon, 27 Apr 2020 02:00:56 -0700 Subject: [PATCH 1449/2682] Add xdg-desktop-entry --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4320ae15..2ebe41e1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4129,6 +4129,7 @@ packages: - taffybar - time-units - xml-helpers + - xdg-desktop-entry "ARATA Mizuki @minoki": - unboxing-vector From 70efd119275d63b3e2989c890d482d5e4c7ee947 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20Rze=C5=BAnicki?= Date: Tue, 28 Apr 2020 00:33:29 +0200 Subject: [PATCH 1450/2682] Add hspec-tables --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 37a9db60..d34a3909 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -9,6 +9,9 @@ cabal-format-version: "2.4" # Constraints for brand new builds packages: + "Marcin Rzeźnicki @marcin-rzeznicki": + - hspec-tables + "Mihai Giurgeanu @mihaigiurgeanu": - sqlcli - sqlcli-odbc From f0814c603d19d46d77e2c8e5e387830464c68501 Mon Sep 17 00:00:00 2001 From: Pranay Sashank Date: Wed, 29 Apr 2020 07:15:16 +0530 Subject: [PATCH 1451/2682] Re-enable fusion-plugin --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 37a9db60..b744dcab 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -520,7 +520,7 @@ packages: "Pranay Sashank @pranaysashank": - fusion-plugin-types - - fusion-plugin < 0 # ghc-8.8.3 + - fusion-plugin "Aleksey Uimanov @s9gf4ult": # - postgresql-query # build errors From 0823d679f343620829661d0068a3598a91cec517 Mon Sep 17 00:00:00 2001 From: Mauricio Fierro Date: Tue, 28 Apr 2020 22:30:51 -0500 Subject: [PATCH 1452/2682] Add dialogflow-fulfillment --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 37a9db60..c7a3f0d5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -9,6 +9,9 @@ cabal-format-version: "2.4" # Constraints for brand new builds packages: + "Mauricio Fierro @mauriciofierrom": + - dialogflow-fulfillment + "Mihai Giurgeanu @mihaigiurgeanu": - sqlcli - sqlcli-odbc From 83359fa19db07c0feca75d44a55c1f5edf9c1d0e Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Wed, 29 Apr 2020 17:51:10 +0100 Subject: [PATCH 1453/2682] latest tldr (fixes #5277) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 66faa0c0..5b575f12 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -738,7 +738,7 @@ packages: - download - textlocal - shell-conduit - - tldr < 0.6.3 # https://github.com/commercialhaskell/stackage/issues/5277 + - tldr - fb - yesod-fb - yesod-auth-fb From cdbfb5234a089565a8eed19acc3b5ebca786f05b Mon Sep 17 00:00:00 2001 From: Tomas Carnecky Date: Wed, 29 Apr 2020 21:54:15 +0200 Subject: [PATCH 1454/2682] Re-enable css-syntax --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5b575f12..34783b6b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1586,7 +1586,7 @@ packages: - avers - avers-api < 0 # via servant - avers-server < 0 # via servant-server - - css-syntax < 0 # via base-4.13.0.0 + - css-syntax # - etcd # https://github.com/wereHamster/etcd-hs/issues/5 - github-types - github-webhook-handler < 0 # GHC 8.4 via base-4.11.0.0 From 9734fa9eca079a33b5b57301c20d9261d5a62046 Mon Sep 17 00:00:00 2001 From: Emanuel Borsboom Date: Wed, 29 Apr 2020 13:52:49 -0700 Subject: [PATCH 1455/2682] Add automated/dockerfiles/lts-15.10/Dockerfile For stack-2.3.1 --- automated/dockerfiles/lts-15.10/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 automated/dockerfiles/lts-15.10/Dockerfile diff --git a/automated/dockerfiles/lts-15.10/Dockerfile b/automated/dockerfiles/lts-15.10/Dockerfile new file mode 100644 index 00000000..a505626f --- /dev/null +++ b/automated/dockerfiles/lts-15.10/Dockerfile @@ -0,0 +1,3 @@ +FROM $DOCKER_REPO:lts-15.5 +ARG STACK_VERSION=2.3.1 +RUN wget -qO- https://github.com/commercialhaskell/stack/releases/download/v$STACK_VERSION/stack-$STACK_VERSION-linux-x86_64.tar.gz | tar xz --wildcards --strip-components=1 -C /usr/local/bin '*/stack' \ No newline at end of file From 6f80a8123d444cee09d4ed027425d6258e9ab543 Mon Sep 17 00:00:00 2001 From: Emanuel Borsboom Date: Wed, 29 Apr 2020 13:55:49 -0700 Subject: [PATCH 1456/2682] Remove 'stack' from expected-test-failures https://github.com/fpco/stackage/issues/3707 has been closed for some time, and stack no longer depends on 'store'. Note: stack is still disabled, so this change will have no practical effect. --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5b575f12..a7199e56 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5425,7 +5425,6 @@ expected-test-failures: - serialport # "The tests need two serial ports as command line arguments" https://github.com/jputcu/serialport/issues/30 - serversession-backend-redis # redis - shake # Needs ghc on $PATH with some installed haskell packages - - stack # https://github.com/fpco/stackage/issues/3707 - stripe-http-streams # https://github.com/fpco/stackage/issues/2945, needs Stripe account - users-persistent # sqlite - users-postgresql-simple # PostgreSQL From 9423c46aa2a8eeacf059c2ac58d8edbc27a5db19 Mon Sep 17 00:00:00 2001 From: Emanuel Borsboom Date: Wed, 29 Apr 2020 16:16:36 -0700 Subject: [PATCH 1457/2682] Re-enable 'stack' --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a7199e56..52de495d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1387,7 +1387,6 @@ packages: - hpack - bindings-uname - stack < 9.9.9 # see https://github.com/fpco/stackage/issues/3563 - - stack < 0 # build issues with Cabal "Michael Sloan @mgsloan": - th-orphans From ceb9436a4f0e021266aa39ef09ab37de35340e8b Mon Sep 17 00:00:00 2001 From: Colin Woodbury Date: Fri, 1 May 2020 09:42:09 -0700 Subject: [PATCH 1458/2682] Lift `aur` bounds --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5b575f12..d464e0d1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4755,7 +4755,6 @@ packages: - servant-lucid < 0.9.0.1 - servant-mock < 0.8.6 - servant-swagger < 1.1.8 - - aur < 6.3.0 # https://github.com/commercialhaskell/stackage/issues/5218 - unliftio-core < 0.2 From 6c171ff8191f340898d1f6a000edf378640bb594 Mon Sep 17 00:00:00 2001 From: Preetham Gujjula Date: Sat, 2 May 2020 04:28:55 +0000 Subject: [PATCH 1459/2682] Add list-predicate --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5b575f12..0086e8d7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -135,6 +135,7 @@ packages: "Preetham Gujjula @pgujjula": - modular + - list-predicate "Guillaume Bouchard @guibou": - krank From 9cfa5d9221b4e0a3f43962102427516b7545014f Mon Sep 17 00:00:00 2001 From: Martijn Bastiaan Date: Sat, 2 May 2020 18:23:59 +0200 Subject: [PATCH 1460/2682] Add concurrent-supply --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5b575f12..5c6f5b07 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -855,7 +855,7 @@ packages: - comonad - compensated - compressed < 0 - - concurrent-supply < 0 # hashable-1.3.0 + - concurrent-supply - constraints < 0.12 # https://github.com/commercialhaskell/stackage/issues/5124 - contravariant - distributive From 4aec71898c5e124cfdbe7768971713c120325ad1 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 3 May 2020 07:36:49 +0300 Subject: [PATCH 1461/2682] Install jq --- automated/dockerfiles/lts-15.5/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automated/dockerfiles/lts-15.5/Dockerfile b/automated/dockerfiles/lts-15.5/Dockerfile index 8826ddb2..9f0a5dce 100644 --- a/automated/dockerfiles/lts-15.5/Dockerfile +++ b/automated/dockerfiles/lts-15.5/Dockerfile @@ -31,7 +31,7 @@ ENV LANG=C.UTF-8 \ RUN apt-get update && \ apt-get install -y --no-install-recommends \ wget netbase ca-certificates g++ gcc libc6-dev libffi-dev libgmp-dev \ - make xz-utils zlib1g-dev git gnupg libtinfo-dev && \ + make xz-utils zlib1g-dev git gnupg libtinfo-dev jq && \ rm -rf /var/lib/apt/lists/* # From a6d666a0bfae2008e8bc23fb00457ef75d28725c Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 3 May 2020 04:42:01 +0000 Subject: [PATCH 1462/2682] Download jq --- automated/dockerfiles/build.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/automated/dockerfiles/build.sh b/automated/dockerfiles/build.sh index 3709664f..489a8bbd 100755 --- a/automated/dockerfiles/build.sh +++ b/automated/dockerfiles/build.sh @@ -106,7 +106,11 @@ LTS_MINOR="${LTS_VERSION#*.}" # Determine latest LTS version # -LATEST_LTS_SLUG=$(jq -r ".[\"lts\"]" $SNAPSHOTS) +mkdir -p $HOME/.local/bin +curl -o $HOME/.local/bin/jq -L https://github.com/stedolan/jq/releases/download/jq-1.6/jq-linux64 +chmod +x $HOME/.local/bin/jq + +LATEST_LTS_SLUG=$($HOME/.local/bin/jq -r ".[\"lts\"]" $SNAPSHOTS) LATEST_LTS_VERSION="${LATEST_LTS_SLUG#lts-}" LATEST_LTS_MAJOR="${LATEST_LTS_VERSION%.*}" LATEST_LTS_MINOR="${LATEST_LTS_VERSION#*.}" From 3b4b4870d899787e308aa9fd105ea771577a0105 Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Sun, 3 May 2020 16:27:24 +0100 Subject: [PATCH 1463/2682] #5335 #5336 fixes #5255 --- build-constraints.yaml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5b575f12..a8282ea2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4764,9 +4764,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5236 - rank2classes < 1.4 - # https://github.com/commercialhaskell/stackage/issues/5255 - - ghc-lib-parser-ex < 8.8.6.0 - # https://github.com/commercialhaskell/stackage/issues/5293 - haddock-library < 1.9.0 @@ -4793,6 +4790,13 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5324 - cabal2nix < 2.15.2 + + - brick <0.53 + + + - colourista < 0.1.0.0 + + # end of packages # Package flags are applied to individual packages, and override the values of From 484acd1a44fd14c710b8dced028568ea4ab2bdf6 Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Sun, 3 May 2020 16:29:16 +0100 Subject: [PATCH 1464/2682] add issue comments --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a8282ea2..44275d75 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4790,10 +4790,10 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5324 - cabal2nix < 2.15.2 - + # https://github.com/commercialhaskell/stackage/issues/5335 - brick <0.53 - + # https://github.com/commercialhaskell/stackage/issues/5336 - colourista < 0.1.0.0 From f86034b911efaab28516af29f85d6c286778ed1c Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Sun, 3 May 2020 17:33:23 +0100 Subject: [PATCH 1465/2682] cacphony test failure --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 44275d75..3dc7aba2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5588,6 +5588,9 @@ expected-test-failures: # https://github.com/tomphp/haskell-cfenv/issues/1 - cfenv + + # https://github.com/centromere/cacophony/issues/15 + - cacophony # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 39b9037c80df62b6eea045c9b19290124aaf5de5 Mon Sep 17 00:00:00 2001 From: Martijn Bastiaan Date: Mon, 4 May 2020 08:18:23 +0200 Subject: [PATCH 1466/2682] Add clash-{prelude,lib,ghc} --- build-constraints.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8a216343..0f951b5f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1980,14 +1980,14 @@ packages: - timer-wheel < 0 # via base-4.13.0.0 - wai-middleware-travisci < 0 # via base-4.13.0.0 - "Christiaan Baaij @christiaanb": + "QBayLogic B.V. ": - ghc-tcplugins-extra - ghc-typelits-extra - ghc-typelits-knownnat - ghc-typelits-natnormalise - - clash-prelude < 0 - - clash-lib < 0 - - clash-ghc < 0 + - clash-prelude + - clash-lib + - clash-ghc "Athan Clark @athanclark": - aeson-attoparsec From 1821bca7f7978b09ae47e86252c1d78132530815 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Tue, 5 May 2020 10:39:57 -0700 Subject: [PATCH 1467/2682] Add constraints for just one more nightly --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8a216343..046dc709 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4795,6 +4795,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5336 - colourista < 0.1.0.0 + # soon to be removed anyways, not creating an issue + - persistent-template < 2.8.3 + - validation-selective < 0.1.0.0 # end of packages From 4c3e1b242cf7549723ac2cab9b5b9da7eb2a4bfb Mon Sep 17 00:00:00 2001 From: Eric Conlon Date: Wed, 6 May 2020 16:27:39 -0700 Subject: [PATCH 1468/2682] Deprecate heart-core --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 046dc709..455690b8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4181,7 +4181,6 @@ packages: "Eric Conlon @ejconlon": - blanks - climb - - heart-core - linenoise # Maintainership with @23Skidoo - ekg @@ -4739,6 +4738,7 @@ packages: - syb-with-class < 0 # GHC 8.4 via template-haskell-2.13.0.0 - lens-labels < 0 # deprecated https://github.com/commercialhaskell/stackage/pull/4358 - proto-lens-combinators < 0 # deprecated https://github.com/commercialhaskell/stackage/pull/4358 + - heart-core < 0 # deprecated "GHC upper bounds": # Need to always match the version shipped with GHC From 8a9d13ceb12d4f73258a97392b4fc2eb709217db Mon Sep 17 00:00:00 2001 From: Eugene Smolanka Date: Thu, 7 May 2020 23:19:54 +0100 Subject: [PATCH 1469/2682] Re-enable invertible-grammar and sexp-grammar --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 046dc709..8abee8f9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3920,8 +3920,8 @@ packages: - tasty-ant-xml "Eugene Smolanka @esmolanka": - - sexp-grammar < 0 # via prettyprinter-1.3.0 and semigroups-0.19 - - invertible-grammar < 0 # via profunctors-5.5 + - sexp-grammar + - invertible-grammar "Maximilian Tagher @MaxGabriel": - aeson-iproute < 0 # via iproute From 4c052ce1d1642d49a584b50bfb055d05bb63f754 Mon Sep 17 00:00:00 2001 From: Colin Woodbury Date: Fri, 8 May 2020 09:25:06 -0700 Subject: [PATCH 1470/2682] Add language-bash --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 046dc709..1c663428 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1209,10 +1209,11 @@ packages: - mountpoints - disk-free-space - "Colin Woodbury @fosskers": + "Colin Woodbury @fosskers": - aur - bounded-queue - kanji + - language-bash - microlens-aeson - pipes-random - servant-xml < 0 # via http-media From ca519b352aa313c28abe7f5874a4228ff33988fe Mon Sep 17 00:00:00 2001 From: David Himmelstrup Date: Sat, 9 May 2020 15:38:49 +0800 Subject: [PATCH 1471/2682] Add 'earcut' package. --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 046dc709..2976f1f0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4096,6 +4096,7 @@ packages: - chiphunk - reanimate-svg - reanimate + - earcut "Vitaly Bragilevsky @bravit": - Chart From 94baaaebb64b38c5cbc93920e9abeef806ef15ca Mon Sep 17 00:00:00 2001 From: chemirea <56592600+chemirea@users.noreply.github.com> Date: Sun, 10 May 2020 02:55:05 +0900 Subject: [PATCH 1472/2682] Add utf8-conversions --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0b6fadfa..6e0ad678 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4093,6 +4093,9 @@ packages: - vformat-time - vformat-aeson - hkd-default + + "Shintaro Sakata @chemirea": + - utf8-conversions "Grandfathered dependencies": - network From 657d45cf9321d00c2eb5d8a671327502a1ee69b3 Mon Sep 17 00:00:00 2001 From: Rickey Visinski Date: Sun, 10 May 2020 13:35:03 -0400 Subject: [PATCH 1473/2682] Adding slack-api I took over ownership of slack-api and I would like to add it to stackage. Thanks --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 046dc709..9a02193d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4224,6 +4224,9 @@ packages: "Adrian Sieber @ad-si": - ulid + + "Rickey Visinski @rickeyski": + - slack-api "Grandfathered dependencies": - network From 39615d1aba820cbdd865251afdade0e8b23b2e31 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sun, 10 May 2020 11:55:25 -0700 Subject: [PATCH 1474/2682] Add issues #5347 and #5346 --- build-constraints.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 046dc709..05c60d33 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4795,8 +4795,10 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5336 - colourista < 0.1.0.0 - # soon to be removed anyways, not creating an issue + # https://github.com/commercialhaskell/stackage/issues/5347 - persistent-template < 2.8.3 + + # https://github.com/commercialhaskell/stackage/issues/5346 - validation-selective < 0.1.0.0 # end of packages From e1741225cfa5e88669da2fccc8961ffcb2b209c6 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sun, 10 May 2020 11:58:35 -0700 Subject: [PATCH 1475/2682] Add constraints on tasty & tasty-golden per #5348 --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 05c60d33..894be50b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4801,6 +4801,10 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5346 - validation-selective < 0.1.0.0 + # https://github.com/commercialhaskell/stackage/issues/5348 + - tasty < 1.3 + - tasty-golden < 2.3.3.3 + # end of packages # Package flags are applied to individual packages, and override the values of From e86ad5c8648c24b78408147289238f96ecf1a821 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sun, 10 May 2020 11:59:30 -0700 Subject: [PATCH 1476/2682] Add constraint on typed-uuid per #5349 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 894be50b..bd82055f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4805,6 +4805,9 @@ packages: - tasty < 1.3 - tasty-golden < 2.3.3.3 + # https://github.com/commercialhaskell/stackage/issues/5349 + - typed-uuid < 0.1.0.0 + # end of packages # Package flags are applied to individual packages, and override the values of From cdbd70c1ecaef51e1d927a5988fda99d3e88fc54 Mon Sep 17 00:00:00 2001 From: Tom Sydney Kerckhove Date: Sun, 10 May 2020 21:06:01 +0200 Subject: [PATCH 1477/2682] Added yamlparse-applicative and genvalidity-criterion --- build-constraints.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2f22c0ef..114fb1d4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3724,6 +3724,7 @@ packages: - genvalidity-aeson - genvalidity-bytestring - genvalidity-containers + - genvalidity-criterion - genvalidity-hspec - genvalidity-hspec-aeson - genvalidity-hspec-binary @@ -3733,7 +3734,7 @@ packages: - genvalidity-path - genvalidity-property - genvalidity-scientific - - genvalidity-text < 0.7.0.1 # commercialhaskell/stackage#5013 + - genvalidity-text - genvalidity-time - genvalidity-unordered-containers - genvalidity-uuid @@ -3749,6 +3750,7 @@ packages: - validity-unordered-containers - validity-uuid - validity-vector + - yamlparse-applicative "Henry Laxen @HenryLaxen": - bbdb From e81d529755f6748437bd620eac1969416e95517c Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sun, 10 May 2020 12:19:20 -0700 Subject: [PATCH 1478/2682] Add constraint on pantry per #5351 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index bd82055f..0e314927 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4808,6 +4808,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5349 - typed-uuid < 0.1.0.0 + # https://github.com/commercialhaskell/stackage/issues/5351 + - pantry < 0.5 + # end of packages # Package flags are applied to individual packages, and override the values of From f93ce2bcc06a85ffa6e08006df0405f9d3f3810c Mon Sep 17 00:00:00 2001 From: Simon Jakobi Date: Mon, 30 Mar 2020 18:43:03 +0200 Subject: [PATCH 1479/2682] Add dhall-lsp-server --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0e314927..bb194b26 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1077,6 +1077,7 @@ packages: - dhall < 1.31.0 # https://github.com/commercialhaskell/stackage/issues/5275 - dhall-bash < 1.0.29 # via dhall - dhall-json < 1.6.3 # via dhall + - dhall-lsp-server - dhall-yaml < 1.0.3 # via dhall - aeson-yaml # req'd by dhall-json # - dhall-nix # deriving-compat via hnix From f4817345434574840a2533ba31f3270e776bdfa3 Mon Sep 17 00:00:00 2001 From: Ollie Charles Date: Mon, 11 May 2020 11:55:35 +0100 Subject: [PATCH 1480/2682] Remove my packages from Stackage I unfortunately don't have the resources to keep these reliably updated. --- build-constraints.yaml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5b2365e6..9ae8d1dc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2232,16 +2232,6 @@ packages: - NineP - Network-NineP < 0 - "Oliver Charles @ocharles": - - diff3 < 0 # build failure with GHC 8.4 - - exhaustive < 0 # GHC 8.4 via base-4.11.0.0 - - libsystemd-journal < 0 # GHC 8.4 via base-4.11.0.0 - - network-carbon < 0 # GHC 8.4 via base-4.11.0.0 - - logging-effect - - dhall-to-cabal < 0 - - weeder - # - reactive-banana # pqueue-1.4.1 - "Antoni Silvestre @asilvestre": # Test suite needs a running neo4j server with auth disabled # unfortunately the cabal package name and the github repo don't have the exact same name From 3638177b4e6e32195852346e362bcbbcc52e762e Mon Sep 17 00:00:00 2001 From: Vaibhav Sagar Date: Mon, 11 May 2020 19:33:10 +0800 Subject: [PATCH 1481/2682] Re-enable ihaskell and ghc-parser --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5b2365e6..6036acb7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3821,8 +3821,8 @@ packages: - servant-exceptions < 0 # https://github.com/ch1bo/servant-exceptions/issues/9 "Vaibhav Sagar @vaibhavsagar": - - ihaskell < 0 # via base-4.13.0.0 - - ghc-parser < 0 # via ghc-8.8.1 + - ihaskell + - ghc-parser "Alexis Williams @typedrat": - stb-image-redux From 8f572f32231debe017923534f54bb0bf90dcd987 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 13 May 2020 00:34:56 +0800 Subject: [PATCH 1482/2682] file-embed < 0.0.12 (#5355) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 97011457..3f1a903a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4372,7 +4372,7 @@ packages: - fast-logger - fast-math - fib < 0 # via base-noprelude-4.13 - - file-embed + - file-embed < 0.0.12 - file-embed-lzma - filemanip - fin From 872d1086c2b3f4fa753c4bd2c524a4982ec060c7 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 13 May 2020 00:49:08 +0800 Subject: [PATCH 1483/2682] temporarily revert adding slack-api - testsuite fails (#5345) --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3f1a903a..71d62215 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4223,7 +4223,8 @@ packages: - ulid "Rickey Visinski @rickeyski": - - slack-api + [] + # - slack-api # https://github.com/commercialhaskell/stackage/pull/5345 "Grandfathered dependencies": - network From 8fc1f3d126be533b57653d9db4b54b194d37534c Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 13 May 2020 00:53:59 +0800 Subject: [PATCH 1484/2682] nuke some trailing whitespace --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 71d62215..99477ea6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4188,7 +4188,7 @@ packages: - vformat-time - vformat-aeson - hkd-default - + "Shintaro Sakata @chemirea": - utf8-conversions @@ -4221,7 +4221,7 @@ packages: "Adrian Sieber @ad-si": - ulid - + "Rickey Visinski @rickeyski": [] # - slack-api # https://github.com/commercialhaskell/stackage/pull/5345 From 0244d2bda5004724f3338fbbbc173f171b7f6277 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 13 May 2020 00:54:18 +0800 Subject: [PATCH 1485/2682] ihaskell failed to build (#5354) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 99477ea6..1920d11d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3811,7 +3811,7 @@ packages: - servant-exceptions < 0 # https://github.com/ch1bo/servant-exceptions/issues/9 "Vaibhav Sagar @vaibhavsagar": - - ihaskell + - ihaskell < 0 # https://github.com/commercialhaskell/stackage/pull/5354 - ghc-parser "Alexis Williams @typedrat": From d6f57ab1f8181659c3eb17e7efea9c5a2d09615d Mon Sep 17 00:00:00 2001 From: Eric Conlon Date: Tue, 12 May 2020 11:54:56 -0700 Subject: [PATCH 1486/2682] Add little-rio and little-logger to ejconlon libs --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1920d11d..469ca88f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4176,6 +4176,8 @@ packages: - blanks - climb - linenoise + - little-rio + - little-logger # Maintainership with @23Skidoo - ekg - ekg-core From 645c851e95205f9bbff4b0f5d124335f8adc2f1b Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 13 May 2020 10:26:38 +0800 Subject: [PATCH 1487/2682] drop dhall upperbounds (#5275) --- build-constraints.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 469ca88f..2532775b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1074,11 +1074,11 @@ packages: - turtle - foldl - bench - - dhall < 1.31.0 # https://github.com/commercialhaskell/stackage/issues/5275 - - dhall-bash < 1.0.29 # via dhall - - dhall-json < 1.6.3 # via dhall + - dhall + - dhall-bash + - dhall-json - dhall-lsp-server - - dhall-yaml < 1.0.3 # via dhall + - dhall-yaml - aeson-yaml # req'd by dhall-json # - dhall-nix # deriving-compat via hnix From 2d8adb4b0c364ae1c41d1a6016adbeff85c6cccf Mon Sep 17 00:00:00 2001 From: Emily Pillmore Date: Wed, 13 May 2020 22:59:52 -0400 Subject: [PATCH 1488/2682] add strict-tuple-lens add strict-tuple entry --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2532775b..a4a9ae3f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -70,6 +70,8 @@ packages: - smash-aeson - smash-microlens - smash-lens + - strict-tuple + - strict-tuple-lens "Matthieu Monsch @mtth": - flags-applicative From a86409300de9a37c9b7d462c8b4c00219b466be0 Mon Sep 17 00:00:00 2001 From: Vaibhav Sagar Date: Thu, 14 May 2020 17:29:52 +0800 Subject: [PATCH 1489/2682] Re-enable ihaskell --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2532775b..56c4a890 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3811,7 +3811,7 @@ packages: - servant-exceptions < 0 # https://github.com/ch1bo/servant-exceptions/issues/9 "Vaibhav Sagar @vaibhavsagar": - - ihaskell < 0 # https://github.com/commercialhaskell/stackage/pull/5354 + - ihaskell - ghc-parser "Alexis Williams @typedrat": From 8099c08a2750419121ac16e66eb5cd4e8a835879 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 14 May 2020 18:34:31 +0800 Subject: [PATCH 1490/2682] enable slack-api with testsuite expected to fail (#5345) This reverts commit 872d1086c2b3f4fa753c4bd2c524a4982ec060c7. --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2532775b..fd0fa6ee 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4225,8 +4225,7 @@ packages: - ulid "Rickey Visinski @rickeyski": - [] - # - slack-api # https://github.com/commercialhaskell/stackage/pull/5345 + - slack-api "Grandfathered dependencies": - network @@ -5447,6 +5446,7 @@ expected-test-failures: - serialport # "The tests need two serial ports as command line arguments" https://github.com/jputcu/serialport/issues/30 - serversession-backend-redis # redis - shake # Needs ghc on $PATH with some installed haskell packages + - slack-api # needs api key https://github.com/commercialhaskell/stackage/pull/5345 - stripe-http-streams # https://github.com/fpco/stackage/issues/2945, needs Stripe account - users-persistent # sqlite - users-postgresql-simple # PostgreSQL From 38310acd5f415d7cd9d3a50290d8818c3a70f178 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 14 May 2020 19:33:05 +0800 Subject: [PATCH 1491/2682] disable strict-tuple-lens due to 'cabal-version: 3.0' (#5357) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 758500cb..bca7e92c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -71,7 +71,7 @@ packages: - smash-microlens - smash-lens - strict-tuple - - strict-tuple-lens + # - strict-tuple-lens # cabal-version: 3.0 "Matthieu Monsch @mtth": - flags-applicative From 7117f78d2b177fc763cd4cf37b58b230f8bf12d5 Mon Sep 17 00:00:00 2001 From: Chris Martin Date: Thu, 14 May 2020 15:43:09 -0600 Subject: [PATCH 1492/2682] Add 'ascii' and friends The rest of these are dependencies of 'ascii' which is the main package that brings them all together. They are all maintained at https://github.com/typeclasses/ascii --- build-constraints.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index bca7e92c..6c35da76 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3705,7 +3705,15 @@ packages: - path-text-utf8 "Type Classes @argumatronic @chris-martin": + - ascii + - ascii-case + - ascii-char + - ascii-group + - ascii-predicates + - ascii-superset + - ascii-th - aws-cloudfront-signed-cookies + - data-ascii - d10 - stripe-concepts - stripe-signature From fb9ac545389a2d8e10c345544af8f7c637acc345 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 15 May 2020 10:58:21 +0800 Subject: [PATCH 1493/2682] reenable strict-tuple-lens (#5357) This reverts commit 38310acd5f415d7cd9d3a50290d8818c3a70f178. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index bca7e92c..758500cb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -71,7 +71,7 @@ packages: - smash-microlens - smash-lens - strict-tuple - # - strict-tuple-lens # cabal-version: 3.0 + - strict-tuple-lens "Matthieu Monsch @mtth": - flags-applicative From ea9259bfc0172ad4eea12768cd97a2ea146dde01 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 15 May 2020 11:14:35 +0800 Subject: [PATCH 1494/2682] lsp-test < 0.11 (#5360) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 758500cb..79f221f6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -718,7 +718,7 @@ packages: - Strafunski-StrategyLib < 0 # via base-4.13.0.0 "Luke Lau @bubba": - - lsp-test + - lsp-test < 0.11 # https://github.com/commercialhaskell/stackage/issues/5360 "Alfredo Di Napoli @adinapoli": - mandrill < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build From 8b31b37559421fef96a6da4f0f309be91d4dc42d Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 15 May 2020 11:16:48 +0800 Subject: [PATCH 1495/2682] relude < 0.7 (#5361) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 79f221f6..c0b53364 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3617,7 +3617,7 @@ packages: - ilist - life-sync - membrain - - relude + - relude < 0.7 # https://github.com/commercialhaskell/stackage/issues/5361 - shellmet - shortcut-links - summoner From cfb478a13b8defb0fe4e99453e83e0e2ec5d0b59 Mon Sep 17 00:00:00 2001 From: Jonathan Knowles Date: Wed, 6 May 2020 19:27:01 +0800 Subject: [PATCH 1496/2682] Add `cardano-coin-selection` package to stackage. Since the `quiet` package is a dependency, but not yet part of Stackage, this commit also adds `quiet` to `build-constraints.yaml`. Note that the original author of `quiet` is Jacob Stanley (@jacobstanley). --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 046dc709..c8526c10 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3295,6 +3295,8 @@ packages: "Jonathan Knowles @jonathanknowles": - bech32 - bech32-th + - cardano-coin-selection + - quiet - roc-id "Mahdi Dibaiee @mdibaiee": From 5c143e21aed5284872cfa9a4168c3a44a6ac5a2f Mon Sep 17 00:00:00 2001 From: Ashlynn Anderson Date: Fri, 15 May 2020 16:24:31 -0400 Subject: [PATCH 1497/2682] Add `proto3-wire` As part of [gRPC-haskell#97](https://github.com/awakesecurity/gRPC-haskell/issues/97) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 992d84e1..001a54f4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -9,6 +9,9 @@ cabal-format-version: "2.4" # Constraints for brand new builds packages: + "Ashlynn Anderson @lambdadog": + - proto3-wire + "Marcin Rzeźnicki @marcin-rzeznicki": - hspec-tables From 3fe1e38cec0ae766fa63fa2a61d3832ff70097ac Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sat, 16 May 2020 12:52:44 +0800 Subject: [PATCH 1498/2682] build.sh: remove legacy-bulk conversion and commits this allowed saving some server diskspace: ie removing dot-stackage/curator/stackage-{lts,nightly} --- automated/build.sh | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/automated/build.sh b/automated/build.sh index f1344348..2eae20f6 100755 --- a/automated/build.sh +++ b/automated/build.sh @@ -143,8 +143,6 @@ docker run $ARGS_UPLOAD $IMAGE /bin/bash -c "curator upload-docs --target $TARGE # For some reason, registering on Hackage fails with inscrutable error messages. Disabling. # docker run $ARGS_UPLOAD $IMAGE /bin/bash -c "exec curator hackage-distro --target $TARGET" -docker run $ARGS_UPLOAD $IMAGE curator legacy-bulk --stackage-snapshots /dot-stackage/curator/stackage-snapshots/ --lts-haskell /dot-stackage/curator/lts-haskell/ --stackage-nightly /dot-stackage/curator/stackage-nightly/ - # Build and push docker image fpco/stack-build & fpco/stack-build-small for current release if [ $SHORTNAME = "lts" ] @@ -154,21 +152,5 @@ then $ROOT/dockerfiles/build.sh --push --small $TARGET fi -( -if [ $SHORTNAME = "lts" ] -then - cd $DOT_STACKAGE_DIR/curator/lts-haskell -else - cd $DOT_STACKAGE_DIR/curator/stackage-nightly -fi - -git add *.yaml -git diff-index --quiet HEAD && echo No changes && exit 0 -git config user.name "Stackage build server" -git config user.email "michael@snoyman.com" -git commit -a -m "More conversions $(date)" -GIT_SSH_COMMAND="ssh -i $SSH_DIR/id_rsa" git push origin master -) - echo -n "Completed at " date From 9fdbe1699904eb51c38d374f5a0a7040e49a302f Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 17 May 2020 01:22:35 +0800 Subject: [PATCH 1499/2682] MAINTAINERS: tweaks to reflect current curator reality We basically only ever update the latest current LTS due to resource limitations --- MAINTAINERS.md | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/MAINTAINERS.md b/MAINTAINERS.md index c0bb2a80..6dc734b6 100644 --- a/MAINTAINERS.md +++ b/MAINTAINERS.md @@ -118,7 +118,7 @@ is decided on a case-by-case basis. * If there are real breaking changes, the curator team will retain more discretion on how long a window to give before dropping packages. -* We usually drop all upper bounds and disable packages when we create +* We typically drop upper bounds and disable conflicting packages in Nightly after we create a new Long Term Support (LTS) major version. * There are rare cases where an upper bound or build failure are hard to deal with so then we may disable @@ -162,8 +162,8 @@ Note that it is _not_ a goal of LTS Haskell to track the latest version of GHC. If you want the latest and greatest, Stackage Nightly is your best bet. In particular, LTS Haskell will often—but not always—avoid upgrading to the first point release of GHC -releases (e.g., 8.2.1) to allow further testing and to get the -benefits of the first bugfix release (e.g., 8.2.2). +releases (e.g., 8.x.1) to allow further testing and to get the +benefits of the first bugfix release (e.g., 8.x.2). ## Adding a package to an LTS snapshot @@ -173,20 +173,16 @@ ending in `.0`), the package set is taken from Stackage Nightly. Therefore, by following the above steps, you can get your package into the next major LTS Haskell release. -If you would like to get your package added to an existing LTS Haskell major -release (e.g., if `lts-8.9` is out, you would want your package to appear in -`lts-8.10`), please do the following in addition to the steps above: +If you would like to get your package added to the current LTS Haskell +major release, please do the following in addition to the steps for Nightly described earlier: -* Check that your package can be built with that LTS major version (e.g. `stack build --test --bench --haddock --resolver lts-8.10`) +* Check that your package can be built with the current LTS version (e.g. `stack build --test --bench --haddock --resolver lts`) * Open up a new issue on the [lts-haskell repo](https://github.com/fpco/lts-haskell/issues/new) - * Specify the LTS major versions you would like your packages to go into (e.g. lts-8) * Provide a list of packages you would like added * If relevant, mention any upper bounds that are needed on those packages * Be patient! The LTS releases are less frequent than Nightly. The Stackage curators will try to get to your issue as soon as possible, but it may take some time. -* We gradually stop maintaining old LTS major versions, so your - request may take longer or be declined if it's for an old LTS. ## LTS package guarantees and exceptions From ceafb51e6d395f8307258f7a0f104edc6a54d781 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 17 May 2020 10:19:53 +0800 Subject: [PATCH 1500/2682] cabal-format-version: "3.0" (commercialhaskell/curator#15) should be allowed by ghc-8.8 and stack-2.3 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 001a54f4..ad86aa44 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5,7 +5,7 @@ ghc-version: "8.8.3" # This affects which version of the Cabal file format we allow. We # should ensure that this is always no greater than the version # supported by the most recent cabal-install and Stack releases. -cabal-format-version: "2.4" +cabal-format-version: "3.0" # Constraints for brand new builds packages: From 4f7dcb079c6eed9ee6f48796067c59793c0d1ce8 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 17 May 2020 10:25:37 +0800 Subject: [PATCH 1501/2682] scotty < 0.12 (#5363) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ad86aa44..2585e5dd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -928,7 +928,7 @@ packages: - zlib-lens "Andrew Farmer @xich": - - scotty + - scotty < 0.12 # https://github.com/commercialhaskell/stackage/issues/5363 - wai-middleware-static "Simon Hengel @sol": From 44572f141d6758304989ce9d6f297b42a855d92f Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 17 May 2020 10:26:00 +0800 Subject: [PATCH 1502/2682] enable 'line' --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2585e5dd..126af922 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3344,7 +3344,7 @@ packages: - inliterate "Hyunje Jun @noraesae": - - line < 0 # via scotty + - line # via scotty "Hannes Saffrich @m0rphism": [] From 4fa2183b0aa457f6f3b1e06f60058dd414490b77 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 17 May 2020 10:29:34 +0800 Subject: [PATCH 1503/2682] add structured for binary-tagged-0.3 structured (not present) depended on by: - [ ] binary-tagged-0.3 (>=0.1 && < 0.1.1). Grandfathered dependencies. @phadej. Used by: library --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 126af922..780d20d9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4599,6 +4599,7 @@ packages: - strict-list - string-qq - stringbuilder + - structured - sundown - syb - system-fileio From 0a3a3ff771485265a609f500ed60e222bfa6294e Mon Sep 17 00:00:00 2001 From: Lysxia Date: Sat, 16 May 2020 23:09:47 -0400 Subject: [PATCH 1504/2682] Relax first-class-families bounds (#5237) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 780d20d9..6d6be640 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -466,7 +466,7 @@ packages: "Li-yao Xia @Lysxia": - boltzmann-samplers - - first-class-families < 0.8.0.0 + - first-class-families - generic-data - generic-data-surgery < 0 # via generic-data - generic-random From 5cebd8f7022e9f97117fdfb0e0701ab9078076e5 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 17 May 2020 11:33:09 +0800 Subject: [PATCH 1505/2682] enable ShellCheck and hadolint --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 780d20d9..36ad6009 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1556,7 +1556,7 @@ packages: # - jsaddle # http-types 0.12 - vado < 0 # GHC 8.4 via base-4.11.0.0 - vcswrapper < 0 # GHC 8.4 via base-4.11.0.0 - - ShellCheck < 0 # via Cabal-3.0.0.0 + - ShellCheck - binary-shared - xdg-userdirs @@ -3654,10 +3654,10 @@ packages: "José Lorenzo Rodríguez @lorenzo": - wrecker < 0 # GHC 8.4 via ansigraph - - language-docker < 0 # Data.Text instance of Lift + - language-docker - docker-build-cacher < 0 # GHC 8.4 via turtle - mysql-haskell-nem < 0 # via io-streams - - hadolint < 0 # via ShellCheck + - hadolint "Phil Ruffwind @Rufflewind": - blas-hs < 0 # MonadFail From b0166f539ceaa82e6bcbe25346d4a1af10192618 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 17 May 2020 13:44:04 +0800 Subject: [PATCH 1506/2682] clarify cabal-install comment cabal-install-3.0 needs base <4.13 cabal-install-3.2 needs Cabal 3.2 ergo we can't build it with ghc-8.8 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 36ad6009..3e171ee2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2863,7 +2863,7 @@ packages: "Mikhail Glushenkov @23Skidoo": # - Cabal take the one that ships with GHC - - cabal-install < 0 # via Cabal + - cabal-install < 0 # via Cabal/base # - pointful # haskell-src-exts-simple "Lennart Kolmodin @kolmodin": From 15804a5307eb55525debea1f0d501a9bfe04079a Mon Sep 17 00:00:00 2001 From: gbrsales Date: Sun, 17 May 2020 23:39:12 +0200 Subject: [PATCH 1507/2682] add cabal-appimage --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3e171ee2..9813428e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4241,6 +4241,9 @@ packages: "Rickey Visinski @rickeyski": - slack-api + + "Gabriele Sales @gbrsales": + - cabal-appimage "Grandfathered dependencies": - network From 0d3d8779e0f008f0dcd1a357c5ac8e819c861ccb Mon Sep 17 00:00:00 2001 From: Pasqualino 'Titto' Assini Date: Mon, 18 May 2020 11:10:22 +0200 Subject: [PATCH 1508/2682] add flat and model --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3e171ee2..70c35b9c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -313,8 +313,8 @@ packages: "Pasqualino Assini @tittoassini": # - zm - # - flat # fails to build - - model < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build + - flat + - model "Jose Iborra @pepeiborra": # - arrowp-qq # build failure https://github.com/pepeiborra/arrowp/issues/8 From 60b6ea807e1ac5e59a798fbd0251c22480432e24 Mon Sep 17 00:00:00 2001 From: Dobromir Nikolov Date: Mon, 18 May 2020 12:40:40 +0300 Subject: [PATCH 1509/2682] Add it-has package --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3e171ee2..4ccd8cda 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4241,6 +4241,9 @@ packages: "Rickey Visinski @rickeyski": - slack-api + + "Dobromir Nikolov @dnikolovv": + - it-has "Grandfathered dependencies": - network From 4602d8ebb26706337d7ba2d8911c34e758e4a1d1 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 18 May 2020 20:29:48 +0800 Subject: [PATCH 1510/2682] etc/diskspace/remove-old-stack-work-libs.hs: diskspace reclaimer should be run in work/{nightly,lts*}/unpack-dir/.stack-work/install/x86_64-linux/*/*/lib/x86_64-linux-ghc-*/ --- etc/diskspace/remove-old-stack-work-libs.hs | 55 +++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100755 etc/diskspace/remove-old-stack-work-libs.hs diff --git a/etc/diskspace/remove-old-stack-work-libs.hs b/etc/diskspace/remove-old-stack-work-libs.hs new file mode 100755 index 00000000..b1d7d7a4 --- /dev/null +++ b/etc/diskspace/remove-old-stack-work-libs.hs @@ -0,0 +1,55 @@ +#!/usr/bin/env stack +-- stack --resolver lts script + +-- Utility to remove old libs installed under .stack-work/ to save diskspace + +-- Should be run in: +-- work/*/unpack-dir/.stack-work/install/x86_64-linux/*/*/lib/x86_64-linux-ghc-* + +import Data.List +import System.Directory + +main = do + files <- listDirectory "." + (libdirs,dynlibs) <- partitionM doesDirectoryExist files + let pkglibdirs = groupBy samePkgLibDir libdirs + pkgdynlibs = groupBy samePkgDynLib dynlibs + mapM_ (removeOlder removeDirectoryRecursive) pkglibdirs + mapM_ (removeOlder removeFile) pkgdynlibs + where + samePkgLibDir l1 l2 = pkgDirName l1 == pkgDirName l2 + where + pkgDirName p = + if countDashes p < 2 + then error $ p ++ " not in name-version-hash format" + else (removeDashSegment . removeDashSegment) p + + countDashes = length . filter (== '-') + + removeDashSegment = init . dropWhileEnd (/= '-') + + samePkgDynLib d1 d2 = pkgDynName d1 == pkgDynName d2 + where + pkgDynName p = + if countDashes p < 3 + then error $ p ++ " not in libname-version-hash-ghc*.so format" + else (removeDashSegment . removeDashSegment . removeDashSegment) p + + removeOlder remover files = do + oldfiles <- drop 2 . reverse <$> sortByAge files + mapM_ remover oldfiles + + sortByAge files = do + timestamps <- mapM getModificationTime files + let fileTimes = zip files timestamps + return $ map fst $ sortBy compareSnd fileTimes + + compareSnd (_,t1) (_,t2) = compare t1 t2 + +-- borrowed from Control.Monad.Extra +partitionM :: Monad m => (a -> m Bool) -> [a] -> m ([a], [a]) +partitionM f [] = pure ([], []) +partitionM f (x:xs) = do + res <- f x + (as,bs) <- partitionM f xs + pure ([x | res]++as, [x | not res]++bs) From d833c0ba59e2470b8d288519b37b2412ee1a0d1f Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 18 May 2020 20:42:00 +0800 Subject: [PATCH 1511/2682] remove-old-stack-work-libs.hs: use lts-14 because we have ghc-8.6.5 under ~/.stack/ (better would be to remove ~/.stack and use dot-stackage) --- etc/diskspace/remove-old-stack-work-libs.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/diskspace/remove-old-stack-work-libs.hs b/etc/diskspace/remove-old-stack-work-libs.hs index b1d7d7a4..0621490f 100755 --- a/etc/diskspace/remove-old-stack-work-libs.hs +++ b/etc/diskspace/remove-old-stack-work-libs.hs @@ -1,5 +1,5 @@ #!/usr/bin/env stack --- stack --resolver lts script +-- stack --resolver lts-14 script -- Utility to remove old libs installed under .stack-work/ to save diskspace From 4e43341b34fabfd2616251271346e7bd35c5afad Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 18 May 2020 21:17:16 +0800 Subject: [PATCH 1512/2682] remove-old-stack-work-libs.hs: sort directory list for grouping --- etc/diskspace/remove-old-stack-work-libs.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/diskspace/remove-old-stack-work-libs.hs b/etc/diskspace/remove-old-stack-work-libs.hs index 0621490f..7e81b5e7 100755 --- a/etc/diskspace/remove-old-stack-work-libs.hs +++ b/etc/diskspace/remove-old-stack-work-libs.hs @@ -10,7 +10,7 @@ import Data.List import System.Directory main = do - files <- listDirectory "." + files <- sort <$> listDirectory "." (libdirs,dynlibs) <- partitionM doesDirectoryExist files let pkglibdirs = groupBy samePkgLibDir libdirs pkgdynlibs = groupBy samePkgDynLib dynlibs From 25f97ff187a76ecd6efdc96f09a13df29d11a558 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 18 May 2020 21:39:33 +0800 Subject: [PATCH 1513/2682] conferer < 0.4.0.0 (#5374) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3e171ee2..9bb200e5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3865,7 +3865,7 @@ packages: - map-syntax < 0 # GHC 8.4 via base-4.11.0.0 - heist < 0 # GHC 8.4 via map-syntax - snap < 0 # GHC 8.4 via base-4.11.0.0 - - conferer + - conferer < 0.4.0.0 # https://github.com/commercialhaskell/stackage/issues/5374 # - conferer-snap # Because snap - conferer-warp - conferer-hspec From 3daeb1ce83d43682b3b2a18dac4ba82f8ca254ee Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 18 May 2020 21:51:22 +0800 Subject: [PATCH 1514/2682] conferer-hspec, conferer-warp < 0.4.0.0 (#5374) --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 20b3b13e..6b29bfdb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3867,8 +3867,8 @@ packages: - snap < 0 # GHC 8.4 via base-4.11.0.0 - conferer < 0.4.0.0 # https://github.com/commercialhaskell/stackage/issues/5374 # - conferer-snap # Because snap - - conferer-warp - - conferer-hspec + - conferer-warp < 0.4.0.0 # https://github.com/commercialhaskell/stackage/issues/5374 + - conferer-hspec < 0.4.0.0 # https://github.com/commercialhaskell/stackage/issues/5374 - conferer-provider-json "Tim Humphries @thumphries": From 48e8bb875daa55e2db4a9ae33fb6fca0cd99433f Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 18 May 2020 22:01:09 +0800 Subject: [PATCH 1515/2682] revert "constraints < 0.12" (#5124) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6b29bfdb..e2e3b165 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -862,7 +862,7 @@ packages: - compensated - compressed < 0 - concurrent-supply - - constraints < 0.12 # https://github.com/commercialhaskell/stackage/issues/5124 + - constraints - contravariant - distributive - discrimination < 0 From 58e6d38671d5d9185a8c16b58afcfa1ab0bc83c0 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 19 May 2020 01:02:58 +0800 Subject: [PATCH 1516/2682] mention remove-old-stack-work-libs.hs for diskspace clean --- CURATORS.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/CURATORS.md b/CURATORS.md index 80da8441..89ee5394 100644 --- a/CURATORS.md +++ b/CURATORS.md @@ -333,14 +333,15 @@ early and hopefully the nightlies will be timely. LTS minor bumps typically are run on Sundays. -### Website sync debugging (and other out of disk space errors) +### Diskspace errors (and website sync debugging) * You can detect the problem by running `df`. If you see that `/` is out of space, we have a problem * If you see that `/var/stackage/` is out of space, you can: + * run `./stackage/etc/diskspace/remove-old-stack-work-libs.hs` in `/var/stackage/stackage/automated/work/*/unpack-dir/.stack-work/install/x86_64-linux/*/*/` (hopefully sufficient) + + optionally (not recommended?): * `rm -r /var/stackage/stackage/automated/work/lts*/unpack-dir/unpacked/` * `rm -r /var/stackage/stackage/automated/work/nightly/unpack-dir/unpacked/` -* (outdated) There are many temp files inside `/home/ubuntu/stackage-server-cron` that can be cleared out occasionally -* (outdated) You can then manually run `/home/ubuntu/stackage-server-cron.sh`, or wait for the cron job to do it ### Wiping the cache From efb2e62e0c1b6a2d610d7b7cf25e4e0ddc5b0b3d Mon Sep 17 00:00:00 2001 From: Koz Ross Date: Tue, 19 May 2020 08:49:49 +1200 Subject: [PATCH 1517/2682] Add Medea --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index c8e9a816..fee17d47 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -9,6 +9,9 @@ cabal-format-version: "3.0" # Constraints for brand new builds packages: + "Koz Ross @kozross": + - medea + "Ashlynn Anderson @lambdadog": - proto3-wire From 2d11c73421b19ce5e71718906925bf4ffe3c1d7a Mon Sep 17 00:00:00 2001 From: Eric Conlon Date: Mon, 18 May 2020 15:50:55 -0700 Subject: [PATCH 1518/2682] Re-enable ginger after 0.10 release --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c8e9a816..443e855b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -475,7 +475,7 @@ packages: - type-map "Tobias Dammers @tdammers": - - ginger < 0 # via regex-tdfa-1.3.0 + - ginger - yeshql < 0 # via yeshql-hdbc "Yair Chuchem @yairchu": From ba9264f0153a82a5083fcd7f453910325ab8b760 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 19 May 2020 10:51:18 +0800 Subject: [PATCH 1519/2682] add ghc-byteorder for base64-0.4.2 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index c8e9a816..c663f471 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4406,6 +4406,7 @@ packages: - functor-combinators < 0 # via dependent-sum - generic-arbitrary - generics-sop-lens + - ghc-byteorder - ghc-compact - ghc-paths - ghc-prof From e243a37f64deeab106579783eaf502bbd41446ce Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 19 May 2020 10:52:12 +0800 Subject: [PATCH 1520/2682] remove some spaces --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c663f471..4b74e9d2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4241,7 +4241,7 @@ packages: "Rickey Visinski @rickeyski": - slack-api - + "Dobromir Nikolov @dnikolovv": - it-has From 9ba15fcde0fdb78fca104d7e8d230576f85474f3 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 19 May 2020 10:58:47 +0800 Subject: [PATCH 1521/2682] simplify remove-old-stack-work-libs.hs more --- etc/diskspace/remove-old-stack-work-libs.hs | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/etc/diskspace/remove-old-stack-work-libs.hs b/etc/diskspace/remove-old-stack-work-libs.hs index 7e81b5e7..210e5a1a 100755 --- a/etc/diskspace/remove-old-stack-work-libs.hs +++ b/etc/diskspace/remove-old-stack-work-libs.hs @@ -8,11 +8,12 @@ import Data.List import System.Directory +import System.FilePath main = do files <- sort <$> listDirectory "." - (libdirs,dynlibs) <- partitionM doesDirectoryExist files - let pkglibdirs = groupBy samePkgLibDir libdirs + let (dynlibs,libdirs) = partition (".so" `isExtensionOf`) files + pkglibdirs = groupBy samePkgLibDir libdirs pkgdynlibs = groupBy samePkgDynLib dynlibs mapM_ (removeOlder removeDirectoryRecursive) pkglibdirs mapM_ (removeOlder removeFile) pkgdynlibs @@ -32,10 +33,11 @@ main = do where pkgDynName p = if countDashes p < 3 - then error $ p ++ " not in libname-version-hash-ghc*.so format" + then error $ p ++ " not in libHSname-version-hash-ghc*.so format" else (removeDashSegment . removeDashSegment . removeDashSegment) p removeOlder remover files = do + -- keep 2 latest builds oldfiles <- drop 2 . reverse <$> sortByAge files mapM_ remover oldfiles @@ -45,11 +47,3 @@ main = do return $ map fst $ sortBy compareSnd fileTimes compareSnd (_,t1) (_,t2) = compare t1 t2 - --- borrowed from Control.Monad.Extra -partitionM :: Monad m => (a -> m Bool) -> [a] -> m ([a], [a]) -partitionM f [] = pure ([], []) -partitionM f (x:xs) = do - res <- f x - (as,bs) <- partitionM f xs - pure ([x | res]++as, [x | not res]++bs) From 6c6708be00b3cb0dbb2b83c06e457c8d1ec61e66 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 19 May 2020 11:22:37 +0800 Subject: [PATCH 1522/2682] remove-old-stack-work-libs.hs: check more carefully for libdir hash to avoid accidents, eg if run in wrong directory --- etc/diskspace/remove-old-stack-work-libs.hs | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/etc/diskspace/remove-old-stack-work-libs.hs b/etc/diskspace/remove-old-stack-work-libs.hs index 210e5a1a..f99d0ebd 100755 --- a/etc/diskspace/remove-old-stack-work-libs.hs +++ b/etc/diskspace/remove-old-stack-work-libs.hs @@ -23,7 +23,9 @@ main = do pkgDirName p = if countDashes p < 2 then error $ p ++ " not in name-version-hash format" - else (removeDashSegment . removeDashSegment) p + else let nv_ = dropEnd 22 p in + if last nv_ == '-' then removeDashSegment $ init nv_ + else error $ p ++ " not in name-version-hash format" countDashes = length . filter (== '-') @@ -47,3 +49,9 @@ main = do return $ map fst $ sortBy compareSnd fileTimes compareSnd (_,t1) (_,t2) = compare t1 t2 + +-- from Data.List.Extra +dropEnd :: Int -> [a] -> [a] +dropEnd i xs = f xs (drop i xs) + where f (x:xs) (y:ys) = x : f xs ys + f _ _ = [] From c69a73c559c3aba21ef9f2e4b842eeb262511c1e Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 19 May 2020 11:36:41 +0800 Subject: [PATCH 1523/2682] remove-old-stack-work-libs.hs: check hash length for more safety --- etc/diskspace/remove-old-stack-work-libs.hs | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/etc/diskspace/remove-old-stack-work-libs.hs b/etc/diskspace/remove-old-stack-work-libs.hs index f99d0ebd..3411ba53 100755 --- a/etc/diskspace/remove-old-stack-work-libs.hs +++ b/etc/diskspace/remove-old-stack-work-libs.hs @@ -21,22 +21,24 @@ main = do samePkgLibDir l1 l2 = pkgDirName l1 == pkgDirName l2 where pkgDirName p = - if countDashes p < 2 + if length p < 26 || countDashes p < 2 then error $ p ++ " not in name-version-hash format" - else let nv_ = dropEnd 22 p in - if last nv_ == '-' then removeDashSegment $ init nv_ - else error $ p ++ " not in name-version-hash format" + else (removeDashSegment . removeHashSegment) p countDashes = length . filter (== '-') removeDashSegment = init . dropWhileEnd (/= '-') + removeHashSegment p = let nv_ = dropEnd 22 p in + if last nv_ == '-' then init nv_ + else error $ p ++ " has incorrect hash format" + samePkgDynLib d1 d2 = pkgDynName d1 == pkgDynName d2 where pkgDynName p = - if countDashes p < 3 + if length p < 43 || countDashes p < 3 then error $ p ++ " not in libHSname-version-hash-ghc*.so format" - else (removeDashSegment . removeDashSegment . removeDashSegment) p + else (removeDashSegment . removeHashSegment . removeDashSegment) p removeOlder remover files = do -- keep 2 latest builds From fda199ba9fe84612bf904ea4e049fe5102167eb7 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 19 May 2020 12:19:08 +0800 Subject: [PATCH 1524/2682] remove-old-stack-work-libs.hs: hashes are either 22 or 21 chars --- etc/diskspace/remove-old-stack-work-libs.hs | 27 +++++++++------------ 1 file changed, 12 insertions(+), 15 deletions(-) diff --git a/etc/diskspace/remove-old-stack-work-libs.hs b/etc/diskspace/remove-old-stack-work-libs.hs index 3411ba53..798d4e96 100755 --- a/etc/diskspace/remove-old-stack-work-libs.hs +++ b/etc/diskspace/remove-old-stack-work-libs.hs @@ -7,6 +7,7 @@ -- work/*/unpack-dir/.stack-work/install/x86_64-linux/*/*/lib/x86_64-linux-ghc-* import Data.List +import Data.List.Extra import System.Directory import System.FilePath @@ -21,23 +22,25 @@ main = do samePkgLibDir l1 l2 = pkgDirName l1 == pkgDirName l2 where pkgDirName p = - if length p < 26 || countDashes p < 2 - then error $ p ++ " not in name-version-hash format" + if length p < 25 + then error $ p ++ " too short to be in correct name-version-hash format" else (removeDashSegment . removeHashSegment) p - countDashes = length . filter (== '-') + removeHashSegment p = + let dashes = elemIndices '-' p in + if length dashes < 2 + then error $ p ++ " not in name-version-hash format" + else let final = last dashes in + if length p - final `elem` [22,23] then take final p + else error $ p ++ " has incorrect hash length" removeDashSegment = init . dropWhileEnd (/= '-') - removeHashSegment p = let nv_ = dropEnd 22 p in - if last nv_ == '-' then init nv_ - else error $ p ++ " has incorrect hash format" - samePkgDynLib d1 d2 = pkgDynName d1 == pkgDynName d2 where pkgDynName p = - if length p < 43 || countDashes p < 3 - then error $ p ++ " not in libHSname-version-hash-ghc*.so format" + if length p < 42 + then error $ p ++ " too short to be libHSname-version-hash-ghc*.so format" else (removeDashSegment . removeHashSegment . removeDashSegment) p removeOlder remover files = do @@ -51,9 +54,3 @@ main = do return $ map fst $ sortBy compareSnd fileTimes compareSnd (_,t1) (_,t2) = compare t1 t2 - --- from Data.List.Extra -dropEnd :: Int -> [a] -> [a] -dropEnd i xs = f xs (drop i xs) - where f (x:xs) (y:ys) = x : f xs ys - f _ _ = [] From 6383d6e6fdf9622baeed8ffa6331b4084685665d Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 19 May 2020 12:23:02 +0800 Subject: [PATCH 1525/2682] remove-old-stack-work-libs.hs: hash can also be 20 chars! --- etc/diskspace/remove-old-stack-work-libs.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/diskspace/remove-old-stack-work-libs.hs b/etc/diskspace/remove-old-stack-work-libs.hs index 798d4e96..77388d8e 100755 --- a/etc/diskspace/remove-old-stack-work-libs.hs +++ b/etc/diskspace/remove-old-stack-work-libs.hs @@ -31,7 +31,7 @@ main = do if length dashes < 2 then error $ p ++ " not in name-version-hash format" else let final = last dashes in - if length p - final `elem` [22,23] then take final p + if length p - final `elem` [23,22,21] then take final p else error $ p ++ " has incorrect hash length" removeDashSegment = init . dropWhileEnd (/= '-') From 3ced32f3430a2bcfabb314695c837b88693ed68d Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 19 May 2020 12:47:25 +0800 Subject: [PATCH 1526/2682] remove-old-stack-work-libs.hs: ignore internal libs for now --- etc/diskspace/remove-old-stack-work-libs.hs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/etc/diskspace/remove-old-stack-work-libs.hs b/etc/diskspace/remove-old-stack-work-libs.hs index 77388d8e..50009d8d 100755 --- a/etc/diskspace/remove-old-stack-work-libs.hs +++ b/etc/diskspace/remove-old-stack-work-libs.hs @@ -14,8 +14,10 @@ import System.FilePath main = do files <- sort <$> listDirectory "." let (dynlibs,libdirs) = partition (".so" `isExtensionOf`) files - pkglibdirs = groupBy samePkgLibDir libdirs - pkgdynlibs = groupBy samePkgDynLib dynlibs + pkglibdirs = groupBy samePkgLibDir $ + filter (not . ("-internal" `isSuffixOf`)) libdirs + pkgdynlibs = groupBy samePkgDynLib $ + filter (not . ("-internal-" `isInfixOf`)) dynlibs mapM_ (removeOlder removeDirectoryRecursive) pkglibdirs mapM_ (removeOlder removeFile) pkgdynlibs where From 790362013b093c98d64fdefaa9bba79b4ca1a9fb Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 19 May 2020 13:34:42 +0800 Subject: [PATCH 1527/2682] remove-old-stack-work-libs.hs: use regexp to handle internal libraries regexp match filters out "-ver-hash" --- etc/diskspace/remove-old-stack-work-libs.hs | 27 +++++++++------------ 1 file changed, 11 insertions(+), 16 deletions(-) diff --git a/etc/diskspace/remove-old-stack-work-libs.hs b/etc/diskspace/remove-old-stack-work-libs.hs index 50009d8d..2a85942e 100755 --- a/etc/diskspace/remove-old-stack-work-libs.hs +++ b/etc/diskspace/remove-old-stack-work-libs.hs @@ -7,17 +7,15 @@ -- work/*/unpack-dir/.stack-work/install/x86_64-linux/*/*/lib/x86_64-linux-ghc-* import Data.List -import Data.List.Extra import System.Directory import System.FilePath +import Text.Regex.TDFA main = do files <- sort <$> listDirectory "." let (dynlibs,libdirs) = partition (".so" `isExtensionOf`) files - pkglibdirs = groupBy samePkgLibDir $ - filter (not . ("-internal" `isSuffixOf`)) libdirs - pkgdynlibs = groupBy samePkgDynLib $ - filter (not . ("-internal-" `isInfixOf`)) dynlibs + pkglibdirs = groupBy samePkgLibDir libdirs + pkgdynlibs = groupBy samePkgDynLib dynlibs mapM_ (removeOlder removeDirectoryRecursive) pkglibdirs mapM_ (removeOlder removeFile) pkgdynlibs where @@ -26,24 +24,21 @@ main = do pkgDirName p = if length p < 25 then error $ p ++ " too short to be in correct name-version-hash format" - else (removeDashSegment . removeHashSegment) p + else extractNameInternal p - removeHashSegment p = - let dashes = elemIndices '-' p in - if length dashes < 2 - then error $ p ++ " not in name-version-hash format" - else let final = last dashes in - if length p - final `elem` [23,22,21] then take final p - else error $ p ++ " has incorrect hash length" - - removeDashSegment = init . dropWhileEnd (/= '-') + extractNameInternal :: String -> String + extractNameInternal p = + let (name,_,internal) = p =~ "-[0-9.]+-[0-9A-Za-z]{20,22}" :: (String, String, String) + in name ++ internal samePkgDynLib d1 d2 = pkgDynName d1 == pkgDynName d2 where pkgDynName p = if length p < 42 then error $ p ++ " too short to be libHSname-version-hash-ghc*.so format" - else (removeDashSegment . removeHashSegment . removeDashSegment) p + else (extractNameInternal . removeDashSegment) p + + removeDashSegment = dropWhileEnd (/= '-') removeOlder remover files = do -- keep 2 latest builds From 86e5490e70a2aa9ffae5805ceba47f18eada0efb Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 19 May 2020 14:00:27 +0800 Subject: [PATCH 1528/2682] path-0.7.1 broke a couple of packages (commercialhaskell/path#161) --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4b74e9d2..10b16393 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4837,6 +4837,8 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5351 - pantry < 0.5 + # https://github.com/commercialhaskell/path/issues/161 + - path < 0.7.1 # end of packages # Package flags are applied to individual packages, and override the values of From f905c9455dcfb41815174b1beec824232477ec09 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 19 May 2020 14:08:36 +0800 Subject: [PATCH 1529/2682] remove-old-stack-work-libs.hs: need to check regexp match result --- etc/diskspace/remove-old-stack-work-libs.hs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/etc/diskspace/remove-old-stack-work-libs.hs b/etc/diskspace/remove-old-stack-work-libs.hs index 2a85942e..a2cd4e3b 100755 --- a/etc/diskspace/remove-old-stack-work-libs.hs +++ b/etc/diskspace/remove-old-stack-work-libs.hs @@ -28,8 +28,9 @@ main = do extractNameInternal :: String -> String extractNameInternal p = - let (name,_,internal) = p =~ "-[0-9.]+-[0-9A-Za-z]{20,22}" :: (String, String, String) - in name ++ internal + let (name,match,internal) = p =~ "-[0-9.]+-[0-9A-Za-z]{20,22}" :: (String, String, String) + in if null match || null name then error $ p ++ " not in correct name-version-hash format" + else name ++ internal samePkgDynLib d1 d2 = pkgDynName d1 == pkgDynName d2 where From 2c27b690d8251a316584ee5a7b3920f8f3340c39 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 19 May 2020 14:18:58 +0800 Subject: [PATCH 1530/2682] haskoin-core-0.13.5 haddock error (haskoin/haskoin-core#385) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 10b16393..36786155 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4035,7 +4035,7 @@ packages: - secp256k1-haskell - rocksdb-haskell - rocksdb-query - - haskoin-core + - haskoin-core < 0.13.5 # https://github.com/haskoin/haskoin-core/issues/385 - haskoin-node - haskoin-store < 0 # https://github.com/haskoin/haskoin-store/issues/12 From 95b3cae91d44be7d23f8f3b906231d43b0b9adfc Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 19 May 2020 14:29:07 +0800 Subject: [PATCH 1531/2682] etc/diskspace/clean-old-stack-libs.sh wrapper shell script --- etc/diskspace/clean-old-stack-libs.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 etc/diskspace/clean-old-stack-libs.sh diff --git a/etc/diskspace/clean-old-stack-libs.sh b/etc/diskspace/clean-old-stack-libs.sh new file mode 100644 index 00000000..06216b94 --- /dev/null +++ b/etc/diskspace/clean-old-stack-libs.sh @@ -0,0 +1,10 @@ +#!/bin/sh + +if [ $# != 1 ]; then + echo "Usage: $0 [nightly|lts-xx]" + exit 1 +fi + +popd ~/stackage/automated/work/$1/unpack-dir/.stack-work/install/x86_64-linux/*/*/lib/x86_64-linux-ghc-* + +~/stackage/etc/diskspace/remove-old-stack-work-libs.hs From ca686bacd18c2a95a314a23b95e0a708ca42aba8 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 19 May 2020 15:24:13 +0800 Subject: [PATCH 1532/2682] clean-old-stack-libs.sh: pushd to show dir and run stack script - bail if error - make shell script executable instead --- etc/diskspace/clean-old-stack-libs.sh | 8 ++++++-- etc/diskspace/remove-old-stack-work-libs.hs | 0 2 files changed, 6 insertions(+), 2 deletions(-) mode change 100644 => 100755 etc/diskspace/clean-old-stack-libs.sh mode change 100755 => 100644 etc/diskspace/remove-old-stack-work-libs.hs diff --git a/etc/diskspace/clean-old-stack-libs.sh b/etc/diskspace/clean-old-stack-libs.sh old mode 100644 new mode 100755 index 06216b94..18b5606b --- a/etc/diskspace/clean-old-stack-libs.sh +++ b/etc/diskspace/clean-old-stack-libs.sh @@ -1,10 +1,14 @@ #!/bin/sh +set -e + if [ $# != 1 ]; then echo "Usage: $0 [nightly|lts-xx]" exit 1 fi -popd ~/stackage/automated/work/$1/unpack-dir/.stack-work/install/x86_64-linux/*/*/lib/x86_64-linux-ghc-* +SRCDIR=$(dirname $0) -~/stackage/etc/diskspace/remove-old-stack-work-libs.hs +pushd ~/stackage/automated/work/$1/unpack-dir/.stack-work/install/x86_64-linux/*/*/lib/x86_64-linux-ghc-* + +stack --resolver lts-14 script ${SRCDIR}/remove-old-stack-work-libs.hs diff --git a/etc/diskspace/remove-old-stack-work-libs.hs b/etc/diskspace/remove-old-stack-work-libs.hs old mode 100755 new mode 100644 From dbdb2fcb86719854306d74477ffd1c8b34d8079c Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 19 May 2020 15:28:29 +0800 Subject: [PATCH 1533/2682] clean-old-stack-libs.sh: pushd seems a bashism --- etc/diskspace/clean-old-stack-libs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/diskspace/clean-old-stack-libs.sh b/etc/diskspace/clean-old-stack-libs.sh index 18b5606b..761f9a67 100755 --- a/etc/diskspace/clean-old-stack-libs.sh +++ b/etc/diskspace/clean-old-stack-libs.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash set -e From 120b5380e01beb6ff40fd773c97b578a3e91f48e Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 19 May 2020 15:31:42 +0800 Subject: [PATCH 1534/2682] clean-old-stack-libs.sh: don't be clever with relpaths --- etc/diskspace/clean-old-stack-libs.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/etc/diskspace/clean-old-stack-libs.sh b/etc/diskspace/clean-old-stack-libs.sh index 761f9a67..1d306b3d 100755 --- a/etc/diskspace/clean-old-stack-libs.sh +++ b/etc/diskspace/clean-old-stack-libs.sh @@ -7,8 +7,6 @@ if [ $# != 1 ]; then exit 1 fi -SRCDIR=$(dirname $0) - pushd ~/stackage/automated/work/$1/unpack-dir/.stack-work/install/x86_64-linux/*/*/lib/x86_64-linux-ghc-* -stack --resolver lts-14 script ${SRCDIR}/remove-old-stack-work-libs.hs +stack --resolver lts-14 script ~/stackage/etc/diskspace/remove-old-stack-work-libs.hs From 4c3b80487e2a52ddf76b5223d1f140a2a94a3d8f Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 19 May 2020 15:45:48 +0800 Subject: [PATCH 1535/2682] clean-old-stack-libs.sh: lts-14.27 and use cd/pwd --- etc/diskspace/clean-old-stack-libs.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/etc/diskspace/clean-old-stack-libs.sh b/etc/diskspace/clean-old-stack-libs.sh index 1d306b3d..e63044f9 100755 --- a/etc/diskspace/clean-old-stack-libs.sh +++ b/etc/diskspace/clean-old-stack-libs.sh @@ -7,6 +7,7 @@ if [ $# != 1 ]; then exit 1 fi -pushd ~/stackage/automated/work/$1/unpack-dir/.stack-work/install/x86_64-linux/*/*/lib/x86_64-linux-ghc-* +cd ~/stackage/automated/work/$1/unpack-dir/.stack-work/install/x86_64-linux/*/*/lib/x86_64-linux-ghc-* +pwd -stack --resolver lts-14 script ~/stackage/etc/diskspace/remove-old-stack-work-libs.hs +stack --resolver lts-14.27 script ~/stackage/etc/diskspace/remove-old-stack-work-libs.hs From e808040015a2cc64ec193a2e890156af0e9cb478 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 19 May 2020 15:49:57 +0800 Subject: [PATCH 1536/2682] CURATORS: recommend using etc/diskspace/clean-old-stack-libs.sh --- CURATORS.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CURATORS.md b/CURATORS.md index 89ee5394..da594cb2 100644 --- a/CURATORS.md +++ b/CURATORS.md @@ -335,9 +335,9 @@ LTS minor bumps typically are run on Sundays. ### Diskspace errors (and website sync debugging) -* You can detect the problem by running `df`. If you see that `/` is out of space, we have a problem +* You can detect the problem by running `df`. If you see that `/` is out of space, we have a problem. * If you see that `/var/stackage/` is out of space, you can: - * run `./stackage/etc/diskspace/remove-old-stack-work-libs.hs` in `/var/stackage/stackage/automated/work/*/unpack-dir/.stack-work/install/x86_64-linux/*/*/` (hopefully sufficient) + * run `./etc/diskspace/clean-old-stack-libs.sh [nightly|lts-XX]` (hopefully sufficient) optionally (not recommended?): * `rm -r /var/stackage/stackage/automated/work/lts*/unpack-dir/unpacked/` From ac8bd86f3752ab920a1d006b85acbd9b18889ae3 Mon Sep 17 00:00:00 2001 From: charukiewicz Date: Tue, 19 May 2020 17:43:02 -0500 Subject: [PATCH 1537/2682] add isbn --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 36786155..c37a994f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -9,6 +9,9 @@ cabal-format-version: "3.0" # Constraints for brand new builds packages: + "Christian Charukiewicz @charukiewicz": + - isbn + "Ashlynn Anderson @lambdadog": - proto3-wire From ea678af55a4d7c51aa41c54d5684c2b25ee9a82f Mon Sep 17 00:00:00 2001 From: Colin Woodbury Date: Wed, 20 May 2020 13:35:57 -0700 Subject: [PATCH 1538/2682] Add aura --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 36786155..fa20654a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1217,6 +1217,7 @@ packages: "Colin Woodbury @fosskers": - aur + - aura - bounded-queue - kanji - language-bash From 4b3b026633a77d042c72fcce221f0cf01e9670e4 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Thu, 21 May 2020 19:11:13 +0000 Subject: [PATCH 1539/2682] Restrict numhask < 0.5 (#5382) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 36786155..932a3174 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3263,7 +3263,7 @@ packages: - validation "Tony Day @tonyday567": - - numhask + - numhask < 0.5 # https://github.com/commercialhaskell/stackage/issues/5382 - numhask-array < 0 - numhask-prelude < 0 - numhask-space < 0 From bd930c230eb0d57fbcf0aec288e21159ae220821 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Thu, 21 May 2020 19:24:16 +0000 Subject: [PATCH 1540/2682] Unrestricts validation-selective (#5346) --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 932a3174..72e2574d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4824,9 +4824,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5347 - persistent-template < 2.8.3 - # https://github.com/commercialhaskell/stackage/issues/5346 - - validation-selective < 0.1.0.0 - # https://github.com/commercialhaskell/stackage/issues/5348 - tasty < 1.3 - tasty-golden < 2.3.3.3 From 34e0237f1d0978162f665b5a7222e69978963c56 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Thu, 21 May 2020 19:25:18 +0000 Subject: [PATCH 1541/2682] Unrestricts relude (#5361) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 72e2574d..c0d318d7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3622,7 +3622,7 @@ packages: - ilist - life-sync - membrain - - relude < 0.7 # https://github.com/commercialhaskell/stackage/issues/5361 + - relude - shellmet - shortcut-links - summoner From 26c967c04c8faf4ce7949051fa38e42a89d06393 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Thu, 21 May 2020 19:26:04 +0000 Subject: [PATCH 1542/2682] Unrestricts colourista (#5336) --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c0d318d7..ddc73e50 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4818,9 +4818,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5335 - brick <0.53 - # https://github.com/commercialhaskell/stackage/issues/5336 - - colourista < 0.1.0.0 - # https://github.com/commercialhaskell/stackage/issues/5347 - persistent-template < 2.8.3 From 1a8092c1fc4db1fce1b8d9dd34cb369ab22c1398 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Thu, 21 May 2020 19:30:52 +0000 Subject: [PATCH 1543/2682] Restricts postgrest < 7.0.1 (#5383) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ddc73e50..7d59a532 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -83,7 +83,7 @@ packages: "Robert Vollmert @robx": - configurator-pg - - postgrest + - postgrest < 7.0.1 # https://github.com/commercialhaskell/stackage/issues/5383 "Sandy Maguire @isovector": - ecstasy From 92408690d5927c25c99323eacb04f9aab3639f58 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Thu, 21 May 2020 19:32:36 +0000 Subject: [PATCH 1544/2682] Restricts declarative < 0.5.2 (#5384) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7d59a532..ab065b64 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2586,7 +2586,7 @@ packages: - mighty-metropolis - speedy-slice - hasty-hamiltonian - - declarative + - declarative < 0.5.2 # https://github.com/commercialhaskell/stackage/issues/5384 - sampling - flat-mcmc - urbit-hob From 4cf80ec3ee9283f2c6c064d9d3144b237b32643f Mon Sep 17 00:00:00 2001 From: Lucas David Traverso Date: Tue, 19 May 2020 01:10:44 -0300 Subject: [PATCH 1545/2682] Removed contraints caused by deprecated packages conferer-provider-json was deprecated in favor of conferer-source-json, the former caused constraints on conferer-* packages that are not necessary --- build-constraints.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4b74e9d2..77e0a171 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3865,11 +3865,11 @@ packages: - map-syntax < 0 # GHC 8.4 via base-4.11.0.0 - heist < 0 # GHC 8.4 via map-syntax - snap < 0 # GHC 8.4 via base-4.11.0.0 - - conferer < 0.4.0.0 # https://github.com/commercialhaskell/stackage/issues/5374 - # - conferer-snap # Because snap - - conferer-warp < 0.4.0.0 # https://github.com/commercialhaskell/stackage/issues/5374 - - conferer-hspec < 0.4.0.0 # https://github.com/commercialhaskell/stackage/issues/5374 - - conferer-provider-json + - conferer + #- conferer-snap # Because snap + - conferer-warp + - conferer-hspec + - conferer-source-json "Tim Humphries @thumphries": - transformers-either < 0 # via exceptions-0.10.0 From 99d22cdb0210b1fe5b8ee4cf1b7fa427e0fc7bda Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Fri, 22 May 2020 04:06:56 +0000 Subject: [PATCH 1546/2682] Restricts morpheus-graphql < 0.12 (#5385) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ab065b64..587f3b60 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4172,7 +4172,7 @@ packages: - minimal-configuration "Davit Nalchevanidze @nalchevanidze": - - morpheus-graphql + - morpheus-graphql < 0.12 # https://github.com/commercialhaskell/stackage/issues/5385 "Satoshi Egi @egisatoshi": - egison From 1f714994b6f739ce8f470ecce61e406394b22a3e Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Fri, 22 May 2020 04:32:02 +0000 Subject: [PATCH 1547/2682] Restricts mighty-metropolis (#5384) --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 587f3b60..ea3aa271 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2583,10 +2583,10 @@ packages: "Jared Tobin @jtobin": - mwc-probability - mcmc-types - - mighty-metropolis + - mighty-metropolis < 2 # https://github.com/commercialhaskell/stackage/issues/5384 - speedy-slice - hasty-hamiltonian - - declarative < 0.5.2 # https://github.com/commercialhaskell/stackage/issues/5384 + - declarative - sampling - flat-mcmc - urbit-hob From 71bc219be021048378b70d0d632d3dfd90c3c286 Mon Sep 17 00:00:00 2001 From: Jared Tobin Date: Fri, 22 May 2020 08:52:20 +0400 Subject: [PATCH 1548/2682] Remove mighty-metropolis < 2 constraint. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ea3aa271..3a42b58c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2583,7 +2583,7 @@ packages: "Jared Tobin @jtobin": - mwc-probability - mcmc-types - - mighty-metropolis < 2 # https://github.com/commercialhaskell/stackage/issues/5384 + - mighty-metropolis - speedy-slice - hasty-hamiltonian - declarative From f264854459f395c107af1640f6dbacfc5fef132f Mon Sep 17 00:00:00 2001 From: david Date: Fri, 22 May 2020 10:37:38 +0200 Subject: [PATCH 1549/2682] add morpheus graphql (core , client) --- build-constraints.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ea3aa271..a0eaf38f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4172,7 +4172,9 @@ packages: - minimal-configuration "Davit Nalchevanidze @nalchevanidze": - - morpheus-graphql < 0.12 # https://github.com/commercialhaskell/stackage/issues/5385 + - morpheus-graphql + - morpheus-graphql-core + - morpheus-graphql-client "Satoshi Egi @egisatoshi": - egison From 205b2bd4d6ddc9a08d17a1224e3ec2f1ae723566 Mon Sep 17 00:00:00 2001 From: david Date: Fri, 22 May 2020 11:03:06 +0200 Subject: [PATCH 1550/2682] remove morpheus-graphql-client --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a0eaf38f..77a0ddb8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4174,7 +4174,6 @@ packages: "Davit Nalchevanidze @nalchevanidze": - morpheus-graphql - morpheus-graphql-core - - morpheus-graphql-client "Satoshi Egi @egisatoshi": - egison From 6aebada3e73da4fc1531ab604c3f7f027da70a85 Mon Sep 17 00:00:00 2001 From: allan Date: Fri, 22 May 2020 13:16:22 +0300 Subject: [PATCH 1551/2682] Add 'servant-errors' package to Stackage --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3e171ee2..db9a103a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -9,6 +9,9 @@ cabal-format-version: "3.0" # Constraints for brand new builds packages: + "Allan Lukwago @epicallan": + - servant-errors + "Ashlynn Anderson @lambdadog": - proto3-wire From 33f51f3d673842ab2bcdbff971831a6d45930e37 Mon Sep 17 00:00:00 2001 From: Marco Z Date: Sat, 23 May 2020 09:34:28 +0200 Subject: [PATCH 1552/2682] Add 'depq' --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d78ae54c..df4e3a8b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -497,6 +497,7 @@ packages: "Marco Zocca @ocramz": - sparse-linear-algebra + - depq - matrix-market-attoparsec - mwc-probability-transition < 0 # via logging-effect - xeno From 8673eae540457dd8d07908e4d3a0226d9e18d127 Mon Sep 17 00:00:00 2001 From: Galen Huntington Date: Sun, 24 May 2020 07:25:13 -0700 Subject: [PATCH 1553/2682] Fix blog links. --- DATA-FLOW.md | 2 +- MAINTAINERS.md | 2 +- README.md | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/DATA-FLOW.md b/DATA-FLOW.md index 70532702..54c5722f 100644 --- a/DATA-FLOW.md +++ b/DATA-FLOW.md @@ -26,7 +26,7 @@ There are three inputs into the data flow: ## Travis For [various -reasons](https://www.fpcomplete.com/blog/2015/05/distributing-packages-without-sysadmin), +reasons](https://tech.fpcomplete.com/blog/2015/05/distributing-packages-without-sysadmin), we leverage Travis CI for running some processes. In particular: * [all-cabal-files](https://github.com/commercialhaskell/all-cabal-files/blob/hackage/.travis.yml) diff --git a/MAINTAINERS.md b/MAINTAINERS.md index 6dc734b6..f4f6fd4f 100644 --- a/MAINTAINERS.md +++ b/MAINTAINERS.md @@ -4,7 +4,7 @@ The idea behind Stackage is that, if all packages work with the newest versions * All packages are buildable and testable from Hackage. We recommend [the Stack Travis script](https://docs.haskellstack.org/en/stable/travis_ci/), which ensures a package is not accidentally incomplete. * All packages are compatible with the newest versions of all dependencies (You can find restrictive upper bounds by visiting http://packdeps.haskellers.com/feed?needle=PACKAGENAME). -* All packages in a snapshot are compatible with the versions of libraries that ship with the GHC used in the snapshot ([more information on lenient lower bounds](https://www.fpcomplete.com/blog/2014/05/lenient-lower-bounds)). +* All packages in a snapshot are compatible with the versions of libraries that ship with the GHC used in the snapshot ([more information on lenient lower bounds](https://tech.fpcomplete.com/blog/2014/05/lenient-lower-bounds)). Packages in Stackage are not patched: all package changes occur upstream in Hackage. diff --git a/README.md b/README.md index 9fb27333..66cf4e26 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ We welcome all packages, provided: * The package author/maintainer agrees to the [maintainers agreement](https://github.com/commercialhaskell/stackage/blob/master/MAINTAINERS.md). * The package is buildable and testable from Hackage. We recommend [the Stack Travis script](https://docs.haskellstack.org/en/stable/travis_ci/), which ensures a package is not accidentally incomplete. * The package is compatible with the newest versions of all dependencies (You can find restrictive upper bounds by visiting http://packdeps.haskellers.com/feed?needle=PACKAGENAME). -* The package is compatible with the versions of libraries that ship with GHC ([more information on lenient lower bounds](https://www.fpcomplete.com/blog/2014/05/lenient-lower-bounds)). +* The package is compatible with the versions of libraries that ship with GHC ([more information on lenient lower bounds](https://tech.fpcomplete.com/blog/2014/05/lenient-lower-bounds)). Full details on how to add and test a package can be found in the [maintainers agreement](https://github.com/commercialhaskell/stackage/blob/master/MAINTAINERS.md#adding-a-package). @@ -109,14 +109,14 @@ There are a number of answers to this question: and packages depending on them - are fixed to GHC versions. Common examples of this are containers and transformers. There's a lot more information on this in - [an FP Complete blog post](https://www.fpcomplete.com/blog/2014/05/lenient-lower-bounds) + [an FP Complete blog post](https://tech.fpcomplete.com/blog/2014/05/lenient-lower-bounds) __How long do you maintain an LTS build?__ We only guarantee that we will maintain a single LTS major version at a time, and that it will be maintained for at least three months. This is the -[originally proposed support window](https://www.fpcomplete.com/blog/2014/12/backporting-bug-fixes), +[originally proposed support window](https://tech.fpcomplete.com/blog/2014/12/backporting-bug-fixes), and hasn't changed since then. That said, we do maintain the capability to keep multiple LTS runs From e162d750fc5d58f9cf8816956897ff7327921506 Mon Sep 17 00:00:00 2001 From: Sam Protas Date: Sun, 24 May 2020 15:54:38 -0400 Subject: [PATCH 1554/2682] Add JuicyPixels-blurhash --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d78ae54c..8663ffaa 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3563,6 +3563,7 @@ packages: - triplesec - composable-associations - composable-associations-aeson + - JuicyPixels-blurhash "Anton Ekblad @valderman": - selda From 4bf71321c51a7f8d3a82e2de6c25ca4b0d7b50c7 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 25 May 2020 06:51:54 +0200 Subject: [PATCH 1555/2682] Re-enable through-text --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d78ae54c..1d04f91d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1114,7 +1114,7 @@ packages: - fay-dom < 0 - feed - time-compat - - through-text < 0 + - through-text # Not my packages - HStringTemplate - language-ecmascript < 0 # via Diff-0.4.0 @@ -4182,7 +4182,7 @@ packages: - minimal-configuration "Davit Nalchevanidze @nalchevanidze": - - morpheus-graphql + - morpheus-graphql - morpheus-graphql-core "Satoshi Egi @egisatoshi": From 9c83c771e31c8007a7e7412e98c2175fb7b64b78 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 25 May 2020 06:59:12 +0200 Subject: [PATCH 1556/2682] aeson < 1.5.0.0 for #5393 --- build-constraints.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d78ae54c..75ace04e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4182,7 +4182,7 @@ packages: - minimal-configuration "Davit Nalchevanidze @nalchevanidze": - - morpheus-graphql + - morpheus-graphql - morpheus-graphql-core "Satoshi Egi @egisatoshi": @@ -4844,6 +4844,10 @@ packages: # https://github.com/commercialhaskell/path/issues/161 - path < 0.7.1 + + # https://github.com/commercialhaskell/stackage/issues/5393 + - aeson < 1.5.0.0 + # end of packages # Package flags are applied to individual packages, and override the values of From fda9074d84e0f259426fa24e5250d58ed87f5f54 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20Rze=C5=BAnicki?= Date: Mon, 25 May 2020 13:41:47 +0200 Subject: [PATCH 1557/2682] Please add stackcollapse-ghc to stackage --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 75ace04e..97abce6c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -23,6 +23,7 @@ packages: "Marcin Rzeźnicki @marcin-rzeznicki": - hspec-tables + - stackcollapse-ghc "Mauricio Fierro @mauriciofierrom": - dialogflow-fulfillment From 3772c5801c5de9073f81684e01a91468a48cab8d Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Mon, 25 May 2020 17:30:13 +0000 Subject: [PATCH 1558/2682] Restricts cabal-plan < 0.7 (#5395) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 62f0eb86..e734c642 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -441,7 +441,7 @@ packages: - resistor-cube < 0 # via lapack - linear-circuit < 0 # via lapack # Not a maintainer - - cabal-plan + - cabal-plan < 0.7 # https://github.com/commercialhaskell/stackage/issues/5395 - topograph - ix-shapable - hsshellscript From 95b5d0c8b6f32033634b5b8b1556bca8c6ef62a5 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 17 Sep 2020 02:11:57 +0300 Subject: [PATCH 1559/2682] Upper bound on base16-bytestring for #5649 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4ce1d433..3a8cb908 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -673,7 +673,7 @@ packages: - alex - async - - base16-bytestring + - base16-bytestring < 1 # https://github.com/commercialhaskell/stackage/issues/5649 - csv-conduit < 0 # ghc 8.10 - executable-hash < 0 # via cryptohash - executable-path From 94c010c482cf5ea68b93add96f5446c156c940ce Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 17 Sep 2020 06:54:57 +0300 Subject: [PATCH 1560/2682] Include prefix for jwt --- debian-bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index 39d630ce..87146020 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -327,7 +327,7 @@ pushd /tmp \ && unzip v${LIBJWT_VER}.zip \ && pushd libjwt-${LIBJWT_VER} \ && autoreconf -fiv \ - && ./configure --disable-valgrind --disable-doxygen-doc \ + && ./configure --disable-valgrind --disable-doxygen-doc --prefix /usr \ && make \ && sudo make install \ && popd \ From dc99a3dda0008c5111934647a357a4c4bea1944d Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 17 Sep 2020 06:58:17 +0300 Subject: [PATCH 1561/2682] Disable libjwt-typed --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3a8cb908..a416934e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -42,7 +42,7 @@ packages: "Marcin Rzeźnicki @marcin-rzeznicki": - hspec-tables - stackcollapse-ghc - - libjwt-typed + - libjwt-typed < 0 # https://github.com/commercialhaskell/stackage/pull/5648#issuecomment-694239692 "Mauricio Fierro @mauriciofierrom": - dialogflow-fulfillment From 0c7745a7c34ba01d844bf1ef4965bc773d222284 Mon Sep 17 00:00:00 2001 From: Mitchell Rosen Date: Sat, 19 Sep 2020 17:45:50 -0400 Subject: [PATCH 1562/2682] Re-enable termbox --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a416934e..e77e11ca 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2052,7 +2052,7 @@ packages: "Mitchell Rosen @mitchellwrosen": - tasty-hspec - - termbox < 0 # via base-4.13.0.0 + - termbox - text-ansi - timer-wheel - wai-middleware-travisci < 0 # via base-4.13.0.0 From c9d08ee8af7f92bc142531fa0ad3d9024b37887b Mon Sep 17 00:00:00 2001 From: Steven Vandevelde Date: Sat, 19 Sep 2020 22:56:23 +0200 Subject: [PATCH 1563/2682] Re-enable shikensu --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e77e11ca..809e4354 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3649,7 +3649,7 @@ packages: # - alerta # servant-client 0.12 "Steven Vandevelde @icidasset": - - shikensu < 0 # via flow + - shikensu "George Pollard @Porges": - email-validate From 4b486ca29205ce0486252a4d2156737118fbd4d6 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Mon, 25 May 2020 17:37:27 -0700 Subject: [PATCH 1564/2682] Upper bound `wai-extra` (#5655) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 809e4354..1ad6e44b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -643,7 +643,7 @@ packages: - persistent-test < 0 # https://github.com/commercialhaskell/stackage/issues/5641 # - stackage-curator # http-conduit 2.3 via amazonka - store - - wai-extra + - wai-extra < 3.1.0 # https://github.com/commercialhaskell/stackage/issues/5655 - wai-websockets - warp-tls - yesod From 6856a392ca6bdf96f19c97f687f22bc07111888d Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Tue, 26 May 2020 02:42:37 +0000 Subject: [PATCH 1565/2682] Disables rattle-0.1 (#5396) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d4f2cdb4..f4f5acb3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -710,7 +710,7 @@ packages: - record-dot-preprocessor - filepattern - record-hasfield - - rattle + - rattle < 0 # https://github.com/commercialhaskell/stackage/issues/5396 - hie-bios - fuzzy From 29fab2a90ff764ccbd85c6aae265401478849a19 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Tue, 26 May 2020 18:23:33 +0000 Subject: [PATCH 1566/2682] Restricts http-client < 0.7 (#5397) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f4f5acb3..c286f8aa 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -670,7 +670,7 @@ packages: - windns - mono-traversable - - http-client + - http-client < 0.7 # https://github.com/commercialhaskell/stackage/issues/5397 - http-conduit - githash From 9aef99bac0406f307b129d43f3e559ef4e1ff028 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Tue, 26 May 2020 18:25:25 +0000 Subject: [PATCH 1567/2682] Restricts these < 1.1 (#5398) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c286f8aa..47043c5e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4652,7 +4652,7 @@ packages: - th-extras - th-lift-instances - th-utilities < 0 # template-haskell - - these + - these < 1.1 # https://github.com/commercialhaskell/stackage/issues/5398 - these-lens - these-optics - threads From 4d0bf6ae71571b8f8facad19d5fa2baa71aa8fed Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Tue, 26 May 2020 18:29:37 +0000 Subject: [PATCH 1568/2682] Unrestricts rattle (#5396) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 47043c5e..996f2f0a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -710,7 +710,7 @@ packages: - record-dot-preprocessor - filepattern - record-hasfield - - rattle < 0 # https://github.com/commercialhaskell/stackage/issues/5396 + - rattle - hie-bios - fuzzy From 0bb405b5d0c99aeac8b0224bc37c3316c775918f Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Tue, 26 May 2020 18:33:59 +0000 Subject: [PATCH 1569/2682] Re-drops rattle (#5396) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 996f2f0a..47043c5e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -710,7 +710,7 @@ packages: - record-dot-preprocessor - filepattern - record-hasfield - - rattle + - rattle < 0 # https://github.com/commercialhaskell/stackage/issues/5396 - hie-bios - fuzzy From 3e6c0dc3bbb91916d1d241a6abbcd1ba733c0c68 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Tue, 26 May 2020 18:35:10 +0000 Subject: [PATCH 1570/2682] Unrestricts cabal-plan and these (#5395 #5398) --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 47043c5e..e34ab99e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -442,7 +442,7 @@ packages: - resistor-cube < 0 # via lapack - linear-circuit < 0 # via lapack # Not a maintainer - - cabal-plan < 0.7 # https://github.com/commercialhaskell/stackage/issues/5395 + - cabal-plan - topograph - ix-shapable - hsshellscript @@ -4652,7 +4652,7 @@ packages: - th-extras - th-lift-instances - th-utilities < 0 # template-haskell - - these < 1.1 # https://github.com/commercialhaskell/stackage/issues/5398 + - these - these-lens - these-optics - threads From eccbb50dfb8aeb8a439da723bcb5a8653f4a77bf Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Tue, 26 May 2020 18:41:05 +0000 Subject: [PATCH 1571/2682] Drops cabal-plan and cabal-flatpak (#5398) --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e34ab99e..0fc698e9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -363,7 +363,7 @@ packages: - bibtex - board-games < 0 # via httpd-shed - buffer-pipe - - cabal-flatpak + - cabal-flatpak < 0 # via cabal plan - https://github.com/commercialhaskell/stackage/issues/5398 - calendar-recycling - checksum - combinatorial @@ -442,7 +442,7 @@ packages: - resistor-cube < 0 # via lapack - linear-circuit < 0 # via lapack # Not a maintainer - - cabal-plan + - cabal-plan < 0 # https://github.com/commercialhaskell/stackage/issues/5398 - topograph - ix-shapable - hsshellscript From d9d2ac4360ed649ac220d2aeb5a53daacbff7058 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Fri, 29 May 2020 02:00:59 +0000 Subject: [PATCH 1572/2682] Restricts splitmix < 0.1 (#5399 #5271) --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0fc698e9..a993d839 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -12,7 +12,7 @@ packages: "Allan Lukwago @epicallan": - servant-errors - "Christian Charukiewicz @charukiewicz": + "Christian Charukiewicz @charukiewicz": - isbn "Koz Ross @kozross": @@ -4607,7 +4607,7 @@ packages: - special-values - splice - split - - splitmix + - splitmix < 0.1 # https://github.com/commercialhaskell/stackage/issues/5399 and and QuickCheck-2.14 - sql-words - stateref - statistics From 446082b591c2e950cc2c793c3f5e2da15d821c5c Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Fri, 29 May 2020 02:01:55 +0000 Subject: [PATCH 1573/2682] Restricts ghc-source-gen < 0.4 (#5400) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a993d839..f723bb55 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3534,7 +3534,7 @@ packages: - pier-core < 0 - pier < 0 - haskeline < 0.8 # https://github.com/commercialhaskell/stackage/issues/5269 - - ghc-source-gen + - ghc-source-gen < 0.4 # https://github.com/commercialhaskell/stackage/issues/5400 "Christof Schramm ": - mnist-idx From 06462920fb019d235182079c8f6bb99fd272acd8 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Fri, 29 May 2020 02:02:24 +0000 Subject: [PATCH 1574/2682] Fixes YAML formatting --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f723bb55..26e3c5bc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -12,7 +12,7 @@ packages: "Allan Lukwago @epicallan": - servant-errors - "Christian Charukiewicz @charukiewicz": + "Christian Charukiewicz @charukiewicz": - isbn "Koz Ross @kozross": From 91600ac603577dc140cab9f8c403be82a1e67275 Mon Sep 17 00:00:00 2001 From: Anthony Cowley Date: Sat, 30 May 2020 23:35:18 -0400 Subject: [PATCH 1575/2682] Re-add vinyl Vinyl [builds](https://github.com/VinylRecords/Vinyl/issues/138) with stackage 15.14. It is mentioned in several places in the file, and I am not sure about editing the rest of those locations. --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 26e3c5bc..7f22e76b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2801,6 +2801,7 @@ packages: - LibZip >= 1.0 "Anthony Cowley @acowley": + - vinyl - Frames < 0 # GHC 8.4 via base-4.11.0.0 - hpp < 0 # build failure with GHC 8.4 via bytestring-trie From 2770208274385b92b16fa08d7dda4075917599b5 Mon Sep 17 00:00:00 2001 From: Daniel Rolls Date: Sun, 31 May 2020 13:44:35 +0100 Subject: [PATCH 1576/2682] Add byte-count-reader --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 26e3c5bc..cd0edf8f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -9,6 +9,9 @@ cabal-format-version: "3.0" # Constraints for brand new builds packages: + "Daniel Rolls @danielrolls": + - byte-count-reader + "Allan Lukwago @epicallan": - servant-errors From a7fa6cdafdd5b184398497b9cb1af2fe8b5ba9d4 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sun, 31 May 2020 16:56:39 +0000 Subject: [PATCH 1577/2682] Restricts character-cases < 0.1.0.5 (#5404) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 26e3c5bc..b328d4eb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3398,7 +3398,7 @@ packages: - socket-activation < 0 # via network-3.1.1.0 "aiya000 @aiya000": - - character-cases + - character-cases < 0.1.0.5 # https://github.com/commercialhaskell/stackage/issues/5404 - throwable-exceptions "Mitsutoshi Aoe @maoe": From 06bda10eb5370b91bc7b0717df029117e2e90dd2 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sun, 31 May 2020 17:07:56 +0000 Subject: [PATCH 1578/2682] Disables language-puppet-1.4.6.4 tests (#5405) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8fb0b982..1ab79fc5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5258,6 +5258,7 @@ skipped-tests: - jsaddle # Never finishes without framebuffer https://github.com/ghcjs/jsaddle/issues/9 - binary-parsers # https://github.com/winterland1989/binary-parsers/issues/3 - simple-affine-space # https://github.com/commercialhaskell/stackage/issues/5110 + - language-puppet # https://github.com/commercialhaskell/stackage/issues/5405 # Missing foreign library - symengine # symengine From 21208380f438f5c798d3248e01876a6567ae8a95 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 2 Jun 2020 11:12:05 -0700 Subject: [PATCH 1579/2682] Upper bound `doctest` (#5406) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 63d15832..0c9f3feb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -953,7 +953,7 @@ packages: - hspec-wai-json - aeson-qq - interpolate - - doctest + - doctest < 0.17 # https://github.com/commercialhaskell/stackage/issues/5406 - base-compat "Mario Blazevic @blamario": From 41eb6548773fd0e4dd872b85b1d92ad032705f27 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 2 Jun 2020 11:15:25 -0700 Subject: [PATCH 1580/2682] Upper bound `language-docker` (#5407) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0c9f3feb..cc0ac43e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3671,7 +3671,7 @@ packages: "José Lorenzo Rodríguez @lorenzo": - wrecker < 0 # GHC 8.4 via ansigraph - - language-docker + - language-docker < 9.0 # https://github.com/commercialhaskell/stackage/issues/5407 - docker-build-cacher < 0 # GHC 8.4 via turtle - mysql-haskell-nem < 0 # via io-streams - hadolint From 7f0439c45762d226d9108291e273527ec59d4619 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 3 Jun 2020 08:15:21 -0700 Subject: [PATCH 1581/2682] Remove upper bound on `language-docker`. Fix #5407 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index cc0ac43e..0c9f3feb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3671,7 +3671,7 @@ packages: "José Lorenzo Rodríguez @lorenzo": - wrecker < 0 # GHC 8.4 via ansigraph - - language-docker < 9.0 # https://github.com/commercialhaskell/stackage/issues/5407 + - language-docker - docker-build-cacher < 0 # GHC 8.4 via turtle - mysql-haskell-nem < 0 # via io-streams - hadolint From 80b8ab67a0067a5e39342a22141e2a1d4266cbfa Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 3 Jun 2020 08:30:17 -0700 Subject: [PATCH 1582/2682] Reopen #5407 as not fixed --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0c9f3feb..ea3ef787 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3671,10 +3671,10 @@ packages: "José Lorenzo Rodríguez @lorenzo": - wrecker < 0 # GHC 8.4 via ansigraph - - language-docker + - language-docker < 9.0 # https://github.com/commercialhaskell/stackage/issues/5407 - docker-build-cacher < 0 # GHC 8.4 via turtle - mysql-haskell-nem < 0 # via io-streams - - hadolint + - hadolint < 1.17.7 # due to language-docker, https://github.com/commercialhaskell/stackage/issues/5407 "Phil Ruffwind @Rufflewind": - blas-hs < 0 # MonadFail From 67eca7a72f0f6c4c70db1bb915dd41f89324c5f6 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 3 Jun 2020 13:45:23 -0700 Subject: [PATCH 1583/2682] Expect failure for `hadolint`, remove upper bounds on `hadolint` and `language-docker`. Close #5407 --- build-constraints.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ea3ef787..69271098 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3671,10 +3671,10 @@ packages: "José Lorenzo Rodríguez @lorenzo": - wrecker < 0 # GHC 8.4 via ansigraph - - language-docker < 9.0 # https://github.com/commercialhaskell/stackage/issues/5407 + - language-docker - docker-build-cacher < 0 # GHC 8.4 via turtle - mysql-haskell-nem < 0 # via io-streams - - hadolint < 1.17.7 # due to language-docker, https://github.com/commercialhaskell/stackage/issues/5407 + - hadolint "Phil Ruffwind @Rufflewind": - blas-hs < 0 # MonadFail @@ -5650,6 +5650,9 @@ expected-test-failures: # https://github.com/centromere/cacophony/issues/15 - cacophony + + # https://github.com/commercialhaskell/stackage/issues/5407 + - hadolint # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From f9e0e5f0e1487b7318e21025a068ec0d7542147d Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 3 Jun 2020 14:22:46 -0700 Subject: [PATCH 1584/2682] Disable tests for language-docker, not for hadolint" "; git push --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 69271098..5f6c0457 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5652,7 +5652,7 @@ expected-test-failures: - cacophony # https://github.com/commercialhaskell/stackage/issues/5407 - - hadolint + - language-docker # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From f2c7272553772cfe297ed67e0006b2e8788141f3 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 4 Jun 2020 21:22:55 -0700 Subject: [PATCH 1585/2682] Remove upper bound in `ghc-source-gen` (#5400) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5f6c0457..93cac357 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3538,7 +3538,7 @@ packages: - pier-core < 0 - pier < 0 - haskeline < 0.8 # https://github.com/commercialhaskell/stackage/issues/5269 - - ghc-source-gen < 0.4 # https://github.com/commercialhaskell/stackage/issues/5400 + - ghc-source-gen "Christof Schramm ": - mnist-idx From f9bec1b8fae62ae42b22c0367744d2bdff5a7268 Mon Sep 17 00:00:00 2001 From: Dmitry Dzhus Date: Thu, 4 Jun 2020 11:54:32 +0100 Subject: [PATCH 1586/2682] Re-enable tests for simple-vec3-0.6.0.1, static-text-0.2.0.6 --- build-constraints.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 93cac357..51c6dc5d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5210,10 +5210,8 @@ skipped-tests: - servant-blaze - servant-cassava - siggy-chardust - - simple-vec3 - skylighting-core - speedy-slice - - static-text - thyme - unordered-containers - unordered-intmap From 67ba93053b6e80d972b2766835d43d45fc584c16 Mon Sep 17 00:00:00 2001 From: locallycompact Date: Tue, 2 Jun 2020 21:58:22 +0100 Subject: [PATCH 1587/2682] Add within and shake-plus --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 51c6dc5d..60d0f058 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3892,6 +3892,10 @@ packages: - transformers-either < 0 # via exceptions-0.10.0 - transformers-fix + "Dan Firth @locallycompact": + - shake-plus + - within + "Domen Kozar @domenkozar": - elm2nix - mixpanel-client From f89d2d40dd03df4a9c1994df5709bc1de204e8fa Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 5 Jun 2020 11:08:38 -0700 Subject: [PATCH 1588/2682] `simple-vec3` still has test fialures (#5410) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 60d0f058..526ec099 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5532,6 +5532,7 @@ expected-test-failures: - nettle # https://github.com/stbuehler/haskell-nettle/issues/10 - persistent-sqlite # https://github.com/yesodweb/persistent/issues/989 - haskell-src-exts # https://github.com/commercialhaskell/stackage/issues/5151 + - simple-vec3 # https://github.com/commercialhaskell/stackage/pull/5410 # Compilation failures - ListLike # No issue tracker, e-mail sent to maintainer From 32f954d3f3bb69a8a150448e52809aa24ae277d0 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 5 Jun 2020 11:16:39 -0700 Subject: [PATCH 1589/2682] Test `alex` --- build-constraints.yaml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 526ec099..baa63935 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3254,10 +3254,6 @@ packages: - vector-split - vector-mmap - "Alex Mason @Axman6": - [] - # - amazonka-s3-streaming # https://github.com/axman6/amazonka-s3-streaming/issues/9 - "Ondrej Palkovsky @ondrap": - json-stream < 0 # GHC 8.4 via base-4.11.0.0 @@ -5001,7 +4997,7 @@ skipped-tests: - http-media # base-4.13 # fails with ghc 8.8 - - alex # as of alex-3.2.4 + # alex # as of alex-3.2.4 # Cyclic dependencies - base-orphans # via hspec From 40c8e12fcd68c3a5f80af99635ce65bb58de5cc5 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 5 Jun 2020 11:50:55 -0700 Subject: [PATCH 1590/2682] Try `doctest`. Move `alex` to expected failure instead of disabled --- build-constraints.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index baa63935..6ff9d2d0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4996,9 +4996,6 @@ skipped-tests: - time-compat # base-compat 0.11 - http-media # base-4.13 - # fails with ghc 8.8 - # alex # as of alex-3.2.4 - # Cyclic dependencies - base-orphans # via hspec @@ -5363,7 +5360,7 @@ skipped-tests: expected-test-failures: # GHC 8.4 - - doctest # https://github.com/sol/doctest/issues/198 + # doctest # https://github.com/sol/doctest/issues/198 # Intermittent failures or unreliable. These tests may pass when # re-enabled, but will eventually fail again. Only remove these @@ -5405,6 +5402,7 @@ expected-test-failures: # Requires running servers, accounts, or a specific environment. # These shouldn't be re-enabled unless we know a fix has been released. + - alex - GLFW-b # X - HTF # Requires shell script and are incompatible with sandboxed package databases - HaRe # # Needs ~/.ghc-mod/cabal-helper https://github.com/fpco/stackage/pull/906 From efa8f58c7546a79900f5fa3546e99037c4d9e450 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 5 Jun 2020 11:58:29 -0700 Subject: [PATCH 1591/2682] Test more disabled tests --- build-constraints.yaml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6ff9d2d0..824854d3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5358,10 +5358,6 @@ skipped-tests: # or test run failure for these packages. # (Testsuites which can't configure should be placed under skipped-tests.) expected-test-failures: - - # GHC 8.4 - # doctest # https://github.com/sol/doctest/issues/198 - # Intermittent failures or unreliable. These tests may pass when # re-enabled, but will eventually fail again. Only remove these # from expected-failures if we know a fix has been released. @@ -5496,13 +5492,13 @@ expected-test-failures: # Deprecated # Eventually we'll have to disable these packages completely. - - system-filepath # https://github.com/jmillikin/haskell-filesystem/issues/3 + # system-filepath # https://github.com/jmillikin/haskell-filesystem/issues/3 # Missing test files in sdist # Hopefully gets fixed in the next release... - - crypto-pubkey # https://github.com/vincenthz/hs-crypto-pubkey/issues/23 - - doctest-discover # 0.1.0.9 https://github.com/karun012/doctest-discover/issues/22 - - graylog # 0.1.0.1 https://github.com/fpco/stackage/pull/1254 + # crypto-pubkey # https://github.com/vincenthz/hs-crypto-pubkey/issues/23 + # doctest-discover # 0.1.0.9 https://github.com/karun012/doctest-discover/issues/22 + # graylog # 0.1.0.1 https://github.com/fpco/stackage/pull/1254 # Assertion failures, these can be real bugs or just limitations # in the test cases. From c10ab15bdaee49cc85f8375ff52b12eb57f821e1 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 5 Jun 2020 12:06:19 -0700 Subject: [PATCH 1592/2682] Enable more tests --- build-constraints.yaml | 26 ++++++++++---------------- 1 file changed, 10 insertions(+), 16 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 824854d3..f3093263 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5494,24 +5494,18 @@ expected-test-failures: # Eventually we'll have to disable these packages completely. # system-filepath # https://github.com/jmillikin/haskell-filesystem/issues/3 - # Missing test files in sdist - # Hopefully gets fixed in the next release... - # crypto-pubkey # https://github.com/vincenthz/hs-crypto-pubkey/issues/23 - # doctest-discover # 0.1.0.9 https://github.com/karun012/doctest-discover/issues/22 - # graylog # 0.1.0.1 https://github.com/fpco/stackage/pull/1254 - # Assertion failures, these can be real bugs or just limitations # in the test cases. - - DRBG # https://github.com/TomMD/DRBG/issues/7 - - bitx-bitcoin # https://github.com/tebello-thejane/bitx.hs/issues/4 - - courier # https://github.com/hargettp/courier/issues/19 - - download # https://github.com/fpco/stackage/issues/2811 - - haskell-tools-demo # https://github.com/haskell-tools/haskell-tools/issues/624 - - http-link-header # https://github.com/myfreeweb/http-link-header/issues/7 - - rando # https://github.com/commercialhaskell/stackage/issues/4249 - - systemd # https://github.com/erebe/systemd/issues/3 - - unicode-show # https://github.com/nushio3/unicode-show/issues/2 - - wreq + # DRBG # https://github.com/TomMD/DRBG/issues/7 + # bitx-bitcoin # https://github.com/tebello-thejane/bitx.hs/issues/4 + # courier # https://github.com/hargettp/courier/issues/19 + # download # https://github.com/fpco/stackage/issues/2811 + # haskell-tools-demo # https://github.com/haskell-tools/haskell-tools/issues/624 + # http-link-header # https://github.com/myfreeweb/http-link-header/issues/7 + # rando # https://github.com/commercialhaskell/stackage/issues/4249 + # systemd # https://github.com/erebe/systemd/issues/3 + # unicode-show # https://github.com/nushio3/unicode-show/issues/2 + # wreq - xml-picklers # https://github.com/Philonous/xml-picklers/issues/5 - hakyll # https://github.com/jaspervdj/hakyll/issues/682 - hpack-dhall # https://github.com/BlockScope/hpack-dhall/issues/25 From 9f78c067f995af3ea8f0f9a4bb0293775250393f Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 5 Jun 2020 12:11:49 -0700 Subject: [PATCH 1593/2682] Test that the testing works --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f3093263..dba49840 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5516,7 +5516,7 @@ expected-test-failures: - nettle # https://github.com/stbuehler/haskell-nettle/issues/10 - persistent-sqlite # https://github.com/yesodweb/persistent/issues/989 - haskell-src-exts # https://github.com/commercialhaskell/stackage/issues/5151 - - simple-vec3 # https://github.com/commercialhaskell/stackage/pull/5410 + # simple-vec3 # https://github.com/commercialhaskell/stackage/pull/5410 # Compilation failures - ListLike # No issue tracker, e-mail sent to maintainer From a503bf6c3a6ff35520ad938a79dd723147aa9356 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 5 Jun 2020 12:22:59 -0700 Subject: [PATCH 1594/2682] More testing --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index dba49840..194083ed 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5639,7 +5639,7 @@ expected-test-failures: - cacophony # https://github.com/commercialhaskell/stackage/issues/5407 - - language-docker + # language-docker # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 8a2d59fd0f4b0d47077a336aa144b491529f60ef Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 6 Jun 2020 08:27:29 -0700 Subject: [PATCH 1595/2682] Remove some of the testing tests --- build-constraints.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 194083ed..e6898e90 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5499,10 +5499,10 @@ expected-test-failures: # DRBG # https://github.com/TomMD/DRBG/issues/7 # bitx-bitcoin # https://github.com/tebello-thejane/bitx.hs/issues/4 # courier # https://github.com/hargettp/courier/issues/19 - # download # https://github.com/fpco/stackage/issues/2811 + - download # https://github.com/fpco/stackage/issues/2811 # haskell-tools-demo # https://github.com/haskell-tools/haskell-tools/issues/624 # http-link-header # https://github.com/myfreeweb/http-link-header/issues/7 - # rando # https://github.com/commercialhaskell/stackage/issues/4249 + - rando # https://github.com/commercialhaskell/stackage/issues/4249 # systemd # https://github.com/erebe/systemd/issues/3 # unicode-show # https://github.com/nushio3/unicode-show/issues/2 # wreq @@ -5516,7 +5516,7 @@ expected-test-failures: - nettle # https://github.com/stbuehler/haskell-nettle/issues/10 - persistent-sqlite # https://github.com/yesodweb/persistent/issues/989 - haskell-src-exts # https://github.com/commercialhaskell/stackage/issues/5151 - # simple-vec3 # https://github.com/commercialhaskell/stackage/pull/5410 + - simple-vec3 # https://github.com/commercialhaskell/stackage/pull/5410 # Compilation failures - ListLike # No issue tracker, e-mail sent to maintainer @@ -5639,7 +5639,7 @@ expected-test-failures: - cacophony # https://github.com/commercialhaskell/stackage/issues/5407 - # language-docker + - language-docker # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 6aa85736fd077d5054fe9fdde98180a991725ca8 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 6 Jun 2020 09:13:30 -0700 Subject: [PATCH 1596/2682] cleanup tests --- build-constraints.yaml | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e6898e90..f975d0f9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5490,22 +5490,10 @@ expected-test-failures: - webdriver-angular # webdriver server - websockets - # Deprecated - # Eventually we'll have to disable these packages completely. - # system-filepath # https://github.com/jmillikin/haskell-filesystem/issues/3 - # Assertion failures, these can be real bugs or just limitations # in the test cases. - # DRBG # https://github.com/TomMD/DRBG/issues/7 - # bitx-bitcoin # https://github.com/tebello-thejane/bitx.hs/issues/4 - # courier # https://github.com/hargettp/courier/issues/19 - download # https://github.com/fpco/stackage/issues/2811 - # haskell-tools-demo # https://github.com/haskell-tools/haskell-tools/issues/624 - # http-link-header # https://github.com/myfreeweb/http-link-header/issues/7 - rando # https://github.com/commercialhaskell/stackage/issues/4249 - # systemd # https://github.com/erebe/systemd/issues/3 - # unicode-show # https://github.com/nushio3/unicode-show/issues/2 - # wreq - xml-picklers # https://github.com/Philonous/xml-picklers/issues/5 - hakyll # https://github.com/jaspervdj/hakyll/issues/682 - hpack-dhall # https://github.com/BlockScope/hpack-dhall/issues/25 From 65fb49e2054dc5906dd27621fb0b12958d139d36 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 6 Jun 2020 09:14:02 -0700 Subject: [PATCH 1597/2682] Upper bound `fakedata` (#5412) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f975d0f9..9f7a47c0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -768,7 +768,7 @@ packages: - xmonad-extras - shelly - persistent-redis < 0 # GHC 8.4 via hedis - - fakedata + - fakedata < 0.7.0 # https://github.com/commercialhaskell/stackage/issues/5412 - streamly-bytestring "haskell-openal": From c5d84f043eef4cda02b4716941018f8d3dfd0f54 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 6 Jun 2020 09:35:33 -0700 Subject: [PATCH 1598/2682] Add back 2 test exceptions removed by mistake --- build-constraints.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9f7a47c0..7ae62968 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5490,6 +5490,11 @@ expected-test-failures: - webdriver-angular # webdriver server - websockets + # Missing test files in sdist + # Hopefully gets fixed in the next release... + - crypto-pubkey # https://github.com/vincenthz/hs-crypto-pubkey/issues/23 + - doctest-discover # 0.1.0.9 https://github.com/karun012/doctest-discover/issues/22 + # Assertion failures, these can be real bugs or just limitations # in the test cases. - download # https://github.com/fpco/stackage/issues/2811 From 7446dccfe7097e61dd4237cba61037dfd210a717 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 6 Jun 2020 09:43:09 -0700 Subject: [PATCH 1599/2682] Fix build --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7ae62968..519b5ef3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5494,6 +5494,7 @@ expected-test-failures: # Hopefully gets fixed in the next release... - crypto-pubkey # https://github.com/vincenthz/hs-crypto-pubkey/issues/23 - doctest-discover # 0.1.0.9 https://github.com/karun012/doctest-discover/issues/22 + - doctest # Assertion failures, these can be real bugs or just limitations # in the test cases. From 1ef1487fab211fd06170e89a98343a3fe9ac3eda Mon Sep 17 00:00:00 2001 From: Brandon Elam Barker Date: Fri, 5 Jun 2020 20:44:22 -0400 Subject: [PATCH 1600/2682] Add unexceptionalio, unexceptionalio-trans --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 519b5ef3..a0397cf0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -684,6 +684,10 @@ packages: - hi-file-parser - rio-prettyprint + "Brandon Barker @bbarker": + - unexceptionalio + - unexceptionalio-trans + "Omari Norman @massysett": - rainbow - rainbox From 604d76ca4bd3b8fd7f69919f2195dad9dc33ed5c Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 7 Jun 2020 21:04:34 -0700 Subject: [PATCH 1601/2682] Remove broken `hledger-interest` (#5413) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a0397cf0..e38080fe 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2501,7 +2501,7 @@ packages: - flexible-defaults - funcmp - hackage-db - - hledger-interest + - hledger-interest < 0 # https://github.com/commercialhaskell/stackage/issues/5413 - hopenssl - hsdns - hsemail From 150b8f3e3b48613ae6823d8e7a67ffba4cb930bf Mon Sep 17 00:00:00 2001 From: Dominik Schrempf Date: Mon, 8 Jun 2020 23:53:47 +0200 Subject: [PATCH 1602/2682] add pava --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index e38080fe..43f9a34d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4270,6 +4270,9 @@ packages: "Gabriele Sales @gbrsales": - cabal-appimage + "Dominik Schrempf @dschrempf": + - pava + "Grandfathered dependencies": - network - Boolean From 4b9f06a5eb1d7a5737b975096ae22d0b905bf842 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Tue, 9 Jun 2020 01:12:49 +0200 Subject: [PATCH 1603/2682] Revert "Remove broken `hledger-interest` (#5413)" This reverts commit 604d76ca4bd3b8fd7f69919f2195dad9dc33ed5c. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e38080fe..a0397cf0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2501,7 +2501,7 @@ packages: - flexible-defaults - funcmp - hackage-db - - hledger-interest < 0 # https://github.com/commercialhaskell/stackage/issues/5413 + - hledger-interest - hopenssl - hsdns - hsemail From 0566c8b9f25bd2fa3e931d89e1fede9c47a7c56b Mon Sep 17 00:00:00 2001 From: Alexander Bondarenko <486682+dpwiz@users.noreply.github.com> Date: Wed, 10 Jun 2020 16:29:19 +0300 Subject: [PATCH 1604/2682] Re-enable hedn, soap-openssl Packages were revised and and `stack unpack` check passes for both packages. --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index aaee141c..dd82d36f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1897,10 +1897,10 @@ packages: - maximal-cliques "Alexander Bondarenko @dpwiz": - - hedn < 0 # via base-4.13.0.0 + - hedn - soap - soap-tls - - soap-openssl < 0 + - soap-openssl "Andres Löh @kosmikus": - generics-sop From 05b0dde5ce7ecab4c227e587b0651c18f009f9a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Fija=C5=82kowski?= Date: Wed, 10 Jun 2020 22:03:49 +0200 Subject: [PATCH 1605/2682] Restore hLibsass & hSass --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index dd82d36f..e7818f3f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2228,8 +2228,8 @@ packages: - bytestring-to-vector "Jakub Fijałkowski @jakubfijalkowski": - - hlibsass < 0 # https://github.com/commercialhaskell/stackage/issues/5075 - - hsass < 0 # via hlibsass + - hlibsass + - hsass "Robert Massaioli @robertmassaioli": - range From 4a1ceb5fc18b0d9e958e823b9d8bc15ab31695e2 Mon Sep 17 00:00:00 2001 From: Pavel Krajcevski Date: Wed, 10 Jun 2020 22:58:54 -0700 Subject: [PATCH 1606/2682] Add netcode-io to stackage projects --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index dd82d36f..471e588c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1392,6 +1392,7 @@ packages: - yoga - freetype2 - HCodecs + - netcode-io "Emanuel Borsboom @borsboom": - BoundedChan From 0942f84edc5cecbde4f317f4b241f50c18dec544 Mon Sep 17 00:00:00 2001 From: Artur Gajowy Date: Fri, 12 Jun 2020 21:43:44 +0200 Subject: [PATCH 1607/2682] Add 'ghc-clippy-plugin' --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index dd82d36f..3b4930ce 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -9,6 +9,9 @@ cabal-format-version: "3.0" # Constraints for brand new builds packages: + "Artur Gajowy @ArturGajowy": + - ghc-clippy-plugin + "Daniel Rolls @danielrolls": - byte-count-reader From 64f955fdb808b5b901347826e4cd7d90411fd897 Mon Sep 17 00:00:00 2001 From: Eric Rochester Date: Fri, 12 Jun 2020 22:08:20 -0400 Subject: [PATCH 1608/2682] add `text-regex-replace` --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index dd82d36f..44205873 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4273,6 +4273,9 @@ packages: "Dominik Schrempf @dschrempf": - pava + "Eric Rochester @erochest": + - text-regex-replace + "Grandfathered dependencies": - network - Boolean From 5fd819c69fd5c9fc26269af843c7add39e35dea3 Mon Sep 17 00:00:00 2001 From: Artur Gajowy Date: Fri, 12 Jun 2020 22:32:48 +0200 Subject: [PATCH 1609/2682] Restore caching on travis-ci --- .travis.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index fae1766b..e2b2284c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,8 +15,7 @@ addons: script: - ./etc/check.sh -# Caching doesn't work with sudo: true -#cache: -# directories: -# - $HOME/.stack -# - $HOME/.stackage/curator/cache +cache: + directories: + - $HOME/.stack + - $HOME/.stackage/curator/cache From 5fc9bc1c7b93ee40eb083a692377438d840cf4ab Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sun, 14 Jun 2020 05:19:00 +0200 Subject: [PATCH 1610/2682] hosc < 0.18 for #5421 --- build-constraints.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index dd82d36f..4e09aedf 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3895,7 +3895,7 @@ packages: "Dan Firth @locallycompact": - shake-plus - within - + "Domen Kozar @domenkozar": - elm2nix - mixpanel-client @@ -4862,6 +4862,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5393 - aeson < 1.5.0.0 + # https://github.com/commercialhaskell/stackage/issues/5421 + - hosc < 0.18 + # end of packages # Package flags are applied to individual packages, and override the values of From d9ecd7e99dba20b3d8076500dbbb3ff8c4d978d0 Mon Sep 17 00:00:00 2001 From: Jonathan Fischoff Date: Sat, 13 Jun 2020 23:50:24 -0700 Subject: [PATCH 1611/2682] Add postgresql-libpq-notify and hasql-queue --- build-constraints.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9f4b6618..5be435d9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3300,14 +3300,12 @@ packages: "Jonathan Fischoff @jfischoff": - clock-extras - - next-ref < 0 - - threads-extras < 0 - postgres-options - tmp-postgres - pg-transact - - hspec-pg-transact < 0 # compilation failure (against tmp-postgres?) - - postgresql-simple-queue < 0 # via hspec-pg-transact - port-utils + - postgresql-libpq-notify + - hasql-queue "Jonathan Knowles @jonathanknowles": - bech32 From 9dd06e14f29372ec822f4c856ef69f2ecc33adb7 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 15 Jun 2020 03:34:54 +0200 Subject: [PATCH 1612/2682] optparse-generic < 1.4.0 for #5423 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5be435d9..976e2f47 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4870,6 +4870,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5421 - hosc < 0.18 + # https://github.com/commercialhaskell/stackage/issues/5423 + - optparse-generic < 1.4.0 + # end of packages # Package flags are applied to individual packages, and override the values of From 7fcce4c4df37d6be78d360788faff212b95edb60 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 15 Jun 2020 03:37:39 +0200 Subject: [PATCH 1613/2682] smallcheck < 1.2.0 for #5424 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 976e2f47..452ddf39 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4873,6 +4873,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5423 - optparse-generic < 1.4.0 + # https://github.com/commercialhaskell/stackage/issues/5424 + - smallcheck < 1.2.0 + # end of packages # Package flags are applied to individual packages, and override the values of From 91da16049adf55c9f136f18eb0241914d2926a33 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 15 Jun 2020 03:38:06 +0200 Subject: [PATCH 1614/2682] Remove hosc upper bound and close #5421 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 452ddf39..436e9c0d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4867,9 +4867,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5393 - aeson < 1.5.0.0 - # https://github.com/commercialhaskell/stackage/issues/5421 - - hosc < 0.18 - # https://github.com/commercialhaskell/stackage/issues/5423 - optparse-generic < 1.4.0 From f605430f944253dd9282e75d9b4c1886581273a3 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 15 Jun 2020 03:49:10 +0200 Subject: [PATCH 1615/2682] Disable hlibssass & hsass #5416 --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 436e9c0d..51458870 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2232,8 +2232,8 @@ packages: - bytestring-to-vector "Jakub Fijałkowski @jakubfijalkowski": - - hlibsass - - hsass + - hlibsass < 0 + - hsass < 0 "Robert Massaioli @robertmassaioli": - range From 1ee7c5819dca21edd319b349bde0fd4061b704a3 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 15 Jun 2020 03:51:06 +0200 Subject: [PATCH 1616/2682] Expect hasql-queue tests to fail #5422 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 51458870..64f6a5df 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5456,6 +5456,7 @@ expected-test-failures: - haskell-tools-cli # https://github.com/haskell-tools/haskell-tools/issues/230 - haskell-tools-refactor # https://github.com/haskell-tools/haskell-tools/issues/231 - hasql # PostgreSQL + - hasql-queue - hasql-transaction # PostgreSQL - hedis - hie-bios # cabal, stack, ghc; see https://github.com/commercialhaskell/stackage/issues/5025 From 837bc714389e1ad063717f1784d0aea52231c3df Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 15 Jun 2020 03:56:22 +0200 Subject: [PATCH 1617/2682] Expect postgresql-libpq-notify tests to fail #5422 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 64f6a5df..c1c6ef9e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5483,6 +5483,7 @@ expected-test-failures: - pantry # https://github.com/commercialhaskell/stackage/issues/4628 - persistent-redis # redis - https://github.com/fpco/stackage/pull/1581 - pipes-mongodb + - postgresql-libpq-notify - postgresql-query # PostgreSQL - postgresql-simple # PostgreSQL - postgresql-simple-migration From cebabb2851e27244d3b466e85feec26a3148e424 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 15 Jun 2020 04:00:58 +0200 Subject: [PATCH 1618/2682] Expect genvalidity-containers tests to fail NofairKing/validity#83 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index c1c6ef9e..60e8b4dd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5538,6 +5538,7 @@ expected-test-failures: - async-timer # https://github.com/mtesseract/async-timer/issues/8 - commutative # https://github.com/athanclark/commutative/issues/4 - conduit-throttle # https://github.com/mtesseract/conduit-throttle/issues/12 + - genvalidity-containers # https://github.com/NorfairKing/validity/issues/83 - haddock - haskell-tools-builtin-refactorings - hweblib # https://github.com/aycanirican/hweblib/issues/3 From 51cc7ca59070a0352b8e46941371210963c29772 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sun, 14 Jun 2020 09:10:16 +0200 Subject: [PATCH 1619/2682] Remove some upper bounds --- build-constraints.yaml | 122 ++++++++++++++++++++++++++++------------- 1 file changed, 85 insertions(+), 37 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 60e8b4dd..6104e07a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -99,7 +99,7 @@ packages: "Robert Vollmert @robx": - configurator-pg - - postgrest < 7.0.1 # https://github.com/commercialhaskell/stackage/issues/5383 + - postgrest "Sandy Maguire @isovector": - ecstasy @@ -4802,52 +4802,17 @@ packages: "Stackage upper bounds": # https://github.com/commercialhaskell/stackage/issues/5191 - compilation failures - - servant < 0.17 - - servant-client < 0.17 - - servant-server < 0.17 - - servant-client-core < 0.17 - - servant-docs < 0.11.5 - - servant-foreign < 0.15.1 - - servant-lucid < 0.9.0.1 - - servant-mock < 0.8.6 - - servant-swagger < 1.1.8 - - # https://github.com/commercialhaskell/stackage/issues/5218 - - unliftio-core < 0.2 - - higher-leveldb < 0.6.0.0 - - # https://github.com/commercialhaskell/stackage/issues/5236 - - rank2classes < 1.4 - - # https://github.com/commercialhaskell/stackage/issues/5293 - - haddock-library < 1.9.0 + - servant < 0 # https://github.com/commercialhaskell/stackage/issues/5306 - arithmoi < 0.11.0.0 - # https://github.com/commercialhaskell/stackage/issues/5309 - - optics < 0.3 - - optics-core < 0.3 - - optics-extra < 0.3 - - optics-th < 0.3 - - optics < 0.3 - - optics-vl < 0.2.1 - - # https://github.com/commercialhaskell/stackage/issues/5319 - - protolude < 0.3 - - # https://github.com/commercialhaskell/stackage/issues/5322 - - swagger2 < 2.6 - # https://github.com/commercialhaskell/stackage/issues/5323 - base64-bytestring < 1.1 # https://github.com/commercialhaskell/stackage/issues/5324 - cabal2nix < 2.15.2 - # https://github.com/commercialhaskell/stackage/issues/5335 - - brick <0.53 - # https://github.com/commercialhaskell/stackage/issues/5347 - persistent-template < 2.8.3 @@ -4873,6 +4838,89 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5424 - smallcheck < 1.2.0 + # haddock-library-1.9.0 ([changelog](http://hackage.haskell.org/package/haddock-library-1.9.0/changelog)) (Alex Biehl @alexbiehl) is out of bounds for: + - pandoc < 0 + + + # protolude-0.3.0 ([changelog](http://hackage.haskell.org/package/protolude-0.3.0/changelog)) (Stephen Diehl @sdiehl) is out of bounds for: + - minio-hs < 0 + - registry < 0 + + + # servant (Haskell Servant , Stackage upper bounds) (not present) depended on by: + - advent-of-code-api < 0 + - giphy-api < 0 + - lackey < 0 + - language-puppet < 0 + - miso < 0 + - mixpanel-client < 0 + - servant-JuicyPixels < 0 + - servant-auth-docs < 0 + - servant-auth-server < 0 + - servant-auth-swagger < 0 + - servant-blaze < 0 + - servant-cassava < 0 + - servant-checked-exceptions < 0 + - servant-checked-exceptions-core < 0 + - servant-client < 0 + - servant-client-core < 0 + - servant-conduit < 0 + - servant-docs < 0 + - servant-docs-simple < 0 + - servant-elm < 0 + - servant-errors < 0 + - servant-foreign < 0 + - servant-js < 0 + - servant-lucid < 0 + - servant-machines < 0 + - servant-mock < 0 + - servant-pipes < 0 + - servant-purescript < 0 + - servant-rawm < 0 + - servant-server < 0 + - servant-static-th < 0 + - servant-subscriber < 0 + - servant-swagger < 0 + - servant-swagger-ui < 0 + - servant-swagger-ui-core < 0 + - servant-swagger-ui-redoc < 0 + - servant-yaml < 0 + + + # swagger2-2.6 ([changelog](http://hackage.haskell.org/package/swagger2-2.6/changelog)) (Nickolay Kudasov @fizruk) is out of bounds for: + - servant-swagger < 0 + - servant-swagger-ui < 0 + - servant-swagger-ui-core < 0 + - servant-swagger-ui-redoc < 0 + + + # unliftio-core-0.2.0.1 ([changelog](http://hackage.haskell.org/package/unliftio-core-0.2.0.1/changelog)) (Michael Snoyman michael@snoyman.com @snoyberg) is out of bounds for: + - amazonka < 0 + - async-timer < 0 + - log-base < 0 + - servant-conduit < 0 + + # amazonka (Brendan Hay @brendanhay, Stackage upper bounds) (not present) depended on by: + - antiope-core < 0 + - antiope-dynamodb < 0 + - antiope-messages < 0 + - antiope-s3 < 0 + - antiope-sns < 0 + - antiope-sqs < 0 + + + # pandoc (John MacFarlane @jgm, Stackage upper bounds) (not present) depended on by: + - hakyll < 0 + - pandoc-citeproc < 0 + - pandoc-csv2table < 0 + - pandoc-plot < 0 + - pandoc-pyplot < 0 + + + # servant-server (Haskell Servant , Stackage upper bounds) (not present) depended on by: + - servant-websockets < 0 + +# TEMP # end of packages # Package flags are applied to individual packages, and override the values of From f5a6cd20ff82e7547f35152b669ae222b098d467 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sun, 14 Jun 2020 10:14:58 +0200 Subject: [PATCH 1620/2682] Working 8.10 plan --- build-constraints.yaml | 574 ++++++++++++++++++++++++++++++++--------- 1 file changed, 457 insertions(+), 117 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6104e07a..9e6e03bd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1,6 +1,6 @@ -ghc-major-version: "8.8" +ghc-major-version: "8.10" # new curator is supposed to use exact GHC version -ghc-version: "8.8.3" +ghc-version: "8.10.1" # This affects which version of the Cabal file format we allow. We # should ensure that this is always no greater than the version @@ -13,7 +13,7 @@ packages: - ghc-clippy-plugin "Daniel Rolls @danielrolls": - - byte-count-reader + - byte-count-reader < 0 # ghc 8.10 "Allan Lukwago @epicallan": - servant-errors @@ -29,7 +29,7 @@ packages: "Marcin Rzeźnicki @marcin-rzeznicki": - hspec-tables - - stackcollapse-ghc + - stackcollapse-ghc < 0 # ghc 8.10 "Mauricio Fierro @mauriciofierrom": - dialogflow-fulfillment @@ -61,7 +61,7 @@ packages: - generic-monoid "Tobias Reinhart @TobiReinhart": - - sparse-tensor + - sparse-tensor < 0 # ghc 8.10 "Stephan Schiffels @stschiff": - sequence-formats @@ -113,7 +113,7 @@ packages: - polysemy - polysemy-plugin < 0 # via polysemy - polysemy-zoo < 0 # via hedis - - loopbreaker + - loopbreaker < 0 # ghc 8.10 "William Yao @williamyaoh": - string-interpolate @@ -201,7 +201,7 @@ packages: "Phil de Joux @philderbeast": - siggy-chardust - - detour-via-sci + - detour-via-sci < 0 # ghc 8.10 - hpack-dhall "Matthew Ahrens @mpahrens": @@ -473,7 +473,7 @@ packages: - snap-server - newtype-generics - bsb-http-chunked - - coercible-utils + - coercible-utils < 0 # ghc 8.10 - hspec-parsec "Joe M @joe9": @@ -643,7 +643,7 @@ packages: - async - base16-bytestring - c2hs - - csv-conduit + - csv-conduit < 0 # ghc 8.10 - executable-hash < 0 # via cryptohash - executable-path - foreign-store @@ -681,13 +681,13 @@ packages: - githash - time-manager - - pantry + - pantry < 0 # ghc 8.10 - mega-sdist < 0 # Cabal issues - http-download - hi-file-parser - rio-prettyprint - "Brandon Barker @bbarker": + "Brandon Barker @bbarker": - unexceptionalio - unexceptionalio-trans @@ -735,7 +735,7 @@ packages: - perfect-hash-generator "Alan Zimmerman @alanz": - - ghc-exactprint < 0.6.3 # https://github.com/commercialhaskell/stackage/issues/5268 + - ghc-exactprint - haskell-lsp - hjsmin - language-javascript @@ -754,7 +754,7 @@ packages: "Jasper Van der Jeugt @jaspervdj": - blaze-html - blaze-markup - - stylish-haskell + - stylish-haskell < 0 # ghc 8.10 # profiteur # aeson-1.4.0.0 - psqueues - websockets @@ -772,7 +772,7 @@ packages: - hourglass-orphans - wai-slack-middleware - sysinfo - - xmonad-extras + - xmonad-extras < 0 # ghc 8.10 - shelly - persistent-redis < 0 # GHC 8.4 via hedis - fakedata < 0.7.0 # https://github.com/commercialhaskell/stackage/issues/5412 @@ -798,7 +798,7 @@ packages: - clock "Stefan Wehr @skogsbaer": - - HTF + - HTF < 0 # ghc 8.10 - xmlgen - stm-stats < 0 - large-hashable < 0 # compilation failure @@ -830,7 +830,7 @@ packages: - pem - siphash - socks - - tasty-kat + - tasty-kat < 0 # tasty - tls - tls-debug - vhd < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build @@ -907,7 +907,7 @@ packages: - kan-extensions - keys - lca - - lens < 4.19 # https://github.com/commercialhaskell/stackage/issues/5122 + - lens - lens-action - lens-aeson - lens-properties @@ -972,25 +972,25 @@ packages: - rank2classes "Brent Yorgey @byorgey": - - active - - diagrams + - active < 0 # ghc 8.10 + - diagrams < 0 # ghc 8.10 - diagrams-builder < 0 # haskell-src-exts-simple - diagrams-cairo < 0 # cairo - diagrams-canvas < 0 # base-4.13, lens-4.18 - - diagrams-contrib - - diagrams-core + - diagrams-contrib < 0 # ghc 8.10 + - diagrams-core < 0 # ghc 8.10 - diagrams-gtk < 0 # cairo - diagrams-html5 < 0 # lens-4.18 - - diagrams-lib - - diagrams-postscript - - diagrams-rasterific + - diagrams-lib < 0 # ghc 8.10 + - diagrams-postscript < 0 # ghc 8.10 + - diagrams-rasterific < 0 # ghc 8.10 - diagrams-solve - - diagrams-svg - - force-layout - - SVGFonts - - haxr + - diagrams-svg < 0 # ghc 8.10 + - force-layout < 0 # ghc 8.10 + - SVGFonts < 0 # ghc 8.10 + - haxr < 0 # ghc 8.10 - MonadRandom - - monoid-extras + - monoid-extras < 0 # ghc 8.10 "Vincent Berthoux @Twinside": - JuicyPixels @@ -1187,9 +1187,9 @@ packages: - socket < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build - tasty - tasty-golden - - tasty-hunit - - tasty-quickcheck - - tasty-smallcheck + - tasty-hunit < 0 # tasty + - tasty-quickcheck < 0 # tasty + - tasty-smallcheck < 0 # tasty - tasty-html < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build - time-lens - timezone-olson @@ -1211,17 +1211,17 @@ packages: "Joachim Breitner @nomeata": - circle-packing - haskell-spacegoo < 0 # MonadFail - - tasty-expected-failure + - tasty-expected-failure < 0 # tasty "Aditya Bhargava @egonSchiele": - HandsomeSoup "Clint Adams @clinty": - - hOpenPGP + - hOpenPGP < 0 # ghc 8.10 - openpgp-asciiarmor - MusicBrainz - DAV - - hopenpgp-tools + - hopenpgp-tools < 0 # ghc 8.10 - opensource - debian - cabal-debian @@ -1313,10 +1313,10 @@ packages: # be removed, rather than putting an upper bound on hledger-lib and hledger. # (https://github.com/fpco/stackage/issues/3494) # - - hledger - - hledger-lib - - hledger-ui - - hledger-web + - hledger < 0 # tasty + - hledger-lib < 0 # tasty + - hledger-ui < 0 # hledger + - hledger-web < 0 # hledger # - quickbench < 0 # via docopt - regex-compat-tdfa @@ -1417,7 +1417,7 @@ packages: - optparse-simple - hpack - bindings-uname - - stack < 9.9.9 # see https://github.com/fpco/stackage/issues/3563 + - stack < 0 # ghc 8.10 # < 9.9.9 # see https://github.com/fpco/stackage/issues/3563 "Michael Sloan @mgsloan": - th-orphans @@ -1493,8 +1493,8 @@ packages: - shake-language-c < 0 # via fclabels "David Turner @davecturner": - - alarmclock - - bank-holidays-england + - alarmclock < 0 # ghc 8.10 + - bank-holidays-england < 0 # ghc 8.10 "Haskell Servant ": - servant @@ -1568,7 +1568,7 @@ packages: - darcs < 0 # - idris # aeson https://github.com/idris-lang/Idris-dev/issues/4493 - libffi - - xmonad-contrib + - xmonad-contrib < 0 # ghc 8.10 - cairo < 0 - glib < 0 - gio < 0 @@ -1635,7 +1635,7 @@ packages: "Jeffrey Rosenbluth @jeffreyrosenbluth": - palette < 0 # via base-4.13.0.0 - diagrams-canvas - - svg-builder + - svg-builder < 0 # ghc 8.10 "Gabríel Arthúr Pétursson @polarina": - sdl2 @@ -1677,7 +1677,7 @@ packages: - FindBin "Jan Stolarek @jstolarek": - - tasty-program + - tasty-program < 0 # tasty "Abhinav Gupta @abhinav": - farmhash @@ -1694,7 +1694,7 @@ packages: "Brendan Hay @brendanhay": - amazonka - amazonka-core - - amazonka-test + - amazonka-test < 0 # tasty - amazonka-apigateway - amazonka-application-autoscaling - amazonka-appstream @@ -1901,7 +1901,7 @@ packages: - maximal-cliques "Alexander Bondarenko @dpwiz": - - hedn + - hedn < 0 # ghc 8.10 - soap - soap-tls - soap-openssl @@ -1939,7 +1939,7 @@ packages: - jwt "Sven Bartscher sven.bartscher@weltraumschlangen.de @kritzefitz": - - setlocale + - setlocale < 0 "Taylor Fausak @tfausak": - autoexporter @@ -1959,7 +1959,7 @@ packages: - bmp # @benl23x5 - gpolyline # @fegu - postgresql-simple-migration < 0 # via time-1.9.3 # @ameingast - - statestack + - statestack < 0 # ghc 8.10 "Marios Titas @redneb": - HsOpenSSL-x509-system < 0 # via HsOpenSSL @@ -1995,7 +1995,7 @@ packages: - annotated-wl-pprint "Yitz Gale @ygale": - - boolean-normal-forms + - boolean-normal-forms < 0 # ghc 8.10 - strict-concurrency - timezone-series - timezone-olson @@ -2005,7 +2005,7 @@ packages: "Mitchell Rosen @mitchellwrosen": - safe-exceptions-checked - - tasty-hspec + - tasty-hspec < 0 # tasty - termbox < 0 # via base-4.13.0.0 - timer-wheel < 0 # via base-4.13.0.0 - wai-middleware-travisci < 0 # via base-4.13.0.0 @@ -2076,7 +2076,7 @@ packages: - semiring-simple "Philipp Hausmann @phile314": - - tasty-silver + - tasty-silver < 0 # tasty "Michael Thompson @michaelt": - pipes-text < 0 # GHC 8.4 via streaming-commons-0.2.0.0 @@ -2291,7 +2291,7 @@ packages: - deriving-compat - dotgen - echo - - eliminators < 0.7 # GHC 8.10 via base-4.14 & template-haskell-2.16 + - eliminators - generic-deriving - hashmap - invariant @@ -2395,7 +2395,7 @@ packages: - concurrency - dejafu - hunit-dejafu - - tasty-dejafu + - tasty-dejafu < 0 # tasty - irc-ctcp - irc-conduit - irc-client @@ -2408,7 +2408,7 @@ packages: - speculate - extrapolate - percent-format - - tasty-leancheck + - tasty-leancheck < 0 # tasty - hspec-leancheck - test-framework-leancheck @@ -2497,15 +2497,15 @@ packages: - nagios-check "Peter Simons @peti": - - cabal2nix - - cabal2spec < 2.6 # GHC 8.10 via Cabal-3.2 + - cabal2nix < 0 # ghc 8.10 + - cabal2spec - cgi < 0 # via multipart - distribution-nixpkgs - distribution-opensuse - flexible-defaults - funcmp - hackage-db - - hledger-interest + - hledger-interest < 0 # hledger - hopenssl - hsdns - hsemail @@ -2527,7 +2527,7 @@ packages: - stringsearch # for cgi - titlecase - X11 - - xmonad + - xmonad < 0 # ghc 8.10 "Mark Fine @markfine": - postgresql-schema < 0 # via postgresql-simple @@ -2591,7 +2591,7 @@ packages: - zip "Leonhard Markert @curiousleo": - - monad-bayes + - monad-bayes < 0 # ghc 8.10 "Emmanuel Touzery @emmanueltouzery": - app-settings @@ -2938,12 +2938,12 @@ packages: - x11-xim - X11-xft - Imlib - - xturtle + - xturtle < 0 # ghc 8.10 - gluturtle - - papillon - - zasni-gerna - - exception-hierarchy - - simplest-sqlite + - papillon < 0 # ghc 8.10 + - zasni-gerna < 0 # ghc 8.10 + - exception-hierarchy < 0 # ghc 8.10 + - simplest-sqlite < 0 # ghc 8.10 - warp-tls-uid - nowdoc - HaXml @@ -2997,7 +2997,7 @@ packages: - sv < 0 # via base-4.13.0.0 - sv-cassava < 0 # via sv-core - sv-core < 0 # via base-4.13.0.0 - - tasty-hedgehog + - tasty-hedgehog < 0 # tasty "Ismail Mustafa @ismailmustafa": - handwriting < 0 @@ -3005,7 +3005,7 @@ packages: "Stephen Diehl @sdiehl": - llvm-hs-pretty < 0 # compilation failure - protolude - - repline < 0.3 # https://github.com/commercialhaskell/stackage/issues/5269 + - repline # https://github.com/commercialhaskell/stackage/issues/5269 - picosat < 0 - aos-signature < 0 # via protolude # https://github.com/commercialhaskell/stackage/issues/4682 @@ -3035,15 +3035,15 @@ packages: "Toshio Ito @debug-ito": - fold-debounce - - fold-debounce-conduit + - fold-debounce-conduit < 0 # ghc 8.10 - stopwatch - wikicfp-scraper - - wild-bind - - wild-bind-x11 - - greskell - - greskell-core - - greskell-websocket - - hspec-need-env + - wild-bind < 0 # ghc 8.10 + - wild-bind-x11 < 0 # ghc 8.10 + - greskell < 0 # ghc 8.10 + - greskell-core < 0 # ghc 8.10 + - greskell-websocket < 0 # ghc 8.10 + - hspec-need-env < 0 # ghc 8.10 "Cies Breijs @cies": - htoml @@ -3095,8 +3095,8 @@ packages: - hpio < 0 # GHC 8.4 via protolude "Richard Eisenberg @goldfirere": - - th-desugar < 1.11 # GHC 8.10 via singletons-2.7 & eliminators-0.7 - - singletons < 2.7 # GHC 8.10 via Cabal-3.2 & base-4.14 + - th-desugar + - singletons - HUnit-approx - units-parser < 0 # BuildFailureException Process exited with ExitFailure 1: dist/build/main/main @@ -3148,7 +3148,7 @@ packages: - data-interval - vector-rotcev - mod - - tasty-rerun + - tasty-rerun < 0 # tasty - integer-roots "Ashley Yakeley @AshleyYakeley": @@ -3273,7 +3273,7 @@ packages: - pqueue - butcher - czipwith - - data-tree-print + - data-tree-print < 0 # ghc 8.10 - brittany "Ryan Mulligan @ryantm": @@ -3381,7 +3381,7 @@ packages: - pvar "Hans-Peter Deifel @hpdeifel": - - hledger-iadd + - hledger-iadd < 0 # hledger "Roy Levien @orome": - crypto-enigma @@ -3472,7 +3472,7 @@ packages: - github-webhooks < 0 # unknown "Pavel Yakovlev @zmactep": - - hasbolt + - hasbolt < 0 # ghc 8.10 - uniprot-kb - mmtf < 0 # MonadFail @@ -3539,7 +3539,7 @@ packages: - tensorflow-test - pier-core < 0 - pier < 0 - - haskeline < 0.8 # https://github.com/commercialhaskell/stackage/issues/5269 + - haskeline - ghc-source-gen "Christof Schramm ": @@ -3628,7 +3628,7 @@ packages: "Serokell @serokell": # - importify - log-warper < 0 # GHC 8.4 via lifted-async-0.10.0.1 - - o-clock + - o-clock < 0 # ghc 8.10 - universum - with-utf8 @@ -3713,7 +3713,7 @@ packages: - docker < 0 "Hexirp @Hexirp": - - doctest-driver-gen + - doctest-driver-gen < 0 # ghc 8.10 "Václav Haisman @wilx": - hs-bibutils @@ -3748,7 +3748,7 @@ packages: - qm-interpolated-string "Douglas Burke @DougBurke": - - swish + - swish < 0 # ghc 8.10 - hvega - ihaskell-hvega < 0 @@ -3901,9 +3901,9 @@ packages: "Domen Kozar @domenkozar": - elm2nix - mixpanel-client - - netrc + - netrc < 0 # ghc 8.10 - pretty-sop - - servant-auth + - servant-auth < 0 # ghc 8.10 - servant-auth-server - servant-auth-client < 0 # via warp-3.3.2 - servant-auth-swagger @@ -3913,7 +3913,7 @@ packages: "Andre Van Der Merwe @andrevdm": - bhoogle < 0 - - hyraxAbif + - hyraxAbif < 0 # ghc 8.10 "David Millar-Durrant @DavidM-D": - indexed-list-literals @@ -3948,7 +3948,7 @@ packages: "Sergey Vinokurov @sergv": - bencoding < 0 # via bencode - emacs-module - - tasty-ant-xml + - tasty-ant-xml < 0 # tasty "Eugene Smolanka @esmolanka": - sexp-grammar @@ -4058,8 +4058,8 @@ packages: - secp256k1-haskell - rocksdb-haskell - rocksdb-query - - haskoin-core < 0.13.5 # https://github.com/haskoin/haskoin-core/issues/385 - - haskoin-node + - haskoin-core < 0 # ghc 8.10 + - haskoin-node < 0 # ghc 8.10 - haskoin-store < 0 # https://github.com/haskoin/haskoin-store/issues/12 "asakamirai @asakamirai": @@ -4087,7 +4087,7 @@ packages: - bazel-runfiles "Rob Rix @robrix": - - fused-effects + - fused-effects < 0 # ghc 8.10 "Josef Thorne @Grendel-Grendel-Grendel": - focuslist @@ -4099,11 +4099,11 @@ packages: - ca-province-codes - mx-state-codes - sitemap-gen - - tasty-wai + - tasty-wai < 0 # tasty - stack-templatizer - immortal-queue - wai-middleware-clacks - - hledger-stockquotes + - hledger-stockquotes < 0 # hledger "David Baynard @dbaynard": - time-qq < 0 # see christian-marie/time-qq#3 @@ -4115,7 +4115,7 @@ packages: - failable - ttl-hashtables - radius - - structured-cli < 2.6 # https://github.com/commercialhaskell/stackage/issues/5269 + - structured-cli "Jan Path @janpath": - smallcheck-series < 0 # via base-4.13.0.0 @@ -4131,20 +4131,20 @@ packages: "Vitaly Bragilevsky @bravit": - Chart - - Chart-diagrams + - Chart-diagrams < 0 # ghc 8.10 "Juri Chomé @2mol": - msgpack < 0 # via base-4.13.0.0 # - msgpack-rpc # https://github.com/commercialhaskell/stackage/pull/4471 # - msgpack-idl # https://github.com/commercialhaskell/stackage/pull/4471 - msgpack-aeson < 0 # via msgpack - - int-cast + - int-cast < 0 # ghc 8.10 "Akihito Kirisaki @kirisaki": - caster < 0 # via fast-builder "Felix Paulusma @Vlix": - - safe-json + - safe-json < 0 # tasty "Olle Fredriksson @ollef": - rope-utf16-splay @@ -4164,7 +4164,7 @@ packages: - gtk-strut - rate-limit - status-notifier-item - - taffybar + - taffybar < 0 # ghc 8.10 - time-units - xml-helpers - xdg-desktop-entry @@ -4243,8 +4243,8 @@ packages: - equational-reasoning - ghc-typelits-presburger - singletons-presburger - - type-natural - - sized + - type-natural < 0 # ghc 8.10 + - sized < 0 # ghc 8.10 "Frank Doepper @woffs": - amqp-utils @@ -4270,7 +4270,7 @@ packages: - it-has "Gabriele Sales @gbrsales": - - cabal-appimage + - cabal-appimage < 0 # ghc 8.10 "Dominik Schrempf @dschrempf": - pava @@ -4312,7 +4312,7 @@ packages: - assoc - attoparsec - auto-update - - base-noprelude + - base-noprelude < 0 # ghc 8.10 - base64-bytestring - base64-bytestring-type - base64-string @@ -4365,7 +4365,7 @@ packages: - convertible - cookie - cpphs - - crypt-sha512 + - crypt-sha512 < 0 # ghc 8.10 - crypto-api - crypto-api-tests < 0 # via test-framework - crypto-cipher-tests < 0 # via test-framework @@ -4376,7 +4376,7 @@ packages: - crypto-random - cryptohash-cryptoapi - cryptohash-sha256 - - cryptohash-sha512 + - cryptohash-sha512 < 0 # ghc 8.10 - css-text - csv - cubicbezier @@ -4409,7 +4409,7 @@ packages: - dlist-instances - dlist-nonempty - double-conversion - - dual-tree + - dual-tree < 0 # ghc 8.10 - easy-file - easytest < 0 # via hedgehog-1 - ed25519 @@ -4437,7 +4437,7 @@ packages: - generic-arbitrary - generics-sop-lens - ghc-byteorder - - ghc-compact + - ghc-compact < 0 # ghc 8.10 - ghc-paths - ghc-prof - github < 0 # via http-client-0.6.1 @@ -4449,7 +4449,7 @@ packages: - haskell-gi-overloading - haskell-lexer - haskell-lsp-types - - haskell-src + - haskell-src < 0 # ghc 8.10 - haskell-src-exts - haxl < 0 # via time-1.9.3 - heap @@ -4496,7 +4496,7 @@ packages: - json < 0 # via base-4.13.0.0 - json-alt - kleene < 0 # via regex-applicative - - language-haskell-extract + - language-haskell-extract < 0 # ghc 8.10 - largeword - lattices - lazy-csv @@ -4535,7 +4535,7 @@ packages: - network-info - network-ip - network-uri < 2.7.0.0 # https://github.com/commercialhaskell/stackage/issues/5116 - - newtype + - newtype < 0 # ghc 8.10 - nicify-lib - old-locale - old-time @@ -4615,7 +4615,7 @@ packages: - simple-reflect - simple-sendfile - singleton-bool - - size-based + - size-based < 0 # ghc 8.10 - skein - skylighting-core - snap-core @@ -4643,8 +4643,8 @@ packages: - system-filepath - tabular - tar - - tasty-lua - - tasty-th + - tasty-lua < 0 # tasty + - tasty-th < 0 # tasty - tdigest - template-haskell-compat-v0208 - temporary @@ -4654,8 +4654,8 @@ packages: - test-framework-hunit - test-framework-quickcheck2 - test-framework-smallcheck - - test-framework-th - - testing-feat + - test-framework-th < 0 # ghc 8.10 + - testing-feat < 0 # ghc 8.10 - testing-type-modifiers - text-builder - text-icu @@ -4719,7 +4719,7 @@ packages: - wai-logger - wai-session - warp - - wcwidth + - wcwidth < 0 - with-location - wizards - word-wrap @@ -4817,8 +4817,8 @@ packages: - persistent-template < 2.8.3 # https://github.com/commercialhaskell/stackage/issues/5348 - - tasty < 1.3 - - tasty-golden < 2.3.3.3 + - tasty < 0 + - tasty-golden < 0 # https://github.com/commercialhaskell/stackage/issues/5349 - typed-uuid < 0.1.0.0 @@ -4920,6 +4920,11 @@ packages: # servant-server (Haskell Servant , Stackage upper bounds) (not present) depended on by: - servant-websockets < 0 + # ghc-exactprint-0.6.3.1 ([changelog](http://hackage.haskell.org/package/ghc-exactprint-0.6.3.1/changelog)) (Alan Zimmerman @alanz) is out of bounds for: + - brittany < 0 + + + # TEMP # end of packages @@ -5030,6 +5035,7 @@ package-flags: mongoDB: _old-network: false + # end of package-flags # Special configure options for individual packages @@ -5056,6 +5062,338 @@ skipped-builds: # or if Setup fails because of missing foreign libraries. # Otherwise place them in expected-test-failures. skipped-tests: + + # TEMP ghc 8.10 + - simple-vec3 + - static-text + - monad-par + + # tasty + - Earley + - ForestStructures + - HaTeX + - JuicyPixels-blurhash + - aeson-casing + - aeson-schemas + - aeson-yaml + - amazonka-apigateway + - amazonka-application-autoscaling + - amazonka-appstream + - amazonka-athena + - amazonka-autoscaling + - amazonka-budgets + - amazonka-certificatemanager + - amazonka-cloudformation + - amazonka-cloudfront + - amazonka-cloudhsm + - amazonka-cloudsearch + - amazonka-cloudsearch-domains + - amazonka-cloudtrail + - amazonka-cloudwatch + - amazonka-cloudwatch-events + - amazonka-cloudwatch-logs + - amazonka-codebuild + - amazonka-codecommit + - amazonka-codedeploy + - amazonka-codepipeline + - amazonka-cognito-identity + - amazonka-cognito-idp + - amazonka-cognito-sync + - amazonka-config + - amazonka-core + - amazonka-datapipeline + - amazonka-devicefarm + - amazonka-directconnect + - amazonka-discovery + - amazonka-dms + - amazonka-ds + - amazonka-dynamodb + - amazonka-dynamodb-streams + - amazonka-ecr + - amazonka-ecs + - amazonka-efs + - amazonka-elasticache + - amazonka-elasticbeanstalk + - amazonka-elasticsearch + - amazonka-elastictranscoder + - amazonka-elb + - amazonka-elbv2 + - amazonka-emr + - amazonka-gamelift + - amazonka-glacier + - amazonka-glue + - amazonka-health + - amazonka-iam + - amazonka-importexport + - amazonka-inspector + - amazonka-iot + - amazonka-iot-dataplane + - amazonka-kinesis + - amazonka-kinesis-analytics + - amazonka-kinesis-firehose + - amazonka-kms + - amazonka-lambda + - amazonka-lightsail + - amazonka-marketplace-analytics + - amazonka-marketplace-metering + - amazonka-ml + - amazonka-opsworks + - amazonka-opsworks-cm + - amazonka-pinpoint + - amazonka-polly + - amazonka-rds + - amazonka-redshift + - amazonka-rekognition + - amazonka-route53 + - amazonka-route53-domains + - amazonka-s3 + - amazonka-sdb + - amazonka-servicecatalog + - amazonka-ses + - amazonka-shield + - amazonka-sms + - amazonka-snowball + - amazonka-sns + - amazonka-sqs + - amazonka-ssm + - amazonka-stepfunctions + - amazonka-storagegateway + - amazonka-sts + - amazonka-support + - amazonka-swf + - amazonka-waf + - amazonka-workspaces + - amazonka-xray + - arithmoi + - asn1-encoding + - aur + - aura + - base16 + - base32 + - base64 + - bimaps + - bitvec + - blanks + - blaze-markup + - bounded-queue + - bower-json + - bsb-http-chunked + - bv-little + - bytestring-conversion + - bz2 + - cabal2spec + - casing + - chimera + - clash-lib + - clash-prelude + - commutative + - compiler-warnings + - composable-associations + - composable-associations-aeson + - concise + - cookie + - countable + - credential-store + - crypto-numbers + - crypto-pubkey + - cryptohash + - cryptonite + - cryptonite-conduit + - cryptonite-openssl + - csp + - cubicbezier + - cuckoo-filter + - data-bword + - data-dword + - data-interval + - data-serializer + - dbus + - deferred-folds + - deque + - dhall + - dhall-json + - dhall-lsp-server + - dhall-yaml + - di-core + - diagrams-solve + - doclayout + - doctemplates + - dublincore-xml-conduit + - dunai + - egison-pattern-src + - egison-pattern-src-th-mode + - either-both + - etc + - eventstore + - exp-pairs + - extended-reals + - fast-digits + - flat + - free-vl + - freer-simple + - fsnotify + - generic-data + - ghc-lib-parser-ex + - ghc-source-gen + - ghc-typelits-extra + - ghc-typelits-knownnat + - ghc-typelits-natnormalise + - ghcid + - ginger + - github-rest + - haskell-igraph + - haskell-src-exts + - haskell-src-meta + - hie-bios + - hledger-stockquotes + - hourglass + - hpack-dhall + - hpc-codecov + - hpc-lcov + - hsc2hs + - hsini + - hslua + - hslua-module-doclayout + - hslua-module-system + - hslua-module-text + - htoml + - http-client-overrides + - hvega + - immortal + - immortal-queue + - incremental-parser + - influxdb + - integer-roots + - ipynb + - ixset-typed + - jira-wiki-markup + - jose + - junit-xml + - jwt + - katip + - kawhi + - language-bash + - language-java + - leveldb-haskell + - lifted-async + - llvm-hs + - llvm-hs-pure + - logict + - lukko + - math-functions + - matplotlib + - matrices + - matrix + - matrix-static + - mfsolve + - microlens-aeson + - mod + - model + - monad-loops + - monoid-subclasses + - morpheus-graphql + - morpheus-graphql-core + - multiset + - natural-transformation + - network-ip + - nondeterminism + - nonempty-containers + - openpgp-asciiarmor + - opensource + - opentelemetry-extra + - optics + - paripari + - parsec-numeric + - path-extra + - perfect-vector-shuffle + - pgp-wordlist + - pipes-attoparsec + - pipes-binary + - pkcs10 + - planb-token-introspection + - poly + - pptable + - prettyprinter + - primitive + - proto-lens + - proto3-wire + - qchas + - quadratic-irrational + - quickcheck-classes + - rainbox + - rank2classes + - reanimate + - regex-applicative + - relapse + - retry + - rope-utf16-splay + - safe-money + - safecopy + - sbp + - selective + - semver + - sequence-formats + - sexp-grammar + - singletons + - sitemap-gen + - streaming-bytestring + - strict-list + - string-transform + - structs + - swagger + - tasty-discover + - temporary + - text-manipulate + - th-test-utils + - throwable-exceptions + - timerep + - titlecase + - tldr + - tls + - tmapmvar + - traverse-with-class + - triplesec + - ttc + - ua-parser + - universum + - uri-bytestring + - vector-bytes-instances + - vector-rotcev + - vector-split + - versions + - wai-middleware-clacks + - with-utf8 + - wl-pprint-annotated + - world-peace + - x509 + - x509-store + - x509-validation + - xlsx + - xml-html-qq + - xml-indexed-cursor + - xml-picklers + - zeromq4-haskell + - aeson-schemas + - bz2 + - cabal2spec + - countable + - doclayout + - doctemplates + - github-rest + - haskell-igraph + - haskell-src-exts + - hpack-dhall + - hpc-lcov + - hvega + - junit-xml + - katip + - language-bash + - matplotlib + - reanimate + - singletons + - tldr + + # Outdated dependencies # These can periodically be checked for updates; # just remove these lines and run `stackage-curator check' to verify. @@ -5774,6 +6112,8 @@ skipped-haddocks: # Otherwise place them in expected-benchmark-failures. skipped-benchmarks: + - tls # tasty-quickcheck + # Outdated dependencies # These can periodically be checked for updates; # just remove these lines and run `stackage-curator check' From 6ae521311d97e01243b35c36a61823cf4c9ba28c Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 15 Jun 2020 04:12:54 +0200 Subject: [PATCH 1621/2682] Update docker image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 520b94ac..41b0232c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM fpco/pid1:18.04 ENV HOME /home/stackage ENV LANG en_US.UTF-8 -ENV GHCVER 8.8.3 +ENV GHCVER 8.10.1 # NOTE: also update debian-bootstrap.sh when cuda version changes ENV PATH /home/stackage/.stack/programs/x86_64-linux/ghc-$GHCVER/bin:/usr/local/cuda-10.0/bin:/usr/sbin:/usr/bin:/sbin:/bin From 3c30c5e700f67f127f5d4ad8229d361840f28817 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 15 Jun 2020 08:32:01 +0200 Subject: [PATCH 1622/2682] Upgrade LLVM --- debian-bootstrap.sh | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index e688b670..05f7c3fd 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -146,6 +146,7 @@ apt-get install -y \ libzmq3-dev \ llvm-7 \ llvm-8 \ + llvm-9 \ locales \ m4 \ minisat \ @@ -196,9 +197,9 @@ update-alternatives --install "/usr/bin/ld" "ld" "/usr/bin/ld.bfd" 10 # This version is tracked here: # https://ghc.haskell.org/trac/ghc/wiki/Commentary/Compiler/Backends/LLVM/Installing # -# GHC 8.8 requires LLVM 7 tools (?) (specifically, llc-7 and opt-7). -update-alternatives --install "/usr/bin/llc" "llc" "/usr/bin/llc-7" 50 -update-alternatives --install "/usr/bin/opt" "opt" "/usr/bin/opt-7" 50 +# GHC 8.10 requires LLVM 9 tools (?) (specifically, llc-9 and opt-9). +update-alternatives --install "/usr/bin/llc" "llc" "/usr/bin/llc-9" 50 +update-alternatives --install "/usr/bin/opt" "opt" "/usr/bin/opt-9" 50 # nodejs 10 (nodejs8 in bionic needs conflicting libssl10-dev) curl -sL https://deb.nodesource.com/setup_10.x | bash - @@ -270,8 +271,8 @@ apt-add-repository multiverse \ && apt-get update \ && apt-get install -y nvidia-cuda-dev -export CLANG_PURE_LLVM_LIB_DIR=/usr/lib/llvm-7/lib; -export CLANG_PURE_LLVM_INCLUDE_DIR=/usr/lib/llvm-7/include; +export CLANG_PURE_LLVM_LIB_DIR=/usr/lib/llvm-9/lib; +export CLANG_PURE_LLVM_INCLUDE_DIR=/usr/lib/llvm-9/include; # protoc, for proto-lens-combinators test suite # Instructions from: https://google.github.io/proto-lens/installing-protoc.html From c124bdf27afd6aab473097e0b176764009e566ff Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 15 Jun 2020 08:48:25 +0200 Subject: [PATCH 1623/2682] Restore tasty --- build-constraints.yaml | 386 ++++------------------------------------- 1 file changed, 30 insertions(+), 356 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9e6e03bd..17fea0ea 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -830,7 +830,7 @@ packages: - pem - siphash - socks - - tasty-kat < 0 # tasty + - tasty-kat - tls - tls-debug - vhd < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build @@ -1187,9 +1187,9 @@ packages: - socket < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build - tasty - tasty-golden - - tasty-hunit < 0 # tasty - - tasty-quickcheck < 0 # tasty - - tasty-smallcheck < 0 # tasty + - tasty-hunit + - tasty-quickcheck + - tasty-smallcheck - tasty-html < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build - time-lens - timezone-olson @@ -1211,7 +1211,7 @@ packages: "Joachim Breitner @nomeata": - circle-packing - haskell-spacegoo < 0 # MonadFail - - tasty-expected-failure < 0 # tasty + - tasty-expected-failure "Aditya Bhargava @egonSchiele": - HandsomeSoup @@ -1313,10 +1313,10 @@ packages: # be removed, rather than putting an upper bound on hledger-lib and hledger. # (https://github.com/fpco/stackage/issues/3494) # - - hledger < 0 # tasty - - hledger-lib < 0 # tasty - - hledger-ui < 0 # hledger - - hledger-web < 0 # hledger + - hledger + - hledger-lib + - hledger-ui + - hledger-web # - quickbench < 0 # via docopt - regex-compat-tdfa @@ -1677,7 +1677,7 @@ packages: - FindBin "Jan Stolarek @jstolarek": - - tasty-program < 0 # tasty + - tasty-program "Abhinav Gupta @abhinav": - farmhash @@ -1694,7 +1694,7 @@ packages: "Brendan Hay @brendanhay": - amazonka - amazonka-core - - amazonka-test < 0 # tasty + - amazonka-test - amazonka-apigateway - amazonka-application-autoscaling - amazonka-appstream @@ -1939,7 +1939,7 @@ packages: - jwt "Sven Bartscher sven.bartscher@weltraumschlangen.de @kritzefitz": - - setlocale < 0 + - setlocale "Taylor Fausak @tfausak": - autoexporter @@ -2005,7 +2005,7 @@ packages: "Mitchell Rosen @mitchellwrosen": - safe-exceptions-checked - - tasty-hspec < 0 # tasty + - tasty-hspec - termbox < 0 # via base-4.13.0.0 - timer-wheel < 0 # via base-4.13.0.0 - wai-middleware-travisci < 0 # via base-4.13.0.0 @@ -2076,7 +2076,7 @@ packages: - semiring-simple "Philipp Hausmann @phile314": - - tasty-silver < 0 # tasty + - tasty-silver "Michael Thompson @michaelt": - pipes-text < 0 # GHC 8.4 via streaming-commons-0.2.0.0 @@ -2395,7 +2395,7 @@ packages: - concurrency - dejafu - hunit-dejafu - - tasty-dejafu < 0 # tasty + - tasty-dejafu - irc-ctcp - irc-conduit - irc-client @@ -2408,7 +2408,7 @@ packages: - speculate - extrapolate - percent-format - - tasty-leancheck < 0 # tasty + - tasty-leancheck - hspec-leancheck - test-framework-leancheck @@ -2505,7 +2505,7 @@ packages: - flexible-defaults - funcmp - hackage-db - - hledger-interest < 0 # hledger + - hledger-interest - hopenssl - hsdns - hsemail @@ -2694,7 +2694,7 @@ packages: - dotnet-timespan - eventsource-api < 0 # GHC 8.4 build failure - eventsource-geteventstore-store < 0 # GHC 8.4 via protolude - - eventsource-store-specs < 0 # tasty-hspec + - eventsource-store-specs < 0 # eventsource-api - eventsource-stub-store < 0 # GHC 8.4 via protolude "Sebastian Dröge slomo@coaxion.net @sdroege": @@ -2997,7 +2997,7 @@ packages: - sv < 0 # via base-4.13.0.0 - sv-cassava < 0 # via sv-core - sv-core < 0 # via base-4.13.0.0 - - tasty-hedgehog < 0 # tasty + - tasty-hedgehog "Ismail Mustafa @ismailmustafa": - handwriting < 0 @@ -3148,7 +3148,7 @@ packages: - data-interval - vector-rotcev - mod - - tasty-rerun < 0 # tasty + - tasty-rerun - integer-roots "Ashley Yakeley @AshleyYakeley": @@ -3381,7 +3381,7 @@ packages: - pvar "Hans-Peter Deifel @hpdeifel": - - hledger-iadd < 0 # hledger + - hledger-iadd "Roy Levien @orome": - crypto-enigma @@ -3948,7 +3948,7 @@ packages: "Sergey Vinokurov @sergv": - bencoding < 0 # via bencode - emacs-module - - tasty-ant-xml < 0 # tasty + - tasty-ant-xml "Eugene Smolanka @esmolanka": - sexp-grammar @@ -4099,11 +4099,11 @@ packages: - ca-province-codes - mx-state-codes - sitemap-gen - - tasty-wai < 0 # tasty + - tasty-wai - stack-templatizer - immortal-queue - wai-middleware-clacks - - hledger-stockquotes < 0 # hledger + - hledger-stockquotes "David Baynard @dbaynard": - time-qq < 0 # see christian-marie/time-qq#3 @@ -4144,7 +4144,7 @@ packages: - caster < 0 # via fast-builder "Felix Paulusma @Vlix": - - safe-json < 0 # tasty + - safe-json "Olle Fredriksson @ollef": - rope-utf16-splay @@ -4643,8 +4643,8 @@ packages: - system-filepath - tabular - tar - - tasty-lua < 0 # tasty - - tasty-th < 0 # tasty + - tasty-lua + - tasty-th - tdigest - template-haskell-compat-v0208 - temporary @@ -4719,7 +4719,7 @@ packages: - wai-logger - wai-session - warp - - wcwidth < 0 + - wcwidth - with-location - wizards - word-wrap @@ -4817,8 +4817,8 @@ packages: - persistent-template < 2.8.3 # https://github.com/commercialhaskell/stackage/issues/5348 - - tasty < 0 - - tasty-golden < 0 + - tasty < 1.3 + - tasty-golden < 2.3.3.3 # https://github.com/commercialhaskell/stackage/issues/5349 - typed-uuid < 0.1.0.0 @@ -5068,332 +5068,6 @@ skipped-tests: - static-text - monad-par - # tasty - - Earley - - ForestStructures - - HaTeX - - JuicyPixels-blurhash - - aeson-casing - - aeson-schemas - - aeson-yaml - - amazonka-apigateway - - amazonka-application-autoscaling - - amazonka-appstream - - amazonka-athena - - amazonka-autoscaling - - amazonka-budgets - - amazonka-certificatemanager - - amazonka-cloudformation - - amazonka-cloudfront - - amazonka-cloudhsm - - amazonka-cloudsearch - - amazonka-cloudsearch-domains - - amazonka-cloudtrail - - amazonka-cloudwatch - - amazonka-cloudwatch-events - - amazonka-cloudwatch-logs - - amazonka-codebuild - - amazonka-codecommit - - amazonka-codedeploy - - amazonka-codepipeline - - amazonka-cognito-identity - - amazonka-cognito-idp - - amazonka-cognito-sync - - amazonka-config - - amazonka-core - - amazonka-datapipeline - - amazonka-devicefarm - - amazonka-directconnect - - amazonka-discovery - - amazonka-dms - - amazonka-ds - - amazonka-dynamodb - - amazonka-dynamodb-streams - - amazonka-ecr - - amazonka-ecs - - amazonka-efs - - amazonka-elasticache - - amazonka-elasticbeanstalk - - amazonka-elasticsearch - - amazonka-elastictranscoder - - amazonka-elb - - amazonka-elbv2 - - amazonka-emr - - amazonka-gamelift - - amazonka-glacier - - amazonka-glue - - amazonka-health - - amazonka-iam - - amazonka-importexport - - amazonka-inspector - - amazonka-iot - - amazonka-iot-dataplane - - amazonka-kinesis - - amazonka-kinesis-analytics - - amazonka-kinesis-firehose - - amazonka-kms - - amazonka-lambda - - amazonka-lightsail - - amazonka-marketplace-analytics - - amazonka-marketplace-metering - - amazonka-ml - - amazonka-opsworks - - amazonka-opsworks-cm - - amazonka-pinpoint - - amazonka-polly - - amazonka-rds - - amazonka-redshift - - amazonka-rekognition - - amazonka-route53 - - amazonka-route53-domains - - amazonka-s3 - - amazonka-sdb - - amazonka-servicecatalog - - amazonka-ses - - amazonka-shield - - amazonka-sms - - amazonka-snowball - - amazonka-sns - - amazonka-sqs - - amazonka-ssm - - amazonka-stepfunctions - - amazonka-storagegateway - - amazonka-sts - - amazonka-support - - amazonka-swf - - amazonka-waf - - amazonka-workspaces - - amazonka-xray - - arithmoi - - asn1-encoding - - aur - - aura - - base16 - - base32 - - base64 - - bimaps - - bitvec - - blanks - - blaze-markup - - bounded-queue - - bower-json - - bsb-http-chunked - - bv-little - - bytestring-conversion - - bz2 - - cabal2spec - - casing - - chimera - - clash-lib - - clash-prelude - - commutative - - compiler-warnings - - composable-associations - - composable-associations-aeson - - concise - - cookie - - countable - - credential-store - - crypto-numbers - - crypto-pubkey - - cryptohash - - cryptonite - - cryptonite-conduit - - cryptonite-openssl - - csp - - cubicbezier - - cuckoo-filter - - data-bword - - data-dword - - data-interval - - data-serializer - - dbus - - deferred-folds - - deque - - dhall - - dhall-json - - dhall-lsp-server - - dhall-yaml - - di-core - - diagrams-solve - - doclayout - - doctemplates - - dublincore-xml-conduit - - dunai - - egison-pattern-src - - egison-pattern-src-th-mode - - either-both - - etc - - eventstore - - exp-pairs - - extended-reals - - fast-digits - - flat - - free-vl - - freer-simple - - fsnotify - - generic-data - - ghc-lib-parser-ex - - ghc-source-gen - - ghc-typelits-extra - - ghc-typelits-knownnat - - ghc-typelits-natnormalise - - ghcid - - ginger - - github-rest - - haskell-igraph - - haskell-src-exts - - haskell-src-meta - - hie-bios - - hledger-stockquotes - - hourglass - - hpack-dhall - - hpc-codecov - - hpc-lcov - - hsc2hs - - hsini - - hslua - - hslua-module-doclayout - - hslua-module-system - - hslua-module-text - - htoml - - http-client-overrides - - hvega - - immortal - - immortal-queue - - incremental-parser - - influxdb - - integer-roots - - ipynb - - ixset-typed - - jira-wiki-markup - - jose - - junit-xml - - jwt - - katip - - kawhi - - language-bash - - language-java - - leveldb-haskell - - lifted-async - - llvm-hs - - llvm-hs-pure - - logict - - lukko - - math-functions - - matplotlib - - matrices - - matrix - - matrix-static - - mfsolve - - microlens-aeson - - mod - - model - - monad-loops - - monoid-subclasses - - morpheus-graphql - - morpheus-graphql-core - - multiset - - natural-transformation - - network-ip - - nondeterminism - - nonempty-containers - - openpgp-asciiarmor - - opensource - - opentelemetry-extra - - optics - - paripari - - parsec-numeric - - path-extra - - perfect-vector-shuffle - - pgp-wordlist - - pipes-attoparsec - - pipes-binary - - pkcs10 - - planb-token-introspection - - poly - - pptable - - prettyprinter - - primitive - - proto-lens - - proto3-wire - - qchas - - quadratic-irrational - - quickcheck-classes - - rainbox - - rank2classes - - reanimate - - regex-applicative - - relapse - - retry - - rope-utf16-splay - - safe-money - - safecopy - - sbp - - selective - - semver - - sequence-formats - - sexp-grammar - - singletons - - sitemap-gen - - streaming-bytestring - - strict-list - - string-transform - - structs - - swagger - - tasty-discover - - temporary - - text-manipulate - - th-test-utils - - throwable-exceptions - - timerep - - titlecase - - tldr - - tls - - tmapmvar - - traverse-with-class - - triplesec - - ttc - - ua-parser - - universum - - uri-bytestring - - vector-bytes-instances - - vector-rotcev - - vector-split - - versions - - wai-middleware-clacks - - with-utf8 - - wl-pprint-annotated - - world-peace - - x509 - - x509-store - - x509-validation - - xlsx - - xml-html-qq - - xml-indexed-cursor - - xml-picklers - - zeromq4-haskell - - aeson-schemas - - bz2 - - cabal2spec - - countable - - doclayout - - doctemplates - - github-rest - - haskell-igraph - - haskell-src-exts - - hpack-dhall - - hpc-lcov - - hvega - - junit-xml - - katip - - language-bash - - matplotlib - - reanimate - - singletons - - tldr - - # Outdated dependencies # These can periodically be checked for updates; # just remove these lines and run `stackage-curator check' to verify. From 6c9c3c3305b55c1d1b3184fa816f9b18aae8da27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laurent=20P=2E=20Ren=C3=A9=20de=20Cotret?= Date: Mon, 15 Jun 2020 11:16:39 -0400 Subject: [PATCH 1624/2682] Remove pandoc-pyplot from stackage --- build-constraints.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 60e8b4dd..555766e7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -172,7 +172,6 @@ packages: - control-dsl < 0 # via doctest-discover "Laurent P. René de Cotret @LaurentRDC": - - pandoc-pyplot - pandoc-plot "Andrew Newman @andrewfnewman": @@ -5479,7 +5478,6 @@ expected-test-failures: - odbc # "Need ODBC_TEST_CONNECTION_STRING environment variable" - opaleye # PostgreSQL - pandoc-plot # requires matlab, etc and DISPLAY for tcltk - - pandoc-pyplot # requires DISPLAY for tcltk - pantry # https://github.com/commercialhaskell/stackage/issues/4628 - persistent-redis # redis - https://github.com/fpco/stackage/pull/1581 - pipes-mongodb From 87618a3047159da3bde64fbdece0b79a0092076d Mon Sep 17 00:00:00 2001 From: Bodigrim Date: Mon, 15 Jun 2020 19:07:03 +0100 Subject: [PATCH 1625/2682] Transfer ownership of smallcheck --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 60e8b4dd..8b2a5b8d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1183,7 +1183,6 @@ packages: - immortal - regex-applicative - lexer-applicative < 0 # DependencyFailed (PackageName "srcloc") - - smallcheck - socket < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build - tasty - tasty-golden @@ -3150,6 +3149,7 @@ packages: - mod - tasty-rerun - integer-roots + - smallcheck "Ashley Yakeley @AshleyYakeley": - countable From cd0645c71a7304343febe3ea304ff821ef2ea36f Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Tue, 16 Jun 2020 14:25:45 +0200 Subject: [PATCH 1626/2682] Remove TEMP's --- build-constraints.yaml | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 17fea0ea..8499b73e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4801,9 +4801,6 @@ packages: - Win32 == 2.6.1.0 "Stackage upper bounds": - # https://github.com/commercialhaskell/stackage/issues/5191 - compilation failures - - servant < 0 - # https://github.com/commercialhaskell/stackage/issues/5306 - arithmoi < 0.11.0.0 @@ -4838,6 +4835,11 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5424 - smallcheck < 1.2.0 + "GHC 8.10": + + # https://github.com/commercialhaskell/stackage/issues/5191 - compilation failures + - servant < 0 + # haddock-library-1.9.0 ([changelog](http://hackage.haskell.org/package/haddock-library-1.9.0/changelog)) (Alex Biehl @alexbiehl) is out of bounds for: - pandoc < 0 @@ -4924,8 +4926,6 @@ packages: - brittany < 0 - -# TEMP # end of packages # Package flags are applied to individual packages, and override the values of @@ -5063,16 +5063,15 @@ skipped-builds: # Otherwise place them in expected-test-failures. skipped-tests: - # TEMP ghc 8.10 - - simple-vec3 - - static-text - - monad-par - # Outdated dependencies # These can periodically be checked for updates; - # just remove these lines and run `stackage-curator check' to verify. + # just remove these lines and run `./check' to verify. - time-compat # base-compat 0.11 - http-media # base-4.13 + - simple-vec3 # ghc 8.10 + - static-text # ghc 8.10 + - monad-par # ghc 8.10 + # Cyclic dependencies - base-orphans # via hspec From ccb2f0014961648efe722312585fdbeaf050ece0 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Tue, 16 Jun 2020 11:54:28 -0400 Subject: [PATCH 1627/2682] Revert "Expect test failure per LeapYear/th-test-utils#14" This reverts commit 0fb829b2fdd8eabd27e6b4ac86441c0ecd57040a. --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 02f0c1ea..c115a70e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5607,7 +5607,6 @@ expected-test-failures: - squeal-postgresql # https://github.com/fpco/stackage/issues/3180 - text-icu # https://github.com/bos/text-icu/issues/32 - text-ldap # https://github.com/khibino/haskell-text-ldap/issues/1 - - th-test-utils # https://github.com/LeapYear/th-test-utils/issues/14 - unicode-transforms # https://github.com/harendra-kumar/unicode-transforms/issues/15 - vector-algorithms # http://hub.darcs.net/dolio/vector-algorithms/issue/9 - vivid-supercollider # https://github.com/commercialhaskell/stackage/issues/4250 From 4840c73ee0c5c387ade05ae22036a8ff9cb559cc Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Tue, 16 Jun 2020 12:15:06 -0400 Subject: [PATCH 1628/2682] Restore ftp-client and ftp-client-conduit --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 02f0c1ea..87b4bdc6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1070,8 +1070,8 @@ packages: - tardis - yesod-gitrev # @mr's packages - - ftp-client < 0 # connection-0.3.0 - - ftp-client-conduit < 0 # connection-0.3.0 + - ftp-client + - ftp-client-conduit "Daniel Díaz dhelta.diaz@gmail.com @Daniel-Diaz": - bimap-server From 2966339905b56262f75e65fad3adc16b6b72ba22 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Wed, 17 Jun 2020 08:10:18 -0700 Subject: [PATCH 1629/2682] Expect test failure for bech32-th, #5432 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 02f0c1ea..fff43980 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5588,6 +5588,7 @@ expected-test-failures: - persistent-sqlite # https://github.com/yesodweb/persistent/issues/989 - haskell-src-exts # https://github.com/commercialhaskell/stackage/issues/5151 - simple-vec3 # https://github.com/commercialhaskell/stackage/pull/5410 + - bech32-th # https://github.com/commercialhaskell/stackage/issues/5432 # Compilation failures - ListLike # No issue tracker, e-mail sent to maintainer From 12f1426b433b625cdb5526ee63039f4a904bc8a4 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Wed, 17 Jun 2020 08:22:34 -0700 Subject: [PATCH 1630/2682] Restrict cabal-debian due to a build failure --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index fff43980..0bceb26f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1222,7 +1222,7 @@ packages: - hopenpgp-tools < 0 # ghc 8.10 - opensource - debian - - cabal-debian + - cabal-debian < 0 # https://github.com/ddssff/cabal-debian/issues/71 "Piyush P Kurur @piyush-kurur": - raaz < 0 # via base-4.13.0.0 From b9f17d9eaf7c68c170ed178d436c10dad1980042 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Wed, 17 Jun 2020 08:23:46 -0700 Subject: [PATCH 1631/2682] Expect test failure for checkers, #5433 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0bceb26f..122d44b2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5617,6 +5617,7 @@ expected-test-failures: - yeshql-core # https://github.com/tdammers/yeshql/issues/6 - yeshql-hdbc # https://github.com/tdammers/yeshql/issues/6 - yesod-gitrev # https://github.com/DanBurton/yesod-gitrev/issues/5 + - checkers # https://github.com/commercialhaskell/stackage/issues/5433 # Recursive deps https://github.com/fpco/stackage/issues/1818 - options From 651fb9f743d752d6e2b4a165b627c364a5de246f Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Wed, 17 Jun 2020 08:49:27 -0700 Subject: [PATCH 1632/2682] Try skipping tests for checkers altogether, #5433 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 122d44b2..9caa0510 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5324,6 +5324,7 @@ skipped-tests: - config-ini # https://github.com/aisamanra/config-ini/issues/22 - polysemy-plugin # https://github.com/commercialhaskell/stackage/issues/4733 - primitive-extras # https://github.com/commercialhaskell/stackage/issues/5210 + - checkers # https://github.com/commercialhaskell/stackage/issues/5433 # Runtime issues - blank-canvas # Never finishes https://github.com/ku-fpg/blank-canvas/issues/73 @@ -5617,7 +5618,6 @@ expected-test-failures: - yeshql-core # https://github.com/tdammers/yeshql/issues/6 - yeshql-hdbc # https://github.com/tdammers/yeshql/issues/6 - yesod-gitrev # https://github.com/DanBurton/yesod-gitrev/issues/5 - - checkers # https://github.com/commercialhaskell/stackage/issues/5433 # Recursive deps https://github.com/fpco/stackage/issues/1818 - options From 7c3749c3bc9d1fcbf76666f51247caf38b135b7f Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Wed, 17 Jun 2020 09:03:24 -0700 Subject: [PATCH 1633/2682] Disable heterocephalus, #5434 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9caa0510..aa133e1f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3332,7 +3332,7 @@ packages: "Kadzuya Okamoto @arowM": - type-level-kv-list - - heterocephalus + - heterocephalus < 0 # https://github.com/commercialhaskell/stackage/issues/5434 - bookkeeping < 0 # GHC 8.4 BuildFailureException Process exited with ExitFailure 1: ./Setup build - ochintin-daicho < 0 # GHC 8.4 DependencyFailed (PackageName "bookkeeping") - transaction From 4690e59cbbcf23be58bffa2b49a4dd79525d5e76 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Wed, 17 Jun 2020 09:04:22 -0700 Subject: [PATCH 1634/2682] Disable checkers, it's a build failure, not a test failure, #5433 --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index aa133e1f..36dbadd7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4343,7 +4343,7 @@ packages: - cereal - cereal-text - cereal-vector - - checkers + - checkers < 0 # https://github.com/commercialhaskell/stackage/issues/5433 - chunked-data - cipher-aes128 < 0 # via Cabal-3.0.0.0 - cipher-blowfish < 0 # MonadFail @@ -5324,7 +5324,6 @@ skipped-tests: - config-ini # https://github.com/aisamanra/config-ini/issues/22 - polysemy-plugin # https://github.com/commercialhaskell/stackage/issues/4733 - primitive-extras # https://github.com/commercialhaskell/stackage/issues/5210 - - checkers # https://github.com/commercialhaskell/stackage/issues/5433 # Runtime issues - blank-canvas # Never finishes https://github.com/ku-fpg/blank-canvas/issues/73 From 686eba2d50075430dfa0be3460808a9c4dd712cc Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Wed, 17 Jun 2020 09:05:46 -0700 Subject: [PATCH 1635/2682] Disable xml-html-qq --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 36dbadd7..0d22a851 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2428,7 +2428,7 @@ packages: - servant-static-th - termonad < 0 # via gi-vte - world-peace - - xml-html-qq + - xml-html-qq < 0 # via heterocephalus - xml-indexed-cursor "Franklin Chen @FranklinChen": From 6fd4b5262e995ef6059f683e6dc19e22f6a7c4e7 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Wed, 17 Jun 2020 09:07:53 -0700 Subject: [PATCH 1636/2682] Disable packages dependent on checkers --- build-constraints.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0d22a851..7d0063c7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -965,7 +965,7 @@ packages: "Mario Blazevic @blamario": - monad-parallel - monad-coroutine - - incremental-parser + - incremental-parser < 0 # via checkers - monoid-subclasses - picoparsec < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build - rank2classes @@ -1484,7 +1484,7 @@ packages: - ghcjs-perch < 0 # build failure with GHC 8.4 "Tom Ellis @tomjaguarpaw": - - opaleye + - opaleye < 0 # via checkers - product-profunctors "Samplecount stefan@samplecount.com @kaoskorobase": @@ -1671,7 +1671,7 @@ packages: - getopt-generics - graph-wrapper - string-conversions - - hspec-checkers + - hspec-checkers < 0 # via checkers - FindBin "Jan Stolarek @jstolarek": @@ -4524,7 +4524,7 @@ packages: - monads-tf - mono-traversable-instances - mono-traversable-keys - - multiset + - multiset < 0 # via checkers - mwc-random - names-th - nanospec From 7c017e133c349adbc232211b308397a918143d86 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Wed, 17 Jun 2020 09:18:05 -0700 Subject: [PATCH 1637/2682] Disable clash-prelude, #5435 --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7d0063c7..fbe67b16 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2013,9 +2013,9 @@ packages: - ghc-typelits-extra - ghc-typelits-knownnat - ghc-typelits-natnormalise - - clash-prelude - - clash-lib - - clash-ghc + - clash-prelude < 0 # ghc 8.10.1 https://github.com/commercialhaskell/stackage/issues/5435 + - clash-lib < 0 # via clash-prelude + - clash-ghc < 0 # via clash-prelude "Athan Clark @athanclark": - aeson-attoparsec From a1dd87d06827191aa331c17bc2c69388c7e52c50 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Wed, 17 Jun 2020 09:27:12 -0700 Subject: [PATCH 1638/2682] Disable emacs-module, #5436 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index fbe67b16..ca23010a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3946,7 +3946,7 @@ packages: "Sergey Vinokurov @sergv": - bencoding < 0 # via bencode - - emacs-module + - emacs-module < 0 # ghc 8.10.1 https://github.com/commercialhaskell/stackage/issues/5436 - tasty-ant-xml "Eugene Smolanka @esmolanka": From 9a9a42ce66518c1e9371390af5522b588a387eea Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Wed, 17 Jun 2020 09:29:14 -0700 Subject: [PATCH 1639/2682] Disable farmhash, #5437 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ca23010a..e2feef7c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1678,7 +1678,7 @@ packages: - tasty-program "Abhinav Gupta @abhinav": - - farmhash + - farmhash < 0 # ghc 8.10.1 https://github.com/commercialhaskell/stackage/issues/5437 - pinch < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build - sandman < 0 # Cabal 3 From 3ece5a7b095290bee72a0b85a6903f4ea1e60ec7 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Wed, 17 Jun 2020 09:32:50 -0700 Subject: [PATCH 1640/2682] Disable ghc-typelits-presburger, #5438 --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e2feef7c..808ef000 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4240,8 +4240,8 @@ packages: "Hiromi Ishii @konn": - equational-reasoning - - ghc-typelits-presburger - - singletons-presburger + - ghc-typelits-presburger < 0 # ghc 8.10.1 https://github.com/commercialhaskell/stackage/issues/5438 + - singletons-presburger < 0 # via ghc-typelits-presburger - type-natural < 0 # ghc 8.10 - sized < 0 # ghc 8.10 From 03968ea67b34e4dc7a56c5e9c68e4cc7851ec617 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Wed, 17 Jun 2020 09:40:15 -0700 Subject: [PATCH 1641/2682] Expect test failure for haskeline, #5439 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 808ef000..25052656 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5589,6 +5589,7 @@ expected-test-failures: - haskell-src-exts # https://github.com/commercialhaskell/stackage/issues/5151 - simple-vec3 # https://github.com/commercialhaskell/stackage/pull/5410 - bech32-th # https://github.com/commercialhaskell/stackage/issues/5432 + - haskeline # https://github.com/commercialhaskell/stackage/issues/5439 # Compilation failures - ListLike # No issue tracker, e-mail sent to maintainer From 2895f7540872d0b7aaf472eeb12e5fd22b4e32d6 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Wed, 17 Jun 2020 09:42:08 -0700 Subject: [PATCH 1642/2682] Disable haskell-igraph, #5440 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 25052656..c3dfd52b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2161,7 +2161,7 @@ packages: "Kai Zhang @kaizhang": - matrices - - haskell-igraph + - haskell-igraph < 0 # ghc 8.10.1 https://github.com/commercialhaskell/stackage/issues/5440 "Michel Boucey @MichelBoucey": - IPv6Addr From 2ee2334bf467e96c1561450cf7deebcc21bc0258 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Wed, 17 Jun 2020 09:44:31 -0700 Subject: [PATCH 1643/2682] Disable invertible, #5441 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c3dfd52b..b4aa9741 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3413,7 +3413,7 @@ packages: "Dylan Simon @dylex": - postgresql-typed < 0 # via HDBC - - invertible + - invertible < 0 # ghc 8.10.1 https://github.com/commercialhaskell/stackage/issues/5441 - ztail < 0 # via time-1.9.3 - zip-stream From b3015c28be0e0fc5ef661f4173c12ac0ee05cc48 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Wed, 17 Jun 2020 09:57:59 -0700 Subject: [PATCH 1644/2682] Disable linenoise, #5442 --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b4aa9741..b0ca4b8f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4212,8 +4212,8 @@ packages: "Eric Conlon @ejconlon": - blanks - - climb - - linenoise + - climb < 0 # via linenoise + - linenoise < 0 # https://github.com/commercialhaskell/stackage/issues/5442 - little-rio - little-logger # Maintainership with @23Skidoo From e5d259c95c65bf1558f2e179c0f0a5438262a64b Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Wed, 17 Jun 2020 10:07:49 -0700 Subject: [PATCH 1645/2682] Expect test failure for chronos, #5443 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index b0ca4b8f..9e32e357 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5618,6 +5618,7 @@ expected-test-failures: - yeshql-core # https://github.com/tdammers/yeshql/issues/6 - yeshql-hdbc # https://github.com/tdammers/yeshql/issues/6 - yesod-gitrev # https://github.com/DanBurton/yesod-gitrev/issues/5 + - chronos # https://github.com/commercialhaskell/stackage/issues/5443 # Recursive deps https://github.com/fpco/stackage/issues/1818 - options From 91d928d36c1c50d3d36676336ca622d9c19dcca2 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Wed, 17 Jun 2020 10:20:06 -0700 Subject: [PATCH 1646/2682] Disable mpi-hs, #5444 --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9e32e357..f88484c7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -164,9 +164,9 @@ packages: - PyF "Erik Schnetter @eschnett": - - mpi-hs - - mpi-hs-binary - - mpi-hs-cereal + - mpi-hs < 0 # https://github.com/commercialhaskell/stackage/issues/5444 + - mpi-hs-binary < 0 # via mpi-hs + - mpi-hs-cereal < 0 # via mpi-hs "Yang Bo @Atry": - control-dsl < 0 # via doctest-discover From 7a3a293a875c8486a08462a9ba585dc551e23763 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Wed, 17 Jun 2020 10:23:23 -0700 Subject: [PATCH 1647/2682] Disable planb-token-introspection, #5445 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f88484c7..d7e554b3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2446,7 +2446,7 @@ packages: - opentelemetry-extra - opentelemetry-wai - opentelemetry-lightstep - - planb-token-introspection + - planb-token-introspection < 0 # https://github.com/commercialhaskell/stackage/issues/5445 - pointedlist - unordered-intmap - word-trie From 36f9c2ec4f8b7ce8e7a7f90f963bee0de5dfa59b Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Wed, 17 Jun 2020 10:26:28 -0700 Subject: [PATCH 1648/2682] Disable pretty-types, #5446 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d7e554b3..7c185a9d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2225,7 +2225,7 @@ packages: "Sven Heyll @sheyll": - b9 < 0 # build failure with GHC 8.4 https://github.com/sheyll/b9-vm-image-builder/issues/4 - type-spec - - pretty-types + - pretty-types < 0 # ghc 8.10.1 https://github.com/commercialhaskell/stackage/issues/5446 - function-builder - bytestring-to-vector From db7673575e75e2f2aa75dbbe8647d446c83e0f0a Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Wed, 17 Jun 2020 10:27:43 -0700 Subject: [PATCH 1649/2682] Disable trivial-constraint, #5447 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7c185a9d..849be232 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4680,7 +4680,7 @@ packages: - tonatona < 0 # via tonaparser - transformers-base - tree-diff - - trivial-constraint + - trivial-constraint < 0 # ghc 8.10.1 https://github.com/commercialhaskell/stackage/issues/5447 - true-name < 0 # MonadFail - tuple-th - type-fun From f9f860a5e6043dc5723009d5e20be07701a9a5d6 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Wed, 17 Jun 2020 10:32:19 -0700 Subject: [PATCH 1650/2682] Disable type-fun, #5448 --- build-constraints.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 849be232..f0c9eea5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -552,8 +552,8 @@ packages: "Aleksey Uimanov @s9gf4ult": # - postgresql-query # build errors - - hreader - - hset + - hreader < 0 # via hset + - hset < 0 # via type-fun "Aaron Taylor @hamsterdam": - kawhi @@ -2769,7 +2769,7 @@ packages: - open-browser "Denis Redozubov @dredozubov": - - hreader-lens + - hreader-lens < 0 # via hreader - schematic < 0 # GHC 8.4 via base-4.11.0.0 "Yuji Yamamoto @igrep": @@ -4683,7 +4683,7 @@ packages: - trivial-constraint < 0 # ghc 8.10.1 https://github.com/commercialhaskell/stackage/issues/5447 - true-name < 0 # MonadFail - tuple-th - - type-fun + - type-fun < 0 # ghc 8.10.1 https://github.com/commercialhaskell/stackage/issues/5448 - type-hint - uglymemo - unbounded-delays From a3bf2176428af9ae4b7e0c51139813c9e28e0cb7 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Wed, 17 Jun 2020 10:33:47 -0700 Subject: [PATCH 1651/2682] Add upper bound for unordered-containers, #5449 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f0c9eea5..d9114e62 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4834,6 +4834,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5424 - smallcheck < 1.2.0 + # https://github.com/commercialhaskell/stackage/issues/5449 + - unordered-containers < 0.2.11 + "GHC 8.10": # https://github.com/commercialhaskell/stackage/issues/5191 - compilation failures From 87e9efe81a3ca6148eca7626ed094841c32fb27a Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Wed, 17 Jun 2020 10:35:21 -0700 Subject: [PATCH 1652/2682] Disable typenums, #5450 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d9114e62..4715a7ba 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -208,7 +208,7 @@ packages: - butter < 0 # MonadFail "Iris Ward @AdituV": - - typenums + - typenums < 0 # ghc 8.10.1 https://github.com/commercialhaskell/stackage/issues/5450 "Jude Taylor @pikajude": - th-printf From 2a3c137e4a91c0c9a60e791aeda649bb2181b70e Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Wed, 17 Jun 2020 10:51:01 -0700 Subject: [PATCH 1653/2682] Disable witness, #5451 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4715a7ba..7cfbb717 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3152,7 +3152,7 @@ packages: "Ashley Yakeley @AshleyYakeley": - countable - - witness + - witness < 0 # ghc 8.10.1 https://github.com/commercialhaskell/stackage/issues/5451 - open-witness < 0 # MonadFail "Victor Denisov @VictorDenisov": From 7d4851d8558b0b131fab6d9938cf600328948f88 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Wed, 17 Jun 2020 10:53:25 -0700 Subject: [PATCH 1654/2682] Disable world-peace, #5452 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7cfbb717..ac1b9e26 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2427,7 +2427,7 @@ packages: - servant-rawm - servant-static-th - termonad < 0 # via gi-vte - - world-peace + - world-peace < 0 # ghc 8.10.1 https://github.com/commercialhaskell/stackage/issues/5452 - xml-html-qq < 0 # via heterocephalus - xml-indexed-cursor From f1380495436395935ded23866201ce0baea679f0 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Wed, 17 Jun 2020 11:31:18 -0700 Subject: [PATCH 1655/2682] Expect test failures for massiv --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ac1b9e26..68efb2c7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5622,6 +5622,7 @@ expected-test-failures: - yeshql-hdbc # https://github.com/tdammers/yeshql/issues/6 - yesod-gitrev # https://github.com/DanBurton/yesod-gitrev/issues/5 - chronos # https://github.com/commercialhaskell/stackage/issues/5443 + - massiv # Recursive deps https://github.com/fpco/stackage/issues/1818 - options From 95e6fc5f2920ef09c6953a1460d483d77b04e0f7 Mon Sep 17 00:00:00 2001 From: Emanuel Borsboom Date: Wed, 17 Jun 2020 17:06:28 -0700 Subject: [PATCH 1656/2682] CURATORS.md: clarify fpco/stack-build docker instructions for new LTS major versions --- CURATORS.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CURATORS.md b/CURATORS.md index da594cb2..624af5c1 100644 --- a/CURATORS.md +++ b/CURATORS.md @@ -294,7 +294,9 @@ problems on nightly or LTS major, you need to fix build-constraints.yaml (see info above). ### Building LTS minor releases -Before running the build, please make sure that the Dockerfile in `automated/dockerfiles/lts-X.Y` is up to date, where X is the major version that you're building and Y is the latest minor version of X for which a Dockerfile exists. If any changes need to be made, (eg, new GHC version), copy `lts-X.Y/Dockerfile` to `lts-X.Z/Dockerfile`, where Z is the minor version you're building, and include the new changes. +Before running the build, please make sure that the Dockerfile in `automated/dockerfiles/lts-X.Y` is up to date, where X is the major version that you're building and Y is the latest minor version of X for which a Dockerfile exists. + * If any changes need to be made, (eg, new GHC version), copy `automated/lts-X.Y/Dockerfile` to `automated/lts-X.Z/Dockerfile`, where Z is the minor version you're building, and include the new changes. + * If you are building the first release of a new LTS major version, create a new `lts-X.Z/Dockerfile` based on the previous LTS's, and adjust the variables at the top to match the requirements of the snapshot. Ensure that `STACK_VERSION` is the latest release of Stack, and `BOOTSTRAP_COMMIT` is the commit ID of this repo containing the version of the `bootstrap-commit.sh` used to build the snapshot. First run `build.sh` to regenerate updated `ltsXX/work/constraints.yaml` and `ltsXX/work/snapshot-incomplete.yaml` files. From 93545c031dcb3a7d272a8c32d53d4884c841cff1 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Thu, 18 Jun 2020 09:44:45 +0200 Subject: [PATCH 1657/2682] Move packages removed for GHC 8.10 under their maintainers --- build-constraints.yaml | 204 ++++++++++++----------------------------- 1 file changed, 58 insertions(+), 146 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e4aa28ac..e4ad5fa4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -16,7 +16,7 @@ packages: - byte-count-reader < 0 # ghc 8.10 "Allan Lukwago @epicallan": - - servant-errors + - servant-errors < 0 # ghc 8.10 via servant "Christian Charukiewicz @charukiewicz": - isbn @@ -172,7 +172,7 @@ packages: - control-dsl < 0 # via doctest-discover "Laurent P. René de Cotret @LaurentRDC": - - pandoc-plot + - pandoc-plot < 0 # ghc 8.10 via pandaoc "Andrew Newman @andrewfnewman": - geojson @@ -576,7 +576,7 @@ packages: - mbug < 0 # via http-client-0.6.1 "David Johnson @dmjio": - - miso + - miso < 0 # ghc 8.10 via servant - envy - s3-signer < 0 # via http-types # - google-translate # servant 0.12 @@ -758,7 +758,7 @@ packages: - psqueues - websockets - websockets-snap - - hakyll + - hakyll < 0 # ghc 8.10 via pandaoc "Sibi Prabakaran @psibi": - download @@ -1142,8 +1142,8 @@ packages: "Robert Klotzner @eskimor": - purescript-bridge - - servant-purescript - - servant-subscriber + - servant-purescript < 0 # ghc 8.10 via servant + - servant-subscriber < 0 # ghc 8.10 via servant "Rodrigo Setti @rodrigosetti": - messagepack @@ -1495,25 +1495,25 @@ packages: - bank-holidays-england < 0 # ghc 8.10 "Haskell Servant ": - - servant - - servant-blaze - - servant-cassava - - servant-client - - servant-client-core - - servant-conduit - - servant-docs - - servant-foreign + - servant < 0 # ghc 8.10 + - servant-blaze < 0 # ghc 8.10 via servant + - servant-cassava < 0 # ghc 8.10 via servant + - servant-client < 0 # ghc 8.10 via servant + - servant-client-core < 0 # ghc 8.10 via servant + - servant-conduit < 0 # ghc 8.10 via servant & unliftio-core + - servant-docs < 0 # ghc 8.10 via servant + - servant-foreign < 0 # ghc 8.10 via servant - servant-http-streams < 0 # via servant - - servant-js - - servant-lucid - - servant-machines - - servant-mock + - servant-js < 0 # ghc 8.10 via servant + - servant-lucid < 0 # ghc 8.10 via servant + - servant-machines < 0 # ghc 8.10 via servant + - servant-mock < 0 # ghc 8.10 via servant - servant-multipart < 0 # via servant - - servant-pipes - - servant-server - - servant-swagger - - servant-swagger-ui - - servant-swagger-ui-core + - servant-pipes < 0 # ghc 8.10 via servant + - servant-server < 0 # ghc 8.10 via servant + - servant-swagger < 0 # ghc 8.10 via servant & swagger2 + - servant-swagger-ui < 0 # ghc 8.10 via servant & swagger2 + - servant-swagger-ui-core < 0 # ghc 8.10 via servant & swagger2 "Optics ": - indexed-profunctors @@ -1690,7 +1690,7 @@ packages: - jose-jwt "Brendan Hay @brendanhay": - - amazonka + - amazonka < 0 # ghc 8.10 via unliftio-core - amazonka-core - amazonka-test - amazonka-apigateway @@ -1945,7 +1945,7 @@ packages: - flow # - github-release # requires uri-templater - json-feed - - lackey + - lackey < 0 # ghc 8.10 via servant - list-singleton - ratel - ratel-wai @@ -2083,7 +2083,7 @@ packages: - lens-family < 2.1.0 #https://github.com/commercialhaskell/stackage/issues/5182 "Justin Le @mstksg": - - advent-of-code-api + - advent-of-code-api < 0 # ghc 8.10 via servant - auto - backprop < 0 # via vinyl - bins @@ -2348,7 +2348,7 @@ packages: - ekg-wai < 0 # via ekg-json # - haxl-amazonka # http-conduit 2.3 via amazonka - hasql-migration < 0 # https://github.com/tvh/hasql-migration/issues/4 - - servant-JuicyPixels + - servant-JuicyPixels < 0 # ghc 8.10 via servant "Artyom @neongreen": - microlens @@ -2422,10 +2422,10 @@ packages: - pretty-simple - print-console-colors - read-env-var - - servant-checked-exceptions - - servant-checked-exceptions-core - - servant-rawm - - servant-static-th + - servant-checked-exceptions < 0 # ghc 8.10 via servant + - servant-checked-exceptions-core < 0 # ghc 8.10 via servant + - servant-rawm < 0 # ghc 8.10 via servant + - servant-static-th < 0 # ghc 8.10 via servant - termonad < 0 # via gi-vte - world-peace < 0 # ghc 8.10.1 https://github.com/commercialhaskell/stackage/issues/5452 - xml-html-qq < 0 # via heterocephalus @@ -2553,7 +2553,7 @@ packages: - strict-base-types - withdependencies < 0 - hruby - - language-puppet + - language-puppet < 0 # ghc 8.10 via servant - tar-conduit "Mark Karpov @mrkkrp": @@ -2762,7 +2762,7 @@ packages: # - language-dockerfile # https://github.com/beijaflor-io/haskell-language-dockerfile/issues/11 "Pascal Hartig @passy": - - giphy-api + - giphy-api < 0 # ghc 8.10 via servant - optparse-text "rightfold @rightfold": @@ -2853,8 +2853,8 @@ packages: - doclayout - doctemplates - emojis - - pandoc - - pandoc-citeproc + - pandoc < 0 # ghc 8.10 via haddock-library + - pandoc-citeproc < 0 # ghc 8.10 via pandaoc - HsYAML-aeson - ipynb #< 0 # via aeson-diff @@ -2951,12 +2951,12 @@ packages: "John Ky newhoggy@gmail.com @newhoggy": - aeson-lens - - antiope-core - - antiope-dynamodb - - antiope-messages - - antiope-s3 - - antiope-sns - - antiope-sqs + - antiope-core < 0 # ghc 8.10 via amazonka + - antiope-dynamodb < 0 # ghc 8.10 via amazonka + - antiope-messages < 0 # ghc 8.10 via amazonka + - antiope-s3 < 0 # ghc 8.10 via amazonka + - antiope-sns < 0 # ghc 8.10 via amazonka + - antiope-sqs < 0 # ghc 8.10 via amazonka - arbor-lru-cache - arbor-postgres < 0 # generic-lens 2.0.0.0 - asif < 0 # hw-ip due to generic-lens 2.0.0.0 @@ -3273,7 +3273,7 @@ packages: - butcher - czipwith - data-tree-print < 0 # ghc 8.10 - - brittany + - brittany < 0 # ghc 8.10 via ghc-exactprint "Ryan Mulligan @ryantm": - HDBC-mysql < 0 # via HDBC @@ -3441,7 +3441,7 @@ packages: - sdl2-gfx "Aditya Manthramurthy @donatello": - - minio-hs + - minio-hs < 0 # ghc 8.10 via protolude "ncaq @ncaq": - debug-trace-var @@ -3552,7 +3552,7 @@ packages: - async-refresh-tokens - type-level-integers - partial-order < 0 - - async-timer + - async-timer < 0 # ghc 8.10 via unliftio-core # - nakadi-client # http-conduit 2.3 - throttle-io-stream - conduit-throttle < 0 # via test-framework @@ -3659,10 +3659,10 @@ packages: - elm-street < 0 # via base-4.13.0.0 & warp-3.3.2 "Noel Kwan @kwannoel": - - servant-docs-simple + - servant-docs-simple < 0 # ghc 8.10 via servant "Lorenz Moesenlechner @moesenle": - - servant-websockets + - servant-websockets < 0 # ghc 8.10 via servant-server "Daniel Campoverde @alx741": - currencies @@ -3899,17 +3899,19 @@ packages: "Domen Kozar @domenkozar": - elm2nix - - mixpanel-client + - mixpanel-client < 0 # ghc 8.10 via servant - netrc < 0 # ghc 8.10 - pretty-sop - servant-auth < 0 # ghc 8.10 - - servant-auth-server + - servant-auth-server < 0 # ghc 8.10 via servant - servant-auth-client < 0 # via warp-3.3.2 - - servant-auth-swagger - - servant-auth-docs - - servant-elm + - servant-auth-swagger < 0 # ghc 8.10 via servant + - servant-auth-docs < 0 # ghc 8.10 via servant + - servant-elm < 0 # ghc 8.10 via servant - systemd + + "Andre Van Der Merwe @andrevdm": - bhoogle < 0 - hyraxAbif < 0 # ghc 8.10 @@ -4065,7 +4067,7 @@ packages: - kazura-queue "Eric Torreborre @etorreborre": - - registry + - registry < 0 # ghc 8.10 via protolude "Ryota Kameoka @ryota-ka": - duration @@ -4149,7 +4151,7 @@ packages: - rope-utf16-splay "Venkateswara Rao Mandela @vmandela": - - pandoc-csv2table + - pandoc-csv2table < 0 # ghc 8.10 via pandaoc "Elben Shira @elben": - pencil < 0 # via hsass @@ -4504,7 +4506,7 @@ packages: - lifted-base - loch-th - lockfree-queue - - log-base + - log-base < 0 # ghc 8.10 via unliftio-core - logging-facade - lukko - lrucache @@ -4602,8 +4604,8 @@ packages: - servant-client-core - servant-swagger-ui - servant-swagger-ui-core - - servant-swagger-ui-redoc - - servant-yaml + - servant-swagger-ui-redoc < 0 # ghc 8.10 via servant & swagger2 + - servant-yaml < 0 # ghc 8.10 via servant - semialign - semialign-indexed - semialign-optics @@ -4837,96 +4839,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5449 - unordered-containers < 0.2.11 - "GHC 8.10": - - # https://github.com/commercialhaskell/stackage/issues/5191 - compilation failures - - servant < 0 - - # haddock-library-1.9.0 ([changelog](http://hackage.haskell.org/package/haddock-library-1.9.0/changelog)) (Alex Biehl @alexbiehl) is out of bounds for: - - pandoc < 0 - - - # protolude-0.3.0 ([changelog](http://hackage.haskell.org/package/protolude-0.3.0/changelog)) (Stephen Diehl @sdiehl) is out of bounds for: - - minio-hs < 0 - - registry < 0 - - - # servant (Haskell Servant , Stackage upper bounds) (not present) depended on by: - - advent-of-code-api < 0 - - giphy-api < 0 - - lackey < 0 - - language-puppet < 0 - - miso < 0 - - mixpanel-client < 0 - - servant-JuicyPixels < 0 - - servant-auth-docs < 0 - - servant-auth-server < 0 - - servant-auth-swagger < 0 - - servant-blaze < 0 - - servant-cassava < 0 - - servant-checked-exceptions < 0 - - servant-checked-exceptions-core < 0 - - servant-client < 0 - - servant-client-core < 0 - - servant-conduit < 0 - - servant-docs < 0 - - servant-docs-simple < 0 - - servant-elm < 0 - - servant-errors < 0 - - servant-foreign < 0 - - servant-js < 0 - - servant-lucid < 0 - - servant-machines < 0 - - servant-mock < 0 - - servant-pipes < 0 - - servant-purescript < 0 - - servant-rawm < 0 - - servant-server < 0 - - servant-static-th < 0 - - servant-subscriber < 0 - - servant-swagger < 0 - - servant-swagger-ui < 0 - - servant-swagger-ui-core < 0 - - servant-swagger-ui-redoc < 0 - - servant-yaml < 0 - - - # swagger2-2.6 ([changelog](http://hackage.haskell.org/package/swagger2-2.6/changelog)) (Nickolay Kudasov @fizruk) is out of bounds for: - - servant-swagger < 0 - - servant-swagger-ui < 0 - - servant-swagger-ui-core < 0 - - servant-swagger-ui-redoc < 0 - - - # unliftio-core-0.2.0.1 ([changelog](http://hackage.haskell.org/package/unliftio-core-0.2.0.1/changelog)) (Michael Snoyman michael@snoyman.com @snoyberg) is out of bounds for: - - amazonka < 0 - - async-timer < 0 - - log-base < 0 - - servant-conduit < 0 - - # amazonka (Brendan Hay @brendanhay, Stackage upper bounds) (not present) depended on by: - - antiope-core < 0 - - antiope-dynamodb < 0 - - antiope-messages < 0 - - antiope-s3 < 0 - - antiope-sns < 0 - - antiope-sqs < 0 - - - # pandoc (John MacFarlane @jgm, Stackage upper bounds) (not present) depended on by: - - hakyll < 0 - - pandoc-citeproc < 0 - - pandoc-csv2table < 0 - - pandoc-plot < 0 - - pandoc-pyplot < 0 - - - # servant-server (Haskell Servant , Stackage upper bounds) (not present) depended on by: - - servant-websockets < 0 - - # ghc-exactprint-0.6.3.1 ([changelog](http://hackage.haskell.org/package/ghc-exactprint-0.6.3.1/changelog)) (Alan Zimmerman @alanz) is out of bounds for: - - brittany < 0 - # end of packages From 47a9dfa6e4ca87cf4cdb5c69910e8b61ec3d132a Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Thu, 18 Jun 2020 10:10:28 +0200 Subject: [PATCH 1658/2682] Re-enable genvalidity-containers tests --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e4ad5fa4..18970d20 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5512,7 +5512,6 @@ expected-test-failures: - async-timer # https://github.com/mtesseract/async-timer/issues/8 - commutative # https://github.com/athanclark/commutative/issues/4 - conduit-throttle # https://github.com/mtesseract/conduit-throttle/issues/12 - - genvalidity-containers # https://github.com/NorfairKing/validity/issues/83 - haddock - haskell-tools-builtin-refactorings - hweblib # https://github.com/aycanirican/hweblib/issues/3 From 50250a4304ecce1b9ce891205f7fed804a3bc68c Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Thu, 18 Jun 2020 11:03:54 -0700 Subject: [PATCH 1659/2682] Add upper bound for dhall and related packages, #5454 --- build-constraints.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 18970d20..895bf766 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4839,6 +4839,11 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5449 - unordered-containers < 0.2.11 + # https://github.com/commercialhaskell/stackage/issues/5454 + - dhall < 1.33 + - dhall-bash < 1.0.31 + - dhall-json < 1.7 + # end of packages From f1858207bb00361519e3ff84221a40821180d945 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Thu, 18 Jun 2020 12:50:18 -0700 Subject: [PATCH 1660/2682] Remove upper bounds for dhall, closes #5454 --- build-constraints.yaml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 895bf766..18970d20 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4839,11 +4839,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5449 - unordered-containers < 0.2.11 - # https://github.com/commercialhaskell/stackage/issues/5454 - - dhall < 1.33 - - dhall-bash < 1.0.31 - - dhall-json < 1.7 - # end of packages From f753f86a0e18cd38ee721253751478268c7263ab Mon Sep 17 00:00:00 2001 From: Simon Jakobi Date: Fri, 19 Jun 2020 03:18:28 +0200 Subject: [PATCH 1661/2682] Re-enable checkers and move it to my packages Fixes #5433. --- build-constraints.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 18970d20..66c5a33e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -474,6 +474,7 @@ packages: - bsb-http-chunked - coercible-utils < 0 # ghc 8.10 - hspec-parsec + - checkers "Joe M @joe9": - logger-thread < 0 # via protolude @@ -965,7 +966,7 @@ packages: "Mario Blazevic @blamario": - monad-parallel - monad-coroutine - - incremental-parser < 0 # via checkers + - incremental-parser - monoid-subclasses - picoparsec < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build - rank2classes @@ -1484,7 +1485,7 @@ packages: - ghcjs-perch < 0 # build failure with GHC 8.4 "Tom Ellis @tomjaguarpaw": - - opaleye < 0 # via checkers + - opaleye - product-profunctors "Samplecount stefan@samplecount.com @kaoskorobase": @@ -1671,7 +1672,7 @@ packages: - getopt-generics - graph-wrapper - string-conversions - - hspec-checkers < 0 # via checkers + - hspec-checkers - FindBin "Jan Stolarek @jstolarek": @@ -4345,7 +4346,6 @@ packages: - cereal - cereal-text - cereal-vector - - checkers < 0 # https://github.com/commercialhaskell/stackage/issues/5433 - chunked-data - cipher-aes128 < 0 # via Cabal-3.0.0.0 - cipher-blowfish < 0 # MonadFail @@ -4526,7 +4526,7 @@ packages: - monads-tf - mono-traversable-instances - mono-traversable-keys - - multiset < 0 # via checkers + - multiset - mwc-random - names-th - nanospec From f130e511ab2685a72320c9e26841e11b418b7476 Mon Sep 17 00:00:00 2001 From: Emanuel Borsboom Date: Thu, 18 Jun 2020 19:05:16 -0700 Subject: [PATCH 1662/2682] Dockerfile for fpco/stack-build:lts-16.x --- CURATORS.md | 2 +- automated/dockerfiles/build.sh | 12 ++- automated/dockerfiles/lts-16.0/Dockerfile | 90 +++++++++++++++++++++++ 3 files changed, 100 insertions(+), 4 deletions(-) create mode 100644 automated/dockerfiles/lts-16.0/Dockerfile diff --git a/CURATORS.md b/CURATORS.md index 624af5c1..1af57988 100644 --- a/CURATORS.md +++ b/CURATORS.md @@ -296,7 +296,7 @@ info above). ### Building LTS minor releases Before running the build, please make sure that the Dockerfile in `automated/dockerfiles/lts-X.Y` is up to date, where X is the major version that you're building and Y is the latest minor version of X for which a Dockerfile exists. * If any changes need to be made, (eg, new GHC version), copy `automated/lts-X.Y/Dockerfile` to `automated/lts-X.Z/Dockerfile`, where Z is the minor version you're building, and include the new changes. - * If you are building the first release of a new LTS major version, create a new `lts-X.Z/Dockerfile` based on the previous LTS's, and adjust the variables at the top to match the requirements of the snapshot. Ensure that `STACK_VERSION` is the latest release of Stack, and `BOOTSTRAP_COMMIT` is the commit ID of this repo containing the version of the `bootstrap-commit.sh` used to build the snapshot. + * If you are building the first release of a new LTS major version, create a new `lts-X.Z/Dockerfile` based on the previous LTS's, and adjust the variables at the top to match the requirements of the snapshot. Ensure that `STACK_VERSION` is the latest release of Stack, and `BOOTSTRAP_COMMIT` is the commit ID of this repo containing the version of the `bootstrap-commit.sh` used to build the snapshot. Also ensure the FROM image's Ubuntu version matches that used in the [root Dockerfile](Dockerfile) used to build this snapshot. First run `build.sh` to regenerate updated `ltsXX/work/constraints.yaml` and `ltsXX/work/snapshot-incomplete.yaml` files. diff --git a/automated/dockerfiles/build.sh b/automated/dockerfiles/build.sh index 489a8bbd..b310841b 100755 --- a/automated/dockerfiles/build.sh +++ b/automated/dockerfiles/build.sh @@ -106,9 +106,15 @@ LTS_MINOR="${LTS_VERSION#*.}" # Determine latest LTS version # -mkdir -p $HOME/.local/bin -curl -o $HOME/.local/bin/jq -L https://github.com/stedolan/jq/releases/download/jq-1.6/jq-linux64 -chmod +x $HOME/.local/bin/jq +if [[ ! -x "$HOME/.local/bin/jq" ]]; then + mkdir -p $HOME/.local/bin + if [[ "$(uname)" = "Darwin" ]]; then + curl -o $HOME/.local/bin/jq -L https://github.com/stedolan/jq/releases/download/jq-1.6/jq-osx-amd64 + else + curl -o $HOME/.local/bin/jq -L https://github.com/stedolan/jq/releases/download/jq-1.6/jq-linux64 + fi + chmod +x $HOME/.local/bin/jq +fi LATEST_LTS_SLUG=$($HOME/.local/bin/jq -r ".[\"lts\"]" $SNAPSHOTS) LATEST_LTS_VERSION="${LATEST_LTS_SLUG#lts-}" diff --git a/automated/dockerfiles/lts-16.0/Dockerfile b/automated/dockerfiles/lts-16.0/Dockerfile new file mode 100644 index 00000000..7588bfa9 --- /dev/null +++ b/automated/dockerfiles/lts-16.0/Dockerfile @@ -0,0 +1,90 @@ +FROM ubuntu:18.04 + +LABEL maintainer="manny@fpcomplete.com" + +ARG GHC_VERSION=8.8.3 +ARG LTS_SLUG=lts-16.0 +ARG PID1_VERSION=0.1.2.0 +ARG STACK_VERSION=2.3.1 +ARG CUDA_VERSION=10.0 +ARG JVM_PATH=/usr/lib/jvm/java-8-openjdk-amd64 +ARG LLVM_PATH=/usr/lib/llvm-7 +ARG BOOTSTRAP_COMMIT=1afd08ff0a3c3627f17eb1b928d35f337db40e08 + +ARG DEBIAN_FRONTEND=noninteractive +ARG VARIANT=build +ARG STACK_ROOT=/home/stackage/.stack + +# +# Set encoding to UTF-8 and PATH to find GHC and cabal/stack-installed binaries. +# + +ENV LANG=C.UTF-8 \ + LC_ALL=C.UTF-8 \ + PATH=/root/.local/bin:/usr/local/cuda-$CUDA_VERSION/bin:$STACK_ROOT/programs/x86_64-linux/ghc-$GHC_VERSION/bin:$PATH \ + CUDA_PATH=/usr/local/cuda-$CUDA_VERSION \ + CPATH=$JVM_PATH/include:$JVM_PATH/include/linux:$LLVM_PATH/include + +# +# Install pre-requisites +# + +RUN apt-get update && \ + apt-get install -y --no-install-recommends \ + wget netbase ca-certificates g++ gcc libc6-dev libffi-dev libgmp-dev \ + make xz-utils zlib1g-dev git gnupg libtinfo-dev jq && \ + rm -rf /var/lib/apt/lists/* + +# +# Use Stackage's debian-bootstrap.sh script to install system libraries and +# tools required to build any Stackage package. +# Re-installs 'stack' *after* running debian-bootstrap.sh since that may have +# installed a different version. +# In the case of 'small' image, just install Stack and GHC. +# + +RUN if [ "$VARIANT" != "small" ]; then \ + wget -qO- https://raw.githubusercontent.com/fpco/stackage/$BOOTSTRAP_COMMIT/debian-bootstrap.sh | sed "s/^GHCVER=8.6.5$/GHCVER=$GHC_VERSION/" | GHCVER=$GHC_VERSION bash; \ + fi && \ + wget -qO- https://github.com/commercialhaskell/stack/releases/download/v$STACK_VERSION/stack-$STACK_VERSION-linux-x86_64.tar.gz | tar xz --wildcards --strip-components=1 -C /usr/bin '*/stack' && \ + if [ "$VARIANT" = "small" ]; then \ + stack setup --resolver ghc-$GHC_VERSION; \ + fi && \ + rm -rf /var/lib/apt/lists/* && \ + cd $STACK_ROOT && \ + find . -type f -not -path "./programs/x86_64-linux/ghc-$GHC_VERSION/*" -exec rm '{}' \; && \ + find . -type d -print0 |sort -rz |xargs -0 rmdir 2>/dev/null || true + +# +# Configure Stack to use the GHC installed in the Docker image rather than installing its own +# + +RUN mkdir /etc/stack/ && \ + echo "system-ghc: true" >/etc/stack/config.yaml + +# +# Use 'stack' to install basic Haskell tools like alex, happy, and cpphs. We +# remove most of the STACK_ROOT afterward to save space, but keep the 'share' +# files that some of these tools require. +# + +RUN stack --resolver=$LTS_SLUG --local-bin-path=/usr/bin install \ + happy alex cpphs gtk2hs-buildtools hscolour hlint hindent && \ + cd $STACK_ROOT && \ + find . -type f -not -path './snapshots/*/share/*' -and -not -path "./programs/x86_64-linux/ghc-$GHC_VERSION/*" -exec rm '{}' \; && \ + find . -type d -print0 |sort -rz |xargs -0 rmdir 2>/dev/null || true + +# +# Install 'pid1' init daemon +# + +RUN wget -O- "https://github.com/fpco/pid1/releases/download/v$PID1_VERSION/pid1-$PID1_VERSION-linux-x86_64.tar.gz" | tar xzf - -C /usr/local && \ + chown root:root /usr/local/sbin && \ + chown root:root /usr/local/sbin/pid1 + +# +# Set up pid1 entrypoint and default command +# + +ENTRYPOINT ["/usr/local/sbin/pid1"] +CMD ["bash"] From d2d94d5486cdff152e60d0ad7d9d108207c16db5 Mon Sep 17 00:00:00 2001 From: Masahiro Honma Date: Fri, 19 Jun 2020 18:31:43 +0900 Subject: [PATCH 1663/2682] add string-random --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 18970d20..846e327b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4279,6 +4279,9 @@ packages: "Eric Rochester @erochest": - text-regex-replace + "Masahiro Honma @hiratara": + - string-random + "Grandfathered dependencies": - network - Boolean From 47ae87e81888d32531ed76af60dfe0fad874f3db Mon Sep 17 00:00:00 2001 From: nilsalex Date: Fri, 19 Jun 2020 16:27:09 +0200 Subject: [PATCH 1664/2682] Re-add sparse-tensor dependencies fixed in new hackage release sparse-tensor-0.2.1.4 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 18970d20..dbd98e6a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -61,7 +61,7 @@ packages: - generic-monoid "Tobias Reinhart @TobiReinhart": - - sparse-tensor < 0 # ghc 8.10 + - sparse-tensor "Stephan Schiffels @stschiff": - sequence-formats From 5c4e4cc2e011997d1e19e6a2f485283a02e8f78d Mon Sep 17 00:00:00 2001 From: Sibi Prabakaran Date: Fri, 19 Jun 2020 22:29:03 +0530 Subject: [PATCH 1665/2682] Un constrain fakedata package --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c68553a2..c7523f06 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -775,7 +775,7 @@ packages: - xmonad-extras < 0 # ghc 8.10 - shelly - persistent-redis < 0 # GHC 8.4 via hedis - - fakedata < 0.7.0 # https://github.com/commercialhaskell/stackage/issues/5412 + - fakedata - streamly-bytestring "haskell-openal": From 55663e6a4f860b4fcef11a9b13e35d0ea0554bbc Mon Sep 17 00:00:00 2001 From: Taylor Fausak Date: Fri, 19 Jun 2020 14:18:21 -0400 Subject: [PATCH 1666/2682] Add @tfausak's packages Re-enabled github-release. Added burrito, rampart, and splint. Commented out lackey and rattletrap. Removed postgresql-simple-migration and statestack. --- build-constraints.yaml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c68553a2..9f9a1174 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1942,23 +1942,24 @@ packages: "Taylor Fausak @tfausak": - autoexporter + - burrito - derulo - flow - # - github-release # requires uri-templater + - github-release - json-feed - - lackey < 0 # ghc 8.10 via servant + # - lackey # servant - list-singleton + - rampart - ratel - ratel-wai - # - rattletrap # requires binary-bits + # - rattletrap # binary-bits - salve + - splint - strive - wuss - bmp # @benl23x5 - gpolyline # @fegu - - postgresql-simple-migration < 0 # via time-1.9.3 # @ameingast - - statestack < 0 # ghc 8.10 "Marios Titas @redneb": - HsOpenSSL-x509-system < 0 # via HsOpenSSL From f5249b565d6a628df020cda76b155cd5dad4974b Mon Sep 17 00:00:00 2001 From: Eric Torreborre Date: Sat, 20 Jun 2020 18:09:00 +0200 Subject: [PATCH 1667/2682] Update build-constraints.yaml I added a few CPP commands + tested on the latest stackage nightly. The version I uploaded with all the changes is `0.1.9.0`. I also fixed #5302. Please tell me if I need to do anything else. Thanks! --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1fda5a9d..e455a21f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4069,7 +4069,7 @@ packages: - kazura-queue "Eric Torreborre @etorreborre": - - registry < 0 # ghc 8.10 via protolude + - registry "Ryota Kameoka @ryota-ka": - duration From 6664d87572d0b39f8ec8cd1bbcdb86bf48805f17 Mon Sep 17 00:00:00 2001 From: Eric Conlon Date: Sat, 20 Jun 2020 13:35:23 -0700 Subject: [PATCH 1668/2682] Re-enabling linenoise-0.3.2 in nightly --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1fda5a9d..485374ab 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4216,8 +4216,8 @@ packages: "Eric Conlon @ejconlon": - blanks - - climb < 0 # via linenoise - - linenoise < 0 # https://github.com/commercialhaskell/stackage/issues/5442 + - climb < 0 # via linenoise, https://github.com/commercialhaskell/stackage/issues/5442 + - linenoise - little-rio - little-logger # Maintainership with @23Skidoo From 49db29788e20aa0f68535b03bd6088f938b5b30b Mon Sep 17 00:00:00 2001 From: david Date: Sat, 20 Jun 2020 22:54:05 +0200 Subject: [PATCH 1669/2682] add morpheus graphql client --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1fda5a9d..174e2a71 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4200,6 +4200,7 @@ packages: "Davit Nalchevanidze @nalchevanidze": - morpheus-graphql - morpheus-graphql-core + - morpheus-graphql-client "Satoshi Egi @egisatoshi": - egison From 394459f6bc6ec14531adca585d9183090f8e6cd7 Mon Sep 17 00:00:00 2001 From: Emily Pillmore Date: Sat, 20 Jun 2020 18:19:46 -0400 Subject: [PATCH 1670/2682] Unmask `lens-process` --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1fda5a9d..cb777842 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -82,7 +82,7 @@ packages: - base32-lens - base64 - base64-lens - - lens-process < 0 # via lens-4.18.1 + - lens-process - microlens-process - nonempty-vector - smash From 3d70e94475f24a28a4caabd97f3660e00d3827e0 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Sat, 20 Jun 2020 17:36:22 -0700 Subject: [PATCH 1671/2682] Add upper bound for repline, #5465 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1fda5a9d..16e3f11a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4843,6 +4843,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5449 - unordered-containers < 0.2.11 + # https://github.com/commercialhaskell/stackage/issues/5465 + - repline < 0.4 + # end of packages From 535bd6244b83d162dc34dfad034a562e1f4fd3c5 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Sun, 21 Jun 2020 13:11:04 -0700 Subject: [PATCH 1672/2682] Add upper bound for cryptonite, #5466 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 72501b41..71d4ec58 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4847,6 +4847,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5465 - repline < 0.4 + # https://github.com/commercialhaskell/stackage/issues/5466 + - cryptonite < 0.27 + # end of packages From 57a61661a081fa65b8f75591b27bf5cf4ebcd3f4 Mon Sep 17 00:00:00 2001 From: Simon Jakobi Date: Sun, 21 Jun 2020 00:32:32 +0200 Subject: [PATCH 1673/2682] Add hnix to my packages --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 71d4ec58..31690b40 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -475,6 +475,7 @@ packages: - coercible-utils < 0 # ghc 8.10 - hspec-parsec - checkers + - hnix "Joe M @joe9": - logger-thread < 0 # via protolude From 209fedf15ca01449f7c00fd38088d327220e9bae Mon Sep 17 00:00:00 2001 From: Simon Jakobi Date: Sun, 21 Jun 2020 00:34:48 +0200 Subject: [PATCH 1674/2682] Add missing hnix dependencies to my packages --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 31690b40..3f71941b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -476,6 +476,10 @@ packages: - hspec-parsec - checkers - hnix + - hashing + - hnix-store-core + - monadlist + - ref-tf "Joe M @joe9": - logger-thread < 0 # via protolude From 30d72590469b73c1e1a4f6ac7fa413d8a4618662 Mon Sep 17 00:00:00 2001 From: Joshua Chia Date: Mon, 22 Jun 2020 10:02:31 +0800 Subject: [PATCH 1675/2682] Reenabled bzlib --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3f71941b..38d30ad0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -82,7 +82,7 @@ packages: - base32-lens - base64 - base64-lens - - lens-process + - lens-process - microlens-process - nonempty-vector - smash @@ -4346,7 +4346,7 @@ packages: - bytestring-strict-builder - bytestring-tree-builder - byte-order - - bzlib < 0 # via base-4.13.0.0 + - bzlib - ca-province-codes - cabal-doctest - call-stack From 0d3bfd719cdcfaa11e016539307aebb4969984c6 Mon Sep 17 00:00:00 2001 From: Hiromi ISHII Date: Mon, 22 Jun 2020 17:59:29 +0900 Subject: [PATCH 1676/2682] Revives ghc-typelits-presburger and others (fixes #5438) --- build-constraints.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3f71941b..59ac9fd2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4250,10 +4250,10 @@ packages: "Hiromi Ishii @konn": - equational-reasoning - - ghc-typelits-presburger < 0 # ghc 8.10.1 https://github.com/commercialhaskell/stackage/issues/5438 - - singletons-presburger < 0 # via ghc-typelits-presburger - - type-natural < 0 # ghc 8.10 - - sized < 0 # ghc 8.10 + - ghc-typelits-presburger + - singletons-presburger + - type-natural + - sized "Frank Doepper @woffs": - amqp-utils From b6b7f3d34fc6506307e14de602bcdbbab569c52a Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Mon, 22 Jun 2020 08:13:58 -0700 Subject: [PATCH 1677/2682] Expect test failures for hnix, #5469 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3f71941b..4abb046d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5503,6 +5503,7 @@ expected-test-failures: - crypto-pubkey # https://github.com/vincenthz/hs-crypto-pubkey/issues/23 - doctest-discover # 0.1.0.9 https://github.com/karun012/doctest-discover/issues/22 - doctest + - hnix # https://github.com/commercialhaskell/stackage/issues/5469 # Assertion failures, these can be real bugs or just limitations # in the test cases. From a08cbd39766566f802f66a00db38e9dd263bb6d8 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Mon, 22 Jun 2020 08:17:11 -0700 Subject: [PATCH 1678/2682] Expect test failures for http-client, #5470 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4abb046d..6258c98c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5522,6 +5522,7 @@ expected-test-failures: - simple-vec3 # https://github.com/commercialhaskell/stackage/pull/5410 - bech32-th # https://github.com/commercialhaskell/stackage/issues/5432 - haskeline # https://github.com/commercialhaskell/stackage/issues/5439 + - http-client # https://github.com/commercialhaskell/stackage/issues/5470 # Compilation failures - ListLike # No issue tracker, e-mail sent to maintainer From aa6fdf1f642cf5176ee0a5ea74d1f3ee78059cd7 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Mon, 22 Jun 2020 08:19:26 -0700 Subject: [PATCH 1679/2682] Expect test failures for http-directory, #5471 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6258c98c..abff70b5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5523,6 +5523,7 @@ expected-test-failures: - bech32-th # https://github.com/commercialhaskell/stackage/issues/5432 - haskeline # https://github.com/commercialhaskell/stackage/issues/5439 - http-client # https://github.com/commercialhaskell/stackage/issues/5470 + - http-directory # https://github.com/commercialhaskell/stackage/issues/5471 # Compilation failures - ListLike # No issue tracker, e-mail sent to maintainer From c523f39545db7384a3fcd5bc72669ae0c366b5d0 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Mon, 22 Jun 2020 08:24:13 -0700 Subject: [PATCH 1680/2682] Expect test failures for req, #5472 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index abff70b5..03886f7f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5524,6 +5524,7 @@ expected-test-failures: - haskeline # https://github.com/commercialhaskell/stackage/issues/5439 - http-client # https://github.com/commercialhaskell/stackage/issues/5470 - http-directory # https://github.com/commercialhaskell/stackage/issues/5471 + - req # https://github.com/commercialhaskell/stackage/issues/5472 # Compilation failures - ListLike # No issue tracker, e-mail sent to maintainer From d4f73c997b0353424c5162f1aa385e20e068913e Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Wed, 24 Jun 2020 00:35:24 +0100 Subject: [PATCH 1681/2682] random-1.2.0, repline-0.4.0.0 --- build-constraints.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0c0e7c05..66531a0f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -82,7 +82,7 @@ packages: - base32-lens - base64 - base64-lens - - lens-process + - lens-process - microlens-process - nonempty-vector - smash @@ -4849,12 +4849,11 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5449 - unordered-containers < 0.2.11 - # https://github.com/commercialhaskell/stackage/issues/5465 - - repline < 0.4 - # https://github.com/commercialhaskell/stackage/issues/5466 - cryptonite < 0.27 + # https://github.com/commercialhaskell/stackage/issues/5474 + - random < 1.2.0 # end of packages From b328ceac76d5072e38c4fcdcaabd978a92d60ba1 Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Wed, 24 Jun 2020 07:25:44 +0100 Subject: [PATCH 1682/2682] Color-0.2.0 --- build-constraints.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 66531a0f..1dc5b068 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -475,7 +475,7 @@ packages: - coercible-utils < 0 # ghc 8.10 - hspec-parsec - checkers - - hnix + - hnix < 0 # https://github.com/haskell-nix/hnix/issues/651 - hashing - hnix-store-core - monadlist @@ -3378,10 +3378,10 @@ packages: - wai-middleware-auth < 0 # via hoauth2 # - hip # lens 4.16 via diagrams/chart - massiv - - massiv-io + - massiv-io < 0.3.0.0 # https://github.com/lehins/massiv-io/issues/1 - massiv-test - scheduler - - Color + - Color < 0.2.0 # https://github.com/commercialhaskell/stackage/issues/5475 - safe-decimal - flush-queue - pvar @@ -5502,7 +5502,7 @@ expected-test-failures: - crypto-pubkey # https://github.com/vincenthz/hs-crypto-pubkey/issues/23 - doctest-discover # 0.1.0.9 https://github.com/karun012/doctest-discover/issues/22 - doctest - - hnix # https://github.com/commercialhaskell/stackage/issues/5469 + - hnix # (tests) https://github.com/commercialhaskell/stackage/issues/5469 # Assertion failures, these can be real bugs or just limitations # in the test cases. From f0ed379d73b1d6d4cba752951742fd4d4689d708 Mon Sep 17 00:00:00 2001 From: Alexey Kuleshevich Date: Wed, 24 Jun 2020 16:36:56 +0300 Subject: [PATCH 1683/2682] Reinstate `wai-middleware-auth` --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c630516f..60c70a26 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3375,7 +3375,7 @@ packages: # - printcess # lens 4.16 "Alexey Kuleshevich @lehins": - - wai-middleware-auth < 0 # via hoauth2 + - wai-middleware-auth # - hip # lens 4.16 via diagrams/chart - massiv - massiv-io < 0.3.0.0 # https://github.com/lehins/massiv-io/issues/1 From 1684533968644dca7a6f0c0e2c1df710b9071d89 Mon Sep 17 00:00:00 2001 From: Alexey Kuleshevich Date: Wed, 24 Jun 2020 16:38:39 +0300 Subject: [PATCH 1684/2682] Reinstate `massiv-io` and `Color` --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c630516f..adbbb335 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3378,10 +3378,10 @@ packages: - wai-middleware-auth < 0 # via hoauth2 # - hip # lens 4.16 via diagrams/chart - massiv - - massiv-io < 0.3.0.0 # https://github.com/lehins/massiv-io/issues/1 + - massiv-io - massiv-test - scheduler - - Color < 0.2.0 # https://github.com/commercialhaskell/stackage/issues/5475 + - Color - safe-decimal - flush-queue - pvar From 8935761ec7ea2e9bfd3138369d9f44072540354c Mon Sep 17 00:00:00 2001 From: Eric Conlon Date: Wed, 24 Jun 2020 08:32:45 -0700 Subject: [PATCH 1685/2682] Re-enable climb-0.3.3 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c630516f..5842e119 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4222,7 +4222,7 @@ packages: "Eric Conlon @ejconlon": - blanks - - climb < 0 # via linenoise, https://github.com/commercialhaskell/stackage/issues/5442 + - climb - linenoise - little-rio - little-logger From f1e0b12fb6d68bdb8058763624f4c20eb6f31e0a Mon Sep 17 00:00:00 2001 From: Sandy Maguire Date: Thu, 25 Jun 2020 00:36:59 -0700 Subject: [PATCH 1686/2682] Add test-fun and quickcheck-higheroder --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index c630516f..c87641df 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -494,6 +494,8 @@ packages: - scanf - show-combinators - type-map + - quickcheck-higherorder + - test-fun "Tobias Dammers @tdammers": - ginger From f32ef83ef4211a7100116f3aea258b5a542311c7 Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Thu, 25 Jun 2020 20:46:39 +0100 Subject: [PATCH 1687/2682] aeson-yaml-1.1.0.0 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index c630516f..ce214fa2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4855,6 +4855,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5474 - random < 1.2.0 + # + - aeson-yaml < 1.1.0.0 + # end of packages # Package flags are applied to individual packages, and override the values of From 7e77aed4d8aa9e097ac3191cdaee39037b4f6409 Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Thu, 25 Jun 2020 20:58:17 +0100 Subject: [PATCH 1688/2682] aeson-yaml-1.1.0.0 issue --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ce214fa2..2d9cc43e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4855,7 +4855,7 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5474 - random < 1.2.0 - # + # https://github.com/commercialhaskell/stackage/issues/5481 - aeson-yaml < 1.1.0.0 # end of packages From 21264c656b92883bb99da4ef2206c64c7d2b0652 Mon Sep 17 00:00:00 2001 From: locallycompact Date: Thu, 25 Jun 2020 20:46:12 +0000 Subject: [PATCH 1689/2682] Add aeson-with and path-extensions --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2d9cc43e..f4359ba3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3901,6 +3901,8 @@ packages: - transformers-fix "Dan Firth @locallycompact": + - aeson-with + - path-extensions - shake-plus - within From 723f363dbe5090501614a7061d5eb965f0ec11e9 Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Fri, 26 Jun 2020 06:48:49 +0100 Subject: [PATCH 1690/2682] primitive causing package loop? --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2d9cc43e..85bdb68c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4858,6 +4858,8 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5481 - aeson-yaml < 1.1.0.0 + - primitive < 0.7.1.0 + # end of packages # Package flags are applied to individual packages, and override the values of From 876747fcb0c62067bfdc1628e09211a5bf9b4b17 Mon Sep 17 00:00:00 2001 From: Simon Jakobi Date: Fri, 26 Jun 2020 14:18:33 +0200 Subject: [PATCH 1691/2682] Unrestrict unordered-containers and move it to my packages Closes #5449. --- build-constraints.yaml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 85bdb68c..194c33c2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -480,6 +480,7 @@ packages: - hnix-store-core - monadlist - ref-tf + - unordered-containers "Joe M @joe9": - logger-thread < 0 # via protolude @@ -4708,7 +4709,6 @@ packages: - universe-instances-trans - universe-reverse-instances - unix-time - - unordered-containers - url - utf8-light - utf8-string @@ -4846,9 +4846,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5424 - smallcheck < 1.2.0 - # https://github.com/commercialhaskell/stackage/issues/5449 - - unordered-containers < 0.2.11 - # https://github.com/commercialhaskell/stackage/issues/5466 - cryptonite < 0.27 @@ -5221,7 +5218,6 @@ skipped-tests: - skylighting-core - speedy-slice - thyme - - unordered-containers - unordered-intmap - vector-builder - wai-cors @@ -5660,7 +5656,6 @@ expected-test-failures: expected-benchmark-failures: # Recursive deps https://github.com/fpco/stackage/issues/1818 - hashable - - unordered-containers # 0.2.7.1 unordered-containers:bench -> criterion:lib -> aeson:lib -> unordered-containers:lib # Missing files in sdist @@ -5748,7 +5743,6 @@ skipped-benchmarks: - ttrie # criterion-plus and th-pprint - tz # criterion 1.5 - unicode-transforms # path-io - - unordered-containers # criterion 1.5 - xxhash-ffi # ghc 8.4 via xxhash build failure - typerep-map # via https://github.com/commercialhaskell/stackage/issues/4541 From d463ec32609ef98b0f1da0f4c8b2563dbe1a020f Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Fri, 26 Jun 2020 14:35:04 +0100 Subject: [PATCH 1692/2682] failing tests: ghci-hexcalc, gitlab-haskell --- build-constraints.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 85bdb68c..729e97c2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5653,6 +5653,12 @@ expected-test-failures: # https://github.com/commercialhaskell/stackage/issues/5407 - language-docker + + - ghci-hexcalc + + - gitlab-haskell + + # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 3fd1e660708a9621ee1855b637b68676b01951b0 Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Fri, 26 Jun 2020 15:12:32 +0100 Subject: [PATCH 1693/2682] add issues for x-test-failures, restore primitive-0.7.1.0 --- build-constraints.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 729e97c2..22c665eb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4858,7 +4858,7 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5481 - aeson-yaml < 1.1.0.0 - - primitive < 0.7.1.0 + # - primitive < 0.7.1.0 # end of packages @@ -5654,8 +5654,10 @@ expected-test-failures: # https://github.com/commercialhaskell/stackage/issues/5407 - language-docker + # https://github.com/takenobu-hs/ghci-hexcalc/issues/2 - ghci-hexcalc + # https://gitlab.com/robstewart57/gitlab-haskell/-/issues/7 - gitlab-haskell From c4de277e5dce9398427d7e28849d3af309bea393 Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Fri, 26 Jun 2020 15:19:24 +0100 Subject: [PATCH 1694/2682] primitive-0.7.1.0 --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 22c665eb..3c91691c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4858,7 +4858,8 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5481 - aeson-yaml < 1.1.0.0 - # - primitive < 0.7.1.0 + # https://github.com/commercialhaskell/stackage/issues/5484 + - primitive < 0.7.1.0 # end of packages From 18139648f911227323be3ddda539569934f0203d Mon Sep 17 00:00:00 2001 From: Michael Gale Date: Fri, 26 Jun 2020 15:20:56 +0100 Subject: [PATCH 1695/2682] Add c14n --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 85bdb68c..819c38af 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4290,6 +4290,9 @@ packages: "Masahiro Honma @hiratara": - string-random + "Michael B. Gale @mbg": + - c14n + "Grandfathered dependencies": - network - Boolean From a0092d881f710456d1c59f4a4122c45844932f6d Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Sat, 27 Jun 2020 04:52:35 +0100 Subject: [PATCH 1696/2682] remove primitive restrictions --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3c91691c..0bff1f63 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4858,9 +4858,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5481 - aeson-yaml < 1.1.0.0 - # https://github.com/commercialhaskell/stackage/issues/5484 - - primitive < 0.7.1.0 - # end of packages # Package flags are applied to individual packages, and override the values of From 31e6d7452190296bc673a9cd4709f89f72c540d0 Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Sat, 27 Jun 2020 05:37:34 +0100 Subject: [PATCH 1697/2682] disable massiv-test tests --- build-constraints.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0bff1f63..c39a3611 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4858,6 +4858,12 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5481 - aeson-yaml < 1.1.0.0 + # https://github.com/commercialhaskell/stackage/issues/5484 + - primitive < 0.7.1.0 + + # + - massiv-test + # end of packages # Package flags are applied to individual packages, and override the values of @@ -5658,6 +5664,8 @@ expected-test-failures: # https://gitlab.com/robstewart57/gitlab-haskell/-/issues/7 - gitlab-haskell + # + - massiv-io # end of expected-test-failures From 72e97ecc1de9483e1a982f4203415e245bba984b Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Sat, 27 Jun 2020 05:46:40 +0100 Subject: [PATCH 1698/2682] expect failures from massiv-test --- build-constraints.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c39a3611..29958ad6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4861,9 +4861,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5484 - primitive < 0.7.1.0 - # - - massiv-test - # end of packages # Package flags are applied to individual packages, and override the values of @@ -5665,7 +5662,7 @@ expected-test-failures: - gitlab-haskell # - - massiv-io + - massiv-test # end of expected-test-failures From 4832cefea0840bec04d6607112302cdc3857a58d Mon Sep 17 00:00:00 2001 From: Doug Burke Date: Sat, 27 Jun 2020 09:12:37 -0400 Subject: [PATCH 1699/2682] uncomment swish --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index fb8448a4..87e6a335 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3757,7 +3757,7 @@ packages: - qm-interpolated-string "Douglas Burke @DougBurke": - - swish < 0 # ghc 8.10 + - swish - hvega - ihaskell-hvega < 0 From d9587562f4263bfee77af10cc263fe4ecaefed4e Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Sat, 27 Jun 2020 14:43:09 +0100 Subject: [PATCH 1700/2682] ignore tests for krank, dns and dhall-lsp-server --- build-constraints.yaml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index fb8448a4..c556ef74 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5664,9 +5664,18 @@ expected-test-failures: # https://gitlab.com/robstewart57/gitlab-haskell/-/issues/7 - gitlab-haskell - # + # https://github.com/lehins/massiv/issues/98 - massiv-test + # + - krank + + # + - dns + + # + - dhall-lsp-server + # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 8876ba98ebe0fd24898ea02cfb6cf0d7ece58fa0 Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Sat, 27 Jun 2020 15:02:14 +0100 Subject: [PATCH 1701/2682] remove krank --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c556ef74..9a189723 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -159,7 +159,7 @@ packages: - list-predicate "Guillaume Bouchard @guibou": - - krank + - krank < 0 - pretty-terminal - PyF @@ -5668,7 +5668,7 @@ expected-test-failures: - massiv-test # - - krank + # - krank # - dns From 2d98ffb3359031100c63172ab0e5985ae4a66440 Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Sat, 27 Jun 2020 15:26:57 +0100 Subject: [PATCH 1702/2682] add issues --- build-constraints.yaml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9a189723..46f1c9ed 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5667,13 +5667,10 @@ expected-test-failures: # https://github.com/lehins/massiv/issues/98 - massiv-test - # - # - krank - - # + # https://github.com/kazu-yamamoto/dns/issues/153 - dns - # + # https://github.com/dhall-lang/dhall-haskell/issues/1891 - dhall-lsp-server # end of expected-test-failures From 4c171232891884c756c44cc46fe573846665e496 Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Sat, 27 Jun 2020 19:52:43 +0100 Subject: [PATCH 1703/2682] krank: add issue --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 46f1c9ed..e75bbdda 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -159,7 +159,7 @@ packages: - list-predicate "Guillaume Bouchard @guibou": - - krank < 0 + - krank < 0 # https://github.com/guibou/krank/issues/84 - pretty-terminal - PyF From ec93406f3ca5028ac2b1b76e2fc2a20b5f3da526 Mon Sep 17 00:00:00 2001 From: Mitchell Rosen Date: Sat, 27 Jun 2020 18:20:09 -0400 Subject: [PATCH 1704/2682] Remove safe-exceptions-checked, add text-ansi, add timer-wheel --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e75bbdda..c81e73f6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2012,10 +2012,10 @@ packages: - aeson-better-errors "Mitchell Rosen @mitchellwrosen": - - safe-exceptions-checked - tasty-hspec - termbox < 0 # via base-4.13.0.0 - - timer-wheel < 0 # via base-4.13.0.0 + - text-ansi + - timer-wheel - wai-middleware-travisci < 0 # via base-4.13.0.0 "QBayLogic B.V. ": From be44fb62d698360db936c85bc5da34f4a763ad29 Mon Sep 17 00:00:00 2001 From: Alexey Kuleshevich Date: Sun, 28 Jun 2020 13:12:49 +0300 Subject: [PATCH 1705/2682] Re-enable test suite in massiv-test --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e75bbdda..82a8a84c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5664,9 +5664,6 @@ expected-test-failures: # https://gitlab.com/robstewart57/gitlab-haskell/-/issues/7 - gitlab-haskell - # https://github.com/lehins/massiv/issues/98 - - massiv-test - # https://github.com/kazu-yamamoto/dns/issues/153 - dns From 3add381b21c9991c3fb869a0b463361a402c37c9 Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Sun, 28 Jun 2020 23:55:57 +0100 Subject: [PATCH 1706/2682] +gi-harfbuzz --- build-constraints.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e75bbdda..35ae5533 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3092,6 +3092,7 @@ packages: - gi-vte < 0 # via gi-gdk-4.0.1 & gi-gtk-4.0.1 # - gi-webkit2 # https://github.com/fpco/stackage/issues/3415 - gi-xlib + - gi-harfbuzz "Brandon Simmons @jberryman": - directory-tree @@ -5664,9 +5665,6 @@ expected-test-failures: # https://gitlab.com/robstewart57/gitlab-haskell/-/issues/7 - gitlab-haskell - # https://github.com/lehins/massiv/issues/98 - - massiv-test - # https://github.com/kazu-yamamoto/dns/issues/153 - dns From 7d362b91a136f2274910000c95ed3e17bbf4ecc3 Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Mon, 29 Jun 2020 00:17:26 +0100 Subject: [PATCH 1707/2682] gi-cairo-render <0 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 35ae5533..62382d88 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4173,7 +4173,7 @@ packages: - ConfigFile - dbus-hslogger - gi-cairo-connector - - gi-cairo-render + - gi-cairo-render <0 # oops - gtk-sni-tray - gtk-strut - rate-limit From 5bf83bb1685973635ebd78b475ac3dbcea46b619 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20Rze=C5=BAnicki?= Date: Mon, 29 Jun 2020 01:37:53 +0200 Subject: [PATCH 1708/2682] Re-enable stackcollapse-ghc 0.0.1.1@rev:1 build with GHC 8.10.1 and the most recent nightly --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 35ae5533..cc0fd146 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -29,7 +29,7 @@ packages: "Marcin Rzeźnicki @marcin-rzeznicki": - hspec-tables - - stackcollapse-ghc < 0 # ghc 8.10 + - stackcollapse-ghc "Mauricio Fierro @mauriciofierrom": - dialogflow-fulfillment From db2884bdcb75bca2e6dfe0d8e62ffd79f29ed78c Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Mon, 29 Jun 2020 00:45:01 +0100 Subject: [PATCH 1709/2682] constrain latest gi- packages --- build-constraints.yaml | 37 ++++++++++++++++++++----------------- 1 file changed, 20 insertions(+), 17 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 62382d88..62603d1f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3071,28 +3071,31 @@ packages: - sum-type-boilerplate "Iñaki García Etxebarria @garetxe": - - haskell-gi - - haskell-gi-base - - gi-atk - - gi-cairo - - gi-dbusmenu - - gi-dbusmenugtk3 - - gi-gdk < 4 - - gi-gdkpixbuf - - gi-gdkx11 < 4 - - gi-gio - - gi-glib - - gi-gobject - - gi-graphene - - gi-gtk < 4 - - gi-gtk-hs + - haskell-gi <0.24.1 + - haskell-gi-base <0.24.0 + - gi-atk <2.0.22 + - gi-cairo <1.0.24 + - gi-dbusmenu <0.4.8 + - gi-dbusmenugtk3 <0.4.9 + - gi-gdk < 3.0.23 + - gi-gdkpixbuf <2.0.24 + - gi-gdkx11 < 3.0.10, + - gi-gio <2.0.27 + - gi-glib <2.0.24 + - gi-gobject <2.0.23 + - gi-graphene <1.0.2 + - gi-gtk <3.0.34 + - gi-gtk-hs <0.3.9 + - gi-pango <1.0.23 + - gi-harfbuzz <0 # system library constraint + # - gi-gdk < 4 + # - gi-gdkx11 < 4 + # - gi-gtk < 4 - gi-gtksource < 0 # via gi-gdk-4.0.1 & gi-gtk-4.0.1 - gi-javascriptcore < 0 # via haskell-gi - - gi-pango - gi-vte < 0 # via gi-gdk-4.0.1 & gi-gtk-4.0.1 # - gi-webkit2 # https://github.com/fpco/stackage/issues/3415 - gi-xlib - - gi-harfbuzz "Brandon Simmons @jberryman": - directory-tree From 673fa6fedb080f77932fa364fa18ed285ebe5657 Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Mon, 29 Jun 2020 00:58:51 +0100 Subject: [PATCH 1710/2682] filter gi-cairo-rende deps --- build-constraints.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 62603d1f..c25aa88c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3071,7 +3071,7 @@ packages: - sum-type-boilerplate "Iñaki García Etxebarria @garetxe": - - haskell-gi <0.24.1 + - haskell-gi <0.24.0 - haskell-gi-base <0.24.0 - gi-atk <2.0.22 - gi-cairo <1.0.24 @@ -3079,7 +3079,7 @@ packages: - gi-dbusmenugtk3 <0.4.9 - gi-gdk < 3.0.23 - gi-gdkpixbuf <2.0.24 - - gi-gdkx11 < 3.0.10, + - gi-gdkx11 < 3.0.10 - gi-gio <2.0.27 - gi-glib <2.0.24 - gi-gobject <2.0.23 @@ -3087,6 +3087,7 @@ packages: - gi-gtk <3.0.34 - gi-gtk-hs <0.3.9 - gi-pango <1.0.23 + - gi-xlib <2.0.9 - gi-harfbuzz <0 # system library constraint # - gi-gdk < 4 # - gi-gdkx11 < 4 @@ -3095,7 +3096,6 @@ packages: - gi-javascriptcore < 0 # via haskell-gi - gi-vte < 0 # via gi-gdk-4.0.1 & gi-gtk-4.0.1 # - gi-webkit2 # https://github.com/fpco/stackage/issues/3415 - - gi-xlib "Brandon Simmons @jberryman": - directory-tree @@ -4175,9 +4175,9 @@ packages: "Ivan Malison @IvanMalison": - ConfigFile - dbus-hslogger - - gi-cairo-connector + - gi-cairo-connector <0 # oops gi-cairo-connector - gi-cairo-render <0 # oops - - gtk-sni-tray + - gtk-sni-tray <0 # oops gi-cairo-connector - gtk-strut - rate-limit - status-notifier-item From 0868cead8e0d1916b300a9f69703284f7d4d82ad Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Mon, 29 Jun 2020 02:17:59 +0100 Subject: [PATCH 1711/2682] restore hnix --- build-constraints.yaml | 44 +++++++++++++++++++++--------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c25aa88c..7ea12548 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -475,7 +475,7 @@ packages: - coercible-utils < 0 # ghc 8.10 - hspec-parsec - checkers - - hnix < 0 # https://github.com/haskell-nix/hnix/issues/651 + - hnix - hashing - hnix-store-core - monadlist @@ -3071,24 +3071,24 @@ packages: - sum-type-boilerplate "Iñaki García Etxebarria @garetxe": - - haskell-gi <0.24.0 - - haskell-gi-base <0.24.0 - - gi-atk <2.0.22 - - gi-cairo <1.0.24 - - gi-dbusmenu <0.4.8 - - gi-dbusmenugtk3 <0.4.9 - - gi-gdk < 3.0.23 - - gi-gdkpixbuf <2.0.24 - - gi-gdkx11 < 3.0.10 - - gi-gio <2.0.27 - - gi-glib <2.0.24 - - gi-gobject <2.0.23 - - gi-graphene <1.0.2 - - gi-gtk <3.0.34 - - gi-gtk-hs <0.3.9 - - gi-pango <1.0.23 - - gi-xlib <2.0.9 - - gi-harfbuzz <0 # system library constraint + - haskell-gi <0.24.0 # } + - haskell-gi-base <0.24.0 # } + - gi-atk <2.0.22 # } + - gi-cairo <1.0.24 # } + - gi-dbusmenu <0.4.8 # } + - gi-dbusmenugtk3 <0.4.9 # } + - gi-gdk < 3.0.23 # } + - gi-gdkpixbuf <2.0.24 # } + - gi-gdkx11 < 3.0.10 # } gi-harfbuzz (below) + - gi-gio <2.0.27 # } + - gi-glib <2.0.24 # } + - gi-gobject <2.0.23 # } + - gi-graphene <1.0.2 # } + - gi-gtk <3.0.34 # } + - gi-gtk-hs <0.3.9 # } + - gi-pango <1.0.23 # } + - gi-xlib <2.0.9 # } + - gi-harfbuzz <0 # https://github.com/haskell-gi/haskell-gi/issues/299 # - gi-gdk < 4 # - gi-gdkx11 < 4 # - gi-gtk < 4 @@ -4175,9 +4175,9 @@ packages: "Ivan Malison @IvanMalison": - ConfigFile - dbus-hslogger - - gi-cairo-connector <0 # oops gi-cairo-connector - - gi-cairo-render <0 # oops - - gtk-sni-tray <0 # oops gi-cairo-connector + - gi-cairo-connector <0 # needs gi-cairo-render + - gi-cairo-render <0 # https://github.com/cohomology/gi-cairo-render/issues/3 + - gtk-sni-tray <0 # needs gi-cairo-render - gtk-strut - rate-limit - status-notifier-item From 10ecf7c435e062114b5610de2ca81a0c1be957c3 Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Mon, 29 Jun 2020 02:39:18 +0100 Subject: [PATCH 1712/2682] re-disable hnix --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7ea12548..e42fd32c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -475,7 +475,7 @@ packages: - coercible-utils < 0 # ghc 8.10 - hspec-parsec - checkers - - hnix + - hnix <0 # https://github.com/haskell-nix/hnix/issues/651 - hashing - hnix-store-core - monadlist From 9801da2ce0d833570b67096afe856cc6eaf68b0e Mon Sep 17 00:00:00 2001 From: Michael Gale Date: Mon, 29 Jun 2020 15:56:45 +0100 Subject: [PATCH 1713/2682] Add wai-saml2 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9b6efa60..9a75a8bc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4301,6 +4301,7 @@ packages: "Michael B. Gale @mbg": - c14n + - wai-saml2 "Grandfathered dependencies": - network From f9e69e8035f6bdab769fcda2ce7c2e63373e6905 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Mon, 29 Jun 2020 09:08:21 -0700 Subject: [PATCH 1714/2682] add constraint "hedgehog < 1.0.3" per #5491 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9b6efa60..9905e0f9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4869,6 +4869,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5484 - primitive < 0.7.1.0 + # https://github.com/commercialhaskell/stackage/issues/5491 + - hedgehog < 1.0.3 + # end of packages # Package flags are applied to individual packages, and override the values of From d1982e2b6a4b51ea1701ec28a6fb54ab88a453a3 Mon Sep 17 00:00:00 2001 From: locallycompact Date: Tue, 30 Jun 2020 15:55:08 +0100 Subject: [PATCH 1715/2682] Add binary-instances --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9905e0f9..1f6d9ee4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3909,6 +3909,7 @@ packages: "Dan Firth @locallycompact": - aeson-with + - binary-instances - path-extensions - shake-plus - within From edf950fd106d913f5e3f59ef1e3f9b3e399e61c1 Mon Sep 17 00:00:00 2001 From: Erik Schnetter Date: Tue, 30 Jun 2020 14:19:02 -0400 Subject: [PATCH 1716/2682] Revert "Disable mpi-hs, #5444" This reverts commit 91d928d36c1c50d3d36676336ca622d9c19dcca2. --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9905e0f9..6eb63ab0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -164,9 +164,9 @@ packages: - PyF "Erik Schnetter @eschnett": - - mpi-hs < 0 # https://github.com/commercialhaskell/stackage/issues/5444 - - mpi-hs-binary < 0 # via mpi-hs - - mpi-hs-cereal < 0 # via mpi-hs + - mpi-hs + - mpi-hs-binary + - mpi-hs-cereal "Yang Bo @Atry": - control-dsl < 0 # via doctest-discover From 7beb5918c7ea05c29a4a727b7422630991985643 Mon Sep 17 00:00:00 2001 From: Alexey Kuleshevich Date: Wed, 1 Jul 2020 13:41:22 +0300 Subject: [PATCH 1717/2682] Re-enable `flexible-defaults` and others that it was breaking: * `random-sources` * `rvar` * and `random-fu` --- build-constraints.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9905e0f9..c710ee77 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2527,9 +2527,9 @@ packages: - nix-paths - parsec-class - prim-uniq < 0 # via dependent-sum - - random-fu < 0 # via random-source - - random-source < 0 # via flexible-defaults - - rvar < 0 # via random-source + - random-fu + - random-source + - rvar - SafeSemaphore - streamproc < 0 # MonadFail - stringsearch # for cgi @@ -4789,7 +4789,6 @@ packages: # be removed from this list if they are fixed. "Unmaintained packages with compilation failures": - doctest-discover-configurator < 0 - - flexible-defaults < 0 # MonadFail - haskell-tools-builtin-refactorings < 0 # bounds failure - hpqtypes < 0 # bounds failure - stackage-types < 0 From 54759ed9e9d180532a8403d094fdc7a7c8c88a63 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 2 Jul 2020 12:02:04 -0700 Subject: [PATCH 1718/2682] Add ghc-trace-events, @ethercrow @maoe --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9905e0f9..f4601b2f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2462,6 +2462,8 @@ packages: - word-trie - xdg-basedir - yi-rope + # needed for opentelemetry + - ghc-trace-events # @maoe "Tobias Bexelius @tobbebex": - GPipe < 0 # GHC 8.4 via base-4.11.0.0 From 2a79147efe931c77d19dcb0b8ca54133605d01b4 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 2 Jul 2020 12:03:43 -0700 Subject: [PATCH 1719/2682] Add constraint "hspec-golden == 0.1.0.1" per #5498 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f4601b2f..896b8860 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4874,6 +4874,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5491 - hedgehog < 1.0.3 + # https://github.com/commercialhaskell/stackage/issues/5498 + - hspec-golden == 0.1.0.1 + # end of packages # Package flags are applied to individual packages, and override the values of From 5f59f3c977f5c7551180e0885147df1dbc85e9b7 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 2 Jul 2020 12:15:45 -0700 Subject: [PATCH 1720/2682] re-enable krank per guibou/krank#84 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a1fe504d..3d84a4ab 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -159,7 +159,7 @@ packages: - list-predicate "Guillaume Bouchard @guibou": - - krank < 0 # https://github.com/guibou/krank/issues/84 + - krank - pretty-terminal - PyF From 6b2cd69ef7dcba54624d37ecb63a41c9168ff76e Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 2 Jul 2020 12:16:58 -0700 Subject: [PATCH 1721/2682] additional constraints per #4574 --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3d84a4ab..90f70089 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4865,6 +4865,8 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5474 - random < 1.2.0 + - random-fu < 0.2.7.6 + - random-source < 0.3.0.10 # https://github.com/commercialhaskell/stackage/issues/5481 - aeson-yaml < 1.1.0.0 From 12b17467308dddebca4337749c37c1b95eb30816 Mon Sep 17 00:00:00 2001 From: Simon Jakobi Date: Wed, 24 Jun 2020 11:27:28 +0200 Subject: [PATCH 1722/2682] Unrestrict neat-interpolation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit …and disable `summoner[-tui]`. This reverts commit c815f235ed072c415bd160c1cc095b039d3de300. Closes #5119. --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 90f70089..7950726f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1440,7 +1440,7 @@ packages: - hasql-transaction - list-t - mtl-prelude - - neat-interpolation < 0.4 # https://github.com/commercialhaskell/stackage/issues/5119 + - neat-interpolation - partial-handler - postgresql-binary - slave-thread < 0 @@ -3659,8 +3659,8 @@ packages: - relude - shellmet - shortcut-links - - summoner - - summoner-tui + - summoner < 0 # neat-interpolation-0.4 + - summoner-tui < 0 # neat-interpolation-0.4 via summoner - tomland - typerep-map - validation-selective From 94ab14221b921729e8647bb86a111ec82920c2e8 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Fri, 3 Jul 2020 21:29:19 -0700 Subject: [PATCH 1723/2682] Expect fmt tests to fail per cdornan/fmt#30 --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7950726f..bedd352b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5685,6 +5685,10 @@ expected-test-failures: # https://github.com/dhall-lang/dhall-haskell/issues/1891 - dhall-lsp-server + - https://github.com/cdornan/fmt/issues/30 + - fmt + + # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 5cc0ab4d58047050b7feb8e643287c0720b30688 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Fri, 3 Jul 2020 21:30:36 -0700 Subject: [PATCH 1724/2682] whoops this should be a comment --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index bedd352b..0787fa3d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5685,7 +5685,7 @@ expected-test-failures: # https://github.com/dhall-lang/dhall-haskell/issues/1891 - dhall-lsp-server - - https://github.com/cdornan/fmt/issues/30 + # https://github.com/cdornan/fmt/issues/30 - fmt From 4128088797dac1b543e90c01de527890cc8a7c6e Mon Sep 17 00:00:00 2001 From: Joshua Chia Date: Sat, 4 Jul 2020 16:40:57 +0800 Subject: [PATCH 1725/2682] Reinstate bz2 --- build-constraints.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0787fa3d..98d90bac 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -353,7 +353,7 @@ packages: - sexpr-parser < 0 # via base-4.13.0.0 "Vanessa McHale @vmchale": - - bz2 < 1.0.0.2 # https://github.com/commercialhaskell/stackage/issues/5149 + - bz2 "Henning Thielemann @thielema": - accelerate-arithmetic < 0 # GHC 8.4 via accelerate @@ -4891,6 +4891,9 @@ package-flags: brick: demos: true + bz2: + with-bzlib: false # Exclude bzlib from benchmarks to avoid unnecessary dependencies. + mersenne-random-pure64: small_base: false From e96f08afccf1112598816a47cc9c52b4600cead6 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sat, 4 Jul 2020 16:48:02 +0800 Subject: [PATCH 1726/2682] etc/diskspace: reduce the guestimate on smallest package hash length Failed for genvalidity-path-0.3.0.4-e4VgW10i2EhC0Gr0g1T --- etc/diskspace/remove-old-stack-work-libs.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/diskspace/remove-old-stack-work-libs.hs b/etc/diskspace/remove-old-stack-work-libs.hs index a2cd4e3b..98ffa735 100644 --- a/etc/diskspace/remove-old-stack-work-libs.hs +++ b/etc/diskspace/remove-old-stack-work-libs.hs @@ -28,7 +28,7 @@ main = do extractNameInternal :: String -> String extractNameInternal p = - let (name,match,internal) = p =~ "-[0-9.]+-[0-9A-Za-z]{20,22}" :: (String, String, String) + let (name,match,internal) = p =~ "-[0-9.]+-[0-9A-Za-z]{19,22}" :: (String, String, String) in if null match || null name then error $ p ++ " not in correct name-version-hash format" else name ++ internal From 0aac3233763361f8cb0a2f86d0e646d4c25c9a9d Mon Sep 17 00:00:00 2001 From: Joshua Chia Date: Sat, 4 Jul 2020 20:24:35 +0800 Subject: [PATCH 1727/2682] Reinstate direct-sqlite & sqlite-simple --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0787fa3d..243c0f77 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1167,7 +1167,7 @@ packages: - groundhog-th < 0 # via groundhog "Janne Hellsten @nurpax": - - sqlite-simple < 0 # via base-4.13.0.0 + - sqlite-simple "Michal J. Gajda @mgajda": - iterable @@ -4430,7 +4430,7 @@ packages: - dense-linear-algebra - deque - dictionary-sharing - - direct-sqlite < 0 # semigroups-0.19 + - direct-sqlite - discount - dlist - dlist-instances From 9f20129e74e0938edaf9ef94feb5836b908f84f2 Mon Sep 17 00:00:00 2001 From: Joshua Chia Date: Sat, 4 Jul 2020 22:11:00 +0800 Subject: [PATCH 1728/2682] Reinstate xmonad, xmonad-contrib & xmonad-extras --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0787fa3d..684459bf 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -780,7 +780,7 @@ packages: - hourglass-orphans - wai-slack-middleware - sysinfo - - xmonad-extras < 0 # ghc 8.10 + - xmonad-extras - shelly - persistent-redis < 0 # GHC 8.4 via hedis - fakedata @@ -1575,7 +1575,7 @@ packages: - darcs < 0 # - idris # aeson https://github.com/idris-lang/Idris-dev/issues/4493 - libffi - - xmonad-contrib < 0 # ghc 8.10 + - xmonad-contrib - cairo < 0 - glib < 0 - gio < 0 @@ -2537,7 +2537,7 @@ packages: - stringsearch # for cgi - titlecase - X11 - - xmonad < 0 # ghc 8.10 + - xmonad "Mark Fine @markfine": - postgresql-schema < 0 # via postgresql-simple From 749a7cb637cda2aa87d3d74aee6385fcdbbfef38 Mon Sep 17 00:00:00 2001 From: locallycompact Date: Sat, 4 Jul 2020 18:57:01 +0100 Subject: [PATCH 1729/2682] Add path-like --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0787fa3d..92587354 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3913,6 +3913,7 @@ packages: - aeson-with - binary-instances - path-extensions + - path-like - shake-plus - within From 74dc259d664ba88adf05a36e6868cd0b2868bb9d Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 6 Jul 2020 10:53:30 +0800 Subject: [PATCH 1730/2682] etc/diskspace: switch to nightly so we don't need to keep ghc-8.6.5 around --- etc/diskspace/clean-old-stack-libs.sh | 2 +- etc/diskspace/remove-old-stack-work-libs.hs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/etc/diskspace/clean-old-stack-libs.sh b/etc/diskspace/clean-old-stack-libs.sh index e63044f9..2a3554f4 100755 --- a/etc/diskspace/clean-old-stack-libs.sh +++ b/etc/diskspace/clean-old-stack-libs.sh @@ -10,4 +10,4 @@ fi cd ~/stackage/automated/work/$1/unpack-dir/.stack-work/install/x86_64-linux/*/*/lib/x86_64-linux-ghc-* pwd -stack --resolver lts-14.27 script ~/stackage/etc/diskspace/remove-old-stack-work-libs.hs +stack --resolver nightly-2020-07-04 script ~/stackage/etc/diskspace/remove-old-stack-work-libs.hs diff --git a/etc/diskspace/remove-old-stack-work-libs.hs b/etc/diskspace/remove-old-stack-work-libs.hs index 98ffa735..983826f1 100644 --- a/etc/diskspace/remove-old-stack-work-libs.hs +++ b/etc/diskspace/remove-old-stack-work-libs.hs @@ -1,5 +1,5 @@ #!/usr/bin/env stack --- stack --resolver lts-14 script +-- stack --resolver nightly script -- Utility to remove old libs installed under .stack-work/ to save diskspace From 6d7bd96fc7d04c77f9fd8c5561238224b359ca68 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 6 Jul 2020 10:54:41 +0800 Subject: [PATCH 1731/2682] etc/diskspace: factor out keepBuilds: number of pkg build versions to keep --- etc/diskspace/remove-old-stack-work-libs.hs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/etc/diskspace/remove-old-stack-work-libs.hs b/etc/diskspace/remove-old-stack-work-libs.hs index 983826f1..d26fcd06 100644 --- a/etc/diskspace/remove-old-stack-work-libs.hs +++ b/etc/diskspace/remove-old-stack-work-libs.hs @@ -11,6 +11,10 @@ import System.Directory import System.FilePath import Text.Regex.TDFA +-- keep 2 latest builds +keepBuilds :: Int +keepBuilds = 2 + main = do files <- sort <$> listDirectory "." let (dynlibs,libdirs) = partition (".so" `isExtensionOf`) files @@ -42,8 +46,7 @@ main = do removeDashSegment = dropWhileEnd (/= '-') removeOlder remover files = do - -- keep 2 latest builds - oldfiles <- drop 2 . reverse <$> sortByAge files + oldfiles <- drop keepBuilds . reverse <$> sortByAge files mapM_ remover oldfiles sortByAge files = do From ee3a47f67df38ab4316e9940c5ecbb5a7ab5fbc6 Mon Sep 17 00:00:00 2001 From: locallycompact Date: Mon, 6 Jul 2020 19:13:24 +0100 Subject: [PATCH 1732/2682] Add comonad-extras --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 41620b7a..388dbdac 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3912,6 +3912,7 @@ packages: "Dan Firth @locallycompact": - aeson-with - binary-instances + - comonad-extras - path-extensions - path-like - shake-plus From f4de7dfadc1827b2e579a0f6bb5d6764e8315d20 Mon Sep 17 00:00:00 2001 From: Sebastian Witte Date: Tue, 7 Jul 2020 21:11:43 +0200 Subject: [PATCH 1733/2682] re-enable nvim-hs --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 41620b7a..dc4d3e17 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3578,9 +3578,9 @@ packages: - katip-scalyr-scribe < 0 # via katip "Sebastian Witte @saep": - - nvim-hs < 0 # via hslogger - - nvim-hs-contrib < 0 # via nvim-hs - # - nvim-hs-ghcid + - nvim-hs + - nvim-hs-contrib + - nvim-hs-ghcid "Sam Protas @SamProtas": - triplesec From 6b01584fe5924bb2849bcd2f1b21e50441fe5f39 Mon Sep 17 00:00:00 2001 From: Shao Cheng Date: Wed, 8 Jul 2020 19:20:48 +0200 Subject: [PATCH 1734/2682] Add binaryen --- build-constraints.yaml | 3 ++- debian-bootstrap.sh | 13 +++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index dc4d3e17..e53e5c3f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3209,7 +3209,8 @@ packages: - codo-notation < 0 # MonadFail - language-fortran < 0 # build failure with GHC 8.4 - "Shao Cheng @TerrorJack": + "Cheng Shao @TerrorJack": + - binaryen - cabal-toolkit < 0 # GHC 8.4 via Cabal-2.2.0.0 - direct-rocksdb < 0 # GHC 8.4 via Cabal-2.2.0.0 diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index 05f7c3fd..a0f3aae3 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -296,6 +296,19 @@ wget -qO - https://packages.confluent.io/deb/5.2/archive.key | apt-key add - add-apt-repository "deb https://packages.confluent.io/deb/5.2 stable main" apt-get update && apt install -y librdkafka-dev +# Install binaryen +curl -L https://github.com/WebAssembly/binaryen/archive/version_94.tar.gz | tar xz -C /tmp +pushd /tmp/binaryen-version_94 +mkdir build +cd build +cmake \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -G "Unix Makefiles" \ + .. +sudo make install +popd + # EOF: don't build anything below this line # Cleanup From ba2f7e41573bd6d44eb334a25505087289f89c74 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 9 Jul 2020 12:21:51 +0800 Subject: [PATCH 1735/2682] add base58-bytestring for bech32-1.1.0 (#5506) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 385aed1a..c332c97e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -563,6 +563,7 @@ packages: # - postgresql-query # build errors - hreader < 0 # via hset - hset < 0 # via type-fun + - base58-bytestring "Aaron Taylor @hamsterdam": - kawhi From a521bfba92858de628d236433b393731d882b8cb Mon Sep 17 00:00:00 2001 From: nilsalex Date: Thu, 9 Jul 2020 14:18:31 +0200 Subject: [PATCH 1736/2682] add safe-tensor --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index c332c97e..4ea94bbd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -9,6 +9,9 @@ cabal-format-version: "3.0" # Constraints for brand new builds packages: + "Nils Alex @nilsalex": + - safe-tensor + "Artur Gajowy @ArturGajowy": - ghc-clippy-plugin From 268478d88b7097aef0d74f46933407024acb80af Mon Sep 17 00:00:00 2001 From: Ivan Gromakovskii Date: Fri, 10 Jul 2020 16:01:51 +0300 Subject: [PATCH 1737/2682] Re-enable o-clock GHC-8.10 compatibility should be resolved in 1.2.0. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 18c9a3e6..7b258dbc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3648,7 +3648,7 @@ packages: "Serokell @serokell": # - importify - log-warper < 0 # GHC 8.4 via lifted-async-0.10.0.1 - - o-clock < 0 # ghc 8.10 + - o-clock - universum - with-utf8 From f5149956df251f91e149e6b62394f554183466aa Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sat, 11 Jul 2020 16:27:39 +0800 Subject: [PATCH 1738/2682] reenable async-pool --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7b258dbc..4399e342 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4057,7 +4057,7 @@ packages: - natural-sort "John Biesnecker @biesnecker": - - async-pool < 0 + - async-pool "Zoltan Kelemen @kelemzol": - fswatch < 0 From b2d1849f40547e729052cbc23161727da1620037 Mon Sep 17 00:00:00 2001 From: Bernie Pope Date: Sun, 12 Jul 2020 19:07:34 +1000 Subject: [PATCH 1739/2682] add language-python --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4399e342..423087d2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -9,6 +9,9 @@ cabal-format-version: "3.0" # Constraints for brand new builds packages: + "Bernie Pope @bjpop": + - language-python + "Nils Alex @nilsalex": - safe-tensor From 5ca0d7d63fbe1732bb0d05bac2ebba1bdd74cdf6 Mon Sep 17 00:00:00 2001 From: chessai Date: Sun, 12 Jul 2020 16:01:59 -0700 Subject: [PATCH 1740/2682] add refined --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4399e342..8545a257 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2204,6 +2204,7 @@ packages: - semirings - torsor - chronos + - refined "Kostiantyn Rybnikov @k-bx": - SHA From ea4ed202251426fe212e584d2a72957d3b441f07 Mon Sep 17 00:00:00 2001 From: chessai Date: Sun, 12 Jul 2020 16:04:34 -0700 Subject: [PATCH 1741/2682] add these-skinny --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4399e342..75d18d8d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2204,6 +2204,7 @@ packages: - semirings - torsor - chronos + - these-skinny "Kostiantyn Rybnikov @k-bx": - SHA From 844b922c3ed6e0fe7a40bb3e7d35d44ef9ae6974 Mon Sep 17 00:00:00 2001 From: chessai Date: Sun, 12 Jul 2020 16:08:22 -0700 Subject: [PATCH 1742/2682] reenable country --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4399e342..a005fab6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2200,7 +2200,7 @@ packages: "Daniel Cartwright @chessai": - streaming - streaming-bytestring - - country < 0 # via base-4.13.0.0 + - country - semirings - torsor - chronos From 3abdf4f662d212b86734fb864d493ec2b08bb12c Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 13 Jul 2020 10:58:11 +0800 Subject: [PATCH 1743/2682] base16 < 0.3.0.0 (#5513) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 423087d2..946925af 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -82,7 +82,7 @@ packages: - lens-regex-pcre < 0 # via pcre-heavy "Emily Pillmore @topos": - - base16 + - base16 < 0.3.0.0 # https://github.com/commercialhaskell/stackage/issues/5513 - base16-lens - base32 - base32-lens From dfb6300f932e1446890f76383dafaa1e78174848 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 13 Jul 2020 11:05:31 +0800 Subject: [PATCH 1744/2682] add async-pool --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index e0bbd75a..c029ff5d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1579,6 +1579,7 @@ packages: - simple-cmd - simple-cmd-args + - async-pool - darcs < 0 # - idris # aeson https://github.com/idris-lang/Idris-dev/issues/4493 - libffi From 36f3b9b9ae9e6dfc426ce7a595a17d6c1d4709a0 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 13 Jul 2020 11:11:59 +0800 Subject: [PATCH 1745/2682] refined: fix my typo, undisable, and try opml-conduit (#5511) --- build-constraints.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c029ff5d..2a895153 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1452,7 +1452,6 @@ packages: - postgresql-binary - slave-thread < 0 - stm-containers < 0 # https://github.com/commercialhaskell/stackage/pull/5289#issuecomment-610353366 - - refined < 0 # https://github.com/nikita-volkov/refined/issues/33 "Iustin Pop @iustin": - prefix-units @@ -2196,7 +2195,7 @@ packages: - conduit-parse - dublincore-xml-conduit - euler-tour-tree < 0 # GHC 8.4 via base-4.11.0.0 - - opml-conduit < 0 # refined + - opml-conduit - rss-conduit < 0 - timerep - xml-conduit-parse < 0 # compilation error @@ -2208,7 +2207,7 @@ packages: - semirings - torsor - chronos - - refine + - refined - these-skinny "Kostiantyn Rybnikov @k-bx": From 29f3515172e67496d940152be8e6b4c1a502767a Mon Sep 17 00:00:00 2001 From: Anton Ekblad Date: Mon, 13 Jul 2020 12:43:23 +0200 Subject: [PATCH 1746/2682] Re-add selda-sqlite and selda-postgresql Tested to work with nightly as of 2020-07-13. --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2a895153..e48b0cc3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3600,8 +3600,8 @@ packages: "Anton Ekblad @valderman": - selda - - selda-sqlite < 0 # via selda-0.5.0.0 - - selda-postgresql < 0 # via selda-0.5.0.0 + - selda-sqlite + - selda-postgresql - selda-json "Luis Pedro Coelho @luispedro": From 223e8c10bc318b50299ce5a3b6a817cecb9a3342 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 13 Jul 2020 22:15:19 +0800 Subject: [PATCH 1747/2682] disable opml-conduit: fails with refined-0.5 opml-conduit-0.8.0.0/Text/OPML/Types.hs:57:49: error: Variable not in scope: throwRefine :: RefineException -> Maybe () | 57 | validate p value = unless (Text.null value) $ throwRefine $ RefineOtherException (typeOf p) "Text is not null" | ^^^^^^^^^^^ --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2a895153..0ea1c00e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2195,7 +2195,7 @@ packages: - conduit-parse - dublincore-xml-conduit - euler-tour-tree < 0 # GHC 8.4 via base-4.11.0.0 - - opml-conduit + - opml-conduit < 0 # Variable not in scope: throwRefine - rss-conduit < 0 - timerep - xml-conduit-parse < 0 # compilation error From 04c7fac5f07df12d0aac15825519da93078961e5 Mon Sep 17 00:00:00 2001 From: Colin Woodbury Date: Mon, 13 Jul 2020 09:49:19 -0700 Subject: [PATCH 1748/2682] Readd streaming-attoparsec --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0ea1c00e..ff86855a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1259,7 +1259,7 @@ packages: - microlens-aeson - pipes-random - servant-xml < 0 # via http-media - - streaming-attoparsec < 0 # via streaming + - streaming-attoparsec - versions # - vectortiles < 0 From cf6e5e6e1d9a50cf65fe133e3ccb5f01309bd322 Mon Sep 17 00:00:00 2001 From: Simon Jakobi Date: Mon, 13 Jul 2020 22:40:55 +0200 Subject: [PATCH 1749/2682] Re-enable hnix --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0ea1c00e..f62cf293 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -481,7 +481,7 @@ packages: - coercible-utils < 0 # ghc 8.10 - hspec-parsec - checkers - - hnix <0 # https://github.com/haskell-nix/hnix/issues/651 + - hnix - hashing - hnix-store-core - monadlist @@ -1121,7 +1121,7 @@ packages: - dhall-lsp-server - dhall-yaml - aeson-yaml # req'd by dhall-json - # - dhall-nix # deriving-compat via hnix + - dhall-nix "Andrew Thaddeus Martin @andrewthad": - colonnade < 0 # via profunctors-5.5 From 622029f19b7d727829a19d211c4cb8c7cc6d2257 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 15 Jul 2020 23:00:57 +0800 Subject: [PATCH 1750/2682] enable haxr --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0ea1c00e..59116683 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1003,7 +1003,7 @@ packages: - diagrams-svg < 0 # ghc 8.10 - force-layout < 0 # ghc 8.10 - SVGFonts < 0 # ghc 8.10 - - haxr < 0 # ghc 8.10 + - haxr - MonadRandom - monoid-extras < 0 # ghc 8.10 From 00eb319f444d64a4d6d1b0579cbbfafec76f1781 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Wed, 15 Jul 2020 21:02:57 +0000 Subject: [PATCH 1751/2682] Unrestricts hspec-golden (#5498) --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 34305cb9..8d353c27 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4889,9 +4889,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5491 - hedgehog < 1.0.3 - # https://github.com/commercialhaskell/stackage/issues/5498 - - hspec-golden == 0.1.0.1 - # end of packages # Package flags are applied to individual packages, and override the values of From 7324090f396e6720f1c92002606bb99276b6e5da Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Thu, 16 Jul 2020 04:46:38 +0000 Subject: [PATCH 1752/2682] Unrestricts base16 (#5513) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d2eea98f..28ea48b5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -82,7 +82,7 @@ packages: - lens-regex-pcre < 0 # via pcre-heavy "Emily Pillmore @topos": - - base16 < 0.3.0.0 # https://github.com/commercialhaskell/stackage/issues/5513 + - base16 - base16-lens - base32 - base32-lens From 1ed77bbb0004e537e77692042762008e258a31b7 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Thu, 16 Jul 2020 05:00:58 +0000 Subject: [PATCH 1753/2682] Unrestricts hedgehog (#5491) --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 28ea48b5..6bc264ba 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4886,9 +4886,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5484 - primitive < 0.7.1.0 - # https://github.com/commercialhaskell/stackage/issues/5491 - - hedgehog < 1.0.3 - # end of packages # Package flags are applied to individual packages, and override the values of From 47f2f5a8c9fc321eb288297e90820030448cf753 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Thu, 16 Jul 2020 05:03:01 +0000 Subject: [PATCH 1754/2682] Unrestricts aeson-yaml (#5481) --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6bc264ba..02a21843 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4880,9 +4880,6 @@ packages: - random-fu < 0.2.7.6 - random-source < 0.3.0.10 - # https://github.com/commercialhaskell/stackage/issues/5481 - - aeson-yaml < 1.1.0.0 - # https://github.com/commercialhaskell/stackage/issues/5484 - primitive < 0.7.1.0 From c2dc1ff56eecf234b9d9e878313829186b12d3e0 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Thu, 16 Jul 2020 05:08:32 +0000 Subject: [PATCH 1755/2682] Re-enables req tests (#5472) --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 02a21843..5f952bec 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5553,7 +5553,6 @@ expected-test-failures: - haskeline # https://github.com/commercialhaskell/stackage/issues/5439 - http-client # https://github.com/commercialhaskell/stackage/issues/5470 - http-directory # https://github.com/commercialhaskell/stackage/issues/5471 - - req # https://github.com/commercialhaskell/stackage/issues/5472 # Compilation failures - ListLike # No issue tracker, e-mail sent to maintainer From f81788be100846a3b6c442842eb06a99a9060c28 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Thu, 16 Jul 2020 05:27:07 +0000 Subject: [PATCH 1756/2682] Unrestricts optparse-generic (#5423) --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5f952bec..465252fe 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4866,9 +4866,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5393 - aeson < 1.5.0.0 - # https://github.com/commercialhaskell/stackage/issues/5423 - - optparse-generic < 1.4.0 - # https://github.com/commercialhaskell/stackage/issues/5424 - smallcheck < 1.2.0 From 43831e0817bf59e16b4ae3c80291208573726b63 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Thu, 16 Jul 2020 05:31:06 +0000 Subject: [PATCH 1757/2682] Restricts optparse-generic < 1.4 (#5518) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 465252fe..9757c739 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4879,6 +4879,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5484 - primitive < 0.7.1.0 + + # https://github.com/commercialhaskell/stackage/issues/5518 + - optparse-generic < 1.4 # end of packages From 3c79d66d50dc0be23e475d3a5172e517e841df31 Mon Sep 17 00:00:00 2001 From: davjam <45334176+davjam@users.noreply.github.com> Date: Thu, 16 Jul 2020 12:16:52 +0100 Subject: [PATCH 1758/2682] Add new maintainer & package MapWith --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9757c739..54fad61c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -9,6 +9,9 @@ cabal-format-version: "3.0" # Constraints for brand new builds packages: + "David James" @davjam": + - MapWith + "Bernie Pope @bjpop": - language-python From 34959fc349c6eacd2391dfa44b6e71cee5499ce7 Mon Sep 17 00:00:00 2001 From: davjam <45334176+davjam@users.noreply.github.com> Date: Thu, 16 Jul 2020 18:07:54 +0100 Subject: [PATCH 1759/2682] Add new maintainer & package MapWith (Fix typo) Co-authored-by: Simon Jakobi --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 54fad61c..0e8343c6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -9,7 +9,7 @@ cabal-format-version: "3.0" # Constraints for brand new builds packages: - "David James" @davjam": + "David James @davjam": - MapWith "Bernie Pope @bjpop": From c8fdf98781450dfa44b91ac2bf5d8824e041bac7 Mon Sep 17 00:00:00 2001 From: Tom McLaughlin Date: Fri, 17 Jul 2020 13:33:07 -0700 Subject: [PATCH 1760/2682] Add slack-progressbar --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9757c739..2d43a760 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -257,6 +257,7 @@ packages: "Tom McLaughlin @thomasjm": - aeson-typescript < 0 # th-abstraction-0.3 + - slack-progressbar "Paulo Tanaka @paulot": # on behalf of Bryan O'Sullivan @bos: From f3f97a90b310abdd7b76f451231b422b196452b0 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sun, 19 Jul 2020 02:45:32 +0000 Subject: [PATCH 1761/2682] Restricts dlist < 1.0 (#5524) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9757c739..e2817102 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4882,6 +4882,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5518 - optparse-generic < 1.4 + + # https://github.com/commercialhaskell/stackage/issues/5524 + - dlist < 1.0 # end of packages From 86b498325c956505437c05fe3ee4a6f0bf978271 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sun, 19 Jul 2020 02:48:23 +0000 Subject: [PATCH 1762/2682] Restricts incremental-parser < 0.5 (#5525) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index e2817102..ce518a9e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4885,6 +4885,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5524 - dlist < 1.0 + + # https://github.com/commercialhaskell/stackage/issues/5525 + - incremental-parser < 0.5 # end of packages From 57ebd2277ee4e9b0f5d6da5da69ac6579c7ef65b Mon Sep 17 00:00:00 2001 From: locallycompact Date: Sun, 19 Jul 2020 12:34:24 +0100 Subject: [PATCH 1763/2682] Add zipper-extra --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5a13040e..eb156809 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3931,6 +3931,7 @@ packages: - path-like - shake-plus - within + - zipper-extra "Domen Kozar @domenkozar": - elm2nix From ec9d446b89fc744ce1d55147c20f21c1d0266327 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mario=20Bla=C5=BEevi=C4=87?= Date: Sun, 19 Jul 2020 12:15:55 -0400 Subject: [PATCH 1764/2682] Added the input-parsers and construct packages, removed picoparsec --- build-constraints.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5a13040e..bd597b0d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -982,13 +982,14 @@ packages: - doctest < 0.17 # https://github.com/commercialhaskell/stackage/issues/5406 - base-compat - "Mario Blazevic @blamario": + "Mario Blazevic @blamario": - monad-parallel - monad-coroutine - - incremental-parser - monoid-subclasses - - picoparsec < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build - rank2classes + - input-parsers + - incremental-parser + - construct "Brent Yorgey @byorgey": - active < 0 # ghc 8.10 From df3c9f5c962c1c951064e0ef3fc72e2fd5b26e27 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sun, 19 Jul 2020 12:23:04 -0400 Subject: [PATCH 1765/2682] Unrestricts optparse-generic (#5518) --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index eb156809..cd40de48 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4885,9 +4885,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5484 - primitive < 0.7.1.0 - # https://github.com/commercialhaskell/stackage/issues/5518 - - optparse-generic < 1.4 - # https://github.com/commercialhaskell/stackage/issues/5524 - dlist < 1.0 From 2940eaef6322740bdb12700adf065ef462944d78 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sun, 19 Jul 2020 19:02:55 -0400 Subject: [PATCH 1766/2682] Disables streaming-commons tests (#5528) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index cd40de48..501549a7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5292,6 +5292,7 @@ skipped-tests: - config-ini # https://github.com/aisamanra/config-ini/issues/22 - polysemy-plugin # https://github.com/commercialhaskell/stackage/issues/4733 - primitive-extras # https://github.com/commercialhaskell/stackage/issues/5210 + - streaming-commons # https://github.com/commercialhaskell/stackage/issues/5528 # Runtime issues - blank-canvas # Never finishes https://github.com/ku-fpg/blank-canvas/issues/73 From 6a3ed1cc3ef9af5bc7612348408b67d6786eb106 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Mon, 20 Jul 2020 10:37:29 -0400 Subject: [PATCH 1767/2682] Re-enables streaming-commons tests (#5528) --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 501549a7..cd40de48 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5292,7 +5292,6 @@ skipped-tests: - config-ini # https://github.com/aisamanra/config-ini/issues/22 - polysemy-plugin # https://github.com/commercialhaskell/stackage/issues/4733 - primitive-extras # https://github.com/commercialhaskell/stackage/issues/5210 - - streaming-commons # https://github.com/commercialhaskell/stackage/issues/5528 # Runtime issues - blank-canvas # Never finishes https://github.com/ku-fpg/blank-canvas/issues/73 From 96ae71cd5d264e5544c1948e68f024fe678a1b76 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 20 Jul 2020 21:06:58 +0300 Subject: [PATCH 1768/2682] Relax upper bound and close #5525 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index daccdef5..6ed2de5c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4890,9 +4890,6 @@ packages: - dlist < 1.0 - rebase < 1.7 - rerebase < 1.7 - - # https://github.com/commercialhaskell/stackage/issues/5525 - - incremental-parser < 0.5 # end of packages From 51d62f47aaeb33d1b77e50f09fd69e4e28fb99ae Mon Sep 17 00:00:00 2001 From: locallycompact Date: Tue, 21 Jul 2020 00:24:07 +0100 Subject: [PATCH 1769/2682] Add ixset-typed-conversions, lucid-cdn and shake-plus-extended. --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index cd40de48..1c78d124 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3927,9 +3927,12 @@ packages: - aeson-with - binary-instances - comonad-extras + - ixset-typed-conversions + - lucid-cdn - path-extensions - path-like - shake-plus + - shake-plus-extended - within - zipper-extra From 17127b741bf0b9c86c72347ebb4da5f524328f6f Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Mon, 20 Jul 2020 22:03:53 -0400 Subject: [PATCH 1770/2682] Restricts rebase < 1.7 (#5524) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index cd40de48..eb5b795f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4890,6 +4890,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5525 - incremental-parser < 0.5 + + # https://github.com/commercialhaskell/stackage/issues/5524 + - rebase < 1.7 # end of packages From 187ac9cabc4bb1676474f563883adb2656ccb09e Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Mon, 20 Jul 2020 22:40:48 -0400 Subject: [PATCH 1771/2682] Restricts rerebase < 1.7 (#5524) --- build-constraints.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index eb5b795f..102915f5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4887,12 +4887,11 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5524 - dlist < 1.0 + - rebase < 1.7 + - rerebase < 1.7 # https://github.com/commercialhaskell/stackage/issues/5525 - incremental-parser < 0.5 - - # https://github.com/commercialhaskell/stackage/issues/5524 - - rebase < 1.7 # end of packages From 4b67d5f7b9494e90953120f36cbea64760855619 Mon Sep 17 00:00:00 2001 From: narumij Date: Tue, 21 Jul 2020 15:22:43 +0900 Subject: [PATCH 1772/2682] Add matrix-as-xyz --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 102915f5..81745255 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4323,6 +4323,9 @@ packages: - c14n - wai-saml2 + "Jun Narumi @narumij": + - matrix-as-xyz + "Grandfathered dependencies": - network - Boolean From 0459bdfcdaa5db9a42b47ebf96010846785b3de0 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 21 Jul 2020 19:06:23 +0300 Subject: [PATCH 1773/2682] rocksdb-query upper bound #5532 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2a1eebe7..54acfac5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4098,7 +4098,7 @@ packages: - nqe - secp256k1-haskell - rocksdb-haskell - - rocksdb-query + - rocksdb-query < 0.4 - haskoin-core < 0 # ghc 8.10 - haskoin-node < 0 # ghc 8.10 - haskoin-store < 0 # https://github.com/haskoin/haskoin-store/issues/12 From 33a94a04a27128cc8efe1c7c47835325b4153396 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 22 Jul 2020 09:25:04 +0300 Subject: [PATCH 1774/2682] Upper bound on base32 for #5533 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ff1cd870..cbb7f943 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4897,6 +4897,9 @@ packages: - rebase < 1.7 - rerebase < 1.7 + # https://github.com/commercialhaskell/stackage/issues/5533 + - base32 < 0.2 + # end of packages # Package flags are applied to individual packages, and override the values of From 45eaccd432750d98192d8739d87dd90e218f90b7 Mon Sep 17 00:00:00 2001 From: narumij Date: Wed, 22 Jul 2020 16:40:35 +0900 Subject: [PATCH 1775/2682] Add hall-symbols, symmetry-operations-symbols --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 81745255..7574d7b7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4325,6 +4325,8 @@ packages: "Jun Narumi @narumij": - matrix-as-xyz + - hall-symbols + - symmetry-operations-symbols "Grandfathered dependencies": - network From 86ec5889883ed269737efa5a462fd003ae067ec6 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 22 Jul 2020 17:17:50 +0300 Subject: [PATCH 1776/2682] Add rocksdb-haskell-jprupp (fixes #5532) --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index cbb7f943..9033e24f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4098,7 +4098,8 @@ packages: - nqe - secp256k1-haskell - rocksdb-haskell - - rocksdb-query < 0.4 + - rocksdb-haskell-jprupp + - rocksdb-query - haskoin-core < 0 # ghc 8.10 - haskoin-node < 0 # ghc 8.10 - haskoin-store < 0 # https://github.com/haskoin/haskoin-store/issues/12 From abe554beb82f400663a765fa2354ad566fd77b48 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 23 Jul 2020 06:55:39 +0300 Subject: [PATCH 1777/2682] Upper bound on data-fix for #5535 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index a75e0e75..bf8ded59 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4903,6 +4903,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5533 - base32 < 0.2 + # https://github.com/commercialhaskell/stackage/issues/5535 + - data-fix < 0.3 + # end of packages # Package flags are applied to individual packages, and override the values of From a0ddc3f28c3ef24d8f61c6f98d82c96ba6786885 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 23 Jul 2020 06:56:30 +0300 Subject: [PATCH 1778/2682] Remove upper bound on case32 and close #5533 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index bf8ded59..978996f5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4900,9 +4900,6 @@ packages: - rebase < 1.7 - rerebase < 1.7 - # https://github.com/commercialhaskell/stackage/issues/5533 - - base32 < 0.2 - # https://github.com/commercialhaskell/stackage/issues/5535 - data-fix < 0.3 From d246b88215d31ccdf64b4603a05cc2c9e448d276 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 23 Jul 2020 09:01:58 +0300 Subject: [PATCH 1779/2682] Upper bound on tasty-expected-failure #5537 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 978996f5..ff991e6e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4903,6 +4903,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5535 - data-fix < 0.3 + # https://github.com/commercialhaskell/stackage/issues/5537 + - tasty-expected-failure < 0.12 + # end of packages # Package flags are applied to individual packages, and override the values of From 9183b67b82f88ebaa389098eec64c63ceeca79bf Mon Sep 17 00:00:00 2001 From: "k.vanberendonck" Date: Thu, 23 Jul 2020 16:27:23 +1000 Subject: [PATCH 1780/2682] Allow github-webhooks-0.15.0 The compatibility issue in the test suite with `time-0.19` has finally been tracked down and resolved. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 978996f5..00037add 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3499,7 +3499,7 @@ packages: - dvorak "OnRock Engineering ": - - github-webhooks < 0 # unknown + - github-webhooks "Pavel Yakovlev @zmactep": - hasbolt < 0 # ghc 8.10 From f184cf73efc2c96ef646dca4541f4684695dafa8 Mon Sep 17 00:00:00 2001 From: Pavel Krajcevski Date: Fri, 24 Jul 2020 00:52:45 -0700 Subject: [PATCH 1781/2682] Add reliable-io to stackage --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 48ae3f6a..54082385 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1415,6 +1415,7 @@ packages: - freetype2 - HCodecs - netcode-io + - reliable-io "Emanuel Borsboom @borsboom": - BoundedChan From cd7f67cdf2bd0294fcb1e8f37c492e3c62de5b6c Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 26 Jul 2020 11:38:27 +0300 Subject: [PATCH 1782/2682] Upper bound on recursion-schemes #5540 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 48ae3f6a..b3072f2a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4906,6 +4906,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5537 - tasty-expected-failure < 0.12 + # https://github.com/commercialhaskell/stackage/issues/5540 + - recursion-schemes < 5.2 + # end of packages # Package flags are applied to individual packages, and override the values of From 8d591998581c32178aef294211fa6647278639e9 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 26 Jul 2020 11:40:18 +0300 Subject: [PATCH 1783/2682] Skip benchmarks for #5541 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index b3072f2a..b9f589a3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5996,6 +5996,9 @@ skipped-benchmarks: - vector-binary-instances - clock + # https://github.com/commercialhaskell/stackage/issues/5541 + - regex-applicative + # end of skipped-benchmarks From a62aee4e28ba6d5b5169a79ccc1a7b69748232ef Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 27 Jul 2020 09:10:52 +0300 Subject: [PATCH 1784/2682] Use older sequence-formats stschiff/sequence-formats#1 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0a5adf50..7a966a2e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -73,7 +73,7 @@ packages: - sparse-tensor "Stephan Schiffels @stschiff": - - sequence-formats + - sequence-formats < 1.5 # https://github.com/stschiff/sequence-formats/issues/1 - pipes-ordered-zip - sequenceTools From 3c2def2760aea7a66113bba5b3d9254eafe18b9f Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 27 Jul 2020 10:56:22 +0300 Subject: [PATCH 1785/2682] Revert "Use older sequence-formats stschiff/sequence-formats#1" This reverts commit a62aee4e28ba6d5b5169a79ccc1a7b69748232ef. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7a966a2e..0a5adf50 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -73,7 +73,7 @@ packages: - sparse-tensor "Stephan Schiffels @stschiff": - - sequence-formats < 1.5 # https://github.com/stschiff/sequence-formats/issues/1 + - sequence-formats - pipes-ordered-zip - sequenceTools From 1a208f914b09d5f54ee745e168d75ba5177330dc Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 27 Jul 2020 12:17:21 +0300 Subject: [PATCH 1786/2682] Add packdeps --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0a5adf50..eb89b4c7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -705,6 +705,7 @@ packages: - http-download - hi-file-parser - rio-prettyprint + - packdeps "Brandon Barker @bbarker": - unexceptionalio From 1f3abb41bb0eb9852514288447c627d1abbe1dfc Mon Sep 17 00:00:00 2001 From: Alexey Raga Date: Sun, 26 Jul 2020 15:25:16 +1000 Subject: [PATCH 1787/2682] Add hw-kafka-client --- build-constraints.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index eb89b4c7..6b264ac1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2977,6 +2977,9 @@ packages: "Jan Gerlinger @JanGe": - irc-dcc < 0 + "Alexey Raga @AlexeyRaga": + - hw-kafka-client + "John Ky newhoggy@gmail.com @newhoggy": - aeson-lens - antiope-core < 0 # ghc 8.10 via amazonka @@ -4334,7 +4337,7 @@ packages: - matrix-as-xyz - hall-symbols - symmetry-operations-symbols - + "Grandfathered dependencies": - network - Boolean @@ -4896,7 +4899,7 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5484 - primitive < 0.7.1.0 - + # https://github.com/commercialhaskell/stackage/issues/5524 - dlist < 1.0 - rebase < 1.7 From 6d701db9d43bc276592c6dc6a4df0cc50f11b10a Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Mon, 27 Jul 2020 10:31:44 -0700 Subject: [PATCH 1788/2682] Disable tests for `hw-kafka-client` (#5542) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6b264ac1..87163d91 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5324,6 +5324,7 @@ skipped-tests: - binary-parsers # https://github.com/winterland1989/binary-parsers/issues/3 - simple-affine-space # https://github.com/commercialhaskell/stackage/issues/5110 - language-puppet # https://github.com/commercialhaskell/stackage/issues/5405 + - hw-kafka-client # https://github.com/commercialhaskell/stackage/pull/5542 # Missing foreign library - symengine # symengine From eb1e11d9511ec4d8a68411c3d3407260d82b9e85 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Mon, 27 Jul 2020 11:28:36 -0700 Subject: [PATCH 1789/2682] Merge #5543 manually --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 87163d91..21a0abf4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4338,6 +4338,9 @@ packages: - hall-symbols - symmetry-operations-symbols + "Hideaki Kawai @kayhide": + - wakame + "Grandfathered dependencies": - network - Boolean From de074042ff2c05ff23e56e65de42dd25b2d95452 Mon Sep 17 00:00:00 2001 From: Henning Thielemann Date: Tue, 28 Jul 2020 09:00:49 +0200 Subject: [PATCH 1790/2682] re-enable some of my packages as they are fixed for GHC-8.10 --- build-constraints.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 21a0abf4..8067d41f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -376,9 +376,9 @@ packages: - apportionment - audacity - bibtex - - board-games < 0 # via httpd-shed + - board-games - buffer-pipe - - cabal-flatpak < 0 # via cabal plan - https://github.com/commercialhaskell/stackage/issues/5398 + - cabal-flatpak - calendar-recycling - checksum - combinatorial @@ -388,7 +388,7 @@ packages: - cutter - data-accessor - data-accessor-mtl - - data-accessor-template < 0 # via template-haskell-2.15.0.0 + - data-accessor-template - data-accessor-transformers - data-ref - dsp @@ -409,14 +409,14 @@ packages: - midi - midi-music-box < 0 # via diagrams-lib - mbox-utility - - med-module < 0 # compilation failure + - med-module - monoid-transformer - non-empty - non-negative - numeric-prelude - pathtype - pooled-io - - probability < 0 # MonadFail + - probability - quickcheck-transformer - sample-frame - sample-frame-np @@ -457,7 +457,7 @@ packages: - resistor-cube < 0 # via lapack - linear-circuit < 0 # via lapack # Not a maintainer - - cabal-plan < 0 # https://github.com/commercialhaskell/stackage/issues/5398 + - cabal-plan - topograph - ix-shapable - hsshellscript From 07ad58c991b6a76d974b0b8288f43cd7623b5c1b Mon Sep 17 00:00:00 2001 From: Henning Thielemann Date: Tue, 28 Jul 2020 09:40:45 +0200 Subject: [PATCH 1791/2682] re-enable dependencies of med-module and board-games --- build-constraints.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8067d41f..0a9e1225 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -462,6 +462,7 @@ packages: - ix-shapable - hsshellscript - hyper < 0 # via base-4.13.0.0 + - storable-endian "Jeremy Barisch-Rooney @barischrooneyj": - threepenny-gui-flexbox < 0 # GHC 8.4 via clay @@ -1313,7 +1314,7 @@ packages: - hxt-pickle-utils < 0 - imagesize-conduit - json-schema < 0 - - multipart < 0 # MonadFail + - multipart # - rest-client # http-types 0.12 - rest-core < 0 # GHC 8.4 via base-4.11.0.0 - rest-snap < 0 # GHC 8.4 via rest-core @@ -2525,7 +2526,7 @@ packages: "Peter Simons @peti": - cabal2nix < 0 # ghc 8.10 - cabal2spec - - cgi < 0 # via multipart + - cgi - distribution-nixpkgs - distribution-opensuse - flexible-defaults From 96af2e3ad8c1ccacc118527ae37ef3f6c9b2431c Mon Sep 17 00:00:00 2001 From: locallycompact Date: Tue, 28 Jul 2020 00:34:52 +0100 Subject: [PATCH 1792/2682] Add ixset-typed-binary-instance, ixset-typed-hashable-instance and path-binary-instance --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0a9e1225..c627f743 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3934,8 +3934,11 @@ packages: - aeson-with - binary-instances - comonad-extras + - ixset-typed-binary-instance - ixset-typed-conversions + - ixset-typed-hashable-instance - lucid-cdn + - path-binary-instance - path-extensions - path-like - shake-plus From 0f6aa20bd284a4f956f384ac0bc5b35b0fa593e8 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 28 Jul 2020 15:46:52 -0700 Subject: [PATCH 1793/2682] Upper bound `shake-plus-extended` (#5548) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c627f743..3033d398 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3942,7 +3942,7 @@ packages: - path-extensions - path-like - shake-plus - - shake-plus-extended + - shake-plus-extended < 0.2.0.0 # https://github.com/commercialhaskell/stackage/issues/5548 - within - zipper-extra From 1b7acbd5e4392e55038fdc731e16d1f3d107a23f Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 28 Jul 2020 15:58:02 -0700 Subject: [PATCH 1794/2682] Test fix --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3033d398..4ad1da78 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3942,7 +3942,7 @@ packages: - path-extensions - path-like - shake-plus - - shake-plus-extended < 0.2.0.0 # https://github.com/commercialhaskell/stackage/issues/5548 + - shake-plus-extended # 0.2.0.0 # https://github.com/commercialhaskell/stackage/issues/5548 - within - zipper-extra From 90d213e9e41dbfbbb1772d350807edd1ce6a2b1f Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 28 Jul 2020 16:11:54 -0700 Subject: [PATCH 1795/2682] Fix #5548 as was uploaded upstream --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4ad1da78..c627f743 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3942,7 +3942,7 @@ packages: - path-extensions - path-like - shake-plus - - shake-plus-extended # 0.2.0.0 # https://github.com/commercialhaskell/stackage/issues/5548 + - shake-plus-extended - within - zipper-extra From 84bde5c207c515ab011ec5ee0df2e3fdbf1e61d4 Mon Sep 17 00:00:00 2001 From: Andrew Cowie Date: Tue, 28 Jul 2020 22:45:45 +1000 Subject: [PATCH 1796/2682] Restore locators package --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c627f743..6c2b378c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2501,11 +2501,11 @@ packages: - io-streams - openssl-streams - "Andrew Cowie @afcowie": + "Andrew Cowie @istathar": - chronologique - http-common - http-streams - - locators < 0 # via cryptohash + - locators - core-data - core-program - core-text From 632660d3d239fdafec46853925185ffbe352505e Mon Sep 17 00:00:00 2001 From: Hideaki Kawai Date: Mon, 27 Jul 2020 20:05:38 +0900 Subject: [PATCH 1797/2682] Create verify-package script --- verify-package | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100755 verify-package diff --git a/verify-package b/verify-package new file mode 100755 index 00000000..10ebb7bd --- /dev/null +++ b/verify-package @@ -0,0 +1,46 @@ +#!/usr/bin/env bash + +# Script to verify a package to build successfully +# Provide pacakge name by the first argument +# +# Example: +# ./verify-package mtl +# or +# ./verify-package mtl-2.2.2 + +set -eu + +die() { + >&2 echo "$1" + exit 1 +} + +package="${1:-}" +if [[ -z $package ]]; then + die "Package name is not given" +fi + + +here="$(cd "$(dirname "$0")" > /dev/null; pwd)" +dir="$(mktemp -d tmp.XXXX)" + +exit() { + cd "$here" + rm -rf "$dir" +} +trap exit EXIT + +cd "$dir" +stack unpack "$package" +cd "$(ls | head -n 1)" +rm -f stack.yaml +stack init --resolver nightly +stack build --resolver nightly --haddock --test --bench --no-run-benchmarks + + +cat < Date: Mon, 27 Jul 2020 20:23:32 +0900 Subject: [PATCH 1798/2682] Update github PR template --- .github/PULL_REQUEST_TEMPLATE.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 464d08c6..1f21a64c 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,7 +1,11 @@ Checklist: - [ ] Meaningful commit message, eg `add my-cool-package` (please not mention `build-constraints.yml`) - [ ] At least 30 minutes have passed since uploading to Hackage -- [ ] On your own machine, in a _new directory_, you have successfully run the following set of commands (replace `$package` with the name of the package that is submitted, and `$version` with the version of the package you want to get into Stackage): +- [ ] On your own machine, you have successfully run the following command (replace `$package` with the name of the package that is submitted, and `$version` with the version of the package you want to get into Stackage): + + ./verify-package $pacakge # or $pacakge-$version + +The script runs virtually the following commands in a clean directory: stack unpack $package-$version # $version is optional cd $package-$version From 578d849d7022958865c7d205c6c37c91be76e7d4 Mon Sep 17 00:00:00 2001 From: charukiewicz Date: Tue, 28 Jul 2020 20:51:26 -0500 Subject: [PATCH 1799/2682] updated email address for maintainer @charukiewicz --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6c2b378c..ff1559e5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -27,7 +27,7 @@ packages: "Allan Lukwago @epicallan": - servant-errors < 0 # ghc 8.10 via servant - "Christian Charukiewicz @charukiewicz": + "Christian Charukiewicz @charukiewicz": - isbn "Koz Ross @kozross": From b6de4b94321faaee4ed99639e35b95f97fd9f324 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 29 Jul 2020 09:47:13 -0700 Subject: [PATCH 1800/2682] Disable testing for `rpmbuild-order-0.4.0` (#5550) --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ff1559e5..2c0b9e25 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5426,6 +5426,9 @@ skipped-tests: # https://github.com/commercialhaskell/stackage/issues/5302 - registry + + # https://github.com/commercialhaskell/stackage/issues/5550 + - rpmbuild-order # end of skipped-tests # Tests listed in expected-test-failures configure correctly but may fail to run @@ -6130,6 +6133,7 @@ build-tool-overrides: # - bindings-GLFW-3.1.2.1 # Comment saying what should be done when the new version is releasedskipped test-suite tell-me-when-its-released: - cpio-conduit-0.7.0 # remove from skipped-tests, https://github.com/da-x/cpio-conduit/issues/1 +- rpmbuild-order-0.4.0 # remove from skipped-tests, https://github.com/commercialhaskell/stackage/issues/5550 # Packages which should be hidden after registering, to avoid module name # conflicts. This is intended for at least two use cases: From 4afa67bff0a38ac755bc22f744ded0c9d09cb5dd Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 30 Jul 2020 12:55:58 -0700 Subject: [PATCH 1801/2682] Attempt removal of upper bound for `recursion-schemes` --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2c0b9e25..fdf19064 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4919,7 +4919,7 @@ packages: - tasty-expected-failure < 0.12 # https://github.com/commercialhaskell/stackage/issues/5540 - - recursion-schemes < 5.2 + # recursion-schemes < 5.2 # end of packages From 3218e4ec3fc51e6b61e2b0a94e0a1b5b0e9a64d0 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 30 Jul 2020 13:03:01 -0700 Subject: [PATCH 1802/2682] Bounds for #5540 --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index fdf19064..d3c41d0d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4919,7 +4919,8 @@ packages: - tasty-expected-failure < 0.12 # https://github.com/commercialhaskell/stackage/issues/5540 - # recursion-schemes < 5.2 + - recursion-schemes < 5.2 + - stackcollapse-ghc < 0.0.1.3 # end of packages From a9cb2658415c28305da37db815f171158ef90035 Mon Sep 17 00:00:00 2001 From: Matthew Wraith Date: Thu, 30 Jul 2020 12:40:34 -0500 Subject: [PATCH 1803/2682] Transfer Luke Hoersten's packages to Matt Wraith Please see issue #5552 --- build-constraints.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d3c41d0d..88930934 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4085,11 +4085,11 @@ packages: "Zoltan Kelemen @kelemzol": - fswatch < 0 - "Luke Hoersten @lukehoersten": - - prometheus < 0 - - hgrev < 0 - - seqid < 0 - - seqid-streams < 0 + "Matthew Wraith @wraithm": + - prometheus + - hgrev + - seqid + - seqid-streams "Daniel Gorin @jcpetruzza": - barbies < 0 From 119c59cd71ac4e67c7635e6eb4025633c9c841d5 Mon Sep 17 00:00:00 2001 From: Brandon Elam Barker Date: Thu, 30 Jul 2020 10:21:58 -0400 Subject: [PATCH 1804/2682] Add zio --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 88930934..8838ccc8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -711,6 +711,7 @@ packages: "Brandon Barker @bbarker": - unexceptionalio - unexceptionalio-trans + - zio "Omari Norman @massysett": - rainbow From 9078954416ed94dfd6aa60c90f734b65f339f8ea Mon Sep 17 00:00:00 2001 From: Anthony Cowley Date: Wed, 29 Jul 2020 17:43:29 -0400 Subject: [PATCH 1805/2682] Remove duplicate entry for vinyl Removing a second entry for the `vinyl` package that seems to have prevented it from being included in Stackage releases since an earlier PR adding it under my name. I am the primary maintainer for the package. --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8838ccc8..2488da36 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2683,7 +2683,6 @@ packages: "Stanislav Chernichkin @schernichkin": - partial-isomorphisms - - vinyl < 0 # kind stuff "Christoph Breitkopf @bokesan": - IntervalMap From 526273e75b5044568618c85487936daef42ddfca Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 30 Jul 2020 15:15:30 -0700 Subject: [PATCH 1806/2682] Install `rpm` in the docker image --- debian-bootstrap.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index a0f3aae3..3b94d744 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -161,6 +161,7 @@ apt-get install -y \ python3-scipy \ r-base \ r-base-dev \ + rpm \ ruby-dev \ software-properties-common \ sudo \ From ea1f498e5bf3058695b203721f4278c1558471ce Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 30 Jul 2020 15:35:19 -0700 Subject: [PATCH 1807/2682] Try `hw-ip` --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2488da36..82146640 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3007,7 +3007,7 @@ packages: - hw-hedgehog - hw-hspec-hedgehog - hw-int - - hw-ip < 0 # generic-lens 2.0.0.0 + - hw-ip # 0 # generic-lens 2.0.0.0 - hw-json < 0 # generic-lens 2.0.0.0 - hw-json-simple-cursor < 0 # generic-lens 2.0.0.0 - hw-json-standard-cursor < 0 # generic-lens 2.0.0.0 From dc0a6136ca477fb1217547eeb2fefa2a92f1ed02 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 30 Jul 2020 15:38:48 -0700 Subject: [PATCH 1808/2682] `hw-ip` seems to work --- build-constraints.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 82146640..d9d7af0d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3007,7 +3007,7 @@ packages: - hw-hedgehog - hw-hspec-hedgehog - hw-int - - hw-ip # 0 # generic-lens 2.0.0.0 + - hw-ip - hw-json < 0 # generic-lens 2.0.0.0 - hw-json-simple-cursor < 0 # generic-lens 2.0.0.0 - hw-json-standard-cursor < 0 # generic-lens 2.0.0.0 @@ -5194,7 +5194,6 @@ skipped-tests: - hw-balancedparens # via QuickCheck-2.12.6.1, via hspec-2.6.0 - hw-bits # via QuickCheck-2.12.6.1 - hw-excess # via QuickCheck-2.12.6.1, via hspec-2.6.0 - - hw-ip # via hspec-2.6.0 - hw-json # via hspec-2.6.0 - hw-prim # via QuickCheck-2.12.6.1, via hspec-2.6.0 - hw-rankselect # via QuickCheck-2.12.6.1, via hspec-2.6.0 @@ -5797,7 +5796,6 @@ skipped-haddocks: - modular # https://github.com/haskell/haddock/issues/900 - sparkle # Java function failures tweag/sparkle#144 - polysemy-zoo # Needs polysemy-plugin GHC plugin -- hw-ip # https://github.com/commercialhaskell/stackage/issues/5014 # end of skipped-haddocks # Benchmarks which should not be built. Note that Stackage builds benchmarks but does not run them. From 7801c4b8d797ab71c83512295fae7ecc48025283 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 30 Jul 2020 15:43:58 -0700 Subject: [PATCH 1809/2682] Try `asif` --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d9d7af0d..8883bbc6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2991,7 +2991,7 @@ packages: - antiope-sqs < 0 # ghc 8.10 via amazonka - arbor-lru-cache - arbor-postgres < 0 # generic-lens 2.0.0.0 - - asif < 0 # hw-ip due to generic-lens 2.0.0.0 + - asif # 0 # hw-ip due to generic-lens 2.0.0.0 - avro - bits-extra - hw-balancedparens From 9b13f83077dca36e3c397d2a7c492121eb919564 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 30 Jul 2020 15:49:00 -0700 Subject: [PATCH 1810/2682] #5014 still an issue --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8883bbc6..c7043c5e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5796,6 +5796,7 @@ skipped-haddocks: - modular # https://github.com/haskell/haddock/issues/900 - sparkle # Java function failures tweag/sparkle#144 - polysemy-zoo # Needs polysemy-plugin GHC plugin +- hw-ip # https://github.com/commercialhaskell/stackage/issues/5014 # end of skipped-haddocks # Benchmarks which should not be built. Note that Stackage builds benchmarks but does not run them. From 21247e11372bc7b7f18ac68b0edb475c0e8b78c9 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 30 Jul 2020 16:02:50 -0700 Subject: [PATCH 1811/2682] `asif` seems ok --- build-constraints.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c7043c5e..dfeb6e82 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2991,7 +2991,7 @@ packages: - antiope-sqs < 0 # ghc 8.10 via amazonka - arbor-lru-cache - arbor-postgres < 0 # generic-lens 2.0.0.0 - - asif # 0 # hw-ip due to generic-lens 2.0.0.0 + - asif - avro - bits-extra - hw-balancedparens @@ -5653,9 +5653,6 @@ expected-test-failures: # https://github.com/commercialhaskell/stackage/issues/4289 - Diff - # https://github.com/commercialhaskell/stackage/issues/4294 - - asif - # to get fixed in version after 0.3.2 https://github.com/snoyberg/tar-conduit/issues/28 - tar-conduit From 02e3ff0a7b6a2368ab9b476b4f5150523f2831f7 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 30 Jul 2020 16:09:22 -0700 Subject: [PATCH 1812/2682] Test `haskeline` --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index dfeb6e82..3a071e2f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5592,7 +5592,7 @@ expected-test-failures: - haskell-src-exts # https://github.com/commercialhaskell/stackage/issues/5151 - simple-vec3 # https://github.com/commercialhaskell/stackage/pull/5410 - bech32-th # https://github.com/commercialhaskell/stackage/issues/5432 - - haskeline # https://github.com/commercialhaskell/stackage/issues/5439 + # haskeline # https://github.com/commercialhaskell/stackage/issues/5439 - http-client # https://github.com/commercialhaskell/stackage/issues/5470 - http-directory # https://github.com/commercialhaskell/stackage/issues/5471 From 1f307c5c91eeba6001d0560f569b990e09565ed7 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 30 Jul 2020 16:35:23 -0700 Subject: [PATCH 1813/2682] `haskeline` still fails (#5439) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3a071e2f..dfeb6e82 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5592,7 +5592,7 @@ expected-test-failures: - haskell-src-exts # https://github.com/commercialhaskell/stackage/issues/5151 - simple-vec3 # https://github.com/commercialhaskell/stackage/pull/5410 - bech32-th # https://github.com/commercialhaskell/stackage/issues/5432 - # haskeline # https://github.com/commercialhaskell/stackage/issues/5439 + - haskeline # https://github.com/commercialhaskell/stackage/issues/5439 - http-client # https://github.com/commercialhaskell/stackage/issues/5470 - http-directory # https://github.com/commercialhaskell/stackage/issues/5471 From 92248f96821b5591a658397a1f7c30f1219b8d68 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 30 Jul 2020 16:36:02 -0700 Subject: [PATCH 1814/2682] Try `simple-affine-space` --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index dfeb6e82..369dc869 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5329,7 +5329,7 @@ skipped-tests: - cpio-conduit # Test file not in tarball https://github.com/da-x/cpio-conduit/issues/1 - jsaddle # Never finishes without framebuffer https://github.com/ghcjs/jsaddle/issues/9 - binary-parsers # https://github.com/winterland1989/binary-parsers/issues/3 - - simple-affine-space # https://github.com/commercialhaskell/stackage/issues/5110 + # simple-affine-space # https://github.com/commercialhaskell/stackage/issues/5110 - language-puppet # https://github.com/commercialhaskell/stackage/issues/5405 - hw-kafka-client # https://github.com/commercialhaskell/stackage/pull/5542 From d7917901727dfb0629c9d3f08d25bd39c8ab41dc Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 30 Jul 2020 16:45:00 -0700 Subject: [PATCH 1815/2682] `simple-affine-space` issue is still present (#5110) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 369dc869..dfeb6e82 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5329,7 +5329,7 @@ skipped-tests: - cpio-conduit # Test file not in tarball https://github.com/da-x/cpio-conduit/issues/1 - jsaddle # Never finishes without framebuffer https://github.com/ghcjs/jsaddle/issues/9 - binary-parsers # https://github.com/winterland1989/binary-parsers/issues/3 - # simple-affine-space # https://github.com/commercialhaskell/stackage/issues/5110 + - simple-affine-space # https://github.com/commercialhaskell/stackage/issues/5110 - language-puppet # https://github.com/commercialhaskell/stackage/issues/5405 - hw-kafka-client # https://github.com/commercialhaskell/stackage/pull/5542 From 918c558d1257f1910dbe9185fea9d8a05d0f6cbd Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 30 Jul 2020 16:47:57 -0700 Subject: [PATCH 1816/2682] `rpmbuild-order` should pass now --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index dfeb6e82..4dee5d6e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5426,9 +5426,6 @@ skipped-tests: # https://github.com/commercialhaskell/stackage/issues/5302 - registry - - # https://github.com/commercialhaskell/stackage/issues/5550 - - rpmbuild-order # end of skipped-tests # Tests listed in expected-test-failures configure correctly but may fail to run From da0300878061ab1e57b9345978ae9dd7bfda715f Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 31 Jul 2020 09:19:47 -0700 Subject: [PATCH 1817/2682] Upper bound `mwc-random` --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4dee5d6e..30944d01 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4592,7 +4592,7 @@ packages: - mono-traversable-instances - mono-traversable-keys - multiset - - mwc-random + - mwc-random < 0.15.0.0 # https://github.com/commercialhaskell/stackage/issues/5557 - names-th - nanospec - nettle From 798c3a13b6dc71f84b2430c9c5bed3df5cace7e6 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 31 Jul 2020 09:22:39 -0700 Subject: [PATCH 1818/2682] Upper bound `prettyprinter` (#5558) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 30944d01..286f8f2d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2749,7 +2749,7 @@ packages: "David Luposchainsky @quchen": - pgp-wordlist - show-prettyprint < 0 # via trifecta - - prettyprinter + - prettyprinter < 1.7.0 # https://github.com/commercialhaskell/stackage/issues/5558 - prettyprinter-ansi-terminal - prettyprinter-compat-wl-pprint - prettyprinter-compat-ansi-wl-pprint From 10caa285b854e36042077c7354aeae3e4e90feec Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 31 Jul 2020 09:25:51 -0700 Subject: [PATCH 1819/2682] Upper bound `skylighting` (#5559) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 286f8f2d..5d0ffa4d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2876,7 +2876,7 @@ packages: - cmark - texmath - highlighting-kate - - skylighting + - skylighting < 0.9 # https://github.com/commercialhaskell/stackage/issues/5559 - pandoc-types - zip-archive - doclayout From a632abd0cd6c69c2e174d7dd4cbe65fdc0388bec Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 31 Jul 2020 09:29:42 -0700 Subject: [PATCH 1820/2682] Upper bound `skylighting-core` (#5559) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5d0ffa4d..6074f560 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4683,7 +4683,7 @@ packages: - singleton-bool - size-based < 0 # ghc 8.10 - skein - - skylighting-core + - skylighting-core < 0.9 # https://github.com/commercialhaskell/stackage/issues/5559 - snap-core - some - special-values From d3ee1ee93fd67f3d0c936ead1eb0e30094015db1 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 31 Jul 2020 09:51:28 -0700 Subject: [PATCH 1821/2682] Upper bound `prettyprinter-ansi-terminal` (#5560) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6074f560..280ad580 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2750,7 +2750,7 @@ packages: - pgp-wordlist - show-prettyprint < 0 # via trifecta - prettyprinter < 1.7.0 # https://github.com/commercialhaskell/stackage/issues/5558 - - prettyprinter-ansi-terminal + - prettyprinter-ansi-terminal < 1.1.2 # https://github.com/commercialhaskell/stackage/issues/5560 - prettyprinter-compat-wl-pprint - prettyprinter-compat-ansi-wl-pprint - prettyprinter-compat-annotated-wl-pprint From 0e98d02e53929d5841567ef2906999b08b05cec0 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 31 Jul 2020 10:35:56 -0700 Subject: [PATCH 1822/2682] Remove upper bounds due to #5559. Close #5559 --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 280ad580..d21f1c5e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2876,7 +2876,7 @@ packages: - cmark - texmath - highlighting-kate - - skylighting < 0.9 # https://github.com/commercialhaskell/stackage/issues/5559 + - skylighting - pandoc-types - zip-archive - doclayout @@ -4683,7 +4683,7 @@ packages: - singleton-bool - size-based < 0 # ghc 8.10 - skein - - skylighting-core < 0.9 # https://github.com/commercialhaskell/stackage/issues/5559 + - skylighting-core - snap-core - some - special-values From b06beabe16e402a040c6ce7f868a06c0eaa81235 Mon Sep 17 00:00:00 2001 From: Simon Jakobi Date: Fri, 31 Jul 2020 19:08:14 +0200 Subject: [PATCH 1823/2682] Revert "Upper bound `prettyprinter-ansi-terminal` (#5560)" This reverts commit d3ee1ee93fd67f3d0c936ead1eb0e30094015db1. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d21f1c5e..286f8f2d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2750,7 +2750,7 @@ packages: - pgp-wordlist - show-prettyprint < 0 # via trifecta - prettyprinter < 1.7.0 # https://github.com/commercialhaskell/stackage/issues/5558 - - prettyprinter-ansi-terminal < 1.1.2 # https://github.com/commercialhaskell/stackage/issues/5560 + - prettyprinter-ansi-terminal - prettyprinter-compat-wl-pprint - prettyprinter-compat-ansi-wl-pprint - prettyprinter-compat-annotated-wl-pprint From f2231dab439c62d79095f3f2c2851cdef89b2b43 Mon Sep 17 00:00:00 2001 From: Simon Jakobi Date: Fri, 31 Jul 2020 19:11:26 +0200 Subject: [PATCH 1824/2682] Disable prettyprinter-ansi-terminal benchmarks Closes https://github.com/commercialhaskell/stackage/issues/5560. --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 286f8f2d..89fc5e0d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5994,6 +5994,8 @@ skipped-benchmarks: # @phadej - dlist-nonempty # criterion-1.3 - splitmix # criterion-1.3 + # @sjakobi + - prettyprinter-ansi-terminal # https://github.com/commercialhaskell/stackage/issues/5560 # Due to cycles, which are actually just limitations in Stack right now. - criterion From 3abe90fad1cdfbda46c2c91367ccf84f1d174cf8 Mon Sep 17 00:00:00 2001 From: Simon Jakobi Date: Fri, 31 Jul 2020 19:14:40 +0200 Subject: [PATCH 1825/2682] Move the prettyprinter packages to my packages --- build-constraints.yaml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 89fc5e0d..ba9ae659 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -492,6 +492,12 @@ packages: - monadlist - ref-tf - unordered-containers + - prettyprinter < 1.7.0 # https://github.com/commercialhaskell/stackage/issues/5558 + - prettyprinter-ansi-terminal + - prettyprinter-compat-wl-pprint + - prettyprinter-compat-ansi-wl-pprint + - prettyprinter-compat-annotated-wl-pprint + - prettyprinter-convert-ansi-wl-pprint "Joe M @joe9": - logger-thread < 0 # via protolude @@ -2749,11 +2755,6 @@ packages: "David Luposchainsky @quchen": - pgp-wordlist - show-prettyprint < 0 # via trifecta - - prettyprinter < 1.7.0 # https://github.com/commercialhaskell/stackage/issues/5558 - - prettyprinter-ansi-terminal - - prettyprinter-compat-wl-pprint - - prettyprinter-compat-ansi-wl-pprint - - prettyprinter-compat-annotated-wl-pprint "Jeremy Shaw @stepcut": - boomerang < 0 # GHC 8.4 via template-haskell-2.13.0.0 From 963d501518d17e1265dd657ff44cd5ea0a406522 Mon Sep 17 00:00:00 2001 From: Simon Jakobi Date: Fri, 31 Jul 2020 19:15:21 +0200 Subject: [PATCH 1826/2682] Re-enable prettyprinter tests --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ba9ae659..61742226 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5643,7 +5643,6 @@ expected-test-failures: - relude # doctest fails due to GHC bugs, will be fixed in the next `relude` release - stm-delay # https://github.com/joeyadams/haskell-stm-delay/issues/5 - tmp-postgres # https://github.com/jfischoff/tmp-postgres/issues/1 - - prettyprinter # Could not load module ‘Test.QuickCheck.Modifiers’ (member of the hidden package ‘QuickCheck-2.13.2’) # https://github.com/pruvisto/heap/issues/11 - heap From e5ed79fc27f0a411e6b3b805f214083ab7b0857e Mon Sep 17 00:00:00 2001 From: Simon Jakobi Date: Fri, 31 Jul 2020 19:16:16 +0200 Subject: [PATCH 1827/2682] Keep prettyprinter benchmarks skipped --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 61742226..3b2ad98b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5896,7 +5896,6 @@ skipped-benchmarks: - openpgp-asciiarmor - phantom-state - pretty-simple - - prettyprinter - prometheus-client - ramus - reinterpret-cast @@ -5995,6 +5994,7 @@ skipped-benchmarks: - dlist-nonempty # criterion-1.3 - splitmix # criterion-1.3 # @sjakobi + - prettyprinter - prettyprinter-ansi-terminal # https://github.com/commercialhaskell/stackage/issues/5560 # Due to cycles, which are actually just limitations in Stack right now. From 019f8fa3497b40f55623803543407d06dfcd67be Mon Sep 17 00:00:00 2001 From: Dominik Schrempf Date: Fri, 31 Jul 2020 12:49:30 +0200 Subject: [PATCH 1828/2682] Add ELynx and Mcmc --- build-constraints.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3b2ad98b..9a623fb7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4327,6 +4327,15 @@ packages: "Dominik Schrempf @dschrempf": - pava + - elynx-nexus + - elynx-markov + - elynx-seq + - elynx-tools + - elynx-tree + - slynx + - tlynx + - elynx + - mcmc "Eric Rochester @erochest": - text-regex-replace From 7dd9624a969affcc217e736558def4953f6cf0a4 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 31 Jul 2020 12:09:43 -0700 Subject: [PATCH 1829/2682] Disable ELynx tests (#5556) --- build-constraints.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9a623fb7..23d996ed 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5483,12 +5483,12 @@ expected-test-failures: # Requires running servers, accounts, or a specific environment. # These shouldn't be re-enabled unless we know a fix has been released. - - alex - GLFW-b # X - HTF # Requires shell script and are incompatible with sandboxed package databases - HaRe # # Needs ~/.ghc-mod/cabal-helper https://github.com/fpco/stackage/pull/906 - IPv6DB - accelerate-bignum # CUDA GPU + - alex - amqp - aws # AWS Credentials - beam-postgres # requires Postgress instance @@ -5505,6 +5505,9 @@ expected-test-failures: - dbcleaner # Requires running PostgreSQL server - dbmigrations # PostgreSQL - drifter-postgresql # PostgreSQL + - elynx-markov # https://github.com/commercialhaskell/stackage/pull/5556 + - elynx-seq # https://github.com/commercialhaskell/stackage/pull/5556 + - elynx-tree # https://github.com/commercialhaskell/stackage/pull/5556 - esqueleto # mysql and postgresql - etcd # etcd https://github.com/fpco/stackage/issues/811 - eventful-dynamodb From 3515b498f8da41c7c2ed680156b67fac9108dafb Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 31 Jul 2020 15:14:17 -0700 Subject: [PATCH 1830/2682] Test more old packages --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 23d996ed..93e1b8a4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5707,9 +5707,9 @@ expected-test-failures: - hjsmin # https://github.com/commercialhaskell/stackage/issues/5158 - - cursor-gen - - genvalidity-mergeful - - genvalidity-mergeless + # cursor-gen + # genvalidity-mergeful + # genvalidity-mergeless # https://github.com/commercialhaskell/stackage/issues/5212 - dhall-yaml From 671137df04169edaba57c27e20c3fa59aa8a7da4 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 31 Jul 2020 15:32:49 -0700 Subject: [PATCH 1831/2682] Fix #5158 --- build-constraints.yaml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 93e1b8a4..01d2eb2b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5706,11 +5706,6 @@ expected-test-failures: # Test-runner expects a cabal-style 'dist-newstyle' directory - hjsmin - # https://github.com/commercialhaskell/stackage/issues/5158 - # cursor-gen - # genvalidity-mergeful - # genvalidity-mergeless - # https://github.com/commercialhaskell/stackage/issues/5212 - dhall-yaml From c53b9eb2eccdf5d6c14b18bd8f59baea85554a8b Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 31 Jul 2020 15:35:49 -0700 Subject: [PATCH 1832/2682] Test `servant` --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 01d2eb2b..c262c0cd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1525,7 +1525,7 @@ packages: - bank-holidays-england < 0 # ghc 8.10 "Haskell Servant ": - - servant < 0 # ghc 8.10 + - servant # 0 # ghc 8.10 - servant-blaze < 0 # ghc 8.10 via servant - servant-cassava < 0 # ghc 8.10 via servant - servant-client < 0 # ghc 8.10 via servant @@ -5226,7 +5226,7 @@ skipped-tests: - records-sop # via hspec-2.7.0 - resolv # via tasty-1.2 - serialise - - servant # via hspec-2.7.0 + # servant # via hspec-2.7.0 - servant-client # via hspec-2.7.0 - servant-client-core # via hspec-2.7.0 - servant-docs # via tasty-1.2 From 1fe66c1e6a002e71c20626873af3fbc666d1927f Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 31 Jul 2020 15:39:31 -0700 Subject: [PATCH 1833/2682] `servant` works, try enabling more --- build-constraints.yaml | 39 +++++++++++++++++++-------------------- 1 file changed, 19 insertions(+), 20 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c262c0cd..c6d81452 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1525,25 +1525,25 @@ packages: - bank-holidays-england < 0 # ghc 8.10 "Haskell Servant ": - - servant # 0 # ghc 8.10 - - servant-blaze < 0 # ghc 8.10 via servant - - servant-cassava < 0 # ghc 8.10 via servant - - servant-client < 0 # ghc 8.10 via servant - - servant-client-core < 0 # ghc 8.10 via servant - - servant-conduit < 0 # ghc 8.10 via servant & unliftio-core - - servant-docs < 0 # ghc 8.10 via servant - - servant-foreign < 0 # ghc 8.10 via servant - - servant-http-streams < 0 # via servant - - servant-js < 0 # ghc 8.10 via servant - - servant-lucid < 0 # ghc 8.10 via servant - - servant-machines < 0 # ghc 8.10 via servant - - servant-mock < 0 # ghc 8.10 via servant - - servant-multipart < 0 # via servant - - servant-pipes < 0 # ghc 8.10 via servant - - servant-server < 0 # ghc 8.10 via servant - - servant-swagger < 0 # ghc 8.10 via servant & swagger2 - - servant-swagger-ui < 0 # ghc 8.10 via servant & swagger2 - - servant-swagger-ui-core < 0 # ghc 8.10 via servant & swagger2 + - servant + - servant-blaze # 0 # ghc 8.10 via servant + - servant-cassava # 0 # ghc 8.10 via servant + - servant-client # 0 # ghc 8.10 via servant + - servant-client-core # 0 # ghc 8.10 via servant + - servant-conduit # 0 # ghc 8.10 via servant & unliftio-core + - servant-docs # 0 # ghc 8.10 via servant + - servant-foreign # 0 # ghc 8.10 via servant + - servant-http-streams # 0 # via servant + - servant-js # 0 # ghc 8.10 via servant + - servant-lucid # 0 # ghc 8.10 via servant + - servant-machines # 0 # ghc 8.10 via servant + - servant-mock # 0 # ghc 8.10 via servant + - servant-multipart # 0 # via servant + - servant-pipes # 0 # ghc 8.10 via servant + - servant-server # 0 # ghc 8.10 via servant + - servant-swagger # 0 # ghc 8.10 via servant & swagger2 + - servant-swagger-ui # 0 # ghc 8.10 via servant & swagger2 + - servant-swagger-ui-core # 0 # ghc 8.10 via servant & swagger2 "Optics ": - indexed-profunctors @@ -5226,7 +5226,6 @@ skipped-tests: - records-sop # via hspec-2.7.0 - resolv # via tasty-1.2 - serialise - # servant # via hspec-2.7.0 - servant-client # via hspec-2.7.0 - servant-client-core # via hspec-2.7.0 - servant-docs # via tasty-1.2 From 5d3a362b236240e319e326e0005210cd61610c9e Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 31 Jul 2020 15:43:25 -0700 Subject: [PATCH 1834/2682] Don't test `servant` downstream yet --- build-constraints.yaml | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c6d81452..3ff4eadd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1526,24 +1526,24 @@ packages: "Haskell Servant ": - servant - - servant-blaze # 0 # ghc 8.10 via servant - - servant-cassava # 0 # ghc 8.10 via servant - - servant-client # 0 # ghc 8.10 via servant - - servant-client-core # 0 # ghc 8.10 via servant - - servant-conduit # 0 # ghc 8.10 via servant & unliftio-core - - servant-docs # 0 # ghc 8.10 via servant - - servant-foreign # 0 # ghc 8.10 via servant - - servant-http-streams # 0 # via servant - - servant-js # 0 # ghc 8.10 via servant - - servant-lucid # 0 # ghc 8.10 via servant - - servant-machines # 0 # ghc 8.10 via servant - - servant-mock # 0 # ghc 8.10 via servant - - servant-multipart # 0 # via servant - - servant-pipes # 0 # ghc 8.10 via servant - - servant-server # 0 # ghc 8.10 via servant - - servant-swagger # 0 # ghc 8.10 via servant & swagger2 - - servant-swagger-ui # 0 # ghc 8.10 via servant & swagger2 - - servant-swagger-ui-core # 0 # ghc 8.10 via servant & swagger2 + - servant-blaze < 0 # ghc 8.10 via servant + - servant-cassava < 0 # ghc 8.10 via servant + - servant-client < 0 # ghc 8.10 via servant + - servant-client-core < 0 # ghc 8.10 via servant + - servant-conduit < 0 # ghc 8.10 via servant & unliftio-core + - servant-docs < 0 # ghc 8.10 via servant + - servant-foreign < 0 # ghc 8.10 via servant + - servant-http-streams < 0 # via servant + - servant-js < 0 # ghc 8.10 via servant + - servant-lucid < 0 # ghc 8.10 via servant + - servant-machines < 0 # ghc 8.10 via servant + - servant-mock < 0 # ghc 8.10 via servant + - servant-multipart < 0 # via servant + - servant-pipes < 0 # ghc 8.10 via servant + - servant-server < 0 # ghc 8.10 via servant + - servant-swagger < 0 # ghc 8.10 via servant & swagger2 + - servant-swagger-ui < 0 # ghc 8.10 via servant & swagger2 + - servant-swagger-ui-core < 0 # ghc 8.10 via servant & swagger2 "Optics ": - indexed-profunctors From 673a0c739f665eee8709aa34319e4d4220a978c1 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 31 Jul 2020 15:44:02 -0700 Subject: [PATCH 1835/2682] Test `servant-rawm` instead --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3ff4eadd..e6295d6b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2458,7 +2458,7 @@ packages: - read-env-var - servant-checked-exceptions < 0 # ghc 8.10 via servant - servant-checked-exceptions-core < 0 # ghc 8.10 via servant - - servant-rawm < 0 # ghc 8.10 via servant + - servant-rawm # 0 # ghc 8.10 via servant - servant-static-th < 0 # ghc 8.10 via servant - termonad < 0 # via gi-vte - world-peace < 0 # ghc 8.10.1 https://github.com/commercialhaskell/stackage/issues/5452 @@ -5431,7 +5431,7 @@ skipped-tests: - envelope # https://github.com/commercialhaskell/stackage/issues/4669 - algebraic-graphs # https://github.com/commercialhaskell/stackage/issues/4670 - bugsnag-haskell # https://github.com/commercialhaskell/stackage/issues/4759 - - servant-rawm # https://github.com/commercialhaskell/stackage/issues/5162 + # servant-rawm # https://github.com/commercialhaskell/stackage/issues/5162 # https://github.com/commercialhaskell/stackage/issues/5302 - registry From 1e25266327ecbe0967301b81fcf7d594250717e6 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 31 Jul 2020 15:52:13 -0700 Subject: [PATCH 1836/2682] Reenable `servant-rawm`. Close #5162 --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e6295d6b..315da9f0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2458,7 +2458,7 @@ packages: - read-env-var - servant-checked-exceptions < 0 # ghc 8.10 via servant - servant-checked-exceptions-core < 0 # ghc 8.10 via servant - - servant-rawm # 0 # ghc 8.10 via servant + - servant-rawm - servant-static-th < 0 # ghc 8.10 via servant - termonad < 0 # via gi-vte - world-peace < 0 # ghc 8.10.1 https://github.com/commercialhaskell/stackage/issues/5452 @@ -5431,7 +5431,6 @@ skipped-tests: - envelope # https://github.com/commercialhaskell/stackage/issues/4669 - algebraic-graphs # https://github.com/commercialhaskell/stackage/issues/4670 - bugsnag-haskell # https://github.com/commercialhaskell/stackage/issues/4759 - # servant-rawm # https://github.com/commercialhaskell/stackage/issues/5162 # https://github.com/commercialhaskell/stackage/issues/5302 - registry From 99ba9c8576ced80a00095bedf1ba8dd4b3b586c9 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 31 Jul 2020 15:53:03 -0700 Subject: [PATCH 1837/2682] Re-enable `hOpenPGP`, test #5175 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 315da9f0..06d3d259 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1245,7 +1245,7 @@ packages: - HandsomeSoup "Clint Adams @clinty": - - hOpenPGP < 0 # ghc 8.10 + - hOpenPGP # 0 # ghc 8.10 - openpgp-asciiarmor - MusicBrainz - DAV From ab9ec3b824a225100d31b346eadff864bb939c13 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 31 Jul 2020 15:55:36 -0700 Subject: [PATCH 1838/2682] Close #5175 as `hOpenPGP` now needs a different dep --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 06d3d259..9ffda254 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1245,7 +1245,7 @@ packages: - HandsomeSoup "Clint Adams @clinty": - - hOpenPGP # 0 # ghc 8.10 + - hOpenPGP < 0 # needs newtype - openpgp-asciiarmor - MusicBrainz - DAV From 29138f706956a12e15451500507d72901dccc09e Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 31 Jul 2020 15:56:03 -0700 Subject: [PATCH 1839/2682] Try `newtype` --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9ffda254..29b864a6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4611,7 +4611,7 @@ packages: - network-info - network-ip - network-uri < 2.7.0.0 # https://github.com/commercialhaskell/stackage/issues/5116 - - newtype < 0 # ghc 8.10 + - newtype # 0 # ghc 8.10 - nicify-lib - old-locale - old-time From 3f10c98ffe1bc51a5633a629acbf43789fa0dbe1 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 31 Jul 2020 15:59:13 -0700 Subject: [PATCH 1840/2682] `newtype` passed, add back `hOpenPGP` --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 29b864a6..43dda410 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1245,7 +1245,7 @@ packages: - HandsomeSoup "Clint Adams @clinty": - - hOpenPGP < 0 # needs newtype + - hOpenPGP - openpgp-asciiarmor - MusicBrainz - DAV @@ -4611,7 +4611,7 @@ packages: - network-info - network-ip - network-uri < 2.7.0.0 # https://github.com/commercialhaskell/stackage/issues/5116 - - newtype # 0 # ghc 8.10 + - newtype - nicify-lib - old-locale - old-time From 3b95e0e8177f86009f5c53247b030623dd7a5c6f Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 31 Jul 2020 17:19:18 -0700 Subject: [PATCH 1841/2682] Try `polysemiy-plugin` --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 43dda410..7d2d440f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -120,7 +120,7 @@ packages: "Matej Niznik @TheMatten": - polysemy - - polysemy-plugin < 0 # via polysemy + - polysemy-plugin # 0 # via polysemy - polysemy-zoo < 0 # via hedis - loopbreaker < 0 # ghc 8.10 From e9588dc11730b1710163f98e4339ab8c7bce1cd1 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 31 Jul 2020 17:37:07 -0700 Subject: [PATCH 1842/2682] Revert trying `polysemy-plugin` --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7d2d440f..43dda410 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -120,7 +120,7 @@ packages: "Matej Niznik @TheMatten": - polysemy - - polysemy-plugin # 0 # via polysemy + - polysemy-plugin < 0 # via polysemy - polysemy-zoo < 0 # via hedis - loopbreaker < 0 # ghc 8.10 From 16ccfbc235c195af90a828780cf08d1f98c5415c Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 31 Jul 2020 17:37:48 -0700 Subject: [PATCH 1843/2682] Try removing upper bounds from #5182 --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 43dda410..be0aed25 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2111,8 +2111,8 @@ packages: "Michael Thompson @michaelt": - pipes-text < 0 # GHC 8.4 via streaming-commons-0.2.0.0 - lens-simple < 0 # via lens-family-2.0.0 - - lens-family-core < 2.1.0 #https://github.com/commercialhaskell/stackage/issues/5182 - - lens-family < 2.1.0 #https://github.com/commercialhaskell/stackage/issues/5182 + - lens-family-core # 2.1.0 #https://github.com/commercialhaskell/stackage/issues/5182 + - lens-family # 2.1.0 #https://github.com/commercialhaskell/stackage/issues/5182 "Justin Le @mstksg": - advent-of-code-api < 0 # ghc 8.10 via servant From 7c5a7103463c322817ea8ba8c37fc0c8cf4a4ac1 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 31 Jul 2020 17:39:31 -0700 Subject: [PATCH 1844/2682] Try again --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index be0aed25..ea8f4621 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2111,7 +2111,7 @@ packages: "Michael Thompson @michaelt": - pipes-text < 0 # GHC 8.4 via streaming-commons-0.2.0.0 - lens-simple < 0 # via lens-family-2.0.0 - - lens-family-core # 2.1.0 #https://github.com/commercialhaskell/stackage/issues/5182 + - lens-family-core < 2.1.0 #https://github.com/commercialhaskell/stackage/issues/5182 - lens-family # 2.1.0 #https://github.com/commercialhaskell/stackage/issues/5182 "Justin Le @mstksg": From 12a082c9d3a2152c2a6a91d83c7dbfb0d10c424e Mon Sep 17 00:00:00 2001 From: Matthew Wraith Date: Fri, 31 Jul 2020 15:54:43 -0500 Subject: [PATCH 1845/2682] Add prometheus-wai-middleware --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ea8f4621..45ebf7da 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4088,6 +4088,7 @@ packages: "Matthew Wraith @wraithm": - prometheus + - prometheus-wai-middleware - hgrev - seqid - seqid-streams From d892e851291184cbfc136bd9ec86d4d85190e807 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 31 Jul 2020 17:44:14 -0700 Subject: [PATCH 1846/2682] Finalize experiments --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 45ebf7da..0aacf864 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2112,7 +2112,7 @@ packages: - pipes-text < 0 # GHC 8.4 via streaming-commons-0.2.0.0 - lens-simple < 0 # via lens-family-2.0.0 - lens-family-core < 2.1.0 #https://github.com/commercialhaskell/stackage/issues/5182 - - lens-family # 2.1.0 #https://github.com/commercialhaskell/stackage/issues/5182 + - lens-family < 2.1.0 #https://github.com/commercialhaskell/stackage/issues/5182 "Justin Le @mstksg": - advent-of-code-api < 0 # ghc 8.10 via servant From 7e5cf526b22f47e5ba07a0655554d1920b86132a Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 10:02:28 -0700 Subject: [PATCH 1847/2682] Move `skylighting-core` to @jgm (#5559) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0aacf864..c5ebd5f3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2878,6 +2878,7 @@ packages: - texmath - highlighting-kate - skylighting + - skylighting-core - pandoc-types - zip-archive - doclayout @@ -4694,7 +4695,6 @@ packages: - singleton-bool - size-based < 0 # ghc 8.10 - skein - - skylighting-core - snap-core - some - special-values From 9a5f06b83a2b9ba23bf5e324accba0b06532efaa Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 10:04:05 -0700 Subject: [PATCH 1848/2682] Upper bound `filtrable` (#5565) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c5ebd5f3..c70a0b3c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4043,7 +4043,7 @@ packages: - constraint - dual - either-both - - filtrable + - filtrable < 0.1.5.0 # https://github.com/commercialhaskell/stackage/issues/5565 - foldable1 - hs-functors - lenz From 02d925142af44e773cdc19db302c9a16f8c8f886 Mon Sep 17 00:00:00 2001 From: Sibi Prabakaran Date: Sat, 1 Aug 2020 20:12:03 +0530 Subject: [PATCH 1849/2682] Add fakedata-parser --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index c70a0b3c..2d497513 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -804,6 +804,7 @@ packages: - shelly - persistent-redis < 0 # GHC 8.4 via hedis - fakedata + - fakedata-parser - streamly-bytestring "haskell-openal": From 03dcb6af15cd35bf5045a01c68049320c2aac346 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 10:31:20 -0700 Subject: [PATCH 1850/2682] Cleanup `primitive-extras` (#5210), test `dhall-yaml` (#5212) --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2d497513..53752403 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5332,7 +5332,6 @@ skipped-tests: - cron # Could not deduce (SOP.All (SOP.All Arbitrary) xss) arising from a use of ‘SOP.hcpure’ - config-ini # https://github.com/aisamanra/config-ini/issues/22 - polysemy-plugin # https://github.com/commercialhaskell/stackage/issues/4733 - - primitive-extras # https://github.com/commercialhaskell/stackage/issues/5210 # Runtime issues - blank-canvas # Never finishes https://github.com/ku-fpg/blank-canvas/issues/73 @@ -5707,7 +5706,7 @@ expected-test-failures: - hjsmin # https://github.com/commercialhaskell/stackage/issues/5212 - - dhall-yaml + # dhall-yaml # https://github.com/iij-ii/direct-hs/issues/100 - skews From fb0a4dcbe3fb46bf97567317e7174db11a8618c6 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 10:42:49 -0700 Subject: [PATCH 1851/2682] Cleanup after closing #5212 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 53752403..1373906d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5705,9 +5705,6 @@ expected-test-failures: # Test-runner expects a cabal-style 'dist-newstyle' directory - hjsmin - # https://github.com/commercialhaskell/stackage/issues/5212 - # dhall-yaml - # https://github.com/iij-ii/direct-hs/issues/100 - skews From 17db3880d240c807a80aab5b979f5f303d17d4c6 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 10:42:58 -0700 Subject: [PATCH 1852/2682] Test #5261 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1373906d..e2bbd31e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3560,7 +3560,7 @@ packages: - algebraic-graphs "Albert Krewinkel @tarleb": - - hslua < 1.1.0 # https://github.com/commercialhaskell/stackage/issues/5261 + - hslua # 1.1.0 # https://github.com/commercialhaskell/stackage/issues/5261 - hslua-aeson - hslua-module-doclayout - hslua-module-system From 783b0a09fdf9a9190887bba5b8db51c6e1470128 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 10:49:51 -0700 Subject: [PATCH 1853/2682] Cleanup after #5261 testing --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e2bbd31e..f6cd0273 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3560,7 +3560,7 @@ packages: - algebraic-graphs "Albert Krewinkel @tarleb": - - hslua # 1.1.0 # https://github.com/commercialhaskell/stackage/issues/5261 + - hslua - hslua-aeson - hslua-module-doclayout - hslua-module-system From 5d7347973479a843309d0e178b7b400b9f59843d Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 10:52:51 -0700 Subject: [PATCH 1854/2682] Test if `ghc-exactprint` testing is passing --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f6cd0273..0e6b21c0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5700,7 +5700,7 @@ expected-test-failures: - persistent-mongoDB # https://github.com/alanz/ghc-exactprint/issues/82 - - ghc-exactprint + # ghc-exactprint # Test-runner expects a cabal-style 'dist-newstyle' directory - hjsmin From 09c52111db90ce074ea1f2ce6334006ad83486d7 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 11:24:50 -0700 Subject: [PATCH 1855/2682] Testing `ghc-exactprint` failed, so keep tests disabled --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0e6b21c0..f6cd0273 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5700,7 +5700,7 @@ expected-test-failures: - persistent-mongoDB # https://github.com/alanz/ghc-exactprint/issues/82 - # ghc-exactprint + - ghc-exactprint # Test-runner expects a cabal-style 'dist-newstyle' directory - hjsmin From 15d02a1b81014f9e9cbe9aed65bcfaeb8febeb1a Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 11:28:50 -0700 Subject: [PATCH 1856/2682] Test `QuickCheck` --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f6cd0273..11d9bdb8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3038,7 +3038,7 @@ packages: "Stephen Diehl @sdiehl": - llvm-hs-pretty < 0 # compilation failure - protolude - - repline # https://github.com/commercialhaskell/stackage/issues/5269 + - repline - picosat < 0 - aos-signature < 0 # via protolude # https://github.com/commercialhaskell/stackage/issues/4682 @@ -4378,7 +4378,7 @@ packages: - NumInstances - Only - ParsecTools - - QuickCheck < 2.14 # https://github.com/commercialhaskell/stackage/issues/5271 + - QuickCheck # 2.14 # https://github.com/commercialhaskell/stackage/issues/5271 - RSA - aeson-compat - aeson-extra < 0 # via semialign From 04c0d9dd8191a49045f79739e1579739089c1e78 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 11:30:17 -0700 Subject: [PATCH 1857/2682] Slightly larger bounds for `QuickCheck` --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 11d9bdb8..09867acf 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4378,7 +4378,7 @@ packages: - NumInstances - Only - ParsecTools - - QuickCheck # 2.14 # https://github.com/commercialhaskell/stackage/issues/5271 + - QuickCheck < 2.14.1 # https://github.com/commercialhaskell/stackage/issues/5271 - RSA - aeson-compat - aeson-extra < 0 # via semialign From 3c506d867fe8e02854832beb98ec3f1591db258f Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 11:40:04 -0700 Subject: [PATCH 1858/2682] Move `QuickCheck` form #5271 to #5566 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 09867acf..98d416a0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4378,7 +4378,7 @@ packages: - NumInstances - Only - ParsecTools - - QuickCheck < 2.14.1 # https://github.com/commercialhaskell/stackage/issues/5271 + - QuickCheck < 2.14 # https://github.com/commercialhaskell/stackage/issues/5566 - RSA - aeson-compat - aeson-extra < 0 # via semialign From a2cc19232373c070a65ec100c179d09c9c33ee34 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 11:46:16 -0700 Subject: [PATCH 1859/2682] Cleanup and more tests --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 98d416a0..77d469d5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -321,7 +321,7 @@ packages: "Jacob Stanley @jacobstanley": - hedgehog - - hedgehog-quickcheck #< 0 # via QuickCheck https://github.com/commercialhaskell/stackage/issues/4444 + - hedgehog-quickcheck - transformers-bifunctors - unix-compat @@ -4378,7 +4378,7 @@ packages: - NumInstances - Only - ParsecTools - - QuickCheck < 2.14 # https://github.com/commercialhaskell/stackage/issues/5566 + - QuickCheck # 2.14 # https://github.com/commercialhaskell/stackage/issues/5566 - RSA - aeson-compat - aeson-extra < 0 # via semialign @@ -4701,7 +4701,7 @@ packages: - special-values - splice - split - - splitmix < 0.1 # https://github.com/commercialhaskell/stackage/issues/5399 and and QuickCheck-2.14 + - splitmix # 0.1 # https://github.com/commercialhaskell/stackage/issues/5399 and and QuickCheck-2.14 - sql-words - stateref - statistics From 1731be12d8eee05581e065d515f5dfc3b91da227 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 11:50:32 -0700 Subject: [PATCH 1860/2682] Disable bound on `splitmix`, add back bound on `QuickCheck` (#5566) --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 77d469d5..1b6de98e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4378,7 +4378,7 @@ packages: - NumInstances - Only - ParsecTools - - QuickCheck # 2.14 # https://github.com/commercialhaskell/stackage/issues/5566 + - QuickCheck < 2.14 # https://github.com/commercialhaskell/stackage/issues/5566 - RSA - aeson-compat - aeson-extra < 0 # via semialign @@ -4701,7 +4701,7 @@ packages: - special-values - splice - split - - splitmix # 0.1 # https://github.com/commercialhaskell/stackage/issues/5399 and and QuickCheck-2.14 + - splitmix - sql-words - stateref - statistics From cd2f90292bdeddef1c96f54111603d0312d4ac74 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 11:51:22 -0700 Subject: [PATCH 1861/2682] Try new `jira-wiki-markup` (#5272) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1b6de98e..8114de6f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3565,7 +3565,7 @@ packages: - hslua-module-doclayout - hslua-module-system - hslua-module-text - - jira-wiki-markup < 1.2.0 # https://github.com/commercialhaskell/stackage/issues/5272 + - jira-wiki-markup # 1.2.0 # https://github.com/commercialhaskell/stackage/issues/5272 "Judah Jacobson @judah": - proto-lens-protobuf-types From 7d1f14bae707068619572dba6371cc4455539cde Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 11:53:16 -0700 Subject: [PATCH 1862/2682] Add back upper bound on `splitmix` since we cannot upgrade it yet due to #5566; --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8114de6f..abc970f1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4701,7 +4701,7 @@ packages: - special-values - splice - split - - splitmix + - splitmix < 0.1 # Broken due to upper bound on QuickCheck, #5566 - sql-words - stateref - statistics From 7d92754aea4f3d5ed2ee6092727adf5be87b18d0 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 12:46:52 -0700 Subject: [PATCH 1863/2682] Remove bound on `jira-wiki-markup`. Close #5272 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index abc970f1..143f6f4b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3565,7 +3565,7 @@ packages: - hslua-module-doclayout - hslua-module-system - hslua-module-text - - jira-wiki-markup # 1.2.0 # https://github.com/commercialhaskell/stackage/issues/5272 + - jira-wiki-markup "Judah Jacobson @judah": - proto-lens-protobuf-types From 15c034ac57b5871e4962c8ff1a3eb2d87ff12e73 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 12:49:51 -0700 Subject: [PATCH 1864/2682] Try `pandoc` --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 143f6f4b..9d96e18f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2885,7 +2885,7 @@ packages: - doclayout - doctemplates - emojis - - pandoc < 0 # ghc 8.10 via haddock-library + - pandoc # 0 # ghc 8.10 via haddock-library - pandoc-citeproc < 0 # ghc 8.10 via pandaoc - HsYAML-aeson - ipynb #< 0 # via aeson-diff From bdb371b1e42d4d4efce83d1a9499aa0204176df0 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 12:53:27 -0700 Subject: [PATCH 1865/2682] Keep `pandoc` disabled, #5567 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9d96e18f..92c969e3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2885,7 +2885,7 @@ packages: - doclayout - doctemplates - emojis - - pandoc # 0 # ghc 8.10 via haddock-library + - pandoc < 0 # https://github.com/commercialhaskell/stackage/issues/5567 - pandoc-citeproc < 0 # ghc 8.10 via pandaoc - HsYAML-aeson - ipynb #< 0 # via aeson-diff From 565b1e0c6bb09b1b1ed05679e898a6f144bd857f Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 12:54:08 -0700 Subject: [PATCH 1866/2682] Remove upper bound on `arithmoi` (#5306) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 92c969e3..18189435 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4878,7 +4878,7 @@ packages: "Stackage upper bounds": # https://github.com/commercialhaskell/stackage/issues/5306 - - arithmoi < 0.11.0.0 + - arithmoi # 0.11.0.0 # https://github.com/commercialhaskell/stackage/issues/5323 - base64-bytestring < 1.1 From b776c3ea7eb78afb81cfda14870a4210a451e465 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 12:58:01 -0700 Subject: [PATCH 1867/2682] Still need some upper bound for `arithmoi`. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 18189435..03e13400 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3177,7 +3177,7 @@ packages: - primitive-addr - quickcheck-classes - quickcheck-classes-base - - arithmoi + - arithmoi < 0.11.0.1 - bitvec - poly - extended-reals From d64272fa6a7182809c7bfcf67909d9cd0373a3d7 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 13:00:18 -0700 Subject: [PATCH 1868/2682] Move upper bound to package itself. Close #5306 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 03e13400..805640b4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4877,9 +4877,6 @@ packages: - Win32 == 2.6.1.0 "Stackage upper bounds": - # https://github.com/commercialhaskell/stackage/issues/5306 - - arithmoi # 0.11.0.0 - # https://github.com/commercialhaskell/stackage/issues/5323 - base64-bytestring < 1.1 From 75193c28efbed2fe7aec17b516c17ce1acb79f05 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 13:12:51 -0700 Subject: [PATCH 1869/2682] Remove upper bound for `base64-bytestring` --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 805640b4..ca018627 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4878,7 +4878,7 @@ packages: "Stackage upper bounds": # https://github.com/commercialhaskell/stackage/issues/5323 - - base64-bytestring < 1.1 + - base64-bytestring # 1.1 # https://github.com/commercialhaskell/stackage/issues/5324 - cabal2nix < 2.15.2 From a537f6bdc23760173eca1d97a9b7e34aee0e60c0 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 13:16:37 -0700 Subject: [PATCH 1870/2682] Move issue for `base64-bytestring` from #5323 to #5569 --- build-constraints.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ca018627..f5c59725 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4393,7 +4393,7 @@ packages: - attoparsec - auto-update - base-noprelude < 0 # ghc 8.10 - - base64-bytestring + - base64-bytestring < 1.1 # https://github.com/commercialhaskell/stackage/issues/5569 - base64-bytestring-type - base64-string - bimap @@ -4877,9 +4877,6 @@ packages: - Win32 == 2.6.1.0 "Stackage upper bounds": - # https://github.com/commercialhaskell/stackage/issues/5323 - - base64-bytestring # 1.1 - # https://github.com/commercialhaskell/stackage/issues/5324 - cabal2nix < 2.15.2 From 31c0697749b42e17b03cd3da87ce9808a4c9f117 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 13:17:12 -0700 Subject: [PATCH 1871/2682] Test `cabal2nix` --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f5c59725..7a5975fb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2532,7 +2532,7 @@ packages: - nagios-check "Peter Simons @peti": - - cabal2nix < 0 # ghc 8.10 + - cabal2nix # 0 # ghc 8.10 - cabal2spec - cgi - distribution-nixpkgs @@ -4878,7 +4878,7 @@ packages: "Stackage upper bounds": # https://github.com/commercialhaskell/stackage/issues/5324 - - cabal2nix < 2.15.2 + - cabal2nix # 2.15.2 # https://github.com/commercialhaskell/stackage/issues/5347 - persistent-template < 2.8.3 From 26ef260e3993f9de0fecb5bac654b450e332a3c0 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 13:25:54 -0700 Subject: [PATCH 1872/2682] Cleanup after testing `cabal2nix` --- build-constraints.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7a5975fb..3fefd764 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2532,7 +2532,7 @@ packages: - nagios-check "Peter Simons @peti": - - cabal2nix # 0 # ghc 8.10 + - cabal2nix - cabal2spec - cgi - distribution-nixpkgs @@ -4877,9 +4877,6 @@ packages: - Win32 == 2.6.1.0 "Stackage upper bounds": - # https://github.com/commercialhaskell/stackage/issues/5324 - - cabal2nix # 2.15.2 - # https://github.com/commercialhaskell/stackage/issues/5347 - persistent-template < 2.8.3 From 45fbb5307fff7e53dcba2063b5865a6538067d58 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 13:27:57 -0700 Subject: [PATCH 1873/2682] Test `persistent-template` --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3fefd764..2d09c4d0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4878,7 +4878,7 @@ packages: "Stackage upper bounds": # https://github.com/commercialhaskell/stackage/issues/5347 - - persistent-template < 2.8.3 + - persistent-template # 2.8.3 # https://github.com/commercialhaskell/stackage/issues/5348 - tasty < 1.3 From 96164580c8b0d1d5f210ff599ebeb54a5e74f3ef Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 13:30:29 -0700 Subject: [PATCH 1874/2682] Update bounds for #5347 --- build-constraints.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2d09c4d0..f972056f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -633,7 +633,7 @@ packages: - persistent-mysql - persistent-postgresql - persistent-sqlite - - persistent-template + - persistent-template < 2.8.3 # https://github.com/commercialhaskell/stackage/issues/5347 - persistent-test # https://github.com/commercialhaskell/stackage/pull/4492 # - stackage-curator # http-conduit 2.3 via amazonka - store < 0 # via store-core @@ -4877,9 +4877,6 @@ packages: - Win32 == 2.6.1.0 "Stackage upper bounds": - # https://github.com/commercialhaskell/stackage/issues/5347 - - persistent-template # 2.8.3 - # https://github.com/commercialhaskell/stackage/issues/5348 - tasty < 1.3 - tasty-golden < 2.3.3.3 From fdd9946f59717700329063ba84b221eb03e9e667 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 13:31:13 -0700 Subject: [PATCH 1875/2682] Try `tasty`, `tasty-golden` --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f972056f..b756bd04 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4878,8 +4878,8 @@ packages: "Stackage upper bounds": # https://github.com/commercialhaskell/stackage/issues/5348 - - tasty < 1.3 - - tasty-golden < 2.3.3.3 + - tasty # 1.3 + - tasty-golden # 2.3.3.3 # https://github.com/commercialhaskell/stackage/issues/5349 - typed-uuid < 0.1.0.0 From 3a92742c3143946b59fc3742da2916257786a7d6 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 13:34:09 -0700 Subject: [PATCH 1876/2682] Attempt a new bound for `tasty` --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b756bd04..be316957 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4878,7 +4878,7 @@ packages: "Stackage upper bounds": # https://github.com/commercialhaskell/stackage/issues/5348 - - tasty # 1.3 + - tasty < 1.3.1 - tasty-golden # 2.3.3.3 # https://github.com/commercialhaskell/stackage/issues/5349 From 6c7616826faa31295ae3f3cfebb290f1838f86a5 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 13:37:07 -0700 Subject: [PATCH 1877/2682] Restore initial bound for `tasty` --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index be316957..d442a1ca 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4878,7 +4878,7 @@ packages: "Stackage upper bounds": # https://github.com/commercialhaskell/stackage/issues/5348 - - tasty < 1.3.1 + - tasty < 1.3 - tasty-golden # 2.3.3.3 # https://github.com/commercialhaskell/stackage/issues/5349 From eb08a14ffb8b1dfce3b58905e90a9b8daa5d4dc6 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 13:40:29 -0700 Subject: [PATCH 1878/2682] Need bound on `tasty-golden` too --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d442a1ca..f1c17c59 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4879,7 +4879,7 @@ packages: "Stackage upper bounds": # https://github.com/commercialhaskell/stackage/issues/5348 - tasty < 1.3 - - tasty-golden # 2.3.3.3 + - tasty-golden < 2.3.3.4 # https://github.com/commercialhaskell/stackage/issues/5349 - typed-uuid < 0.1.0.0 From 7f8417b6391456a0ff5e319e9efde309bd43af2f Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 13:42:17 -0700 Subject: [PATCH 1879/2682] Restore bound for `tasty-golden` --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f1c17c59..f972056f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4879,7 +4879,7 @@ packages: "Stackage upper bounds": # https://github.com/commercialhaskell/stackage/issues/5348 - tasty < 1.3 - - tasty-golden < 2.3.3.4 + - tasty-golden < 2.3.3.3 # https://github.com/commercialhaskell/stackage/issues/5349 - typed-uuid < 0.1.0.0 From a84aba818bdbf1ec8a52fbfd70e22803db8f5f2f Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 13:43:33 -0700 Subject: [PATCH 1880/2682] Close #5348, move to #5570 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f972056f..ddcf0afe 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4877,7 +4877,7 @@ packages: - Win32 == 2.6.1.0 "Stackage upper bounds": - # https://github.com/commercialhaskell/stackage/issues/5348 + # https://github.com/commercialhaskell/stackage/issues/5570 - tasty < 1.3 - tasty-golden < 2.3.3.3 From ae61f6e6dc737742e0918f317f403e1d0f25d260 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 13:56:27 -0700 Subject: [PATCH 1881/2682] Re-enable `pantry`, for testing #5351 --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ddcf0afe..18385a23 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -707,7 +707,7 @@ packages: - githash - time-manager - - pantry < 0 # ghc 8.10 + - pantry # 0 # ghc 8.10 - mega-sdist < 0 # Cabal issues - http-download - hi-file-parser @@ -4885,7 +4885,7 @@ packages: - typed-uuid < 0.1.0.0 # https://github.com/commercialhaskell/stackage/issues/5351 - - pantry < 0.5 + - pantry # 0.5 # https://github.com/commercialhaskell/path/issues/161 - path < 0.7.1 From 1f602c208528f820658929fb58a59e5d8594621a Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 14:05:09 -0700 Subject: [PATCH 1882/2682] `pantry` builds, so close #5351 --- build-constraints.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 18385a23..45dedb8d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -707,7 +707,7 @@ packages: - githash - time-manager - - pantry # 0 # ghc 8.10 + - pantry - mega-sdist < 0 # Cabal issues - http-download - hi-file-parser @@ -4884,9 +4884,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5349 - typed-uuid < 0.1.0.0 - # https://github.com/commercialhaskell/stackage/issues/5351 - - pantry # 0.5 - # https://github.com/commercialhaskell/path/issues/161 - path < 0.7.1 From 6959e26000ffc463893af5136c489574c5aeb9c2 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 14:07:08 -0700 Subject: [PATCH 1883/2682] Try `file-embed` (#5355) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 45dedb8d..54c0d42a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4504,7 +4504,7 @@ packages: - fast-logger - fast-math - fib < 0 # via base-noprelude-4.13 - - file-embed < 0.0.12 + - file-embed # 0.0.12 - file-embed-lzma - filemanip - fin From 5024af9fbbc0582d7f03c6c1ca5e7afa73572bdb Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 14:26:26 -0700 Subject: [PATCH 1884/2682] `file-embed` is ok. Close #5355 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 54c0d42a..5af54373 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4504,7 +4504,7 @@ packages: - fast-logger - fast-math - fib < 0 # via base-noprelude-4.13 - - file-embed # 0.0.12 + - file-embed - file-embed-lzma - filemanip - fin From 3c8b2be0da41e0449243e785b40796a74d7c84b7 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 14:26:59 -0700 Subject: [PATCH 1885/2682] Try `lsp-test` --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5af54373..0561a505 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -770,7 +770,7 @@ packages: - Strafunski-StrategyLib < 0 # via base-4.13.0.0 "Luke Lau @bubba": - - lsp-test < 0.11 # https://github.com/commercialhaskell/stackage/issues/5360 + - lsp-test # 0.11 # https://github.com/commercialhaskell/stackage/issues/5360 "Alfredo Di Napoli @adinapoli": - mandrill < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build From e9713e0d6815ac5088a4e7ec82c2d8fed1867438 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 14:37:22 -0700 Subject: [PATCH 1886/2682] `lsp-test` is good. Close #5360 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0561a505..06f15771 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -770,7 +770,7 @@ packages: - Strafunski-StrategyLib < 0 # via base-4.13.0.0 "Luke Lau @bubba": - - lsp-test # 0.11 # https://github.com/commercialhaskell/stackage/issues/5360 + - lsp-test "Alfredo Di Napoli @adinapoli": - mandrill < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build From e9cb3e064e7b76d9a89fde6197c312768d0143bc Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 14:37:45 -0700 Subject: [PATCH 1887/2682] Try `scotty` --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 06f15771..15735f72 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -978,7 +978,7 @@ packages: - zlib-lens "Andrew Farmer @xich": - - scotty < 0.12 # https://github.com/commercialhaskell/stackage/issues/5363 + - scotty # 0.12 # https://github.com/commercialhaskell/stackage/issues/5363 - wai-middleware-static "Simon Hengel @sol": From b12f17ef65292cf562b361f9c644acd3fe51b974 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 14:48:17 -0700 Subject: [PATCH 1888/2682] `scotty` no longer needs upper bound. Close #5363 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 15735f72..087dbe60 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -978,7 +978,7 @@ packages: - zlib-lens "Andrew Farmer @xich": - - scotty # 0.12 # https://github.com/commercialhaskell/stackage/issues/5363 + - scotty - wai-middleware-static "Simon Hengel @sol": From 78f0f0459a7e1061f80e3d73001b90c8c85cc0ca Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 14:51:05 -0700 Subject: [PATCH 1889/2682] Test `numhask` --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 087dbe60..8cd44dcb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3322,7 +3322,7 @@ packages: - validation "Tony Day @tonyday567": - - numhask < 0.5 # https://github.com/commercialhaskell/stackage/issues/5382 + - numhask # 0.5 # https://github.com/commercialhaskell/stackage/issues/5382 - numhask-array < 0 - numhask-prelude < 0 - numhask-space < 0 From 82285a985f555af1296170eef547514b7a532da2 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 14:55:17 -0700 Subject: [PATCH 1890/2682] Remove upper bound on `numhask`, close #5382 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8cd44dcb..2ad7e07d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3322,7 +3322,7 @@ packages: - validation "Tony Day @tonyday567": - - numhask # 0.5 # https://github.com/commercialhaskell/stackage/issues/5382 + - numhask - numhask-array < 0 - numhask-prelude < 0 - numhask-space < 0 From efb3fc3928279a5d4b9e192152cb984070ccd6eb Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 14:56:33 -0700 Subject: [PATCH 1891/2682] Try `aeson` --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2ad7e07d..5b8f2eb5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4888,7 +4888,7 @@ packages: - path < 0.7.1 # https://github.com/commercialhaskell/stackage/issues/5393 - - aeson < 1.5.0.0 + - aeson # 1.5.0.0 # https://github.com/commercialhaskell/stackage/issues/5424 - smallcheck < 1.2.0 From dcfebd85c9f7de45a74a510c8737686d933e10ea Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 15:01:30 -0700 Subject: [PATCH 1892/2682] Move `aeson` stragglers to #5571 from #5393 --- build-constraints.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5b8f2eb5..e7202b14 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1149,7 +1149,7 @@ packages: "Adam Bergmark @bergmark": - HUnit - - aeson + - aeson < 1.5.2.0 # https://github.com/commercialhaskell/stackage/issues/5571 - attoparsec-iso8601 - fay < 0 - fay-base < 0 @@ -4887,9 +4887,6 @@ packages: # https://github.com/commercialhaskell/path/issues/161 - path < 0.7.1 - # https://github.com/commercialhaskell/stackage/issues/5393 - - aeson # 1.5.0.0 - # https://github.com/commercialhaskell/stackage/issues/5424 - smallcheck < 1.2.0 From a8d9e3259a3c881a960e4ba00fa8020dd11750e0 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 15:02:55 -0700 Subject: [PATCH 1893/2682] Try `rattle` --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e7202b14..fbf76a83 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -748,7 +748,7 @@ packages: - record-dot-preprocessor - filepattern - record-hasfield - - rattle < 0 # https://github.com/commercialhaskell/stackage/issues/5396 + - rattle # 0 # https://github.com/commercialhaskell/stackage/issues/5396 - hie-bios - fuzzy From e53fd88f6ad41585e8658c0d3ef66bdc53fa95d4 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 15:06:03 -0700 Subject: [PATCH 1894/2682] Lower bound of `aeson` --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index fbf76a83..6688b809 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1149,7 +1149,7 @@ packages: "Adam Bergmark @bergmark": - HUnit - - aeson < 1.5.2.0 # https://github.com/commercialhaskell/stackage/issues/5571 + - aeson < 1.5.1.0 # https://github.com/commercialhaskell/stackage/issues/5571 - attoparsec-iso8601 - fay < 0 - fay-base < 0 From fbaf37fee0cadbb99c1d6d32d3b2cae49a27c289 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 15:07:47 -0700 Subject: [PATCH 1895/2682] Lower bound of `aeson` --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6688b809..c9910a03 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1149,7 +1149,7 @@ packages: "Adam Bergmark @bergmark": - HUnit - - aeson < 1.5.1.0 # https://github.com/commercialhaskell/stackage/issues/5571 + - aeson < 1.5.0.0 # https://github.com/commercialhaskell/stackage/issues/5571 - attoparsec-iso8601 - fay < 0 - fay-base < 0 From 063af05327fb3013cf43993072dba0bd625d3be3 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 15:14:00 -0700 Subject: [PATCH 1896/2682] `rattle` is good, close #5396 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c9910a03..bf5e0517 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -748,7 +748,7 @@ packages: - record-dot-preprocessor - filepattern - record-hasfield - - rattle # 0 # https://github.com/commercialhaskell/stackage/issues/5396 + - rattle - hie-bios - fuzzy From 56be12dcb1daab654d2c8c158ffc8b2ff1dd8162 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 15:15:14 -0700 Subject: [PATCH 1897/2682] Try `http-client` --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index bf5e0517..1dc79ffc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -702,7 +702,7 @@ packages: - windns - mono-traversable - - http-client < 0.7 # https://github.com/commercialhaskell/stackage/issues/5397 + - http-client # 0.7 # https://github.com/commercialhaskell/stackage/issues/5397 - http-conduit - githash From f1bcce358a3693a84e5fc48f1f88c254b937bfbe Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 15:23:25 -0700 Subject: [PATCH 1898/2682] Move `http-client` from #5397 to #5572 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1dc79ffc..baf7c92c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -702,7 +702,7 @@ packages: - windns - mono-traversable - - http-client # 0.7 # https://github.com/commercialhaskell/stackage/issues/5397 + - http-client < 0.7 # https://github.com/commercialhaskell/stackage/issues/5572 - http-conduit - githash From 392f8d1e63b287f16fd25f19fcc4a8db9517fde9 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 15:29:49 -0700 Subject: [PATCH 1899/2682] Try `character-cases` --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index baf7c92c..b375bda3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3443,7 +3443,7 @@ packages: - socket-activation < 0 # via network-3.1.1.0 "aiya000 @aiya000": - - character-cases < 0.1.0.5 # https://github.com/commercialhaskell/stackage/issues/5404 + - character-cases # 0.1.0.5 # https://github.com/commercialhaskell/stackage/issues/5404 - throwable-exceptions "Mitsutoshi Aoe @maoe": From 88b1c7c925bee1d17f7b4889bb882b9a4f805813 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 15:41:34 -0700 Subject: [PATCH 1900/2682] Re-enable `character-cases` (tests disabled). Close #5404 --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b375bda3..5c656afc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3443,7 +3443,7 @@ packages: - socket-activation < 0 # via network-3.1.1.0 "aiya000 @aiya000": - - character-cases # 0.1.0.5 # https://github.com/commercialhaskell/stackage/issues/5404 + - character-cases - throwable-exceptions "Mitsutoshi Aoe @maoe": @@ -5586,6 +5586,7 @@ expected-test-failures: - haskeline # https://github.com/commercialhaskell/stackage/issues/5439 - http-client # https://github.com/commercialhaskell/stackage/issues/5470 - http-directory # https://github.com/commercialhaskell/stackage/issues/5471 + - character-cases # https://github.com/aiya000/hs-character-cases/issues/3 # Compilation failures - ListLike # No issue tracker, e-mail sent to maintainer From 391aa0312c3a20dad01d7596e7deb25c52d82ba1 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 15:42:38 -0700 Subject: [PATCH 1901/2682] Try `language-puppet` --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5c656afc..9d969463 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2590,7 +2590,7 @@ packages: - strict-base-types - withdependencies < 0 - hruby - - language-puppet < 0 # ghc 8.10 via servant + - language-puppet # 0 # ghc 8.10 via servant - tar-conduit "Mark Karpov @mrkkrp": @@ -5322,7 +5322,7 @@ skipped-tests: - jsaddle # Never finishes without framebuffer https://github.com/ghcjs/jsaddle/issues/9 - binary-parsers # https://github.com/winterland1989/binary-parsers/issues/3 - simple-affine-space # https://github.com/commercialhaskell/stackage/issues/5110 - - language-puppet # https://github.com/commercialhaskell/stackage/issues/5405 + # language-puppet # https://github.com/commercialhaskell/stackage/issues/5405 - hw-kafka-client # https://github.com/commercialhaskell/stackage/pull/5542 # Missing foreign library From 94e0862020e544ae0648e499fd1ff9316555d47d Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 15:47:46 -0700 Subject: [PATCH 1902/2682] `language-puppet` status (#5573) --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9d969463..7afd3b13 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2590,7 +2590,7 @@ packages: - strict-base-types - withdependencies < 0 - hruby - - language-puppet # 0 # ghc 8.10 via servant + - language-puppet < 0 # https://github.com/commercialhaskell/stackage/issues/5573 - tar-conduit "Mark Karpov @mrkkrp": @@ -5322,7 +5322,6 @@ skipped-tests: - jsaddle # Never finishes without framebuffer https://github.com/ghcjs/jsaddle/issues/9 - binary-parsers # https://github.com/winterland1989/binary-parsers/issues/3 - simple-affine-space # https://github.com/commercialhaskell/stackage/issues/5110 - # language-puppet # https://github.com/commercialhaskell/stackage/issues/5405 - hw-kafka-client # https://github.com/commercialhaskell/stackage/pull/5542 # Missing foreign library From b30661ec1657e1818ca651f5b85b6732ecafd2ee Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 15:48:12 -0700 Subject: [PATCH 1903/2682] Try `doctest` --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7afd3b13..6a7ba7d5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -989,7 +989,7 @@ packages: - hspec-wai-json - aeson-qq - interpolate - - doctest < 0.17 # https://github.com/commercialhaskell/stackage/issues/5406 + - doctest # 0.17 # https://github.com/commercialhaskell/stackage/issues/5406 - base-compat "Mario Blazevic @blamario": From 2a7d0748ea3c807856871e0f626a38212d7b6530 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 15:52:36 -0700 Subject: [PATCH 1904/2682] Close #5406, move to #5574 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6a7ba7d5..b5c98d51 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -989,7 +989,7 @@ packages: - hspec-wai-json - aeson-qq - interpolate - - doctest # 0.17 # https://github.com/commercialhaskell/stackage/issues/5406 + - doctest < 0.17 # https://github.com/commercialhaskell/stackage/issues/5574 - base-compat "Mario Blazevic @blamario": From 210bbfd1195d8624324ccfdb4d9f288bc2d0000f Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 16:03:21 -0700 Subject: [PATCH 1905/2682] Try `smallcheck` --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b5c98d51..e6236526 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4888,7 +4888,7 @@ packages: - path < 0.7.1 # https://github.com/commercialhaskell/stackage/issues/5424 - - smallcheck < 1.2.0 + # smallcheck < 1.2.0 # https://github.com/commercialhaskell/stackage/issues/5466 - cryptonite < 0.27 From 6948ddd13ca8ca5244f5eb2129cd84a08c16dc26 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 16:09:35 -0700 Subject: [PATCH 1906/2682] Fix data for #5424 --- build-constraints.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e6236526..227652cf 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3177,7 +3177,7 @@ packages: - primitive-addr - quickcheck-classes - quickcheck-classes-base - - arithmoi < 0.11.0.1 + - arithmoi - bitvec - poly - extended-reals @@ -4888,7 +4888,8 @@ packages: - path < 0.7.1 # https://github.com/commercialhaskell/stackage/issues/5424 - # smallcheck < 1.2.0 + - smallcheck < 1.2.0 + - arithmoi < 0.11.0.1 # https://github.com/commercialhaskell/stackage/issues/5466 - cryptonite < 0.27 From a53af9b0a82e06784ef886019ea9dd4485bbb0bc Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 16:11:05 -0700 Subject: [PATCH 1907/2682] Try `heterocephalus` --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 227652cf..3b1b0877 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3372,7 +3372,7 @@ packages: "Kadzuya Okamoto @arowM": - type-level-kv-list - - heterocephalus < 0 # https://github.com/commercialhaskell/stackage/issues/5434 + - heterocephalus # 0 # https://github.com/commercialhaskell/stackage/issues/5434 - bookkeeping < 0 # GHC 8.4 BuildFailureException Process exited with ExitFailure 1: ./Setup build - ochintin-daicho < 0 # GHC 8.4 DependencyFailed (PackageName "bookkeeping") - transaction From d5b94b66a980e20d26c9b26afb707c4437db7ee7 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 16:16:53 -0700 Subject: [PATCH 1908/2682] Failure still present in #5434 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3b1b0877..227652cf 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3372,7 +3372,7 @@ packages: "Kadzuya Okamoto @arowM": - type-level-kv-list - - heterocephalus # 0 # https://github.com/commercialhaskell/stackage/issues/5434 + - heterocephalus < 0 # https://github.com/commercialhaskell/stackage/issues/5434 - bookkeeping < 0 # GHC 8.4 BuildFailureException Process exited with ExitFailure 1: ./Setup build - ochintin-daicho < 0 # GHC 8.4 DependencyFailed (PackageName "bookkeeping") - transaction From 80a07df4d7862005303c2291c360d76961ba93e9 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 16:18:53 -0700 Subject: [PATCH 1909/2682] Test cryptonite --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 227652cf..109e2619 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4892,7 +4892,7 @@ packages: - arithmoi < 0.11.0.1 # https://github.com/commercialhaskell/stackage/issues/5466 - - cryptonite < 0.27 + - cryptonite # 0.27 # https://github.com/commercialhaskell/stackage/issues/5474 - random < 1.2.0 From 32a842501fe9f65c86b0315f49332119cb35dafe Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 16:21:32 -0700 Subject: [PATCH 1910/2682] Try `primitive` --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 109e2619..6c4f1a2e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4892,7 +4892,7 @@ packages: - arithmoi < 0.11.0.1 # https://github.com/commercialhaskell/stackage/issues/5466 - - cryptonite # 0.27 + - cryptonite < 0.27 # https://github.com/commercialhaskell/stackage/issues/5474 - random < 1.2.0 @@ -4900,7 +4900,7 @@ packages: - random-source < 0.3.0.10 # https://github.com/commercialhaskell/stackage/issues/5484 - - primitive < 0.7.1.0 + - primitive # 0.7.1.0 # https://github.com/commercialhaskell/stackage/issues/5524 - dlist < 1.0 From 7b09f8808415254f060b7ac32e18071b9432058c Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 16:22:44 -0700 Subject: [PATCH 1911/2682] Undo --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6c4f1a2e..227652cf 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4900,7 +4900,7 @@ packages: - random-source < 0.3.0.10 # https://github.com/commercialhaskell/stackage/issues/5484 - - primitive # 0.7.1.0 + - primitive < 0.7.1.0 # https://github.com/commercialhaskell/stackage/issues/5524 - dlist < 1.0 From 83730ce609e713c542284db6d148355e24aaffb7 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 16:23:17 -0700 Subject: [PATCH 1912/2682] Try `data-fix` --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 227652cf..3206afa4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4908,7 +4908,7 @@ packages: - rerebase < 1.7 # https://github.com/commercialhaskell/stackage/issues/5535 - - data-fix < 0.3 + - data-fix # 0.3 # https://github.com/commercialhaskell/stackage/issues/5537 - tasty-expected-failure < 0.12 From 7c16df2cf8632116dec9e0ab1f24cd0654c3f946 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 16:27:06 -0700 Subject: [PATCH 1913/2682] Undo --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3206afa4..227652cf 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4908,7 +4908,7 @@ packages: - rerebase < 1.7 # https://github.com/commercialhaskell/stackage/issues/5535 - - data-fix # 0.3 + - data-fix < 0.3 # https://github.com/commercialhaskell/stackage/issues/5537 - tasty-expected-failure < 0.12 From ae9f0d6a09f30585f337a53d9cb78b31cb8fa509 Mon Sep 17 00:00:00 2001 From: locallycompact Date: Sun, 2 Aug 2020 00:08:51 +0000 Subject: [PATCH 1914/2682] Add composite-base and composite-aeson --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 227652cf..1359917d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3937,6 +3937,8 @@ packages: - aeson-with - binary-instances - comonad-extras + - composite-aeson + - composite-base - ixset-typed-binary-instance - ixset-typed-conversions - ixset-typed-hashable-instance From bad30cf5688388d395e16ed4413f07ec9aba950b Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 18:16:57 -0700 Subject: [PATCH 1915/2682] Try #5424 again --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1359917d..e5fc1b3e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4890,8 +4890,8 @@ packages: - path < 0.7.1 # https://github.com/commercialhaskell/stackage/issues/5424 - - smallcheck < 1.2.0 - - arithmoi < 0.11.0.1 + # smallcheck < 1.2.0 + # arithmoi < 0.11.0.1 # https://github.com/commercialhaskell/stackage/issues/5466 - cryptonite < 0.27 From 914b43e2e6573059e88253cd987f86d18b370edf Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 18:19:53 -0700 Subject: [PATCH 1916/2682] Skip tests for `integer-roots`, final test for #5424 --- build-constraints.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e5fc1b3e..f851484e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4889,10 +4889,6 @@ packages: # https://github.com/commercialhaskell/path/issues/161 - path < 0.7.1 - # https://github.com/commercialhaskell/stackage/issues/5424 - # smallcheck < 1.2.0 - # arithmoi < 0.11.0.1 - # https://github.com/commercialhaskell/stackage/issues/5466 - cryptonite < 0.27 @@ -5238,6 +5234,7 @@ skipped-tests: - zlib # tasty-quickcheck, tasty-hunit, tasty - comfort-array # ChasingBottoms - hw-int + - integer-roots # smallcheck, https://github.com/commercialhaskell/stackage/issues/5424 # Blocked due to tests failing to compile for GHC 8.6 - async-refresh From e46735de3df0dd4f579ac86866257c9270898267 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 1 Aug 2020 20:56:06 -0700 Subject: [PATCH 1917/2682] Skip `xlsx` tests (#5576) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f851484e..6d345874 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5235,6 +5235,7 @@ skipped-tests: - comfort-array # ChasingBottoms - hw-int - integer-roots # smallcheck, https://github.com/commercialhaskell/stackage/issues/5424 + - xlsx # smallcheck, https://github.com/commercialhaskell/stackage/issues/5576 # Blocked due to tests failing to compile for GHC 8.6 - async-refresh From 6ab0690bc61b38a72a7d95b5c4faf31eb6b11526 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 2 Aug 2020 20:44:36 -0700 Subject: [PATCH 1918/2682] Remove upper ound on `bae64-bytestring`. Close #5569 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6d345874..397326df 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4395,7 +4395,7 @@ packages: - attoparsec - auto-update - base-noprelude < 0 # ghc 8.10 - - base64-bytestring < 1.1 # https://github.com/commercialhaskell/stackage/issues/5569 + - base64-bytestring - base64-bytestring-type - base64-string - bimap From 9e627d766dcd48e38b826a01d31d70bc4c4423bf Mon Sep 17 00:00:00 2001 From: chessai Date: Sun, 2 Aug 2020 23:02:11 -0700 Subject: [PATCH 1919/2682] add hedgehog-classes --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 397326df..b902f8d9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2225,6 +2225,7 @@ packages: - chronos - refined - these-skinny + - hedgehog-classes "Kostiantyn Rybnikov @k-bx": - SHA From b98932f46e8a4d4f941619c92611f56587d1a757 Mon Sep 17 00:00:00 2001 From: Clint Adams Date: Mon, 3 Aug 2020 14:13:29 -0400 Subject: [PATCH 1920/2682] Re-enable hopenpgp-tools --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 397326df..b2deccb1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1250,7 +1250,7 @@ packages: - openpgp-asciiarmor - MusicBrainz - DAV - - hopenpgp-tools < 0 # ghc 8.10 + - hopenpgp-tools - opensource - debian - cabal-debian < 0 # https://github.com/ddssff/cabal-debian/issues/71 From 1b89a8e7217aaa25781fbc70a30280eaf6c21762 Mon Sep 17 00:00:00 2001 From: Clint Adams Date: Mon, 3 Aug 2020 18:31:41 -0400 Subject: [PATCH 1921/2682] Re-enable cabal-debian, updated for Cabal 3.2 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 397326df..2f749d7b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1253,7 +1253,7 @@ packages: - hopenpgp-tools < 0 # ghc 8.10 - opensource - debian - - cabal-debian < 0 # https://github.com/ddssff/cabal-debian/issues/71 + - cabal-debian "Piyush P Kurur @piyush-kurur": - raaz < 0 # via base-4.13.0.0 From 03ad812ba736a9e4e16199aa030f7db676e1bc62 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Wed, 5 Aug 2020 22:43:55 +0200 Subject: [PATCH 1922/2682] new rpmbuild-order --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b902f8d9..6c94dfea 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6116,7 +6116,6 @@ build-tool-overrides: # - bindings-GLFW-3.1.2.1 # Comment saying what should be done when the new version is releasedskipped test-suite tell-me-when-its-released: - cpio-conduit-0.7.0 # remove from skipped-tests, https://github.com/da-x/cpio-conduit/issues/1 -- rpmbuild-order-0.4.0 # remove from skipped-tests, https://github.com/commercialhaskell/stackage/issues/5550 # Packages which should be hidden after registering, to avoid module name # conflicts. This is intended for at least two use cases: From fe219f938f1fb726e456eab8d3de412564d2c2ba Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Wed, 5 Aug 2020 22:48:27 +0200 Subject: [PATCH 1923/2682] Upper bound egison-pattern-src for #5540 --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6c94dfea..1f57d777 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4659,7 +4659,6 @@ packages: - raw-strings-qq - readable - rebase - - recursion-schemes - regex-applicative-text - regex-base - regex-compat @@ -4913,8 +4912,10 @@ packages: - tasty-expected-failure < 0.12 # https://github.com/commercialhaskell/stackage/issues/5540 + # blocked by 5535 - recursion-schemes < 5.2 - stackcollapse-ghc < 0.0.1.3 + - egison-pattern-src < 0.2.1.1 # end of packages From 4cab2a6397c625f777628f604c128fe78b954256 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Wed, 5 Aug 2020 22:51:14 +0200 Subject: [PATCH 1924/2682] dhall upper bounds for #5580 --- build-constraints.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1f57d777..9426ea61 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4917,6 +4917,11 @@ packages: - stackcollapse-ghc < 0.0.1.3 - egison-pattern-src < 0.2.1.1 + # https://github.com/commercialhaskell/stackage/issues/5580 + - dhall < 1.34.0 + - dhall-bash < 1.0.32 + - dhall-nix < 1.1.16 + # end of packages # Package flags are applied to individual packages, and override the values of From f932bb59abbe1bd1859e3823778856d64a063047 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Wed, 5 Aug 2020 22:52:41 +0200 Subject: [PATCH 1925/2682] unordered-containers upper bound for #5581 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9426ea61..56fef56d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4922,6 +4922,9 @@ packages: - dhall-bash < 1.0.32 - dhall-nix < 1.1.16 + # https://github.com/commercialhaskell/stackage/issues/5581 + - unordered-containers < 0.2.12.0 + # end of packages # Package flags are applied to individual packages, and override the values of From 11b428ddbeea6d8543db43dcd25be3d719260902 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Thu, 6 Aug 2020 13:47:53 +0200 Subject: [PATCH 1926/2682] Add ap-normalize --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 56fef56d..66733d3b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -504,6 +504,7 @@ packages: - text-generic-pretty < 0 # GHC 8.4 via ixset-typed "Li-yao Xia @Lysxia": + - ap-normalize - boltzmann-samplers - first-class-families - generic-data From 9c5642ed97b2e2248226074f2494401e71e0e42f Mon Sep 17 00:00:00 2001 From: Emanuel Borsboom Date: Thu, 6 Aug 2020 04:51:12 -0700 Subject: [PATCH 1927/2682] Add automated/dockerfiles/lts-16.8/Dockerfile --- automated/dockerfiles/lts-16.8/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 automated/dockerfiles/lts-16.8/Dockerfile diff --git a/automated/dockerfiles/lts-16.8/Dockerfile b/automated/dockerfiles/lts-16.8/Dockerfile new file mode 100644 index 00000000..901e702c --- /dev/null +++ b/automated/dockerfiles/lts-16.8/Dockerfile @@ -0,0 +1,3 @@ +FROM $DOCKER_REPO:lts-16.0 +ARG STACK_VERSION=2.3.3 +RUN wget -qO- https://github.com/commercialhaskell/stack/releases/download/v$STACK_VERSION/stack-$STACK_VERSION-linux-x86_64.tar.gz | tar xz --wildcards --strip-components=1 -C /usr/local/bin '*/stack' From 380ef190969be7c96093d92c75754d96cd10096d Mon Sep 17 00:00:00 2001 From: Ziyang Liu Date: Thu, 6 Aug 2020 07:16:37 -0700 Subject: [PATCH 1928/2682] Re-enable apply-refact and change maintainer --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 66733d3b..f858127d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2365,7 +2365,6 @@ packages: "Matthew Pickering @mpickering": - refact - - apply-refact < 0 # via ghc-8.8.1 "Andrew Gibiansky @gibiansky": - ipython-kernel @@ -4311,6 +4310,7 @@ packages: - magic "Ziyang Liu @zliu41": + - apply-refact - hadoop-streaming - indexed-containers - math-extras From 71753abcfa5c968d186d961b21c2dab038974f7f Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Thu, 6 Aug 2020 23:23:11 +0200 Subject: [PATCH 1929/2682] dhall-json upper bound for #5580 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 66733d3b..b3591de2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4922,6 +4922,7 @@ packages: - dhall < 1.34.0 - dhall-bash < 1.0.32 - dhall-nix < 1.1.16 + - dhall-json < 1.7.1 # https://github.com/commercialhaskell/stackage/issues/5581 - unordered-containers < 0.2.12.0 From 6cf82875ebf1a7dfddf5f263467033f11d5cdc5b Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Thu, 6 Aug 2020 23:26:50 +0200 Subject: [PATCH 1930/2682] strict upper bound for #5583 --- build-constraints.yaml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b3591de2..befe484c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4382,7 +4382,7 @@ packages: - NumInstances - Only - ParsecTools - - QuickCheck < 2.14 # https://github.com/commercialhaskell/stackage/issues/5566 + - QuickCheck - RSA - aeson-compat - aeson-extra < 0 # via semialign @@ -4884,6 +4884,10 @@ packages: - tasty < 1.3 - tasty-golden < 2.3.3.3 + # https://github.com/commercialhaskell/stackage/issues/5566 + - QuickCheck < 2.14 + - quickcheck-instances < 0.3.24 + # https://github.com/commercialhaskell/stackage/issues/5349 - typed-uuid < 0.1.0.0 @@ -4927,6 +4931,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5581 - unordered-containers < 0.2.12.0 + # https://github.com/commercialhaskell/stackage/issues/5583 + - strict < 0.4 + # end of packages # Package flags are applied to individual packages, and override the values of From 39d523d36240758f7133b061a981529d1d3295d7 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Fri, 7 Aug 2020 13:45:17 +0200 Subject: [PATCH 1931/2682] dhall-lsp-server upper bound for #5580 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index befe484c..b3a66c25 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4927,6 +4927,7 @@ packages: - dhall-bash < 1.0.32 - dhall-nix < 1.1.16 - dhall-json < 1.7.1 + - dhall-lsp-server < 1.0.9 # https://github.com/commercialhaskell/stackage/issues/5581 - unordered-containers < 0.2.12.0 From 0bb44589436707a93eb940b23dc22321aa08c7b5 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Fri, 7 Aug 2020 14:09:30 +0200 Subject: [PATCH 1932/2682] Expect github-rest tests to fail LeapYear/github-rest#16 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index b3a66c25..ae18c44c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5607,6 +5607,7 @@ expected-test-failures: - http-client # https://github.com/commercialhaskell/stackage/issues/5470 - http-directory # https://github.com/commercialhaskell/stackage/issues/5471 - character-cases # https://github.com/aiya000/hs-character-cases/issues/3 + - github-rest # https://github.com/LeapYear/github-rest/issues/16 # Compilation failures - ListLike # No issue tracker, e-mail sent to maintainer From fdfdd875f3376e2f28f086eeedfc05b86db8fc91 Mon Sep 17 00:00:00 2001 From: Henning Thielemann Date: Fri, 7 Aug 2020 14:39:50 +0200 Subject: [PATCH 1933/2682] reactivate 'hyper' and depending packages --- build-constraints.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ae18c44c..79c46b66 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -451,17 +451,17 @@ packages: - netlib-comfort-array - blas-comfort-array - lapack-comfort-array - - lapack < 0 # via hyper - - hmm-lapack < 0 # via lapack - - magico < 0 # via lapack - - resistor-cube < 0 # via lapack - - linear-circuit < 0 # via lapack + - lapack + - hmm-lapack + - magico + - resistor-cube + - linear-circuit # Not a maintainer - cabal-plan - topograph - ix-shapable - hsshellscript - - hyper < 0 # via base-4.13.0.0 + - hyper - storable-endian "Jeremy Barisch-Rooney @barischrooneyj": From 59104128df95afc224fa2a2eefbd522236a8bba9 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Fri, 7 Aug 2020 16:50:38 +0200 Subject: [PATCH 1934/2682] Drop aeson-utils --- build-constraints.yaml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ae18c44c..9c4138ed 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1314,7 +1314,7 @@ packages: - either-unwrap "Silk ": - - aeson-utils + - aeson-utils < 0 - arrow-list < 0 - attoparsec-expr - code-builder < 0 @@ -1324,14 +1324,14 @@ packages: - imagesize-conduit - json-schema < 0 - multipart - # - rest-client # http-types 0.12 - - rest-core < 0 # GHC 8.4 via base-4.11.0.0 - - rest-snap < 0 # GHC 8.4 via rest-core - # - rest-gen - # - rest-happstack # containers - - rest-stringmap < 0 # via aeson-1.4.0.0 - - rest-types < 0 # GHC 8.4 via base-4.11.0.0 - # - rest-wai # http-types 0.12 + - rest-client < 0 + - rest-core < 0 + - rest-gen < 0 + - rest-happstack < 0 + - rest-snap < 0 + - rest-stringmap < 0 + - rest-types < 0 + - rest-wai < 0 - tostring - uri-encode From be3daac5a9b1ea02b89cdebcd97f74041cf155be Mon Sep 17 00:00:00 2001 From: Brandon Chinn Date: Fri, 7 Aug 2020 10:07:46 -0700 Subject: [PATCH 1935/2682] Fix github-rest issue #16 --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9c4138ed..fc1c556d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5607,7 +5607,6 @@ expected-test-failures: - http-client # https://github.com/commercialhaskell/stackage/issues/5470 - http-directory # https://github.com/commercialhaskell/stackage/issues/5471 - character-cases # https://github.com/aiya000/hs-character-cases/issues/3 - - github-rest # https://github.com/LeapYear/github-rest/issues/16 # Compilation failures - ListLike # No issue tracker, e-mail sent to maintainer From 93fa53608f0b17ffafe146db6fdba51a7efe542b Mon Sep 17 00:00:00 2001 From: Dylan Simon Date: Fri, 7 Aug 2020 16:45:34 -0400 Subject: [PATCH 1936/2682] Re-enable postgresql-typed --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9c4138ed..eb93f772 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3454,7 +3454,7 @@ packages: - viewprof < 0 # via base-4.13.0.0 "Dylan Simon @dylex": - - postgresql-typed < 0 # via HDBC + - postgresql-typed - invertible < 0 # ghc 8.10.1 https://github.com/commercialhaskell/stackage/issues/5441 - ztail < 0 # via time-1.9.3 - zip-stream From 37dff3f9de1fb109a5b2a846f9173f440ed98be4 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sat, 8 Aug 2020 03:23:03 +0200 Subject: [PATCH 1937/2682] strict-base-types upper bound for #5571 --- build-constraints.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9c4138ed..b9527606 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1150,7 +1150,6 @@ packages: "Adam Bergmark @bergmark": - HUnit - - aeson < 1.5.0.0 # https://github.com/commercialhaskell/stackage/issues/5571 - attoparsec-iso8601 - fay < 0 - fay-base < 0 @@ -4884,6 +4883,11 @@ packages: - tasty < 1.3 - tasty-golden < 2.3.3.3 + + # https://github.com/commercialhaskell/stackage/issues/5571 + - aeson < 1.5.0.0 + - strict-base-types < 0.7 + # https://github.com/commercialhaskell/stackage/issues/5566 - QuickCheck < 2.14 - quickcheck-instances < 0.3.24 From acdf43d318ad6c05ef25cd385a0087537151284b Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sat, 8 Aug 2020 03:24:53 +0200 Subject: [PATCH 1938/2682] network upper bound for #5587 --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index b9527606..db965b55 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4883,6 +4883,8 @@ packages: - tasty < 1.3 - tasty-golden < 2.3.3.3 + # https://github.com/commercialhaskell/stackage/issues/5587 + - network < 3.1.2.0 # https://github.com/commercialhaskell/stackage/issues/5571 - aeson < 1.5.0.0 From 7fb4d50703721e09eb71748759ef3b7afc81654c Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sat, 8 Aug 2020 06:33:56 +0200 Subject: [PATCH 1939/2682] Add rpmbuild-order to expected test failures --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index db965b55..6c3ded75 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5443,6 +5443,9 @@ skipped-tests: # https://github.com/commercialhaskell/stackage/issues/5302 - registry + + # TODO + - rpmbuild-order # end of skipped-tests # Tests listed in expected-test-failures configure correctly but may fail to run From 186780a2e52e8f6a0aa034658af4524acbc98420 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sat, 8 Aug 2020 19:05:39 +0200 Subject: [PATCH 1940/2682] Fix typo in PR template --- .github/PULL_REQUEST_TEMPLATE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 1f21a64c..b9bad856 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -3,7 +3,7 @@ Checklist: - [ ] At least 30 minutes have passed since uploading to Hackage - [ ] On your own machine, you have successfully run the following command (replace `$package` with the name of the package that is submitted, and `$version` with the version of the package you want to get into Stackage): - ./verify-package $pacakge # or $pacakge-$version + ./verify-package $pacakge # or $package-$version The script runs virtually the following commands in a clean directory: From ef53b436da1a1fc200ba05adf29c36edc97c5dfd Mon Sep 17 00:00:00 2001 From: Dylan Simon Date: Sat, 8 Aug 2020 13:23:57 -0400 Subject: [PATCH 1941/2682] Re-enable invertible, ztail, fix #5441 --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 53167885..d19e2228 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3453,8 +3453,8 @@ packages: "Dylan Simon @dylex": - postgresql-typed - - invertible < 0 # ghc 8.10.1 https://github.com/commercialhaskell/stackage/issues/5441 - - ztail < 0 # via time-1.9.3 + - invertible + - ztail - zip-stream "Louis Pan @louispan": From 0b3daa8ea2c7de75a3c048b2f7cde0296e7f0f0a Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sat, 8 Aug 2020 20:05:57 +0200 Subject: [PATCH 1942/2682] Upgrade to aeson 1.5.2.0, closes #5571 --- build-constraints.yaml | 44 +++++++++++++++++++++--------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d19e2228..99953493 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -621,7 +621,7 @@ packages: "Michael Snoyman michael@snoyman.com @snoyberg": - bzlib-conduit - case-insensitive - - classy-prelude-yesod + - classy-prelude-yesod < 0 # aeson 1.5 via yesod - conduit-combinators - conduit-extra - hebrew-time @@ -631,20 +631,20 @@ packages: - mime-types - network-conduit-tls - persistent - - persistent-mysql - - persistent-postgresql - - persistent-sqlite - - persistent-template < 2.8.3 # https://github.com/commercialhaskell/stackage/issues/5347 - - persistent-test # https://github.com/commercialhaskell/stackage/pull/4492 + - persistent-mysql < 0 # aeson 1.5 + - persistent-postgresql < 0 # aeson 1.5 + - persistent-sqlite < 0 # aeson 1.5 + - persistent-template < 0 # https://github.com/commercialhaskell/stackage/issues/5347 & aeson 1.5 + - persistent-test < 0 # aeson 1.5 # https://github.com/commercialhaskell/stackage/pull/4492 # - stackage-curator # http-conduit 2.3 via amazonka - store < 0 # via store-core - wai-extra - wai-websockets - warp-tls - - yesod + - yesod < 0 # aeson 1.5 via yesod-persistent - authenticate - html-conduit - - yesod-auth + - yesod-auth < 0 # aeson 1.5 via yesod-persistent - authenticate-oauth - yesod-bin - yesod-eventsource < 0 # via yesod-core @@ -708,7 +708,7 @@ packages: - githash - time-manager - - pantry + - pantry < 0 # aeson 1.5 - mega-sdist < 0 # Cabal issues - http-download - hi-file-parser @@ -797,7 +797,7 @@ packages: - tldr - fb - yesod-fb - - yesod-auth-fb + - yesod-auth-fb < 0 # aeson 1.5 via yesod-persistent via yesod-auth - hourglass-orphans - wai-slack-middleware - sysinfo @@ -1345,7 +1345,7 @@ packages: - hledger - hledger-lib - hledger-ui - - hledger-web + - hledger-web < 0 # aeson 1.5 via yesod-persistent via yesod-form # - quickbench < 0 # via docopt - regex-compat-tdfa @@ -1381,7 +1381,7 @@ packages: - mysql-simple - sphinx < 0 # Could not find module Network - xmlhtml < 0 # GHC 8.4 via hspec-2.5.0 - - yesod-auth-hashdb + - yesod-auth-hashdb < 0 # aeson 1.5 via yesod-persistent "Toralf Wittner @twittner": - bytestring-conversion @@ -2355,11 +2355,11 @@ packages: - smtp-mail < 0 # https://github.com/jhickner/smtp-mail/issues/24#issuecomment-499601949 - liboath-hs < 0 # via inline-c-0.8.0.1 - servant-quickcheck < 0 - - esqueleto + - esqueleto < 0 # aeson 1.5 - hedgehog-fakedata - - persistent-typed-db - - persistent-qq - - persistent-pagination + - persistent-typed-db < 0 # aeson 1.5 + - persistent-qq < 0 # aeson 1.5 + - persistent-pagination < 0 # aeson 1.5 - hspec-hedgehog "Matthew Pickering @mpickering": @@ -3488,8 +3488,8 @@ packages: - haskell-import-graph - string-transform - uniq-deep - - yesod-form-bootstrap4 - - yesod-recaptcha2 + - yesod-form-bootstrap4 < 0 # aeson 1.5 via yesod-persistent via yesod-form + - yesod-recaptcha2 < 0 # aeson 1.5 via yesod-persistent via yesod-form "Andrei Barbu @abarbu": - nondeterminism @@ -4576,7 +4576,7 @@ packages: - io-streams-haproxy - ixset-typed - json < 0 # via base-4.13.0.0 - - json-alt + - json-alt < 0 # aeson 1.5 - kleene < 0 # via regex-applicative - language-haskell-extract < 0 # ghc 8.10 - largeword @@ -4816,8 +4816,8 @@ packages: - yeshql-core < 0 # MonadFail - yeshql-hdbc < 0 # via HDBC - yesod-core - - yesod-form - - yesod-persistent + - yesod-form < 0 # aeson 1.5 via yesod-persistent + - yesod-persistent < 0 # aeson 1.5 - zlib - zlib-bindings @@ -4887,7 +4887,7 @@ packages: - network < 3.1.2.0 # https://github.com/commercialhaskell/stackage/issues/5571 - - aeson < 1.5.0.0 + - aeson < 1.5.3.0 - strict-base-types < 0.7 # https://github.com/commercialhaskell/stackage/issues/5566 From 74c163c869eaf050cef77b8c5f4168deacaa1490 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sat, 8 Aug 2020 20:25:18 +0200 Subject: [PATCH 1943/2682] Group #5535 & #5583 --- build-constraints.yaml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 99953493..aa093fd2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1149,6 +1149,7 @@ packages: - bloodhound < 0 # via aeson-1.3.1.0 "Adam Bergmark @bergmark": + - aeson - HUnit - attoparsec-iso8601 - fay < 0 @@ -4886,10 +4887,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5587 - network < 3.1.2.0 - # https://github.com/commercialhaskell/stackage/issues/5571 - - aeson < 1.5.3.0 - - strict-base-types < 0.7 - # https://github.com/commercialhaskell/stackage/issues/5566 - QuickCheck < 2.14 - quickcheck-instances < 0.3.24 @@ -4916,9 +4913,6 @@ packages: - rebase < 1.7 - rerebase < 1.7 - # https://github.com/commercialhaskell/stackage/issues/5535 - - data-fix < 0.3 - # https://github.com/commercialhaskell/stackage/issues/5537 - tasty-expected-failure < 0.12 @@ -4938,8 +4932,13 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5581 - unordered-containers < 0.2.12.0 + # https://github.com/commercialhaskell/stackage/issues/5535 # https://github.com/commercialhaskell/stackage/issues/5583 + # I think both of these needs to be closed at the same time. + - aeson < 1.5.3.0 + - data-fix < 0.3 - strict < 0.4 + - strict-base-types < 0.7 # end of packages From 2702a1b1e78608c449bb48bd547e122af314fa68 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sat, 8 Aug 2020 20:30:06 +0200 Subject: [PATCH 1944/2682] Upgrade data-fix, disable hnix and dhall-nix, closes #5535 --- build-constraints.yaml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index aa093fd2..2bb3d2f3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -486,7 +486,7 @@ packages: - coercible-utils < 0 # ghc 8.10 - hspec-parsec - checkers - - hnix + - hnix < 0 - hashing - hnix-store-core - monadlist @@ -1137,7 +1137,7 @@ packages: - dhall-lsp-server - dhall-yaml - aeson-yaml # req'd by dhall-json - - dhall-nix + - dhall-nix < 0 "Andrew Thaddeus Martin @andrewthad": - colonnade < 0 # via profunctors-5.5 @@ -4925,20 +4925,17 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5580 - dhall < 1.34.0 - dhall-bash < 1.0.32 - - dhall-nix < 1.1.16 + # - dhall-nix < 1.1.16 - dhall-json < 1.7.1 - dhall-lsp-server < 1.0.9 # https://github.com/commercialhaskell/stackage/issues/5581 - unordered-containers < 0.2.12.0 - # https://github.com/commercialhaskell/stackage/issues/5535 # https://github.com/commercialhaskell/stackage/issues/5583 - # I think both of these needs to be closed at the same time. - - aeson < 1.5.3.0 - - data-fix < 0.3 - strict < 0.4 - strict-base-types < 0.7 + - aeson < 1.5.3.0 # end of packages From 7a7fa50c23ea6f36075684fd9fa18591ea06bf83 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sat, 8 Aug 2020 20:37:32 +0200 Subject: [PATCH 1945/2682] Upgrade strict & aeson, closes #5583. Disabled filecache and strict-base-types --- build-constraints.yaml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2bb3d2f3..0391d529 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2586,9 +2586,9 @@ packages: "Simon Marechal @bartavelle": - compactmap - stateWriter < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build - - filecache + - filecache < 0 - pcre-utils - - strict-base-types + - strict-base-types < 0 - withdependencies < 0 - hruby - language-puppet < 0 # https://github.com/commercialhaskell/stackage/issues/5573 @@ -4932,11 +4932,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5581 - unordered-containers < 0.2.12.0 - # https://github.com/commercialhaskell/stackage/issues/5583 - - strict < 0.4 - - strict-base-types < 0.7 - - aeson < 1.5.3.0 - # end of packages # Package flags are applied to individual packages, and override the values of From 47a1c4c3fcf25412d1c17218c5a52590c5920cb7 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sat, 8 Aug 2020 20:45:24 +0200 Subject: [PATCH 1946/2682] Remove double # --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0391d529..84f1d098 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5486,7 +5486,7 @@ expected-test-failures: # These shouldn't be re-enabled unless we know a fix has been released. - GLFW-b # X - HTF # Requires shell script and are incompatible with sandboxed package databases - - HaRe # # Needs ~/.ghc-mod/cabal-helper https://github.com/fpco/stackage/pull/906 + - HaRe # Needs ~/.ghc-mod/cabal-helper https://github.com/fpco/stackage/pull/906 - IPv6DB - accelerate-bignum # CUDA GPU - alex From 8cdfe7e7620cfd008ec3df5df1482a43b53a6ea7 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sat, 8 Aug 2020 21:36:13 +0200 Subject: [PATCH 1947/2682] Just use issue numbers for closed issues to make searching for open ones easier --- build-constraints.yaml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 84f1d098..8aaf56f1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -136,7 +136,7 @@ packages: "Fernando Freire @dogonthehorizon": [] - # - hal # https://github.com/commercialhaskell/stackage/issues/4288 + # - hal # #4288 "Daniel Taskoff @dtaskoff": - hlibcpuid @@ -217,7 +217,7 @@ packages: - butter < 0 # MonadFail "Iris Ward @AdituV": - - typenums < 0 # ghc 8.10.1 https://github.com/commercialhaskell/stackage/issues/5450 + - typenums < 0 # ghc 8.10.1 #5450 "Jude Taylor @pikajude": - th-printf @@ -634,8 +634,8 @@ packages: - persistent-mysql < 0 # aeson 1.5 - persistent-postgresql < 0 # aeson 1.5 - persistent-sqlite < 0 # aeson 1.5 - - persistent-template < 0 # https://github.com/commercialhaskell/stackage/issues/5347 & aeson 1.5 - - persistent-test < 0 # aeson 1.5 # https://github.com/commercialhaskell/stackage/pull/4492 + - persistent-template < 0 # #5347 & aeson 1.5 + - persistent-test < 0 # aeson 1.5 # #4492 # - stackage-curator # http-conduit 2.3 via amazonka - store < 0 # via store-core - wai-extra @@ -3240,7 +3240,7 @@ packages: "Anton Gushcha @ncrashed": - aeson-injector < 0 # GHC 8.4 via base-4.11.0.0 - - JuicyPixels-blp < 0 # JuicyPixels 3.3 commercialhaskell/stackate#3818 + - JuicyPixels-blp < 0 # JuicyPixels 3.3 #3818 "Al Zohali @zohl": # - servant-auth-cookie # servant 0.13 @@ -4704,7 +4704,7 @@ packages: - special-values - splice - split - - splitmix < 0.1 # Broken due to upper bound on QuickCheck, #5566 + - splitmix - sql-words - stateref - statistics @@ -4890,6 +4890,7 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5566 - QuickCheck < 2.14 - quickcheck-instances < 0.3.24 + - splitmix < 0.1 # https://github.com/commercialhaskell/stackage/issues/5349 - typed-uuid < 0.1.0.0 From a90e50c18bb3a2a35afa6abc1796a707052a3729 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sat, 8 Aug 2020 21:54:52 +0200 Subject: [PATCH 1948/2682] Mark closed tickets with /closed, and try re-enabling farmhash --- build-constraints.yaml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8aaf56f1..f1dcec02 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -120,7 +120,7 @@ packages: "Matej Niznik @TheMatten": - polysemy - - polysemy-plugin < 0 # via polysemy + - polysemy-plugin < 0 - polysemy-zoo < 0 # via hedis - loopbreaker < 0 # ghc 8.10 @@ -136,7 +136,7 @@ packages: "Fernando Freire @dogonthehorizon": [] - # - hal # #4288 + # - hal # #4288/closed "Daniel Taskoff @dtaskoff": - hlibcpuid @@ -217,7 +217,7 @@ packages: - butter < 0 # MonadFail "Iris Ward @AdituV": - - typenums < 0 # ghc 8.10.1 #5450 + - typenums < 0 # ghc 8.10.1 #5450/closed "Jude Taylor @pikajude": - th-printf @@ -634,8 +634,8 @@ packages: - persistent-mysql < 0 # aeson 1.5 - persistent-postgresql < 0 # aeson 1.5 - persistent-sqlite < 0 # aeson 1.5 - - persistent-template < 0 # #5347 & aeson 1.5 - - persistent-test < 0 # aeson 1.5 # #4492 + - persistent-template < 0 # #5347/closed & aeson 1.5 + - persistent-test < 0 # aeson 1.5 # #4492/closed # - stackage-curator # http-conduit 2.3 via amazonka - store < 0 # via store-core - wai-extra @@ -1711,7 +1711,7 @@ packages: - tasty-program "Abhinav Gupta @abhinav": - - farmhash < 0 # ghc 8.10.1 https://github.com/commercialhaskell/stackage/issues/5437 + - farmhash - pinch < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build - sandman < 0 # Cabal 3 @@ -3240,7 +3240,7 @@ packages: "Anton Gushcha @ncrashed": - aeson-injector < 0 # GHC 8.4 via base-4.11.0.0 - - JuicyPixels-blp < 0 # JuicyPixels 3.3 #3818 + - JuicyPixels-blp < 0 # JuicyPixels 3.3 #3818/closed "Al Zohali @zohl": # - servant-auth-cookie # servant 0.13 @@ -3373,7 +3373,7 @@ packages: "Kadzuya Okamoto @arowM": - type-level-kv-list - - heterocephalus < 0 # https://github.com/commercialhaskell/stackage/issues/5434 + - heterocephalus < 0 # #5434/closed - bookkeeping < 0 # GHC 8.4 BuildFailureException Process exited with ExitFailure 1: ./Setup build - ochintin-daicho < 0 # GHC 8.4 DependencyFailed (PackageName "bookkeeping") - transaction @@ -4003,7 +4003,7 @@ packages: "Sergey Vinokurov @sergv": - bencoding < 0 # via bencode - - emacs-module < 0 # ghc 8.10.1 https://github.com/commercialhaskell/stackage/issues/5436 + - emacs-module < 0 # ghc 8.10.1 #5436/closed - tasty-ant-xml "Eugene Smolanka @esmolanka": From 6f27d14d513b93dd3e8d52db2da2a380d381dd7c Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sat, 8 Aug 2020 22:09:26 +0200 Subject: [PATCH 1949/2682] Close issues for disabled packages --- build-constraints.yaml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f1dcec02..e265e9f4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2195,7 +2195,7 @@ packages: "Kai Zhang @kaizhang": - matrices - - haskell-igraph < 0 # ghc 8.10.1 https://github.com/commercialhaskell/stackage/issues/5440 + - haskell-igraph < 0 # ghc 8.10.1 #5440/closed "Michel Boucey @MichelBoucey": - IPv6Addr @@ -2262,7 +2262,7 @@ packages: "Sven Heyll @sheyll": - b9 < 0 # build failure with GHC 8.4 https://github.com/sheyll/b9-vm-image-builder/issues/4 - type-spec - - pretty-types < 0 # ghc 8.10.1 https://github.com/commercialhaskell/stackage/issues/5446 + - pretty-types < 0 # ghc 8.10.1 #5446/closed - function-builder - bytestring-to-vector @@ -2463,7 +2463,7 @@ packages: - servant-rawm - servant-static-th < 0 # ghc 8.10 via servant - termonad < 0 # via gi-vte - - world-peace < 0 # ghc 8.10.1 https://github.com/commercialhaskell/stackage/issues/5452 + - world-peace < 0 # ghc 8.10.1 #5452/closed - xml-html-qq < 0 # via heterocephalus - xml-indexed-cursor @@ -2482,7 +2482,7 @@ packages: - opentelemetry-extra - opentelemetry-wai - opentelemetry-lightstep - - planb-token-introspection < 0 # https://github.com/commercialhaskell/stackage/issues/5445 + - planb-token-introspection < 0 # #5445/closed - pointedlist - unordered-intmap - word-trie @@ -3192,7 +3192,7 @@ packages: "Ashley Yakeley @AshleyYakeley": - countable - - witness < 0 # ghc 8.10.1 https://github.com/commercialhaskell/stackage/issues/5451 + - witness < 0 # ghc 8.10.1 #5451/closed - open-witness < 0 # MonadFail "Victor Denisov @VictorDenisov": @@ -4762,10 +4762,10 @@ packages: - tonatona < 0 # via tonaparser - transformers-base - tree-diff - - trivial-constraint < 0 # ghc 8.10.1 https://github.com/commercialhaskell/stackage/issues/5447 + - trivial-constraint < 0 # ghc 8.10.1 #5447/closed - true-name < 0 # MonadFail - tuple-th - - type-fun < 0 # ghc 8.10.1 https://github.com/commercialhaskell/stackage/issues/5448 + - type-fun < 0 # ghc 8.10.1 #5448/closed - type-hint - uglymemo - unbounded-delays @@ -5634,7 +5634,7 @@ expected-test-failures: - yeshql-core # https://github.com/tdammers/yeshql/issues/6 - yeshql-hdbc # https://github.com/tdammers/yeshql/issues/6 - yesod-gitrev # https://github.com/DanBurton/yesod-gitrev/issues/5 - - chronos # https://github.com/commercialhaskell/stackage/issues/5443 + - chronos # #5443/closed - massiv # Recursive deps https://github.com/fpco/stackage/issues/1818 From 39244c2d5f06170fc3dd2ee9303c7ef2c6f21a65 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sat, 8 Aug 2020 22:10:46 +0200 Subject: [PATCH 1950/2682] Upgrade cryptonite, closes #5466 --- build-constraints.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e265e9f4..a613d2a2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3780,7 +3780,7 @@ packages: - data-ascii - d10 - stripe-concepts - - stripe-signature + - stripe-signature < 0 # criterion 0.27 - stripe-scotty < 0 # via scotty - stripe-wreq < 0 # via wreq @@ -4898,9 +4898,6 @@ packages: # https://github.com/commercialhaskell/path/issues/161 - path < 0.7.1 - # https://github.com/commercialhaskell/stackage/issues/5466 - - cryptonite < 0.27 - # https://github.com/commercialhaskell/stackage/issues/5474 - random < 1.2.0 - random-fu < 0.2.7.6 From 3afcea6bb6b2225a57869092260fbdca1e47bb4d Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sat, 8 Aug 2020 22:12:45 +0200 Subject: [PATCH 1951/2682] Close #5469 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a613d2a2..199e0b6d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5577,13 +5577,13 @@ expected-test-failures: - web3 # requires running server - webdriver-angular # webdriver server - websockets + - hnix # #5469/closed # Missing test files in sdist # Hopefully gets fixed in the next release... - crypto-pubkey # https://github.com/vincenthz/hs-crypto-pubkey/issues/23 - doctest-discover # 0.1.0.9 https://github.com/karun012/doctest-discover/issues/22 - doctest - - hnix # (tests) https://github.com/commercialhaskell/stackage/issues/5469 # Assertion failures, these can be real bugs or just limitations # in the test cases. From 53df13990e6b58b08b80f334a739c4084c20bc8d Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sat, 8 Aug 2020 22:16:39 +0200 Subject: [PATCH 1952/2682] Moving #5470 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 199e0b6d..7cb9c33f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5578,6 +5578,7 @@ expected-test-failures: - webdriver-angular # webdriver server - websockets - hnix # #5469/closed + - http-client # https://github.com/snoyberg/http-client/issues/439 # Missing test files in sdist # Hopefully gets fixed in the next release... @@ -5602,7 +5603,6 @@ expected-test-failures: - simple-vec3 # https://github.com/commercialhaskell/stackage/pull/5410 - bech32-th # https://github.com/commercialhaskell/stackage/issues/5432 - haskeline # https://github.com/commercialhaskell/stackage/issues/5439 - - http-client # https://github.com/commercialhaskell/stackage/issues/5470 - http-directory # https://github.com/commercialhaskell/stackage/issues/5471 - character-cases # https://github.com/aiya000/hs-character-cases/issues/3 From 3209b9d7bc36a89d9f15593f4ce4d3dd50b4e0e7 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sat, 8 Aug 2020 22:18:45 +0200 Subject: [PATCH 1953/2682] Close #5471 --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7cb9c33f..3c539960 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5578,7 +5578,8 @@ expected-test-failures: - webdriver-angular # webdriver server - websockets - hnix # #5469/closed - - http-client # https://github.com/snoyberg/http-client/issues/439 + - http-client # httpbin issues, https://github.com/snoyberg/http-client/issues/439 + - http-directory # httpbin issues, https://github.com/juhp/http-directory/issues/1 # Missing test files in sdist # Hopefully gets fixed in the next release... @@ -5603,7 +5604,6 @@ expected-test-failures: - simple-vec3 # https://github.com/commercialhaskell/stackage/pull/5410 - bech32-th # https://github.com/commercialhaskell/stackage/issues/5432 - haskeline # https://github.com/commercialhaskell/stackage/issues/5439 - - http-directory # https://github.com/commercialhaskell/stackage/issues/5471 - character-cases # https://github.com/aiya000/hs-character-cases/issues/3 # Compilation failures From 9049da062fb62103e14b294ce189363bc79049e6 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sat, 8 Aug 2020 22:28:55 +0200 Subject: [PATCH 1954/2682] Upgrade primitive, disabling streamly & streamly-bytestring. Closes #5484 --- build-constraints.yaml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3c539960..e0491005 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -569,7 +569,7 @@ packages: - bench-show < 0 # via optparse-applicative-0.15.1.0 - monad-recorder < 0 # compilation failure - packcheck - - streamly + - streamly < 0 # primitive 0.7.1.0 - unicode-transforms - xls @@ -806,7 +806,7 @@ packages: - persistent-redis < 0 # GHC 8.4 via hedis - fakedata - fakedata-parser - - streamly-bytestring + - streamly-bytestring < 0 # primitive via streamly "haskell-openal": - OpenAL @@ -4903,9 +4903,6 @@ packages: - random-fu < 0.2.7.6 - random-source < 0.3.0.10 - # https://github.com/commercialhaskell/stackage/issues/5484 - - primitive < 0.7.1.0 - # https://github.com/commercialhaskell/stackage/issues/5524 - dlist < 1.0 - rebase < 1.7 From 6caed90a734aa10d77d8b64c21340a532c3b202a Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sat, 8 Aug 2020 22:33:23 +0200 Subject: [PATCH 1955/2682] Upgrade unordered-containers, closes #5581 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e0491005..93d5c3ee 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4924,9 +4924,6 @@ packages: - dhall-json < 1.7.1 - dhall-lsp-server < 1.0.9 - # https://github.com/commercialhaskell/stackage/issues/5581 - - unordered-containers < 0.2.12.0 - # end of packages # Package flags are applied to individual packages, and override the values of From 52122dc7bcca83dd715cadd56b55b513abd6ef06 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sat, 8 Aug 2020 22:39:27 +0200 Subject: [PATCH 1956/2682] Mark more closed issues --- build-constraints.yaml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 93d5c3ee..3ccaa14d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1085,7 +1085,7 @@ packages: - cufft < 0 # via cuda - cublas < 0 # via cuda - cusparse < 0 # via cuda - - cusolver < 0 #4029 + - cusolver < 0 #4029/closed - nvvm < 0 # via cuda - wide-word # @erikd @@ -1448,7 +1448,7 @@ packages: - optparse-simple - hpack - bindings-uname - - stack < 0 # ghc 8.10 # < 9.9.9 # see https://github.com/fpco/stackage/issues/3563 + - stack < 0 # ghc 8.10 # < 9.9.9 # see #3563/closed "Michael Sloan @mgsloan": - th-orphans @@ -2113,8 +2113,8 @@ packages: "Michael Thompson @michaelt": - pipes-text < 0 # GHC 8.4 via streaming-commons-0.2.0.0 - lens-simple < 0 # via lens-family-2.0.0 - - lens-family-core < 2.1.0 #https://github.com/commercialhaskell/stackage/issues/5182 - - lens-family < 2.1.0 #https://github.com/commercialhaskell/stackage/issues/5182 + - lens-family-core < 2.1.0 #https://github.com/commercialhaskell/stackage/issues/5563 + - lens-family < 2.1.0 #https://github.com/commercialhaskell/stackage/issues/5563 "Justin Le @mstksg": - advent-of-code-api < 0 # ghc 8.10 via servant @@ -3047,7 +3047,7 @@ packages: - pedersen-commitment < 0 # via protolude - merkle-tree < 0 # via protolude - oblivious-transfer < 0 # via protolude - - pairing < 0 # #4758 + - pairing < 0 # #4758/closed - libraft < 0 # via concurrency & ejafu & kg & kg-core & onad-metrics & ostgresql-simple-url & rotolude & uickcheck-state-machine & asty-dejafu - galois-field < 0 # via protolude @@ -3090,7 +3090,7 @@ packages: # - eventful-dynamodb # http-conduit 2.3 via amazonka - eventful-memory < 0 # via eventful-core - eventful-postgresql < 0 # GHC 8.4 via persistent-postgresql - - eventful-sql-common < 0 # persistent 2.10.0 #4551 + - eventful-sql-common < 0 # persistent 2.10.0 #4551/closed - eventful-sqlite < 0 # persistent 2.10.0 via eventful-sql-common - eventful-test-helpers - stratosphere @@ -3586,7 +3586,7 @@ packages: - mnist-idx "Naushadh @naushadh": - - persistent-mysql-haskell < 0 # persistent 2.10.0 #4550 + - persistent-mysql-haskell < 0 # persistent 2.10.0 #4550/closed "Moritz Schulte @mtesseract": - async-refresh @@ -4012,7 +4012,7 @@ packages: "Maximilian Tagher @MaxGabriel": - aeson-iproute < 0 # via iproute - - persistent-iproute < 0 # persistent-2.10.0 #4553 + - persistent-iproute < 0 # persistent-2.10.0 #4553/closed "Damian Nadales @capitanbatata": - hierarchy < 0 @@ -6169,7 +6169,7 @@ hide: - prettyclass # conflicts with pretty and pretty-class - lenz # conflicts with lens, see https://github.com/fpco/stackage/issues/3600 - base-compat # conflicts with base-compat-batteries, see https://github.com/fpco/stackage/issues/3607 -- hs-functors # conflicts with profunctors, see https://github.com/fpco/stackage/issues/3609 +- hs-functors # conflicts with profunctors, see #3609/closed - constraint # conflicts with constraints - summoner # conflicts with Prelude in base - temporary-rc # conflicts with temporary @@ -6213,7 +6213,7 @@ no-revisions: - pantry - rio-prettyprint - hi-file-parser -# https://github.com/commercialhaskell/stackage/issues/3706: +# #3706: - hledger - hledger-lib - hledger-ui From 4a8dcf3063a8cccae6b8056a086d7a24d7a22e50 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sat, 8 Aug 2020 22:59:33 +0200 Subject: [PATCH 1957/2682] Note about QuickCheck old-random flag --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3ccaa14d..9c87d905 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4888,6 +4888,7 @@ packages: - network < 3.1.2.0 # https://github.com/commercialhaskell/stackage/issues/5566 + # To close this, we may need to set flags.QuickCheck.old-random = true unless we've updated to random 1.2 - QuickCheck < 2.14 - quickcheck-instances < 0.3.24 - splitmix < 0.1 @@ -4899,6 +4900,7 @@ packages: - path < 0.7.1 # https://github.com/commercialhaskell/stackage/issues/5474 + # When closing this, we may need to set flags.QuickCheck.old-random = false unless we've updated to QuickCheck 2.14.1 - random < 1.2.0 - random-fu < 0.2.7.6 - random-source < 0.3.0.10 From fe9772131060eec5a6d216a90505689ce7c45d2e Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sat, 8 Aug 2020 23:10:19 +0200 Subject: [PATCH 1958/2682] Try resolving dependency cycle --- build-constraints.yaml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9c87d905..c47fc604 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5076,9 +5076,6 @@ skipped-tests: - monad-par # ghc 8.10 - # Cyclic dependencies - - base-orphans # via hspec - # test-framework per ghc 8.8 - extensible-effects # via test-framework - stm-conduit # via test-framework @@ -5411,6 +5408,9 @@ skipped-tests: - js-flot - js-jquery - splitmix + - base-orphans # via hspec + - distributive # via hspec + - bifunctors # via hspec # Requires filesystem access - json-autotype @@ -5431,6 +5431,8 @@ skipped-tests: # TODO - rpmbuild-order + + # end of skipped-tests # Tests listed in expected-test-failures configure correctly but may fail to run From 67dba9fe7715cef6fe787429b3ea91a866cf5409 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sat, 8 Aug 2020 23:26:54 +0200 Subject: [PATCH 1959/2682] Try resolving dependency cycle --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index c47fc604..28086cde 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5411,6 +5411,7 @@ skipped-tests: - base-orphans # via hspec - distributive # via hspec - bifunctors # via hspec + - doctest # via hspec # Requires filesystem access - json-autotype From a74c7b735f68c67939dfb062b9abeb91e6263ec3 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sat, 8 Aug 2020 23:30:14 +0200 Subject: [PATCH 1960/2682] Move registry skipped test --- build-constraints.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 28086cde..4b6ad9e7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5244,6 +5244,7 @@ skipped-tests: - hw-int - integer-roots # smallcheck, https://github.com/commercialhaskell/stackage/issues/5424 - xlsx # smallcheck, https://github.com/commercialhaskell/stackage/issues/5576 + - registry # #5302/closed # Blocked due to tests failing to compile for GHC 8.6 - async-refresh @@ -5427,9 +5428,6 @@ skipped-tests: - algebraic-graphs # https://github.com/commercialhaskell/stackage/issues/4670 - bugsnag-haskell # https://github.com/commercialhaskell/stackage/issues/4759 - # https://github.com/commercialhaskell/stackage/issues/5302 - - registry - # TODO - rpmbuild-order From cf79c0323d01e150f6c8bd9bf8b5efdcc1a4c978 Mon Sep 17 00:00:00 2001 From: Dennis Gosnell Date: Sun, 9 Aug 2020 10:26:06 +0900 Subject: [PATCH 1961/2682] Reenable world-peace package --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4b6ad9e7..917d02df 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2463,7 +2463,7 @@ packages: - servant-rawm - servant-static-th < 0 # ghc 8.10 via servant - termonad < 0 # via gi-vte - - world-peace < 0 # ghc 8.10.1 #5452/closed + - world-peace - xml-html-qq < 0 # via heterocephalus - xml-indexed-cursor From 7d27865c715265fe2d68c5137add0d785b13f1fa Mon Sep 17 00:00:00 2001 From: David Hewson Date: Sun, 9 Aug 2020 18:49:38 +0100 Subject: [PATCH 1962/2682] Re-enabled alarmclock and bank-holidays-england base bounds relaxed in new versions --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4b6ad9e7..288bb8b4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1523,8 +1523,8 @@ packages: - shake-language-c < 0 # via fclabels "David Turner @davecturner": - - alarmclock < 0 # ghc 8.10 - - bank-holidays-england < 0 # ghc 8.10 + - alarmclock + - bank-holidays-england "Haskell Servant ": - servant From e94ccf3207ffd9a704c13754f893d3ebac544c1c Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sun, 9 Aug 2020 23:58:25 +0200 Subject: [PATCH 1963/2682] Expect safe-json tests to fail Vlix/safe-json#22 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4b6ad9e7..19d43237 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5630,6 +5630,7 @@ expected-test-failures: - yesod-gitrev # https://github.com/DanBurton/yesod-gitrev/issues/5 - chronos # #5443/closed - massiv + - safe-json # https://github.com/Vlix/safe-json/issues/22 # Recursive deps https://github.com/fpco/stackage/issues/1818 - options From 9a9df4b8043e9638dbdc2cca0e7496b95bb7723f Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 10 Aug 2020 00:00:03 +0200 Subject: [PATCH 1964/2682] Re-disable farmhash, reopens #5437 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 19d43237..5a59790a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1711,7 +1711,7 @@ packages: - tasty-program "Abhinav Gupta @abhinav": - - farmhash + - farmhash < 0 # ghc 8.10.1 https://github.com/commercialhaskell/stackage/issues/5437 - pinch < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build - sandman < 0 # Cabal 3 From f18a4635199c442ed26af1b31e5f9c7d40c7d374 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 10 Aug 2020 00:27:02 +0200 Subject: [PATCH 1965/2682] Expect dhall tests to fail dhall-lang/dhall-haskell#1985 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5a59790a..bab4d958 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5324,6 +5324,7 @@ skipped-tests: - cron # Could not deduce (SOP.All (SOP.All Arbitrary) xss) arising from a use of ‘SOP.hcpure’ - config-ini # https://github.com/aisamanra/config-ini/issues/22 - polysemy-plugin # https://github.com/commercialhaskell/stackage/issues/4733 + - dhall # https://github.com/dhall-lang/dhall-haskell/issues/1985 # Runtime issues - blank-canvas # Never finishes https://github.com/ku-fpg/blank-canvas/issues/73 From 1117b81c9cc88fc3b09e498fd25b9de00f925b5b Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 10 Aug 2020 00:40:08 +0200 Subject: [PATCH 1966/2682] Disable unordered-intmap ethercrow/unordered-intmap#2 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index bab4d958..2d6d2285 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2484,7 +2484,7 @@ packages: - opentelemetry-lightstep - planb-token-introspection < 0 # #5445/closed - pointedlist - - unordered-intmap + - unordered-intmap < 0 # primitive 0.7.1.0 https://github.com/ethercrow/unordered-intmap/issues/2 - word-trie - xdg-basedir - yi-rope From 4d79b7704e03e0d3a6bf117b94c17172af793f50 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Mon, 10 Aug 2020 20:02:52 -0700 Subject: [PATCH 1967/2682] Add upper bound for ansi-terminal, #5592 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2d6d2285..8a91a254 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4926,6 +4926,9 @@ packages: - dhall-json < 1.7.1 - dhall-lsp-server < 1.0.9 + # https://github.com/commercialhaskell/stackage/issues/5592 + - ansi-terminal < 0.11 + # end of packages # Package flags are applied to individual packages, and override the values of From c122ad743d3e54c8fa1da1416427aedd91d4a9dc Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Mon, 10 Aug 2020 20:06:13 -0700 Subject: [PATCH 1968/2682] Add upper bound for proto3-wire --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8a91a254..65a2e170 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4929,6 +4929,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5592 - ansi-terminal < 0.11 + # https://github.com/commercialhaskell/stackage/issues/5593 + - proto3-wire < 1.2 + # end of packages # Package flags are applied to individual packages, and override the values of From ac7750b7ca9cd9bb990a5bf1f25a6ab3d4e8a4bb Mon Sep 17 00:00:00 2001 From: Simon Jakobi Date: Thu, 13 Aug 2020 09:28:44 +0200 Subject: [PATCH 1969/2682] Unrestrict prettyprinter Closes #5558. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 65a2e170..e6d27aa2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -492,7 +492,7 @@ packages: - monadlist - ref-tf - unordered-containers - - prettyprinter < 1.7.0 # https://github.com/commercialhaskell/stackage/issues/5558 + - prettyprinter - prettyprinter-ansi-terminal - prettyprinter-compat-wl-pprint - prettyprinter-compat-ansi-wl-pprint From 2cc5c51493e1ca43a55ce28cc5fa209fa283da82 Mon Sep 17 00:00:00 2001 From: Michael Williams Date: Thu, 13 Aug 2020 05:45:06 -0500 Subject: [PATCH 1970/2682] add zenacy-html --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 65a2e170..746f3f66 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4362,6 +4362,9 @@ packages: "Hideaki Kawai @kayhide": - wakame + "Michael Williams @mlcfp": + - zenacy-html + "Grandfathered dependencies": - network - Boolean From 51c3a2af54fa6eb0965596cbf9c77cb02aefdd2a Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Thu, 13 Aug 2020 16:50:47 -0700 Subject: [PATCH 1971/2682] Add an upper bound for optparse-applicative, #5597 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 65a2e170..6bd5d454 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4932,6 +4932,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5593 - proto3-wire < 1.2 + # https://github.com/commercialhaskell/stackage/issues/5597 + - optparse-applicative < 0.16 + # end of packages # Package flags are applied to individual packages, and override the values of From 3496e3bb688227c477131e6d44f777c7b04e42c8 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Thu, 13 Aug 2020 20:50:09 -0700 Subject: [PATCH 1972/2682] Add upper bound for base64-bytestring, #5598 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4952fcdc..3876a11d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4938,6 +4938,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5597 - optparse-applicative < 0.16 + # https://github.com/commercialhaskell/stackage/issues/5598 + - base64-bytestring < 1.2 + # end of packages # Package flags are applied to individual packages, and override the values of From cb54f6563ab93f168df39db3a80aecbf30227e7f Mon Sep 17 00:00:00 2001 From: Diogo Biazus Date: Fri, 14 Aug 2020 18:41:57 -0400 Subject: [PATCH 1973/2682] Add hasql-notifications package --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3876a11d..58a5cc9c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -9,6 +9,9 @@ cabal-format-version: "3.0" # Constraints for brand new builds packages: + "Diogo Biazus ": + - hasql-notifications + "David James @davjam": - MapWith @@ -5538,6 +5541,7 @@ expected-test-failures: - haskell-tools-cli # https://github.com/haskell-tools/haskell-tools/issues/230 - haskell-tools-refactor # https://github.com/haskell-tools/haskell-tools/issues/231 - hasql # PostgreSQL + - hasql-notifications # PostgreSQL - hasql-queue - hasql-transaction # PostgreSQL - hedis From 16040fdcb8862102e0d7ff44f4432a5e7a4d4c40 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Fri, 14 Aug 2020 22:15:20 -0700 Subject: [PATCH 1974/2682] Upgrade GHC to 8.10.2 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 41b0232c..66888f1f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM fpco/pid1:18.04 ENV HOME /home/stackage ENV LANG en_US.UTF-8 -ENV GHCVER 8.10.1 +ENV GHCVER 8.10.2 # NOTE: also update debian-bootstrap.sh when cuda version changes ENV PATH /home/stackage/.stack/programs/x86_64-linux/ghc-$GHCVER/bin:/usr/local/cuda-10.0/bin:/usr/sbin:/usr/bin:/sbin:/bin From 20d40887cb2dfc17fba36e5e1dcef12f8e576324 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Sat, 15 Aug 2020 00:20:41 -0700 Subject: [PATCH 1975/2682] Add upper bounds for optparse-generic, turtle, #5597 --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 58a5cc9c..d270c381 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4940,6 +4940,8 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5597 - optparse-applicative < 0.16 + - optparse-generic < 1.4.3 + - turtle < 1.5.21 # https://github.com/commercialhaskell/stackage/issues/5598 - base64-bytestring < 1.2 From 149a9f92971485f75180dd99c7399ea7a16d78bd Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Sat, 15 Aug 2020 12:57:08 -0700 Subject: [PATCH 1976/2682] Add upper bound for hslua, #5601 --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d270c381..db37ebfd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4946,6 +4946,10 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5598 - base64-bytestring < 1.2 + # https://github.com/commercialhaskell/stackage/issues/5601 + - hslua < 1.2 + - hslua-module-text < 0.3 + # end of packages # Package flags are applied to individual packages, and override the values of From 6923274e9adc0e9a9677189e18eed405120a2828 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Sat, 15 Aug 2020 17:01:02 -0700 Subject: [PATCH 1977/2682] Expect test failure for morpheus-graphql-client, #5602 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index db37ebfd..e0bc2aae 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5609,6 +5609,7 @@ expected-test-failures: - crypto-pubkey # https://github.com/vincenthz/hs-crypto-pubkey/issues/23 - doctest-discover # 0.1.0.9 https://github.com/karun012/doctest-discover/issues/22 - doctest + - morpheus-graphql-client # https://github.com/commercialhaskell/stackage/issues/5602 # Assertion failures, these can be real bugs or just limitations # in the test cases. From e4864303d61dd1baed1bd6e428ae6e533ca2fc73 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Sun, 16 Aug 2020 16:40:04 -0700 Subject: [PATCH 1978/2682] Update GHC version in build-constraints --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e0bc2aae..5c47a805 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1,6 +1,6 @@ ghc-major-version: "8.10" # new curator is supposed to use exact GHC version -ghc-version: "8.10.1" +ghc-version: "8.10.2" # This affects which version of the Cabal file format we allow. We # should ensure that this is always no greater than the version From ac0a11689d2ea9949657cf4dd3a883eadcb7b325 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Sun, 16 Aug 2020 18:07:31 -0700 Subject: [PATCH 1979/2682] Try constraining base, even though 4.14.1 doesn't seem to be out Related to #5603 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5c47a805..c4161d22 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4950,6 +4950,9 @@ packages: - hslua < 1.2 - hslua-module-text < 0.3 + # https://github.com/commercialhaskell/stackage/issues/5603 + - base < 4.14.1 + # end of packages # Package flags are applied to individual packages, and override the values of From aa4e524d5a4948ad94efd140f63c2c1c8509ad64 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Sun, 16 Aug 2020 18:33:20 -0700 Subject: [PATCH 1980/2682] Disable crypto-enigma due to base version restriction, #5603 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c4161d22..57147aae 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4951,7 +4951,7 @@ packages: - hslua-module-text < 0.3 # https://github.com/commercialhaskell/stackage/issues/5603 - - base < 4.14.1 + - crypto-enigma < 0 # base 4.14.1.0 # end of packages From e963e5fa8025b5d618a297bf2ebe1ca1aca66388 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Sun, 16 Aug 2020 20:58:47 -0700 Subject: [PATCH 1981/2682] Enable tests for morpheus-graphql-client, closes #5602 --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 57147aae..752e50f9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5612,7 +5612,6 @@ expected-test-failures: - crypto-pubkey # https://github.com/vincenthz/hs-crypto-pubkey/issues/23 - doctest-discover # 0.1.0.9 https://github.com/karun012/doctest-discover/issues/22 - doctest - - morpheus-graphql-client # https://github.com/commercialhaskell/stackage/issues/5602 # Assertion failures, these can be real bugs or just limitations # in the test cases. From 29dbd25a894dbb4f6ef751f18f27f1fd73d2a521 Mon Sep 17 00:00:00 2001 From: Neil Mitchell Date: Mon, 17 Aug 2020 09:12:38 +0100 Subject: [PATCH 1982/2682] Reenable hoogle wai-logger is back in nightly, so should be able to be enabled --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 752e50f9..a48f44a1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -735,7 +735,7 @@ packages: "Neil Mitchell @ndmitchell": - hlint - - hoogle < 0 # via wai-logger + - hoogle - shake - tagsoup - cmdargs From cbcc218c987ab17472fb994ecf0d2ac515a90c08 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Mon, 17 Aug 2020 08:53:03 -0700 Subject: [PATCH 1983/2682] Expect test failure for optics-th, #5606 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 752e50f9..e5cac31b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5660,6 +5660,7 @@ expected-test-failures: - chronos # #5443/closed - massiv - safe-json # https://github.com/Vlix/safe-json/issues/22 + - optics-th # https://github.com/commercialhaskell/stackage/issues/5606 # Recursive deps https://github.com/fpco/stackage/issues/1818 - options From e406986904e429d631be346b13bfbb9c19c90373 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Mon, 17 Aug 2020 12:36:47 -0700 Subject: [PATCH 1984/2682] Re-enable crypto-enigma, closes #5603 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 253964e0..243f39d7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4950,9 +4950,6 @@ packages: - hslua < 1.2 - hslua-module-text < 0.3 - # https://github.com/commercialhaskell/stackage/issues/5603 - - crypto-enigma < 0 # base 4.14.1.0 - # end of packages # Package flags are applied to individual packages, and override the values of From 75c6f7fc5c76262f40052c2d6249093b411b000a Mon Sep 17 00:00:00 2001 From: Dominik Schrempf Date: Tue, 18 Aug 2020 10:20:23 +0200 Subject: [PATCH 1985/2682] Remove some expected test failures. See https://github.com/commercialhaskell/stackage/pull/5556. --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 243f39d7..d0401377 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5526,9 +5526,6 @@ expected-test-failures: - dbcleaner # Requires running PostgreSQL server - dbmigrations # PostgreSQL - drifter-postgresql # PostgreSQL - - elynx-markov # https://github.com/commercialhaskell/stackage/pull/5556 - - elynx-seq # https://github.com/commercialhaskell/stackage/pull/5556 - - elynx-tree # https://github.com/commercialhaskell/stackage/pull/5556 - esqueleto # mysql and postgresql - etcd # etcd https://github.com/fpco/stackage/issues/811 - eventful-dynamodb From 1a645465a6de854d4f180d3302fd0b8a0150b357 Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Wed, 19 Aug 2020 08:37:03 +0100 Subject: [PATCH 1986/2682] burrito-1.2.0.0 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 243f39d7..c853f395 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1980,7 +1980,7 @@ packages: - burrito - derulo - flow - - github-release + - github-release < 1.3.4 # https://github.com/commercialhaskell/stackage/issues/5610 - json-feed # - lackey # servant - list-singleton From 0d962dee522ed2b00e1fcdf2703cef29dfc9bfb8 Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Wed, 19 Aug 2020 09:14:12 +0100 Subject: [PATCH 1987/2682] tighter optparse-generic constraints --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c853f395..702becea 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1977,7 +1977,7 @@ packages: "Taylor Fausak @tfausak": - autoexporter - - burrito + - burrito < 1.2.0.0 - derulo - flow - github-release < 1.3.4 # https://github.com/commercialhaskell/stackage/issues/5610 @@ -4940,7 +4940,7 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5597 - optparse-applicative < 0.16 - - optparse-generic < 1.4.3 + - optparse-generic < 1.4 - turtle < 1.5.21 # https://github.com/commercialhaskell/stackage/issues/5598 From a5b9cc782d053909450a870b0ab5fd0a165b73c8 Mon Sep 17 00:00:00 2001 From: Joshua Chia Date: Wed, 19 Aug 2020 21:41:28 +0800 Subject: [PATCH 1988/2682] Reinstate clash-prelude --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 702becea..2cb529ae 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2050,9 +2050,9 @@ packages: - ghc-typelits-extra - ghc-typelits-knownnat - ghc-typelits-natnormalise - - clash-prelude < 0 # ghc 8.10.1 https://github.com/commercialhaskell/stackage/issues/5435 - - clash-lib < 0 # via clash-prelude - - clash-ghc < 0 # via clash-prelude + - clash-prelude + - clash-lib + - clash-ghc "Athan Clark @athanclark": - aeson-attoparsec From a498a1699beb6f1d9ee5263f3544c0272da55235 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 19 Aug 2020 20:32:11 +0300 Subject: [PATCH 1989/2682] Newer curator executable --- etc/check.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/check.sh b/etc/check.sh index d571a9c1..3db7243f 100755 --- a/etc/check.sh +++ b/etc/check.sh @@ -11,7 +11,7 @@ export PATH=$HOME/.local/bin:$PATH curl -L https://www.stackage.org/stack/linux-x86_64 | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack' # Get new Stackage curator -curl -L "https://download.fpcomplete.com/stackage-curator-2/curator-85b021a53833ff310fc66b3fdc5ca3f7828ce18b.bz2" | bunzip2 > curator +curl -L "https://github.com/commercialhaskell/curator/releases/download/commit-a79aadca0f6497ec6accc927df5be7c49f5de86a/curator.bz2" | bunzip2 > curator chmod +x curator # Install GHC From b53c7cfe868ee8c30405c3fd701809a9fe12b7b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Fija=C5=82kowski?= Date: Sat, 22 Aug 2020 20:30:38 +0200 Subject: [PATCH 1990/2682] Restore hLibsass & hSass --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 702becea..58cc6d4e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2270,8 +2270,8 @@ packages: - bytestring-to-vector "Jakub Fijałkowski @jakubfijalkowski": - - hlibsass < 0 - - hsass < 0 + - hlibsass + - hsass "Robert Massaioli @robertmassaioli": - range From bb5b2bc1256ed111d882a0f579cef115e1d79d8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niklas=20Hamb=C3=BCchen?= Date: Mon, 24 Aug 2020 06:48:56 +0200 Subject: [PATCH 1991/2682] Add lz4-frame-conduit --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 702becea..37929f88 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2419,6 +2419,7 @@ packages: - hidapi - iso8601-time - loop + - lz4-frame-conduit - netpbm - network-house < 0 # MonadFail - reinterpret-cast From fd2660c599e2e3d61572eb3e4996c33b76fb3f20 Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Tue, 25 Aug 2020 08:04:24 +0100 Subject: [PATCH 1992/2682] reimpose prettyprinter constraints --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ca08c9f2..702becea 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -495,7 +495,7 @@ packages: - monadlist - ref-tf - unordered-containers - - prettyprinter + - prettyprinter < 1.7.0 # https://github.com/commercialhaskell/stackage/issues/5558 - prettyprinter-ansi-terminal - prettyprinter-compat-wl-pprint - prettyprinter-compat-ansi-wl-pprint From e8e2507b2c340399c492faca6768efb6116307ff Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Tue, 25 Aug 2020 13:56:41 -0400 Subject: [PATCH 1993/2682] expect test fail per nh2/lz4-frame-conduit#3 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8d985e31..fb42f306 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5626,6 +5626,7 @@ expected-test-failures: - bech32-th # https://github.com/commercialhaskell/stackage/issues/5432 - haskeline # https://github.com/commercialhaskell/stackage/issues/5439 - character-cases # https://github.com/aiya000/hs-character-cases/issues/3 + - lz4-frame-conduit # https://github.com/nh2/lz4-frame-conduit/issues/3 # Compilation failures - ListLike # No issue tracker, e-mail sent to maintainer From e3d825c54baacbf6e9f2317708411e4affd4e2c8 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 26 Aug 2020 16:19:13 -0400 Subject: [PATCH 1994/2682] Add liquid-fixpoint, restore text-format --- build-constraints.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index fb42f306..efeb81ed 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1107,6 +1107,9 @@ packages: # @mr's packages - ftp-client - ftp-client-conduit + # other: real maintainers pls steal these back + - text-format # needed by liquid-fixpoint + - liquid-fixpoint "Daniel Díaz dhelta.diaz@gmail.com @Daniel-Diaz": - bimap-server @@ -4847,8 +4850,6 @@ packages: # - language-lua2 # https://github.com/mitchellwrosen/language-lua2/issues/4 # GHC 8.2.1 - cassava - - text-format < 0 # via base-4.13.0.0 - # Packages without maintainers that cause issues, # this is to prevent us from including them by accident. They can # be removed from this list if they are fixed. From 95bc7227375e03e88a9bfda9185700938ad91cc2 Mon Sep 17 00:00:00 2001 From: Brandon Chinn Date: Wed, 26 Aug 2020 16:53:02 -0700 Subject: [PATCH 1995/2682] Add graphql-client --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index efeb81ed..5217ae20 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4240,6 +4240,7 @@ packages: "Brandon Chinn @brandon-leapyear": - aeson-schemas - github-rest + - graphql-client - hpc-lcov - th-test-utils From 96fe42e69737d7ddfac77c24220653ba152f7fd1 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 26 Aug 2020 22:04:02 -0400 Subject: [PATCH 1996/2682] build-constraints.yaml --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index efeb81ed..fbcd3474 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4952,6 +4952,9 @@ packages: - hslua < 1.2 - hslua-module-text < 0.3 + # https://github.com/commercialhaskell/stackage/issues/5617 + - aeson < 1.5.3.0 + # end of packages # Package flags are applied to individual packages, and override the values of From e1006a9bedadba13fd12c64e35429cbe31e21390 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 26 Aug 2020 22:10:34 -0400 Subject: [PATCH 1997/2682] skip tests for safe-json per #5617 --- build-constraints.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index fbcd3474..488b6c3d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4952,9 +4952,6 @@ packages: - hslua < 1.2 - hslua-module-text < 0.3 - # https://github.com/commercialhaskell/stackage/issues/5617 - - aeson < 1.5.3.0 - # end of packages # Package flags are applied to individual packages, and override the values of @@ -5103,6 +5100,7 @@ skipped-tests: - simple-vec3 # ghc 8.10 - static-text # ghc 8.10 - monad-par # ghc 8.10 + - safe-json # aeson-1.5.3 # test-framework per ghc 8.8 From 060830ff94380925f7cb78cbc8ba708e55c2e13d Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 26 Aug 2020 22:29:34 -0400 Subject: [PATCH 1998/2682] expect liquid-fixpoint tests to fail --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 488b6c3d..c440e1e2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5629,6 +5629,7 @@ expected-test-failures: - haskeline # https://github.com/commercialhaskell/stackage/issues/5439 - character-cases # https://github.com/aiya000/hs-character-cases/issues/3 - lz4-frame-conduit # https://github.com/nh2/lz4-frame-conduit/issues/3 + - liquid-fixpoint # TODO: DanBurton # Compilation failures - ListLike # No issue tracker, e-mail sent to maintainer From a4b4fd755e3b21359535cf8cb69d0d6f3ae3b73a Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 26 Aug 2020 23:08:51 -0400 Subject: [PATCH 1999/2682] Install z3 4.8.8 --- debian-bootstrap.sh | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index 3b94d744..21e9973c 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -169,7 +169,6 @@ apt-get install -y \ unixodbc-dev \ wget \ xclip \ - z3 \ zip \ zlib1g-dev \ zsh @@ -310,6 +309,16 @@ cmake \ sudo make install popd +Z3_VER=4.8.8 +( + cd /usr/local/ \ + && wget https://github.com/Z3Prover/z3/releases/download/z3-${Z3_VER}/z3-${Z3_VER}-x64-ubuntu-16.04.zip \ + && unzip z3-${Z3_VER}-x64-ubuntu-16.04.zip \ + && rm z3-${Z3_VER}-x64-ubuntu-16.04.zip \ + && ln -s /usr/local/z3-${Z3_VER}-x64-ubuntu-16.04/bin/z3 /usr/bin/z3 +) + + # EOF: don't build anything below this line # Cleanup From 88b139b2fedb974edf327d9d34e74c84b984ed52 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 27 Aug 2020 16:39:19 -0400 Subject: [PATCH 2000/2682] Add new reanimate deps under @lemmih --- build-constraints.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index c440e1e2..8bd984d7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4193,6 +4193,11 @@ packages: - reanimate-svg - reanimate - earcut + # required by reanimate as of 0.4.2.0 + - hgeometry + - hgeometry-combinatorial + - approximate-equality # required by hgeometry-combinatorial + - type-level-natural-number # required by approximate-equality "Vitaly Bragilevsky @bravit": - Chart From aa35af1743eb049c9c375682a5a3d2ab4abd4803 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 27 Aug 2020 23:43:31 -0400 Subject: [PATCH 2001/2682] constrain http-link-header per #5619 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 09f957da..e712a5a6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4958,6 +4958,9 @@ packages: - hslua < 1.2 - hslua-module-text < 0.3 + # https://github.com/commercialhaskell/stackage/issues/5619 + - http-link-header < 1.1 + # end of packages # Package flags are applied to individual packages, and override the values of From 761cc7b6b49dfd50a1afb23ab9870601e363ac9e Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 27 Aug 2020 23:43:50 -0400 Subject: [PATCH 2002/2682] liquid-fixpoint might pass tests now with new z3 --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e712a5a6..a65662ac 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5638,7 +5638,6 @@ expected-test-failures: - haskeline # https://github.com/commercialhaskell/stackage/issues/5439 - character-cases # https://github.com/aiya000/hs-character-cases/issues/3 - lz4-frame-conduit # https://github.com/nh2/lz4-frame-conduit/issues/3 - - liquid-fixpoint # TODO: DanBurton # Compilation failures - ListLike # No issue tracker, e-mail sent to maintainer From 4cc2d681369111ff2d00194cf44f72ddd4917266 Mon Sep 17 00:00:00 2001 From: locallycompact Date: Fri, 28 Aug 2020 14:36:59 +0100 Subject: [PATCH 2003/2682] Add composite packages --- build-constraints.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index a65662ac..0398cdec 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3946,7 +3946,12 @@ packages: - binary-instances - comonad-extras - composite-aeson + - composite-aeson-path + - composite-aeson-refined - composite-base + - composite-binary + - composite-ekg + - composite-hashable - ixset-typed-binary-instance - ixset-typed-conversions - ixset-typed-hashable-instance From 439b595f074b43bc76c6dbf63adb143ec10a1162 Mon Sep 17 00:00:00 2001 From: Alexey Kuleshevich Date: Fri, 28 Aug 2020 19:05:07 +0300 Subject: [PATCH 2004/2682] Re-enable `store` and `store-core` --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e75bbdda..b520cec4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -618,7 +618,7 @@ packages: - persistent-template - persistent-test # https://github.com/commercialhaskell/stackage/pull/4492 # - stackage-curator # http-conduit 2.3 via amazonka - - store < 0 # via store-core + - store - wai-extra - wai-websockets - warp-tls @@ -4649,7 +4649,7 @@ packages: - step-function - stm-delay - storable-complex - - store-core < 0 # MonadFail + - store-core - streaming-cassava < 0 # via streaming - strict - strict-list From 0101728f525f45e2526ec678112b0d6b3267cf5b Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Fri, 28 Aug 2020 12:23:03 -0400 Subject: [PATCH 2005/2682] http-api-data < 0.4.2 per #5623 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index a65662ac..743076b7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4961,6 +4961,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5619 - http-link-header < 1.1 + # https://github.com/commercialhaskell/stackage/issues/5623 + - http-api-data < 0.4.2 + # end of packages # Package flags are applied to individual packages, and override the values of From faa9b256c4ed65ea7f881a2536c17bef9ddd1733 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Fri, 28 Aug 2020 12:43:20 -0400 Subject: [PATCH 2006/2682] reenable th-utilities --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 33af9161..b9e5b213 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4769,7 +4769,7 @@ packages: - tf-random - th-extras - th-lift-instances - - th-utilities < 0 # template-haskell + - th-utilities - these - these-lens - these-optics From 01348ddb17e8694caf38a4beef7e8f279206e03b Mon Sep 17 00:00:00 2001 From: Michael Williams Date: Fri, 28 Aug 2020 12:21:47 -0500 Subject: [PATCH 2007/2682] add zenacy-unicode some additional unicode helper functions --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index b9e5b213..f19f8ba7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4382,6 +4382,7 @@ packages: "Michael Williams @mlcfp": - zenacy-html + - zenacy-unicode "Grandfathered dependencies": - network From 50c098896fd9ebac1f410b86834cf37e19538736 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Fri, 28 Aug 2020 18:53:17 -0400 Subject: [PATCH 2008/2682] Expect reanimate tests to fail per #5626 --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index b9e5b213..082f9f70 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5647,6 +5647,10 @@ expected-test-failures: - character-cases # https://github.com/aiya000/hs-character-cases/issues/3 - lz4-frame-conduit # https://github.com/nh2/lz4-frame-conduit/issues/3 + # Assertion failures due to module name ambiguity + # (These _should_ be fixed by using the `hide` section of this file) + - reanimate # https://github.com/commercialhaskell/stackage/issues/5626 + # Compilation failures - ListLike # No issue tracker, e-mail sent to maintainer - amazonka-core # https://github.com/brendanhay/amazonka/issues/397 From 5d8d79d678c4547ca06286db0f9756a73d648e6b Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Fri, 28 Aug 2020 18:53:42 -0400 Subject: [PATCH 2009/2682] Expect store tests to fail per mgsloan/store#153 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 082f9f70..533029b0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5680,6 +5680,7 @@ expected-test-failures: - massiv - safe-json # https://github.com/Vlix/safe-json/issues/22 - optics-th # https://github.com/commercialhaskell/stackage/issues/5606 + - store # https://github.com/mgsloan/store/issues/153 # Recursive deps https://github.com/fpco/stackage/issues/1818 - options From 77b2e299f3814b331b3455fca8d50980cc567309 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Fri, 28 Aug 2020 21:31:35 -0400 Subject: [PATCH 2010/2682] Update CURATORS.md --- CURATORS.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CURATORS.md b/CURATORS.md index 1af57988..92ffef2d 100644 --- a/CURATORS.md +++ b/CURATORS.md @@ -213,8 +213,7 @@ major version number (e.g., lts3 for lts-3.\*). Note that when starting a new LTS major release, you'll need to modify Docker Hub to create a new Docker tag for the relevant branch name. -You'll need to update both the `PATH` in `Dockerfile` and the `GHCVER` variable -in `debian-bootstrap.sh`. +Update `GHCVER` in `Dockerfile`. (This env var automatically gets passed to `debian-bootstrap.sh`.) Ensure that the [global-hints.yaml file](https://github.com/fpco/stackage-content/blob/master/stack/global-hints.yaml) From b19f5eb3c0887fcc066b51b31af3a86b69bc6e20 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Fri, 28 Aug 2020 21:35:48 -0400 Subject: [PATCH 2011/2682] Update CURATORS.md --- CURATORS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CURATORS.md b/CURATORS.md index 92ffef2d..4ad86674 100644 --- a/CURATORS.md +++ b/CURATORS.md @@ -249,7 +249,7 @@ DIR=$(mktemp -d) (cd $DIR \ && git clone https://github.com/commercialhaskell/stackage \ && cd stackage \ - && git checkout $BRANCH + && git checkout $BRANCH \ && docker build --tag commercialhaskell/stackage:$BRANCH .) rm -rf $DIR ``` From babc491f0eaa7707582f3a0e2975a642035e4c37 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Fri, 28 Aug 2020 22:13:36 -0400 Subject: [PATCH 2012/2682] more tips on ghc bump mid-lts --- CURATORS.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CURATORS.md b/CURATORS.md index 4ad86674..0f8f2302 100644 --- a/CURATORS.md +++ b/CURATORS.md @@ -220,6 +220,8 @@ file](https://github.com/fpco/stackage-content/blob/master/stack/global-hints.ya is updated with information on the latest GHC release by cloning that repo and running `./update-global-hints.yaml ghc-X.Y.Z`. +Also required to build an LTS minor bump with a ghc version change: On the build server, modify `/var/stackage/stackage/automated/wrk/lts-$THIS_LTS_MAJOR_VER/constraints.yaml` and update the ghc-version. Then run `NOPLAN=1 /var/stackage/stackage/automated/build lts-$THIS_LTS_MINOR_BUMP` to build the LTS. + ### Getting the new image to the build server Once a new Docker image is available, you'll need to pull it onto the stackage-build server (see below). Instead of pulling an unbounded number of images, I typically just From 4615246375cb5bf91e87d28ad0882b20c0fc1322 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sat, 29 Aug 2020 12:08:13 -0400 Subject: [PATCH 2013/2682] how to clear up space when ghc versions change --- CURATORS.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/CURATORS.md b/CURATORS.md index 0f8f2302..d6325c89 100644 --- a/CURATORS.md +++ b/CURATORS.md @@ -234,10 +234,14 @@ docker rmi $(docker images -q) but `docker pull commercialhaskell/stackage:nightly` can also be run instead just to update the nightly image say. -For a new GHC version you should also delete the cache directories on the stackage-build server to -force all packages to be rebuilt. See: [issue#746](https://github.com/commercialhaskell/stackage/issues/746). Eg: +For a new GHC version you should also delete the ~~cache~~ .stack-work snapshot install directories on the stackage-build server to +~~force all packages to be rebuilt~~ clear up some space. See: [issue#746](https://github.com/commercialhaskell/stackage/issues/746). Eg: + ``` -rm -r nightly/work/builds/nightly/ +# for example +SNAP_SERIES=nightly # or lts16 +OLD_GHCVER=8.10.1 +rm -r work/$SNAP_SERIES/unpack-dir/.stack-work/install/x86_64-linux/*/$OLD_GHCVER/ ``` This should also be done when moving the Nightly docker image to a new version of Ubuntu. From 1b74552e5eb64d2cff2bfeb59b69e04c06187bdc Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 31 Aug 2020 19:27:33 +0800 Subject: [PATCH 2014/2682] skylighting < 0.10 (#5627) --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d1fd831e..7cf91397 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4970,6 +4970,8 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5623 - http-api-data < 0.4.2 + # https://github.com/commercialhaskell/stackage/issues/5627 + - skylighting < 0.10 # end of packages # Package flags are applied to individual packages, and override the values of From 991f593f3a3bf86c737dc201652b546f7c84cb34 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 31 Aug 2020 19:28:58 +0800 Subject: [PATCH 2015/2682] skylighting-core < 0.10 (#5627) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7cf91397..e6117c14 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4972,6 +4972,7 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5627 - skylighting < 0.10 + - skylighting-core < 0.10 # end of packages # Package flags are applied to individual packages, and override the values of From 448f4e45a5898037ddb031c76c94c9e0660def91 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 31 Aug 2020 13:13:57 +0300 Subject: [PATCH 2016/2682] Use official Stack 2.3.3 --- automated/build.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/automated/build.sh b/automated/build.sh index 2eae20f6..52113d7d 100755 --- a/automated/build.sh +++ b/automated/build.sh @@ -68,7 +68,8 @@ chmod +x curator echo -n "curator version: " docker run --rm -v $(pwd)/curator:/exe $IMAGE /exe --version -curl -L "https://download.fpcomplete.com/stackage-curator-2/stack-fffc0a40e2253788f6b9cb7471c03fd571d69bde.bz2" | bunzip2 > stack +curl -L https://github.com/commercialhaskell/stack/releases/download/v2.3.3/stack-2.3.3-linux-x86_64-bin > stack +#curl -L "https://download.fpcomplete.com/stackage-curator-2/stack-fffc0a40e2253788f6b9cb7471c03fd571d69bde.bz2" | bunzip2 > stack chmod +x stack echo -n "stack version: " docker run --rm -v $(pwd)/stack:/exe $IMAGE /exe --version From 5a59dff1679462c5b84b2c0043990699fa61a773 Mon Sep 17 00:00:00 2001 From: Michael Sloan Date: Mon, 31 Aug 2020 23:48:26 -0600 Subject: [PATCH 2017/2682] Remove store from expected test failures + add it to my list of maintained packages --- build-constraints.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e6117c14..da6f9ea4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1457,8 +1457,12 @@ packages: - stack < 0 # ghc 8.10 # < 9.9.9 # see #3563/closed "Michael Sloan @mgsloan": + - store + - store-core + - store-streaming - th-orphans - th-reify-many + - th-utilities "Nikita Volkov @nikita-volkov": - base-prelude @@ -4733,7 +4737,6 @@ packages: - step-function - stm-delay - storable-complex - - store-core - streaming-cassava < 0 # via streaming - strict - strict-list @@ -5684,7 +5687,6 @@ expected-test-failures: - massiv - safe-json # https://github.com/Vlix/safe-json/issues/22 - optics-th # https://github.com/commercialhaskell/stackage/issues/5606 - - store # https://github.com/mgsloan/store/issues/153 # Recursive deps https://github.com/fpco/stackage/issues/1818 - options From b9a700c5cac725a5b90f4f329fc02cd9f3d804ca Mon Sep 17 00:00:00 2001 From: Michael Sloan Date: Mon, 31 Aug 2020 23:52:14 -0600 Subject: [PATCH 2018/2682] Fix another typo in PR template --- .github/PULL_REQUEST_TEMPLATE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index b9bad856..9a4c078e 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -3,7 +3,7 @@ Checklist: - [ ] At least 30 minutes have passed since uploading to Hackage - [ ] On your own machine, you have successfully run the following command (replace `$package` with the name of the package that is submitted, and `$version` with the version of the package you want to get into Stackage): - ./verify-package $pacakge # or $package-$version + ./verify-package $package # or $package-$version The script runs virtually the following commands in a clean directory: From 2633ff414cc92344c4ae990f41c5e345b34b17c6 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 1 Sep 2020 16:59:04 +0800 Subject: [PATCH 2019/2682] add bugzilla-redhat, cabal-file, http-query, pkgtreediff under juhp --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index da6f9ea4..5f5b29ef 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1593,13 +1593,17 @@ packages: - HaskellNet-SSL < 0 # mime-mail-0.5 via HaskellNet "Jens Petersen @juhp": + - bugzilla-redhat + - cabal-file - cabal-rpm - dl-fedora - fedora-dists - fedora-haskell-tools - hkgr - http-directory + - http-query - pagure-cli + - pkgtreediff - rpmbuild-order - simple-cabal - simple-cmd From 842cb3aba512d7767df9a60cce7bf5acadba1ee5 Mon Sep 17 00:00:00 2001 From: David Johnson Date: Wed, 2 Sep 2020 03:11:35 -0400 Subject: [PATCH 2020/2682] Add stripe-haskell Readds stripe-haskell --- build-constraints.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5f5b29ef..a1c2d0e1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -613,9 +613,10 @@ packages: # - google-translate # servant 0.12 # - hackernews # servant 0.12 - ses-html - # - stripe-haskell # free 5 - # - stripe-http-streams # free 5 - - stripe-core < 0 # via aeson-1.3.1.0 + - stripe-haskell + - stripe-http-client + - stripe-core + - stripe-tests "Piotr Mlodawski @pmlodawski": - error-util < 0 # MonadFail From 65c0eb9f23c33c1cdc5cc5f4724d8a4fa4d9d7c6 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 2 Sep 2020 17:04:29 +0800 Subject: [PATCH 2021/2682] hledger < 1.19 (#5631) --- build-constraints.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index a1c2d0e1..453e3364 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4981,6 +4981,11 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5627 - skylighting < 0.10 - skylighting-core < 0.10 + + # https://github.com/commercialhaskell/stackage/issues/5631 + - hledger-lib < 1.19 + - hledger < 1.19 + - hledger-ui < 1.19 # end of packages # Package flags are applied to individual packages, and override the values of From 24ba1ffdc67236ab180a5d1c639e83f8e5f5e8a0 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 3 Sep 2020 11:30:02 +0800 Subject: [PATCH 2022/2682] drop "skylighting < 0.10" bound (#5627) --- build-constraints.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 453e3364..0fc0309f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4978,10 +4978,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5623 - http-api-data < 0.4.2 - # https://github.com/commercialhaskell/stackage/issues/5627 - - skylighting < 0.10 - - skylighting-core < 0.10 - # https://github.com/commercialhaskell/stackage/issues/5631 - hledger-lib < 1.19 - hledger < 1.19 From 6e9777afd8deb0fe9099477d65f649fbb881d999 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 4 Sep 2020 21:28:22 +0800 Subject: [PATCH 2023/2682] drop "hledger < 1.19" (#5631) --- build-constraints.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0fc0309f..ec1e0bbd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4978,10 +4978,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5623 - http-api-data < 0.4.2 - # https://github.com/commercialhaskell/stackage/issues/5631 - - hledger-lib < 1.19 - - hledger < 1.19 - - hledger-ui < 1.19 # end of packages # Package flags are applied to individual packages, and override the values of From 498e4d30217e7f5bb6a3caf67f79760351bf1ac9 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 4 Sep 2020 21:36:00 +0800 Subject: [PATCH 2024/2682] megaparsec < 9.0.0 (#5632) --- build-constraints.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ec1e0bbd..79f16065 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4978,6 +4978,12 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5623 - http-api-data < 0.4.2 + # https://github.com/commercialhaskell/stackage/issues/5632 + - megaparsec < 9.0.0 + # these don't explicitly require 9.0 + - hspec-megaparsec < 2.2.0 + - megaparsec-tests < 9.0.0 + # end of packages # Package flags are applied to individual packages, and override the values of From 160cd55452c9afd9a624954721842a432e822570 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sat, 5 Sep 2020 12:51:16 +0800 Subject: [PATCH 2025/2682] drop misleading megaparsec 9.0 comment --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 79f16065..269f3183 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4980,7 +4980,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5632 - megaparsec < 9.0.0 - # these don't explicitly require 9.0 - hspec-megaparsec < 2.2.0 - megaparsec-tests < 9.0.0 From ed7c2af2126f413672d5aeed5680c207b2cee93b Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sat, 5 Sep 2020 12:52:24 +0800 Subject: [PATCH 2026/2682] language-c < 0.9 (#5633) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 269f3183..27408a8e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4983,6 +4983,9 @@ packages: - hspec-megaparsec < 2.2.0 - megaparsec-tests < 9.0.0 + # https://github.com/commercialhaskell/stackage/issues/5633 + - language-c < 0.9 + # end of packages # Package flags are applied to individual packages, and override the values of From 70b537e5c421f7a24ffbf5289e96c73ec1082252 Mon Sep 17 00:00:00 2001 From: locallycompact Date: Sat, 5 Sep 2020 15:23:09 +0100 Subject: [PATCH 2027/2682] Update build-constraints.yaml --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 27408a8e..debfc4ad 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3961,6 +3961,8 @@ packages: - composite-binary - composite-ekg - composite-hashable + - composite-tuple + - composite-xstep - ixset-typed-binary-instance - ixset-typed-conversions - ixset-typed-hashable-instance From 8652ca3e3320991db40790901f02bf801fd1fdb2 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sat, 5 Sep 2020 22:36:07 +0800 Subject: [PATCH 2028/2682] drop "hslua < 1.2" bounds (#5601) --- build-constraints.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 27408a8e..c5ab386e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4968,10 +4968,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5598 - base64-bytestring < 1.2 - # https://github.com/commercialhaskell/stackage/issues/5601 - - hslua < 1.2 - - hslua-module-text < 0.3 - # https://github.com/commercialhaskell/stackage/issues/5619 - http-link-header < 1.1 From e6989457086b91d743aaf641b2b36d76ab84a28a Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 6 Sep 2020 12:59:29 +0800 Subject: [PATCH 2029/2682] move c2hs under grandfathered packages (#5633) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c5ab386e..7d167b97 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -673,7 +673,6 @@ packages: - alex - async - base16-bytestring - - c2hs - csv-conduit < 0 # ghc 8.10 - executable-hash < 0 # via cryptohash - executable-path @@ -4450,6 +4449,7 @@ packages: - bytestring-tree-builder - byte-order - bzlib + - c2hs - ca-province-codes - cabal-doctest - call-stack From ccc7d52eff8187fc34d77e709bdea1ce68ff188c Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 6 Sep 2020 13:00:53 +0800 Subject: [PATCH 2030/2682] sort grandfathered packages --- build-constraints.yaml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7d167b97..3b8a0875 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4393,17 +4393,16 @@ packages: - zenacy-unicode "Grandfathered dependencies": - - network - Boolean - Decimal - Diff - FloatingHex - GenericPretty - Glob - - HasBigDecimal - HDBC - HDBC-session - HTTP + - HasBigDecimal - HsOpenSSL - HsYAML - JuicyPixels-scale-dct @@ -4443,11 +4442,11 @@ packages: - boring - brick - buffer-builder + - byte-order - byteable - bytestring-builder - bytestring-strict-builder - bytestring-tree-builder - - byte-order - bzlib - c2hs - ca-province-codes @@ -4554,8 +4553,8 @@ packages: - ghc-compact < 0 # ghc 8.10 - ghc-paths - ghc-prof - - github < 0 # via http-client-0.6.1 - github + - github < 0 # via http-client-0.6.1 - groom - groups - hackage-security @@ -4621,8 +4620,8 @@ packages: - lockfree-queue - log-base < 0 # ghc 8.10 via unliftio-core - logging-facade - - lukko - lrucache + - lukko - lzma - managed - math-functions @@ -4644,6 +4643,7 @@ packages: - names-th - nanospec - nettle + - network - network-bsd - network-byte-order - network-info @@ -4712,15 +4712,15 @@ packages: - scientific - securemem - selective + - semialign + - semialign-indexed + - semialign-optics - serialise - servant-client-core - servant-swagger-ui - servant-swagger-ui-core - servant-swagger-ui-redoc < 0 # ghc 8.10 via servant & swagger2 - servant-yaml < 0 # ghc 8.10 via servant - - semialign - - semialign-indexed - - semialign-optics - setenv - shakespeare - shell-escape @@ -4801,12 +4801,12 @@ packages: - unbounded-delays - universe - universe-base - - universe-some - universe-dependent-sum < 0 # via some - universe-instances-base - universe-instances-extended - universe-instances-trans - universe-reverse-instances + - universe-some - unix-time - url - utf8-light From 8a1ece146f394c8148c92c20bdd33eb0a1cc61d0 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 7 Sep 2020 11:53:25 +0800 Subject: [PATCH 2031/2682] re-enable safe-json testsuite #5617 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4601fc46..305c0572 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5132,8 +5132,6 @@ skipped-tests: - simple-vec3 # ghc 8.10 - static-text # ghc 8.10 - monad-par # ghc 8.10 - - safe-json # aeson-1.5.3 - # test-framework per ghc 8.8 - extensible-effects # via test-framework @@ -5693,7 +5691,6 @@ expected-test-failures: - yesod-gitrev # https://github.com/DanBurton/yesod-gitrev/issues/5 - chronos # #5443/closed - massiv - - safe-json # https://github.com/Vlix/safe-json/issues/22 - optics-th # https://github.com/commercialhaskell/stackage/issues/5606 # Recursive deps https://github.com/fpco/stackage/issues/1818 From d8c07a79d8aa2fac55e29e8527f2692ce94b8b0d Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Tue, 8 Sep 2020 03:14:51 +0000 Subject: [PATCH 2032/2682] Skips hashtables tests (#5635) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 305c0572..bdac2a64 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5302,6 +5302,7 @@ skipped-tests: - integer-roots # smallcheck, https://github.com/commercialhaskell/stackage/issues/5424 - xlsx # smallcheck, https://github.com/commercialhaskell/stackage/issues/5576 - registry # #5302/closed + - hashtables # hashable, mwc-random https://github.com/commercialhaskell/stackage/issues/5635 # Blocked due to tests failing to compile for GHC 8.6 - async-refresh From 61e048ea85be887938bc722a3b0b50f5e2a43679 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niklas=20Hamb=C3=BCchen?= Date: Tue, 8 Sep 2020 15:04:02 +0200 Subject: [PATCH 2033/2682] debian-bootstrap: Add liblz4-tool Allows running the tests of lz4-frame-conduit, see https://github.com/nh2/lz4-frame-conduit/issues/3 --- debian-bootstrap.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index 21e9973c..f4f5b847 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -94,6 +94,7 @@ apt-get install -y \ liblapack-dev \ libleveldb-dev \ liblmdb-dev \ + liblz4-tool \ liblzma-dev \ libmagic-dev \ libmagickcore-dev \ From f4d7ec058a130f9b4355a14de24dae1163d41df7 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Wed, 9 Sep 2020 02:23:20 +0000 Subject: [PATCH 2034/2682] Disables reanimate-0.4.3.0 (#5637) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index bdac2a64..75216ace 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4206,7 +4206,7 @@ packages: "David Himmelstrup @lemmih": - chiphunk - reanimate-svg - - reanimate + - reanimate < 0 # https://github.com/commercialhaskell/stackage/issues/5637 - earcut # required by reanimate as of 0.4.2.0 - hgeometry From a5ed3ea93990eb4ee719fcc7fe16a7c869409ab6 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Wed, 9 Sep 2020 02:26:13 +0000 Subject: [PATCH 2035/2682] Re-enables hashtables tests (#5635) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 75216ace..86bed600 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5302,7 +5302,7 @@ skipped-tests: - integer-roots # smallcheck, https://github.com/commercialhaskell/stackage/issues/5424 - xlsx # smallcheck, https://github.com/commercialhaskell/stackage/issues/5576 - registry # #5302/closed - - hashtables # hashable, mwc-random https://github.com/commercialhaskell/stackage/issues/5635 + - hashtables # Blocked due to tests failing to compile for GHC 8.6 - async-refresh From 9d20eea30972f5f8981ae903642e9d9e3ef35010 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Wed, 9 Sep 2020 04:53:22 +0000 Subject: [PATCH 2036/2682] Re-enables reanimate (#5637) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 86bed600..022738ff 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4206,7 +4206,7 @@ packages: "David Himmelstrup @lemmih": - chiphunk - reanimate-svg - - reanimate < 0 # https://github.com/commercialhaskell/stackage/issues/5637 + - reanimate - earcut # required by reanimate as of 0.4.2.0 - hgeometry From 48f3f325e098916c28991636cca4b50474b3eb07 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Wed, 9 Sep 2020 08:02:43 -0700 Subject: [PATCH 2037/2682] restrict persistent-template, re-enable persistent, yesod, hledger-web (#5571) --- build-constraints.yaml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 022738ff..a979321e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -635,20 +635,20 @@ packages: - mime-types - network-conduit-tls - persistent - - persistent-mysql < 0 # aeson 1.5 - - persistent-postgresql < 0 # aeson 1.5 - - persistent-sqlite < 0 # aeson 1.5 - - persistent-template < 0 # #5347/closed & aeson 1.5 - - persistent-test < 0 # aeson 1.5 # #4492/closed + - persistent-mysql + - persistent-postgresql + - persistent-sqlite + - persistent-template < 2.8.3 # #5347/closed + - persistent-test # - stackage-curator # http-conduit 2.3 via amazonka - store - wai-extra - wai-websockets - warp-tls - - yesod < 0 # aeson 1.5 via yesod-persistent + - yesod - authenticate - html-conduit - - yesod-auth < 0 # aeson 1.5 via yesod-persistent + - yesod-auth - authenticate-oauth - yesod-bin - yesod-eventsource < 0 # via yesod-core @@ -1352,7 +1352,7 @@ packages: - hledger - hledger-lib - hledger-ui - - hledger-web < 0 # aeson 1.5 via yesod-persistent via yesod-form + - hledger-web # - quickbench < 0 # via docopt - regex-compat-tdfa @@ -2373,7 +2373,7 @@ packages: - esqueleto < 0 # aeson 1.5 - hedgehog-fakedata - persistent-typed-db < 0 # aeson 1.5 - - persistent-qq < 0 # aeson 1.5 + - persistent-qq - persistent-pagination < 0 # aeson 1.5 - hspec-hedgehog @@ -4849,8 +4849,8 @@ packages: - yeshql-core < 0 # MonadFail - yeshql-hdbc < 0 # via HDBC - yesod-core - - yesod-form < 0 # aeson 1.5 via yesod-persistent - - yesod-persistent < 0 # aeson 1.5 + - yesod-form + - yesod-persistent - zlib - zlib-bindings From 13f4d062971aea02352ea965e65ceecfd6482128 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 9 Sep 2020 17:37:27 -0700 Subject: [PATCH 2038/2682] Try `gi-gtk` and stuff --- build-constraints.yaml | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1ad6e44b..f314b8cd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3113,24 +3113,24 @@ packages: - sum-type-boilerplate "Iñaki García Etxebarria @garetxe": - - haskell-gi <0.24.0 # } - - haskell-gi-base <0.24.0 # } - - gi-atk <2.0.22 # } - - gi-cairo <1.0.24 # } - - gi-dbusmenu <0.4.8 # } - - gi-dbusmenugtk3 <0.4.9 # } - - gi-gdk < 3.0.23 # } - - gi-gdkpixbuf <2.0.24 # } - - gi-gdkx11 < 3.0.10 # } gi-harfbuzz (below) - - gi-gio <2.0.27 # } - - gi-glib <2.0.24 # } - - gi-gobject <2.0.23 # } - - gi-graphene <1.0.2 # } - - gi-gtk <3.0.34 # } - - gi-gtk-hs <0.3.9 # } - - gi-pango <1.0.23 # } - - gi-xlib <2.0.9 # } - - gi-harfbuzz <0 # https://github.com/haskell-gi/haskell-gi/issues/299 + - haskell-gi + - haskell-gi-base + - gi-atk + - gi-cairo + - gi-dbusmenu + - gi-dbusmenugtk3 + - gi-gdk + - gi-gdkpixbuf + - gi-gdkx11 + - gi-gio + - gi-glib + - gi-gobject + - gi-graphene + - gi-gtk + - gi-gtk-hs + - gi-pango + - gi-xlib + - gi-harfbuzz # - gi-gdk < 4 # - gi-gdkx11 < 4 # - gi-gtk < 4 From 6b1d45bdb819c6768a7386bf6d08b42f58fe5172 Mon Sep 17 00:00:00 2001 From: Raghu Kaippully Date: Sat, 5 Sep 2020 16:34:53 +0530 Subject: [PATCH 2039/2682] add webgear-server, remove starter (deprecated package) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a979321e..53881980 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4010,7 +4010,7 @@ packages: - file-path-th "Raghu Kaippully @rkaippully": - - starter + - webgear-server "Alex Washburn @recursion-ninja": - bv-little From dcca6628c33edcee7f64a290fe0fe92b35518502 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sun, 13 Sep 2020 04:10:56 +0000 Subject: [PATCH 2040/2682] Re-enables optics-th test suite (#5606) --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a979321e..0261c6ec 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5692,7 +5692,6 @@ expected-test-failures: - yesod-gitrev # https://github.com/DanBurton/yesod-gitrev/issues/5 - chronos # #5443/closed - massiv - - optics-th # https://github.com/commercialhaskell/stackage/issues/5606 # Recursive deps https://github.com/fpco/stackage/issues/1818 - options From 9773198b4347e4963a3e0a201459dc4bc5ac7828 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sun, 13 Sep 2020 04:11:56 +0000 Subject: [PATCH 2041/2682] Disables dhall-yaml test suite (#5640) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0261c6ec..e6300bfc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5660,6 +5660,7 @@ expected-test-failures: - haskeline # https://github.com/commercialhaskell/stackage/issues/5439 - character-cases # https://github.com/aiya000/hs-character-cases/issues/3 - lz4-frame-conduit # https://github.com/nh2/lz4-frame-conduit/issues/3 + - dhall-yaml # https://github.com/commercialhaskell/stackage/issues/5640 # Assertion failures due to module name ambiguity # (These _should_ be fixed by using the `hide` section of this file) From d37f2039e59141bdd26bc6c6fdc367f7ff9f8dc0 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sun, 13 Sep 2020 04:16:12 +0000 Subject: [PATCH 2042/2682] Disables persistent-test (#5641) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e6300bfc..31bfce27 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -639,7 +639,7 @@ packages: - persistent-postgresql - persistent-sqlite - persistent-template < 2.8.3 # #5347/closed - - persistent-test + - persistent-test < 0 # https://github.com/commercialhaskell/stackage/issues/5641 # - stackage-curator # http-conduit 2.3 via amazonka - store - wai-extra From da5181c0cbf58d0bf49aebdb4cfb42beff1004f5 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sun, 13 Sep 2020 04:20:59 +0000 Subject: [PATCH 2043/2682] Disables persistent-* tests (#5641) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 31bfce27..12ad452b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5303,6 +5303,9 @@ skipped-tests: - xlsx # smallcheck, https://github.com/commercialhaskell/stackage/issues/5576 - registry # #5302/closed - hashtables + - persistent-mysql # https://github.com/commercialhaskell/stackage/issues/5641 + - persistent-postgresql # https://github.com/commercialhaskell/stackage/issues/5641 + - persistent-sqlite # https://github.com/commercialhaskell/stackage/issues/5641 # Blocked due to tests failing to compile for GHC 8.6 - async-refresh From 022a627d303ad41324e3ce824122f2de4495e425 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 13 Sep 2020 17:37:27 -0700 Subject: [PATCH 2044/2682] Try `gi-gtk` and stuff (2) --- build-constraints.yaml | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f314b8cd..81c5c982 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3113,24 +3113,24 @@ packages: - sum-type-boilerplate "Iñaki García Etxebarria @garetxe": - - haskell-gi - - haskell-gi-base - - gi-atk - - gi-cairo - - gi-dbusmenu - - gi-dbusmenugtk3 - - gi-gdk - - gi-gdkpixbuf - - gi-gdkx11 - - gi-gio - - gi-glib - - gi-gobject - - gi-graphene - - gi-gtk - - gi-gtk-hs - - gi-pango - - gi-xlib - - gi-harfbuzz + - haskell-gi <0.24.0 # } + - haskell-gi-base <0.24.0 # } + - gi-atk <2.0.22 # } + - gi-cairo <1.0.24 # } + - gi-dbusmenu <0.4.8 # } + - gi-dbusmenugtk3 <0.4.9 # } + - gi-gdk < 3.0.23 # } + - gi-gdkpixbuf <2.0.24 # } + - gi-gdkx11 < 3.0.10 # } gi-harfbuzz (below) + - gi-gio <2.0.27 # } + - gi-glib <2.0.24 # } + - gi-gobject <2.0.23 # } + - gi-graphene <1.0.2 # } + - gi-gtk <3.0.34 # } + - gi-gtk-hs <0.3.9 # } + - gi-pango <1.0.23 # } + - gi-xlib <2.0.9 # } + - gi-harfbuzz #0 # https://github.com/haskell-gi/haskell-gi/issues/299 # - gi-gdk < 4 # - gi-gdkx11 < 4 # - gi-gtk < 4 From 82ec50c206fc562e4a4e12d211b9fc92cb11191b Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 15 Sep 2020 01:24:31 +0300 Subject: [PATCH 2045/2682] Upper bounds for #5643 and #5644 --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4261e138..b67484d7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -734,7 +734,7 @@ packages: - squeather "Neil Mitchell @ndmitchell": - - hlint + - hlint < 3.2 # https://github.com/commercialhaskell/stackage/issues/5643 - hoogle - shake - tagsoup @@ -2470,7 +2470,7 @@ packages: - natural-transformation - password - password-instances - - pretty-simple + - pretty-simple < 4 # https://github.com/commercialhaskell/stackage/issues/5644 - print-console-colors - read-env-var - servant-checked-exceptions < 0 # ghc 8.10 via servant From 099cb447ab565e9b7396b89d72f518775fbd8151 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 15 Sep 2020 10:09:07 +0300 Subject: [PATCH 2046/2682] Remove upper bound and close #5643 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b67484d7..dcf7f445 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -734,7 +734,7 @@ packages: - squeather "Neil Mitchell @ndmitchell": - - hlint < 3.2 # https://github.com/commercialhaskell/stackage/issues/5643 + - hlint - hoogle - shake - tagsoup From b6320f213ef78d3af46e0d05f889d696de2fbb86 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 15 Sep 2020 08:49:49 +0000 Subject: [PATCH 2047/2682] Bump GHC version for LTS 16.12 Fixes #5642 --- automated/dockerfiles/lts-16.12/Dockerfile | 90 ++++++++++++++++++++++ 1 file changed, 90 insertions(+) create mode 100644 automated/dockerfiles/lts-16.12/Dockerfile diff --git a/automated/dockerfiles/lts-16.12/Dockerfile b/automated/dockerfiles/lts-16.12/Dockerfile new file mode 100644 index 00000000..ad0d1ffb --- /dev/null +++ b/automated/dockerfiles/lts-16.12/Dockerfile @@ -0,0 +1,90 @@ +FROM ubuntu:18.04 + +LABEL maintainer="manny@fpcomplete.com" + +ARG GHC_VERSION=8.8.4 +ARG LTS_SLUG=lts-16.12 +ARG PID1_VERSION=0.1.2.0 +ARG STACK_VERSION=2.3.3 +ARG CUDA_VERSION=10.0 +ARG JVM_PATH=/usr/lib/jvm/java-8-openjdk-amd64 +ARG LLVM_PATH=/usr/lib/llvm-7 +ARG BOOTSTRAP_COMMIT=1afd08ff0a3c3627f17eb1b928d35f337db40e08 + +ARG DEBIAN_FRONTEND=noninteractive +ARG VARIANT=build +ARG STACK_ROOT=/home/stackage/.stack + +# +# Set encoding to UTF-8 and PATH to find GHC and cabal/stack-installed binaries. +# + +ENV LANG=C.UTF-8 \ + LC_ALL=C.UTF-8 \ + PATH=/root/.local/bin:/usr/local/cuda-$CUDA_VERSION/bin:$STACK_ROOT/programs/x86_64-linux/ghc-$GHC_VERSION/bin:$PATH \ + CUDA_PATH=/usr/local/cuda-$CUDA_VERSION \ + CPATH=$JVM_PATH/include:$JVM_PATH/include/linux:$LLVM_PATH/include + +# +# Install pre-requisites +# + +RUN apt-get update && \ + apt-get install -y --no-install-recommends \ + wget netbase ca-certificates g++ gcc libc6-dev libffi-dev libgmp-dev \ + make xz-utils zlib1g-dev git gnupg libtinfo-dev jq && \ + rm -rf /var/lib/apt/lists/* + +# +# Use Stackage's debian-bootstrap.sh script to install system libraries and +# tools required to build any Stackage package. +# Re-installs 'stack' *after* running debian-bootstrap.sh since that may have +# installed a different version. +# In the case of 'small' image, just install Stack and GHC. +# + +RUN if [ "$VARIANT" != "small" ]; then \ + wget -qO- https://raw.githubusercontent.com/fpco/stackage/$BOOTSTRAP_COMMIT/debian-bootstrap.sh | sed "s/^GHCVER=8.6.5$/GHCVER=$GHC_VERSION/" | GHCVER=$GHC_VERSION bash; \ + fi && \ + wget -qO- https://github.com/commercialhaskell/stack/releases/download/v$STACK_VERSION/stack-$STACK_VERSION-linux-x86_64.tar.gz | tar xz --wildcards --strip-components=1 -C /usr/bin '*/stack' && \ + if [ "$VARIANT" = "small" ]; then \ + stack setup --resolver ghc-$GHC_VERSION; \ + fi && \ + rm -rf /var/lib/apt/lists/* && \ + cd $STACK_ROOT && \ + find . -type f -not -path "./programs/x86_64-linux/ghc-$GHC_VERSION/*" -exec rm '{}' \; && \ + find . -type d -print0 |sort -rz |xargs -0 rmdir 2>/dev/null || true + +# +# Configure Stack to use the GHC installed in the Docker image rather than installing its own +# + +RUN mkdir /etc/stack/ && \ + echo "system-ghc: true" >/etc/stack/config.yaml + +# +# Use 'stack' to install basic Haskell tools like alex, happy, and cpphs. We +# remove most of the STACK_ROOT afterward to save space, but keep the 'share' +# files that some of these tools require. +# + +RUN stack --resolver=$LTS_SLUG --local-bin-path=/usr/bin install \ + happy alex cpphs gtk2hs-buildtools hscolour hlint hindent && \ + cd $STACK_ROOT && \ + find . -type f -not -path './snapshots/*/share/*' -and -not -path "./programs/x86_64-linux/ghc-$GHC_VERSION/*" -exec rm '{}' \; && \ + find . -type d -print0 |sort -rz |xargs -0 rmdir 2>/dev/null || true + +# +# Install 'pid1' init daemon +# + +RUN wget -O- "https://github.com/fpco/pid1/releases/download/v$PID1_VERSION/pid1-$PID1_VERSION-linux-x86_64.tar.gz" | tar xzf - -C /usr/local && \ + chown root:root /usr/local/sbin && \ + chown root:root /usr/local/sbin/pid1 + +# +# Set up pid1 entrypoint and default command +# + +ENTRYPOINT ["/usr/local/sbin/pid1"] +CMD ["bash"] From 1ed3f8c93b06b38c8104a878b157f3fd2794aaff Mon Sep 17 00:00:00 2001 From: Paul Rouse Date: Tue, 15 Sep 2020 22:16:11 +0100 Subject: [PATCH 2048/2682] Re-enable yesod-auth-hashdb `yesod-auth-hashdb` is OK now that `yesod-auth` is in nightly --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index dcf7f445..fcab666a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1388,7 +1388,7 @@ packages: - mysql-simple - sphinx < 0 # Could not find module Network - xmlhtml < 0 # GHC 8.4 via hspec-2.5.0 - - yesod-auth-hashdb < 0 # aeson 1.5 via yesod-persistent + - yesod-auth-hashdb "Toralf Wittner @twittner": - bytestring-conversion From 3394f5e03a274765baa5af25189b9305503e6d0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20Rze=C5=BAnicki?= Date: Thu, 17 Sep 2020 02:06:38 +0200 Subject: [PATCH 2049/2682] add libjwt lib for libjwt-typed --- debian-bootstrap.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index f4f5b847..39d630ce 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -90,6 +90,7 @@ apt-get install -y \ libimlib2-dev \ libjack-jackd2-dev \ libjavascriptcoregtk-4.0-dev \ + libjansson-dev \ libjudy-dev \ liblapack-dev \ libleveldb-dev \ @@ -319,6 +320,20 @@ Z3_VER=4.8.8 && ln -s /usr/local/z3-${Z3_VER}-x64-ubuntu-16.04/bin/z3 /usr/bin/z3 ) +LIBJWT_VER=1.12.0 +( +pushd /tmp \ + && wget https://github.com/benmcollins/libjwt/archive/v${LIBJWT_VER}.zip \ + && unzip v${LIBJWT_VER}.zip \ + && pushd libjwt-${LIBJWT_VER} \ + && autoreconf -fiv \ + && ./configure --disable-valgrind --disable-doxygen-doc \ + && make \ + && sudo make install \ + && popd \ + && popd +) + # EOF: don't build anything below this line From 91060f76f83ed6742bd77c5c8f229d0558fee31b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20Rze=C5=BAnicki?= Date: Thu, 17 Sep 2020 02:14:53 +0200 Subject: [PATCH 2050/2682] Add libjwt-typed --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index fcab666a..4ce1d433 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -42,6 +42,7 @@ packages: "Marcin Rzeźnicki @marcin-rzeznicki": - hspec-tables - stackcollapse-ghc + - libjwt-typed "Mauricio Fierro @mauriciofierrom": - dialogflow-fulfillment From 2a52f6295cf3b128f31a8a2e5744e6bf967145a5 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 19 Sep 2020 17:37:27 -0700 Subject: [PATCH 2051/2682] Try `gi-gtk` and stuff (3) --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 81c5c982..749fdf5d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3113,8 +3113,8 @@ packages: - sum-type-boilerplate "Iñaki García Etxebarria @garetxe": - - haskell-gi <0.24.0 # } - - haskell-gi-base <0.24.0 # } + - haskell-gi #0.24.0 # } + - haskell-gi-base #0.24.0 # } - gi-atk <2.0.22 # } - gi-cairo <1.0.24 # } - gi-dbusmenu <0.4.8 # } From de514fd7bb9a2498209a8d0a68ddc4247d234db1 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 23 Sep 2020 20:43:47 -0700 Subject: [PATCH 2052/2682] Try `gi-gtk` and stuff (4) --- build-constraints.yaml | 31 ++++++++++++++++--------------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 749fdf5d..03a297ae 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3115,22 +3115,23 @@ packages: "Iñaki García Etxebarria @garetxe": - haskell-gi #0.24.0 # } - haskell-gi-base #0.24.0 # } - - gi-atk <2.0.22 # } - - gi-cairo <1.0.24 # } - - gi-dbusmenu <0.4.8 # } - - gi-dbusmenugtk3 <0.4.9 # } - - gi-gdk < 3.0.23 # } - - gi-gdkpixbuf <2.0.24 # } - - gi-gdkx11 < 3.0.10 # } gi-harfbuzz (below) - - gi-gio <2.0.27 # } - - gi-glib <2.0.24 # } - - gi-gobject <2.0.23 # } - - gi-graphene <1.0.2 # } - - gi-gtk <3.0.34 # } - - gi-gtk-hs <0.3.9 # } - - gi-pango <1.0.23 # } - - gi-xlib <2.0.9 # } + - gi-atk #2.0.22 # } + - gi-cairo #1.0.24 # } + - gi-dbusmenu #0.4.8 # } + - gi-dbusmenugtk3 #0.4.9 # } + - gi-gdk < 4 # 3.0.23 # } + - gi-gdkpixbuf #2.0.24 # } + - gi-gdkx11 # 3.0.10 # } gi-harfbuzz (below) + - gi-gio #2.0.27 # } + - gi-glib #2.0.24 # } + - gi-gobject #2.0.23 # } + - gi-graphene #1.0.2 # } + - gi-gtk < 4 #3.0.34 # } + - gi-gtk-hs #0.3.9 # } + - gi-pango #1.0.23 # } + - gi-xlib #2.0.9 # } - gi-harfbuzz #0 # https://github.com/haskell-gi/haskell-gi/issues/299 + - gi-gsk # - gi-gdk < 4 # - gi-gdkx11 < 4 # - gi-gtk < 4 From 228748d796acbef1520b2ee70d22bcb37fca737e Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 23 Sep 2020 20:45:11 -0700 Subject: [PATCH 2053/2682] Try `gi-gtk` and stuff (5) --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 03a297ae..d26e9098 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3121,7 +3121,7 @@ packages: - gi-dbusmenugtk3 #0.4.9 # } - gi-gdk < 4 # 3.0.23 # } - gi-gdkpixbuf #2.0.24 # } - - gi-gdkx11 # 3.0.10 # } gi-harfbuzz (below) + - gi-gdkx11 < 4 # 3.0.10 # } gi-harfbuzz (below) - gi-gio #2.0.27 # } - gi-glib #2.0.24 # } - gi-gobject #2.0.23 # } @@ -3131,7 +3131,7 @@ packages: - gi-pango #1.0.23 # } - gi-xlib #2.0.9 # } - gi-harfbuzz #0 # https://github.com/haskell-gi/haskell-gi/issues/299 - - gi-gsk + - gi-gsk < 4 # - gi-gdk < 4 # - gi-gdkx11 < 4 # - gi-gtk < 4 From 8aa483d8e54a7d8dcc15c57e1a6c23375c5a312f Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 23 Sep 2020 21:09:44 -0700 Subject: [PATCH 2054/2682] Cleanup. Close https://github.com/haskell-gi/haskell-gi/issues/299 --- build-constraints.yaml | 39 ++++++++++++++++++--------------------- 1 file changed, 18 insertions(+), 21 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d26e9098..9546640e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3113,28 +3113,25 @@ packages: - sum-type-boilerplate "Iñaki García Etxebarria @garetxe": - - haskell-gi #0.24.0 # } - - haskell-gi-base #0.24.0 # } - - gi-atk #2.0.22 # } - - gi-cairo #1.0.24 # } - - gi-dbusmenu #0.4.8 # } - - gi-dbusmenugtk3 #0.4.9 # } - - gi-gdk < 4 # 3.0.23 # } - - gi-gdkpixbuf #2.0.24 # } - - gi-gdkx11 < 4 # 3.0.10 # } gi-harfbuzz (below) - - gi-gio #2.0.27 # } - - gi-glib #2.0.24 # } - - gi-gobject #2.0.23 # } - - gi-graphene #1.0.2 # } - - gi-gtk < 4 #3.0.34 # } - - gi-gtk-hs #0.3.9 # } - - gi-pango #1.0.23 # } - - gi-xlib #2.0.9 # } - - gi-harfbuzz #0 # https://github.com/haskell-gi/haskell-gi/issues/299 + - haskell-gi + - haskell-gi-base + - gi-atk + - gi-cairo + - gi-dbusmenu + - gi-dbusmenugtk3 + - gi-gdk < 4 + - gi-gdkpixbuf + - gi-gdkx11 < 4 + - gi-gio + - gi-glib + - gi-gobject + - gi-graphene + - gi-gtk < 4 + - gi-gtk-hs + - gi-pango + - gi-xlib + - gi-harfbuzz - gi-gsk < 4 - # - gi-gdk < 4 - # - gi-gdkx11 < 4 - # - gi-gtk < 4 - gi-gtksource < 0 # via gi-gdk-4.0.1 & gi-gtk-4.0.1 - gi-javascriptcore < 0 # via haskell-gi - gi-vte < 0 # via gi-gdk-4.0.1 & gi-gtk-4.0.1 From 6f205197fe478b0ce08ca57e2be8addac3ed414a Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 23 Sep 2020 21:10:48 -0700 Subject: [PATCH 2055/2682] Try #5653 --- build-constraints.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9546640e..442bb5ed 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4242,13 +4242,13 @@ packages: "Ivan Malison @IvanMalison": - ConfigFile - dbus-hslogger - - gi-cairo-connector <0 # needs gi-cairo-render - - gi-cairo-render <0 # https://github.com/cohomology/gi-cairo-render/issues/3 - - gtk-sni-tray <0 # needs gi-cairo-render + - gi-cairo-connector #0 # needs gi-cairo-render + - gi-cairo-render #0 # https://github.com/cohomology/gi-cairo-render/issues/3 + - gtk-sni-tray #0 # needs gi-cairo-render - gtk-strut - rate-limit - status-notifier-item - - taffybar < 0 # ghc 8.10 + - taffybar # 0 # ghc 8.10 - time-units - xml-helpers - xdg-desktop-entry From 328db2211c520350bb644a51266ba5989fa66453 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 23 Sep 2020 21:18:01 -0700 Subject: [PATCH 2056/2682] Still block `taffybar`, try the others (#5653) --- build-constraints.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 442bb5ed..c0db7c8e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4242,13 +4242,13 @@ packages: "Ivan Malison @IvanMalison": - ConfigFile - dbus-hslogger - - gi-cairo-connector #0 # needs gi-cairo-render - - gi-cairo-render #0 # https://github.com/cohomology/gi-cairo-render/issues/3 - - gtk-sni-tray #0 # needs gi-cairo-render + - gi-cairo-connector + - gi-cairo-render + - gtk-sni-tray - gtk-strut - rate-limit - status-notifier-item - - taffybar # 0 # ghc 8.10 + - taffybar < 0 # ghc 8.10 - time-units - xml-helpers - xdg-desktop-entry From fabf0754cce6ef4b0d67c4c1cd988e92a2618971 Mon Sep 17 00:00:00 2001 From: Hiromi ISHII Date: Thu, 24 Sep 2020 21:16:01 +0900 Subject: [PATCH 2057/2682] Adds `subcategories` that is needed for new `sized` package --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index c0db7c8e..386f40b6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4330,6 +4330,7 @@ packages: - ghc-typelits-presburger - singletons-presburger - type-natural + - subcategories - sized "Frank Doepper @woffs": From 8b04c1d3e1961b67173045a12b8c48d53f3e6d00 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 24 Sep 2020 17:51:13 -0700 Subject: [PATCH 2058/2682] Upper bound `th-test-utils` (#5657) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 386f40b6..1f4bf4ca 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4261,7 +4261,7 @@ packages: - github-rest - graphql-client - hpc-lcov - - th-test-utils + - th-test-utils < 1.1 # https://github.com/commercialhaskell/stackage/issues/5657 "Akshay Mankar @akshaymankar": - jsonpath From d186c53b557a78a508286c7ac2a6ce024ccab0ac Mon Sep 17 00:00:00 2001 From: Brandon Chinn Date: Thu, 24 Sep 2020 19:35:05 -0700 Subject: [PATCH 2059/2682] Upload aeson-schemas-1.3.0 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1f4bf4ca..386f40b6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4261,7 +4261,7 @@ packages: - github-rest - graphql-client - hpc-lcov - - th-test-utils < 1.1 # https://github.com/commercialhaskell/stackage/issues/5657 + - th-test-utils "Akshay Mankar @akshaymankar": - jsonpath From 0f8dd40d7b730080409161267a3573248443a536 Mon Sep 17 00:00:00 2001 From: Henning Thielemann Date: Fri, 25 Sep 2020 11:11:37 +0200 Subject: [PATCH 2060/2682] add doctest-lib and doctest-exitcode-stdio --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 386f40b6..7259082d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -395,6 +395,8 @@ packages: - data-accessor-template - data-accessor-transformers - data-ref + - doctest-exitcode-stdio + - doctest-lib - dsp - enumset - equal-files From 0c7818a6fd6065366e69815fc1091948c492cf29 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 25 Sep 2020 11:33:54 -0700 Subject: [PATCH 2061/2682] Expect test failure for `cryptocompare` (#5660) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7259082d..8bfee449 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5666,6 +5666,7 @@ expected-test-failures: - character-cases # https://github.com/aiya000/hs-character-cases/issues/3 - lz4-frame-conduit # https://github.com/nh2/lz4-frame-conduit/issues/3 - dhall-yaml # https://github.com/commercialhaskell/stackage/issues/5640 + - cryptocompare # https://github.com/commercialhaskell/stackage/issues/5660 # Assertion failures due to module name ambiguity # (These _should_ be fixed by using the `hide` section of this file) From 84c2b97576943765023a84ae877f21aa06a4847b Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 25 Sep 2020 11:49:21 -0700 Subject: [PATCH 2062/2682] Expect test failure for `aeson-schemas-test` (#5661) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8bfee449..74e071fe 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5799,6 +5799,9 @@ expected-test-failures: # https://github.com/cdornan/fmt/issues/30 - fmt + # https://github.com/commercialhaskell/stackage/issues/5661 + - aeson-schemas-test + # end of expected-test-failures From 2ec23f0c6a7f4938a7abb32c33224e6282e3ba93 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 25 Sep 2020 12:12:45 -0700 Subject: [PATCH 2063/2682] Fix name --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 74e071fe..820fe605 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5800,7 +5800,7 @@ expected-test-failures: - fmt # https://github.com/commercialhaskell/stackage/issues/5661 - - aeson-schemas-test + - aeson-schemas # end of expected-test-failures From 6902bc40320887518fce618e8e00328688585a95 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 26 Sep 2020 07:12:37 -0700 Subject: [PATCH 2064/2682] Test `wai-extra` --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 820fe605..798eb241 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -645,7 +645,7 @@ packages: - persistent-test < 0 # https://github.com/commercialhaskell/stackage/issues/5641 # - stackage-curator # http-conduit 2.3 via amazonka - store - - wai-extra < 3.1.0 # https://github.com/commercialhaskell/stackage/issues/5655 + - wai-extra # 3.1.0 # https://github.com/commercialhaskell/stackage/issues/5655 - wai-websockets - warp-tls - yesod From 2c85a8091f67b5e9f607bbd4aa59a621fc1cc2cf Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 26 Sep 2020 07:15:04 -0700 Subject: [PATCH 2065/2682] Upper bound `hspec-wai{,-json}` (#5662) --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 798eb241..83578135 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -992,8 +992,8 @@ packages: - hspec - hspec-core - hspec-discover - - hspec-wai - - hspec-wai-json + - hspec-wai < 0.11 # https://github.com/commercialhaskell/stackage/issues/5662 + - hspec-wai-json < 0.11 # https://github.com/commercialhaskell/stackage/issues/5662 - aeson-qq - interpolate - doctest < 0.17 # https://github.com/commercialhaskell/stackage/issues/5574 From e24f26c1f52a2e6942fde2a3073e2b63c34dc5d3 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 26 Sep 2020 07:26:49 -0700 Subject: [PATCH 2066/2682] Fix #5655 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 83578135..d640641f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -645,7 +645,7 @@ packages: - persistent-test < 0 # https://github.com/commercialhaskell/stackage/issues/5641 # - stackage-curator # http-conduit 2.3 via amazonka - store - - wai-extra # 3.1.0 # https://github.com/commercialhaskell/stackage/issues/5655 + - wai-extra - wai-websockets - warp-tls - yesod From 97be8c12b37f3b4ce8964a17eac6d49a1534a015 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 26 Sep 2020 12:22:40 -0700 Subject: [PATCH 2067/2682] Test cyptocompare --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d640641f..34b990e4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5666,7 +5666,7 @@ expected-test-failures: - character-cases # https://github.com/aiya000/hs-character-cases/issues/3 - lz4-frame-conduit # https://github.com/nh2/lz4-frame-conduit/issues/3 - dhall-yaml # https://github.com/commercialhaskell/stackage/issues/5640 - - cryptocompare # https://github.com/commercialhaskell/stackage/issues/5660 + # cryptocompare # https://github.com/commercialhaskell/stackage/issues/5660 # Assertion failures due to module name ambiguity # (These _should_ be fixed by using the `hide` section of this file) From 4401f43cfbe7a8d0d35aea15ec19d13178cf583f Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 26 Sep 2020 12:31:29 -0700 Subject: [PATCH 2068/2682] Test `aeson-schemas` --- build-constraints.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 34b990e4..f8be1afb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5666,7 +5666,6 @@ expected-test-failures: - character-cases # https://github.com/aiya000/hs-character-cases/issues/3 - lz4-frame-conduit # https://github.com/nh2/lz4-frame-conduit/issues/3 - dhall-yaml # https://github.com/commercialhaskell/stackage/issues/5640 - # cryptocompare # https://github.com/commercialhaskell/stackage/issues/5660 # Assertion failures due to module name ambiguity # (These _should_ be fixed by using the `hide` section of this file) @@ -5799,9 +5798,6 @@ expected-test-failures: # https://github.com/cdornan/fmt/issues/30 - fmt - # https://github.com/commercialhaskell/stackage/issues/5661 - - aeson-schemas - # end of expected-test-failures From 65d9c3dfc566658c55234536045d504c5d481817 Mon Sep 17 00:00:00 2001 From: Li-yao Xia Date: Sat, 26 Sep 2020 18:15:57 -0400 Subject: [PATCH 2069/2682] Re-enable generic-data-surgery --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f8be1afb..06a656be 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -514,7 +514,7 @@ packages: - boltzmann-samplers - first-class-families - generic-data - - generic-data-surgery < 0 # via generic-data + - generic-data-surgery - generic-random - scanf - show-combinators From 9c1eb07fbaae0f43c5dd3c42a2d46fbc8970a527 Mon Sep 17 00:00:00 2001 From: Yoshikuni Jujo Date: Thu, 1 Oct 2020 09:48:11 +0900 Subject: [PATCH 2070/2682] Reenable exception-hierarchy --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 06a656be..15a30766 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2991,7 +2991,7 @@ packages: - gluturtle - papillon < 0 # ghc 8.10 - zasni-gerna < 0 # ghc 8.10 - - exception-hierarchy < 0 # ghc 8.10 + - exception-hierarchy - simplest-sqlite < 0 # ghc 8.10 - warp-tls-uid - nowdoc From d75736c54ac9a472db81ee8b5809f5ba729167b2 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 1 Oct 2020 13:27:56 +0800 Subject: [PATCH 2071/2682] fix typos of pandoc in disable comments [skip ci] --- build-constraints.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 06a656be..633c889d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -185,7 +185,7 @@ packages: - control-dsl < 0 # via doctest-discover "Laurent P. René de Cotret @LaurentRDC": - - pandoc-plot < 0 # ghc 8.10 via pandaoc + - pandoc-plot < 0 # ghc 8.10 via pandoc "Andrew Newman @andrewfnewman": - geojson @@ -794,7 +794,7 @@ packages: - psqueues - websockets - websockets-snap - - hakyll < 0 # ghc 8.10 via pandaoc + - hakyll < 0 # ghc 8.10 via pandoc "Sibi Prabakaran @psibi": - download @@ -2905,7 +2905,7 @@ packages: - doctemplates - emojis - pandoc < 0 # https://github.com/commercialhaskell/stackage/issues/5567 - - pandoc-citeproc < 0 # ghc 8.10 via pandaoc + - pandoc-citeproc < 0 # ghc 8.10 via pandoc - HsYAML-aeson - ipynb #< 0 # via aeson-diff @@ -4236,7 +4236,7 @@ packages: - rope-utf16-splay "Venkateswara Rao Mandela @vmandela": - - pandoc-csv2table < 0 # ghc 8.10 via pandaoc + - pandoc-csv2table < 0 # ghc 8.10 via pandoc "Elben Shira @elben": - pencil < 0 # via hsass From 4807048319e1c090b0c058213c56589243195533 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Thu, 1 Oct 2020 17:55:45 +0200 Subject: [PATCH 2072/2682] Bounds for #5669 #5668 #5667 #5666, and add th-compat --- build-constraints.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 633c889d..4efcf2c8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2360,6 +2360,7 @@ packages: - text-show - text-show-instances - th-abstraction + - th-compat - thread-local-storage - type-equality @@ -4986,6 +4987,23 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5633 - language-c < 0.9 + # https://github.com/commercialhaskell/stackage/issues/5669 + - th-orphans < 0.13.11 + + # https://github.com/commercialhaskell/stackage/issues/5668 + - th-abstraction < 0.4 + - bifunctors < 5.5.8 + - bound < 2.0.2 + - deriving-compat < 0.5.10 + - free < 5.1.4 + - invariant < 0.5.4 + + # https://github.com/commercialhaskell/stackage/issues/5667 + - profunctors < 5.6 + + # https://github.com/commercialhaskell/stackage/issues/5666 + - generic-deriving < 1.14 + # end of packages # Package flags are applied to individual packages, and override the values of From 86080fae537c4fae4e980e1997960641477e1fc6 Mon Sep 17 00:00:00 2001 From: Eitan Chatav Date: Thu, 1 Oct 2020 11:01:19 -0700 Subject: [PATCH 2073/2682] Re-enable squeal-postgresql Checklist: - [ ] Meaningful commit message, eg `add my-cool-package` (please not mention `build-constraints.yml`) - [ ] At least 30 minutes have passed since uploading to Hackage - [ ] On your own machine, you have successfully run the following command (replace `$package` with the name of the package that is submitted, and `$version` with the version of the package you want to get into Stackage): ./verify-package $package # or $package-$version The script runs virtually the following commands in a clean directory: stack unpack $package-$version # $version is optional cd $package-$version rm -f stack.yaml && stack init --resolver nightly stack build --resolver nightly --haddock --test --bench --no-run-benchmarks --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 06a656be..d0349476 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3739,7 +3739,7 @@ packages: "Eitan Chatav @echatav": - free-categories - - squeal-postgresql < 0 + - squeal-postgresql "Sam Quinn @Lazersmoke": - ghost-buster From e9923aa1fd4ff7014058abaf9398cd55afcd3cce Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Fri, 2 Oct 2020 13:28:47 +0200 Subject: [PATCH 2074/2682] bounds for #5671 & 5672 --- build-constraints.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4efcf2c8..4e0d0d41 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5004,6 +5004,12 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5666 - generic-deriving < 1.14 + # https://github.com/commercialhaskell/stackage/issues/5671 + - unordered-containers < 0.2.13.0 + + # https://github.com/commercialhaskell/stackage/issues/5672 + - wai-middleware-static < 0.9.0 + # end of packages # Package flags are applied to individual packages, and override the values of From de386791b8a2d9280e2d4686c834b16fd3abc937 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sat, 3 Oct 2020 15:04:35 +0200 Subject: [PATCH 2075/2682] structs bound for #5668 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 44e0735f..9ba98404 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4997,6 +4997,7 @@ packages: - deriving-compat < 0.5.10 - free < 5.1.4 - invariant < 0.5.4 + - structs < 0.1.4 # https://github.com/commercialhaskell/stackage/issues/5667 - profunctors < 5.6 From 4d220110df847a9791defa8ccafcb4e2e6a2a69c Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sat, 3 Oct 2020 17:23:13 +0200 Subject: [PATCH 2076/2682] text-show < 3.9 for #5673 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9ba98404..eb763186 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5011,6 +5011,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5672 - wai-middleware-static < 0.9.0 + # https://github.com/commercialhaskell/stackage/issues/5673 + - text-show < 3.9 + # end of packages # Package flags are applied to individual packages, and override the values of From 5f15499f70888cca789871e64bdd70581a457151 Mon Sep 17 00:00:00 2001 From: Jasper Woudenberg Date: Sun, 4 Oct 2020 15:28:25 +0100 Subject: [PATCH 2077/2682] Add wai-feature-flags --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 44e0735f..f0ef5de9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4299,6 +4299,7 @@ packages: "Jasper Woudenberg @jasperwoudnberg": - bugsnag-hs - junit-xml + - wai-feature-flags "Eric Conlon @ejconlon": - blanks From a08909aff5c5f9f41e317701d88b7459e683f621 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sun, 4 Oct 2020 19:28:02 +0200 Subject: [PATCH 2078/2682] Exclude unbuildable these-lens nad these-optics versions --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index eb763186..12c32066 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4785,8 +4785,8 @@ packages: - th-lift-instances - th-utilities - these - - these-lens - - these-optics + - these-lens < 1.0.1 || > 1.0.1 + - these-optics < 1.0.1 || > 1.0.1 - threads - thyme - time-locale-compat From a1a3cd7bf2d93eafef8544b47e314584b7093bb7 Mon Sep 17 00:00:00 2001 From: John Ky Date: Tue, 6 Oct 2020 01:28:46 +1100 Subject: [PATCH 2079/2682] Change of maintainer for tasty-discover --- build-constraints.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 12c32066..3ff5ecfb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -531,9 +531,6 @@ packages: - List - ListTree - "Luke Murphy @lwm": - - tasty-discover - "Marco Zocca @ocramz": - sparse-linear-algebra - depq @@ -3044,6 +3041,7 @@ packages: - hw-streams - hw-succinct < 0 # hw-rankselect due to generic-lens 2.0.0.0 - hw-xml < 0 # generic-lens 2.0.0.0 + - tasty-discover "George Wilson @gwils": - hedgehog-fn From 5d126a20cdcaed22dba58f17e1331697d5d7b947 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Mon, 5 Oct 2020 11:33:44 -0500 Subject: [PATCH 2080/2682] Upper bounds for haskell-lsp, #5676 --- build-constraints.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 12c32066..22f80101 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5014,6 +5014,11 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5673 - text-show < 3.9 + # https://github.com/commercialhaskell/stackage/issues/5676 + - haskell-lsp < 0.23 + - haskell-lsp-types < 0.23 + - lsp-test < 0.11.0.6 + # end of packages # Package flags are applied to individual packages, and override the values of From fadac4582da9dc34027ba1845bb7de0ab32077f9 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Mon, 5 Oct 2020 11:35:27 -0500 Subject: [PATCH 2081/2682] Remove upper bounds for unordered-containers, closes #5671 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 22f80101..cc465a8f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5005,9 +5005,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5666 - generic-deriving < 1.14 - # https://github.com/commercialhaskell/stackage/issues/5671 - - unordered-containers < 0.2.13.0 - # https://github.com/commercialhaskell/stackage/issues/5672 - wai-middleware-static < 0.9.0 From 6ba9ad88deb63c5336b7f01019a59cedbf8d895b Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Tue, 6 Oct 2020 08:09:59 -0500 Subject: [PATCH 2082/2682] Add upper bound for reanimate-svg, #5677 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index cc465a8f..34c6f435 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5016,6 +5016,9 @@ packages: - haskell-lsp-types < 0.23 - lsp-test < 0.11.0.6 + # https://github.com/commercialhaskell/stackage/issues/5677 + - reanimate-svg < 0.12 + # end of packages # Package flags are applied to individual packages, and override the values of From ac913718c4736592d73b7181247f5acede70443d Mon Sep 17 00:00:00 2001 From: John Ky Date: Wed, 7 Oct 2020 21:56:32 +1100 Subject: [PATCH 2083/2682] Re-enable haskell-works packages --- build-constraints.yaml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c571e17c..ce31d7b1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3019,8 +3019,8 @@ packages: - hw-conduit - hw-conduit-merges - hw-diagnostics - - hw-dsv < 0 # generic-lens 2.0.0.0 - - hw-eliasfano < 0 # generic-lens 2.0.0.0 + - hw-dsv + - hw-eliasfano - hw-excess - hw-fingertree - hw-fingertree-strict @@ -3028,19 +3028,19 @@ packages: - hw-hspec-hedgehog - hw-int - hw-ip - - hw-json < 0 # generic-lens 2.0.0.0 - - hw-json-simple-cursor < 0 # generic-lens 2.0.0.0 - - hw-json-standard-cursor < 0 # generic-lens 2.0.0.0 + - hw-json + - hw-json-simple-cursor + - hw-json-standard-cursor - hw-mquery - - hw-packed-vector < 0 # generic-lens 2.0.0.0 + - hw-packed-vector - hw-parser - hw-prim - - hw-rankselect < 0 # generic-lens 2.0.0.0 + - hw-rankselect - hw-rankselect-base - - hw-simd < 0 # hw-rankselect due to generic-lens 2.0.0.0 + - hw-simd - hw-streams - - hw-succinct < 0 # hw-rankselect due to generic-lens 2.0.0.0 - - hw-xml < 0 # generic-lens 2.0.0.0 + - hw-succinct + - hw-xml - tasty-discover "George Wilson @gwils": From bd3b546231d4b4938f723b78765822aaf49dff0f Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Wed, 7 Oct 2020 15:18:35 -0500 Subject: [PATCH 2084/2682] Remove upper bound for reanimate-svg, closes #5677 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c571e17c..e07a3b7d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5015,9 +5015,6 @@ packages: - haskell-lsp-types < 0.23 - lsp-test < 0.11.0.6 - # https://github.com/commercialhaskell/stackage/issues/5677 - - reanimate-svg < 0.12 - # end of packages # Package flags are applied to individual packages, and override the values of From 765cdeafb084560911769483b12267924517366e Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Wed, 7 Oct 2020 17:53:27 -0500 Subject: [PATCH 2085/2682] Expect test failure for reanimate-svg, #5680 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index e07a3b7d..4f24c724 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5674,6 +5674,7 @@ expected-test-failures: - crypto-pubkey # https://github.com/vincenthz/hs-crypto-pubkey/issues/23 - doctest-discover # 0.1.0.9 https://github.com/karun012/doctest-discover/issues/22 - doctest + - reanimate-svg # https://github.com/commercialhaskell/stackage/issues/5680 # Assertion failures, these can be real bugs or just limitations # in the test cases. From 5bbce2e80e5c7473f4c396d860b38d1b2a73854d Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Wed, 7 Oct 2020 19:54:58 -0500 Subject: [PATCH 2086/2682] Expect haddock failure for hw-json, #5681 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index adb9936d..1dba1a61 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5882,6 +5882,9 @@ expected-haddock-failures: # https://github.com/haskell/haddock/issues/1091 - vault + + # https://github.com/commercialhaskell/stackage/issues/5681 + - hw-json # end of expected-haddock-failures # For packages with haddock issues From cbfa57b86b7eccdca562fd3d878313ec9fabd761 Mon Sep 17 00:00:00 2001 From: HaskellZhangSong Date: Thu, 8 Oct 2020 23:34:07 +0800 Subject: [PATCH 2087/2682] add derive-topdown --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1dba1a61..1c60e78f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4396,6 +4396,9 @@ packages: - zenacy-html - zenacy-unicode + "Song Zhang @HaskellZhangSong": + - derive-topdown + "Grandfathered dependencies": - Boolean - Decimal From a9a0a8657b12e752c96d2e69748b086b9268f5fe Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Thu, 8 Oct 2020 19:01:01 -0500 Subject: [PATCH 2088/2682] Don't expect a test failure for reanimate-svg, closes #5680 --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1dba1a61..5ae28123 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5674,7 +5674,6 @@ expected-test-failures: - crypto-pubkey # https://github.com/vincenthz/hs-crypto-pubkey/issues/23 - doctest-discover # 0.1.0.9 https://github.com/karun012/doctest-discover/issues/22 - doctest - - reanimate-svg # https://github.com/commercialhaskell/stackage/issues/5680 # Assertion failures, these can be real bugs or just limitations # in the test cases. From 55ebd715cb3e2d4ff892c7715d7e244c09f5ae13 Mon Sep 17 00:00:00 2001 From: Matt Parsons Date: Thu, 8 Oct 2020 19:57:14 -0600 Subject: [PATCH 2089/2682] Add Prairie --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5ae28123..5fb184d0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2367,6 +2367,7 @@ packages: "Matt Parsons @parsonsmatt": - monad-logger-prefix - monad-metrics + - prairie # - ekg-cloudwatch # http-conduit 2.3 via amazonka - smtp-mail < 0 # https://github.com/jhickner/smtp-mail/issues/24#issuecomment-499601949 - liboath-hs < 0 # via inline-c-0.8.0.1 From e86cca0cc8da0af31ec771523dface2ab8e41f1c Mon Sep 17 00:00:00 2001 From: Maxim Koltsov Date: Fri, 9 Oct 2020 12:45:16 +0200 Subject: [PATCH 2090/2682] Add openapi3 & servant-openapi3 --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5ae28123..9bed9d5b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4396,6 +4396,10 @@ packages: - zenacy-html - zenacy-unicode + "Maxim Koltsov @maksbotan": + - openapi3 + - servant-openapi3 + "Grandfathered dependencies": - Boolean - Decimal From beb043d3c66fb73b940ace772a82ca2f18305593 Mon Sep 17 00:00:00 2001 From: Jasper Woudenberg Date: Sat, 10 Oct 2020 07:34:37 +0100 Subject: [PATCH 2091/2682] Add pretty-diff and tasty-test-reporter packages --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 63eea931..b6f90c4b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4299,6 +4299,8 @@ packages: - bugsnag-hs - junit-xml - wai-feature-flags + - tasty-test-reporter + - pretty-diff "Eric Conlon @ejconlon": - blanks From 51510a0276fba4271e67bc390e7b8cb8f12097f7 Mon Sep 17 00:00:00 2001 From: Jasper Woudenberg Date: Sat, 10 Oct 2020 07:36:44 +0100 Subject: [PATCH 2092/2682] Add nri-prelude and nri-env-parser packages --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index b6f90c4b..acfabf37 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4406,6 +4406,10 @@ packages: "Song Zhang @HaskellZhangSong": - derive-topdown + "NoRedInk ": + - nri-prelude + - nri-env-parser + "Grandfathered dependencies": - Boolean - Decimal From 96400d9991994a955d0b1a2f9c2c3a680b3b3e1d Mon Sep 17 00:00:00 2001 From: Andreas Abel Date: Sat, 10 Oct 2020 18:57:43 +0200 Subject: [PATCH 2093/2682] Add BNFC to stackage Add https://hackage.haskell.org/package/BNFC-2.8.4 to stackage. A file `stack-8.10.2.yaml` is included in the BNFC cabal package. --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 63eea931..b68086f3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -9,6 +9,9 @@ cabal-format-version: "3.0" # Constraints for brand new builds packages: + "Andreas Abel @andreasabel": + - BNFC + "Diogo Biazus ": - hasql-notifications From 2888814cf8bed53f361962c6cc9e05cea330edf6 Mon Sep 17 00:00:00 2001 From: Jasper Woudenberg Date: Sat, 10 Oct 2020 18:48:44 +0100 Subject: [PATCH 2094/2682] Fix github name of Jasper Woudenberg --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index acfabf37..4bb8cf1d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4295,7 +4295,7 @@ packages: "Travis Cardwell @TravisCardwell": - ttc - "Jasper Woudenberg @jasperwoudnberg": + "Jasper Woudenberg @jwoudenberg": - bugsnag-hs - junit-xml - wai-feature-flags From ae6fd7aaedf39282f6a32e7d369cbe7fe2ca438f Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Sat, 10 Oct 2020 12:51:33 -0500 Subject: [PATCH 2095/2682] Add upper bound for formatting, #5686 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 63eea931..23f37f1f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5023,6 +5023,9 @@ packages: - haskell-lsp-types < 0.23 - lsp-test < 0.11.0.6 + # https://github.com/commercialhaskell/stackage/issues/5686 + - formatting < 7 + # end of packages # Package flags are applied to individual packages, and override the values of From b9251ad05e532219c7d434897f9f4852b4291275 Mon Sep 17 00:00:00 2001 From: Ivan Gromakovskii Date: Sat, 10 Oct 2020 21:37:49 +0300 Subject: [PATCH 2096/2682] Add uncaught-exception --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 23f37f1f..32655a11 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3687,6 +3687,7 @@ packages: - o-clock - universum - with-utf8 + - uncaught-exception "Kowainik @chshersh @vrom911": - co-log-core From 19d74f8ae97f46099bcbe2ae83f98e981b5b8bdb Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Sat, 10 Oct 2020 13:52:46 -0500 Subject: [PATCH 2097/2682] Expect test failures for reanimate-svg, #5688 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 23f37f1f..b6d8e4ec 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5685,6 +5685,7 @@ expected-test-failures: - crypto-pubkey # https://github.com/vincenthz/hs-crypto-pubkey/issues/23 - doctest-discover # 0.1.0.9 https://github.com/karun012/doctest-discover/issues/22 - doctest + - reanimate-svg # https://github.com/commercialhaskell/stackage/issues/5688 # Assertion failures, these can be real bugs or just limitations # in the test cases. From e2f908f54f48b9bb643a5fe651ae631c0ab3fbc4 Mon Sep 17 00:00:00 2001 From: Chris Penner Date: Sat, 10 Oct 2020 21:34:23 -0600 Subject: [PATCH 2098/2682] ChrisPenner: Add lens-csv & lens-regex-pcre --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 978beece..12a3aafb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -89,7 +89,8 @@ packages: - ENIG "Chris Penner @ChrisPenner": - - lens-regex-pcre < 0 # via pcre-heavy + - lens-regex-pcre + - lens-csv "Emily Pillmore @topos": - base16 From 875069c24072b2739ffe5c8c2ae1d58fbe538d75 Mon Sep 17 00:00:00 2001 From: Kadzuya OKAMOTO Date: Sun, 11 Oct 2020 18:20:27 +0900 Subject: [PATCH 2099/2682] Re-enable heterocephalus --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 978beece..1c2c76c9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3392,7 +3392,7 @@ packages: "Kadzuya Okamoto @arowM": - type-level-kv-list - - heterocephalus < 0 # #5434/closed + - heterocephalus - bookkeeping < 0 # GHC 8.4 BuildFailureException Process exited with ExitFailure 1: ./Setup build - ochintin-daicho < 0 # GHC 8.4 DependencyFailed (PackageName "bookkeeping") - transaction From 21b3171b6c6f0741026d105d1975c37e58fc7bec Mon Sep 17 00:00:00 2001 From: Liang-Ting Chen Date: Tue, 13 Oct 2020 10:29:36 +0800 Subject: [PATCH 2100/2682] Add geniplate-mirror Add myself, one of the maintainer on the Hackage, as the maintainer of geniplate-mirror on Stackage. --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 095a0b44..df5619d0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -9,6 +9,9 @@ cabal-format-version: "3.0" # Constraints for brand new builds packages: + "Liang-Ting Chen @L-TChen": + - geniplate-mirror + "Andreas Abel @andreasabel": - BNFC From 86350c0970da765fa35305572893dedaaa143211 Mon Sep 17 00:00:00 2001 From: Andreas Abel Date: Tue, 13 Oct 2020 19:43:47 +0200 Subject: [PATCH 2101/2682] Add STMonadTrans --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 095a0b44..b23291be 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -11,6 +11,7 @@ cabal-format-version: "3.0" packages: "Andreas Abel @andreasabel": - BNFC + - STMonadTrans "Diogo Biazus ": - hasql-notifications From 02a9991a0a26379b96b11035d4bd393c25edcc1a Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Thu, 15 Oct 2020 20:03:34 +0100 Subject: [PATCH 2102/2682] add sweet-egison, backtracking --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 095a0b44..5167e8db 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4292,8 +4292,10 @@ packages: - morpheus-graphql-client "Satoshi Egi @egisatoshi": + - backtracking - egison - mini-egison + - sweet-egison - egison-pattern-src - egison-pattern-src-th-mode From f83a12ab4ebe3ad247a823e62d631d930b823b09 Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Thu, 15 Oct 2020 21:10:41 +0100 Subject: [PATCH 2103/2682] revert to egison-4.0.3 --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5167e8db..858714b9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4293,9 +4293,9 @@ packages: "Satoshi Egi @egisatoshi": - backtracking - - egison + - egison < 4.1.0 # https://github.com/egison/egison/issues/248 - mini-egison - - sweet-egison + # - sweet-egison - egison-pattern-src - egison-pattern-src-th-mode From 400baf01c60ad0bf3cfb140964d97d6b5130b850 Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Fri, 16 Oct 2020 07:24:23 +0100 Subject: [PATCH 2104/2682] remove egison restrictions --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 858714b9..5167e8db 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4293,9 +4293,9 @@ packages: "Satoshi Egi @egisatoshi": - backtracking - - egison < 4.1.0 # https://github.com/egison/egison/issues/248 + - egison - mini-egison - # - sweet-egison + - sweet-egison - egison-pattern-src - egison-pattern-src-th-mode From 8d1e718387d094272dd55c5bd25966f969203929 Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Fri, 16 Oct 2020 07:41:10 +0100 Subject: [PATCH 2105/2682] disable egison benchmarks --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5167e8db..30ccff6b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5871,6 +5871,7 @@ expected-benchmark-failures: - raaz # https://github.com/commercialhaskell/stackage/issues/4766 - thyme - xmlgen # https://github.com/skogsbaer/xmlgen/issues/6 + - egison # https://github.com/egison/egison/issues/249 # end of expected-benchmark-failures From 01fe18a9dafb76a004be163bfd286603183c1dbe Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Fri, 16 Oct 2020 07:50:08 +0100 Subject: [PATCH 2106/2682] disable egison haddocks --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 30ccff6b..721f9a99 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5910,6 +5910,9 @@ expected-haddock-failures: # https://github.com/commercialhaskell/stackage/issues/5681 - hw-json + + - egison + # end of expected-haddock-failures # For packages with haddock issues From a49303d932fd9d4659ed244280cceaaf3f37b9b9 Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Fri, 16 Oct 2020 08:13:47 +0100 Subject: [PATCH 2107/2682] disable egison benchmarks --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 721f9a99..4da2f48d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5866,12 +5866,12 @@ expected-benchmark-failures: # Compilation failures - cmark-gfm # https://github.com/kivikakk/cmark-gfm-hs/issues/5 - cryptohash # https://github.com/vincenthz/hs-cryptohash/pull/43 + - egison # https://github.com/egison/egison/issues/249 - http2 - lz4 # https://github.com/fpco/stackage/issues/3510 - raaz # https://github.com/commercialhaskell/stackage/issues/4766 - thyme - xmlgen # https://github.com/skogsbaer/xmlgen/issues/6 - - egison # https://github.com/egison/egison/issues/249 # end of expected-benchmark-failures From 3393a7685a5ec8aca318bdd59c3bb148539fd1c6 Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Fri, 16 Oct 2020 08:19:59 +0100 Subject: [PATCH 2108/2682] skip agison tests --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4da2f48d..5ab3ffce 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5547,6 +5547,7 @@ skipped-tests: # TODO - rpmbuild-order + - egison # end of skipped-tests From 037b07b62758f371ccd7e496522bed63fe41c28e Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Fri, 16 Oct 2020 08:33:34 +0100 Subject: [PATCH 2109/2682] add egison issues xrefs --- build-constraints.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5ab3ffce..8e34c458 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5545,9 +5545,11 @@ skipped-tests: - algebraic-graphs # https://github.com/commercialhaskell/stackage/issues/4670 - bugsnag-haskell # https://github.com/commercialhaskell/stackage/issues/4759 + # executable not found + - egison # https://github.com/egison/egison/issues/250 + # TODO - rpmbuild-order - - egison # end of skipped-tests @@ -5912,6 +5914,7 @@ expected-haddock-failures: # https://github.com/commercialhaskell/stackage/issues/5681 - hw-json + # https://github.com/egison/egison/issues/251 - egison # end of expected-haddock-failures From 5787decc9e0fff8403b1715fe93ac7736d75bd08 Mon Sep 17 00:00:00 2001 From: Aditya Manthramurthy Date: Thu, 8 Oct 2020 12:38:16 -0700 Subject: [PATCH 2110/2682] Add webby --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8e34c458..74009653 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3503,6 +3503,7 @@ packages: "Aditya Manthramurthy @donatello": - minio-hs < 0 # ghc 8.10 via protolude + - webby "ncaq @ncaq": - debug-trace-var From 848af5bb3671e2625c18a334003be2ffba2c469d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20Rze=C5=BAnicki?= Date: Sat, 17 Oct 2020 01:06:40 +0200 Subject: [PATCH 2111/2682] Bump up libjwt version This will allow `libjwt-typed` into Stackage. See https://github.com/commercialhaskell/stackage/pull/5648 --- debian-bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index 39d630ce..e933760c 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -320,7 +320,7 @@ Z3_VER=4.8.8 && ln -s /usr/local/z3-${Z3_VER}-x64-ubuntu-16.04/bin/z3 /usr/bin/z3 ) -LIBJWT_VER=1.12.0 +LIBJWT_VER=1.12.1 ( pushd /tmp \ && wget https://github.com/benmcollins/libjwt/archive/v${LIBJWT_VER}.zip \ From 904572d2c377f0b557757fdb60b3ba17ad16c4c1 Mon Sep 17 00:00:00 2001 From: Aditya Manthramurthy Date: Fri, 16 Oct 2020 21:24:57 -0700 Subject: [PATCH 2112/2682] Add minio-hs back --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8e34c458..10663509 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3502,7 +3502,7 @@ packages: - sdl2-gfx "Aditya Manthramurthy @donatello": - - minio-hs < 0 # ghc 8.10 via protolude + - minio-hs "ncaq @ncaq": - debug-trace-var From c6ab0483ca0ab924e624f33a739d08f98f712491 Mon Sep 17 00:00:00 2001 From: John Ky Date: Sat, 17 Oct 2020 21:10:30 +1100 Subject: [PATCH 2113/2682] Re-enable arbor-postgres --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8e34c458..f001db1a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3015,7 +3015,7 @@ packages: - antiope-sns < 0 # ghc 8.10 via amazonka - antiope-sqs < 0 # ghc 8.10 via amazonka - arbor-lru-cache - - arbor-postgres < 0 # generic-lens 2.0.0.0 + - arbor-postgres - asif - avro - bits-extra From 026b8c05dbd33ed5e589bf9ca47b2de8ee11988b Mon Sep 17 00:00:00 2001 From: Daniel Gorin Date: Sat, 17 Oct 2020 14:45:15 +0100 Subject: [PATCH 2114/2682] Re-enable barbies Latest versions build in ghc 8.4 to 8.10 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8e34c458..f5799517 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4127,7 +4127,7 @@ packages: - seqid-streams "Daniel Gorin @jcpetruzza": - - barbies < 0 + - barbies "Eduard Sergeev @EduardSergeev": - monad-memo From 5128a18e55f029cf3b5f14d81f4e076ffd6b551a Mon Sep 17 00:00:00 2001 From: Daniel Gorin Date: Sat, 17 Oct 2020 14:57:51 +0100 Subject: [PATCH 2115/2682] Add data-hash Dependency of agda --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f5799517..97050c11 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4128,6 +4128,7 @@ packages: "Daniel Gorin @jcpetruzza": - barbies + - data-hash "Eduard Sergeev @EduardSergeev": - monad-memo From 513a7bb1adfe7b40507c998f1f299cdd771da9db Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Sat, 17 Oct 2020 20:02:53 +0100 Subject: [PATCH 2116/2682] constrain against hslua-1.3.0 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8e34c458..0b81c69f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3581,7 +3581,7 @@ packages: - algebraic-graphs "Albert Krewinkel @tarleb": - - hslua + - hslua < 1.3.0 # https://github.com/commercialhaskell/stackage/issues/5700 - hslua-aeson - hslua-module-doclayout - hslua-module-system From 7aef5af4cd04d57d0d07f188b19fd3140b05930e Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 19 Oct 2020 15:51:15 +0800 Subject: [PATCH 2117/2682] Readme: faq entry about why lts is on older ghc [skip ci] --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index 66cf4e26..cc14cf07 100644 --- a/README.md +++ b/README.md @@ -88,6 +88,18 @@ The following describes at a high level the series of steps for processing Frequently Asked Questions -------------------------- +__Why is Stackage LTS still on an older version of GHC?__ + +Typically it takes some months from a new major ghc release before +the Haskell ecosystem supports it fully enough that we can push it +to a new stable Stackage major version release. The lag for minor ghc releases +should be less but it still requires extra work and there is usually +some delay, but this also allows for sufficient community testing before updating. + +eg Currently there is a 8.10.2 issue with linking on Windows. +Once 8.10.3 is out and we are satisfied it is working well in Nightly +we will plan to move to release LTS 17 based on ghc-8.10. + __Why does Stackage have an older version of a package than Hackage?__ There are a number of answers to this question: From add567ce74cecb0b84e7a7699d4c73ec6dd34ccd Mon Sep 17 00:00:00 2001 From: Patrick Bahr Date: Mon, 19 Oct 2020 16:12:37 +0200 Subject: [PATCH 2118/2682] add equivalence --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index edf26588..9d041cfa 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -71,6 +71,9 @@ packages: - srcloc - symbol + "Patrick Bahr ": + - equivalence + "Rob Stewart @robstewart57": - gitlab-haskell From 8c971c1cceff705f367ec896c46e95d405ee896c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20Rze=C5=BAnicki?= Date: Tue, 20 Oct 2020 16:40:24 +0200 Subject: [PATCH 2119/2682] Reinstate libjwt-typed There was a problem with C library dependency that supposedly has been fixed in #5696 . Tests that were failing (see #5648 ) should now be fixed --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index edf26588..2bba6941 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -49,7 +49,7 @@ packages: "Marcin Rzeźnicki @marcin-rzeznicki": - hspec-tables - stackcollapse-ghc - - libjwt-typed < 0 # https://github.com/commercialhaskell/stackage/pull/5648#issuecomment-694239692 + - libjwt-typed "Mauricio Fierro @mauriciofierrom": - dialogflow-fulfillment From 22831143b4875b6c6ffb47ab1dfe76d35a9171f6 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 22 Oct 2020 14:09:28 -0400 Subject: [PATCH 2120/2682] add constraint 'versions < 4' per #5705 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index edf26588..e7b6216d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5045,6 +5045,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5686 - formatting < 7 + # https://github.com/commercialhaskell/stackage/issues/5705 + - versions < 4 + # end of packages # Package flags are applied to individual packages, and override the values of From d9af1ce8d85d4757d223cc5a9b219ba514f1f62d Mon Sep 17 00:00:00 2001 From: Chris Penner Date: Sat, 24 Oct 2020 14:32:08 -0600 Subject: [PATCH 2121/2682] Add Selections --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 05035a6f..3f723d93 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -98,6 +98,7 @@ packages: "Chris Penner @ChrisPenner": - lens-regex-pcre - lens-csv + - selections "Emily Pillmore @topos": - base16 From 0504baba4cf9738a3148cdae2d31da900a11711b Mon Sep 17 00:00:00 2001 From: Chris Penner Date: Tue, 20 Oct 2020 20:46:26 -0600 Subject: [PATCH 2122/2682] ChrisPenner: Add eve --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index edf26588..1593b069 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -93,6 +93,7 @@ packages: - ENIG "Chris Penner @ChrisPenner": + - eve - lens-regex-pcre - lens-csv From b10c28bd3cc28beddb55f4ef1592b96816ed786b Mon Sep 17 00:00:00 2001 From: Chris Penner Date: Sat, 24 Oct 2020 14:33:07 -0600 Subject: [PATCH 2123/2682] Add unipatterns --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 05035a6f..47fcfcd8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -98,6 +98,7 @@ packages: "Chris Penner @ChrisPenner": - lens-regex-pcre - lens-csv + - unipatterns "Emily Pillmore @topos": - base16 From f25b1c243114e83e7ef0f527e239e2f12bb8f807 Mon Sep 17 00:00:00 2001 From: Matt Parsons Date: Mon, 26 Oct 2020 08:09:01 -0600 Subject: [PATCH 2124/2682] Add exception-via --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index e0a95f1e..95d19a15 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2392,6 +2392,7 @@ packages: - persistent-qq - persistent-pagination < 0 # aeson 1.5 - hspec-hedgehog + - exception-via "Matthew Pickering @mpickering": - refact From 58ca332da5a1e4b006eb08f202382e9695fbe9e4 Mon Sep 17 00:00:00 2001 From: Matt Parsons Date: Mon, 26 Oct 2020 08:46:59 -0600 Subject: [PATCH 2125/2682] Unblock smtp-mail, esqueleto, liboath-hs --- build-constraints.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e0a95f1e..d8be52b3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2383,14 +2383,14 @@ packages: - monad-metrics - prairie # - ekg-cloudwatch # http-conduit 2.3 via amazonka - - smtp-mail < 0 # https://github.com/jhickner/smtp-mail/issues/24#issuecomment-499601949 - - liboath-hs < 0 # via inline-c-0.8.0.1 + - smtp-mail + - liboath-hs - servant-quickcheck < 0 - - esqueleto < 0 # aeson 1.5 + - esqueleto - hedgehog-fakedata - - persistent-typed-db < 0 # aeson 1.5 + - persistent-typed-db < 0 # pending esqueleto - persistent-qq - - persistent-pagination < 0 # aeson 1.5 + - persistent-pagination < 0 # pending esqueleto - hspec-hedgehog "Matthew Pickering @mpickering": From 8ab3e30c965743904c112c23c3d62dcd4293b25c Mon Sep 17 00:00:00 2001 From: "k.vanberendonck" Date: Tue, 27 Oct 2020 20:23:32 +1100 Subject: [PATCH 2126/2682] Rebrand ONROCK Engineering to Cuedo ONROCK Engineering has rebranded as Cuedo Business Solutions (). This pull request just updates this on Stackage. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2613eff9..cc5ed750 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3540,7 +3540,7 @@ packages: - rot13 - dvorak - "OnRock Engineering ": + "Cuedo Business Solutions @cuedo": - github-webhooks "Pavel Yakovlev @zmactep": From 33966c60b150d22b5c3fbe34d55c58263daa5c58 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 28 Oct 2020 01:23:01 +0800 Subject: [PATCH 2127/2682] enable HsOpenSSL-x509-system --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b1ef8676..2809748a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -11,7 +11,7 @@ cabal-format-version: "3.0" packages: "Liang-Ting Chen @L-TChen": - geniplate-mirror - + "Andreas Abel @andreasabel": - BNFC - STMonadTrans @@ -572,7 +572,7 @@ packages: "Winter Han @winterland1989": - if - tcp-streams < 0 # via test-framework - - tcp-streams-openssl < 0 # via HsOpenSSL-x509-system + - tcp-streams-openssl < 0 # via tcp-streams & network - wire-streams < 0 # via io-streams - binary-parsers - binary-ieee754 @@ -2022,7 +2022,7 @@ packages: - gpolyline # @fegu "Marios Titas @redneb": - - HsOpenSSL-x509-system < 0 # via HsOpenSSL + - HsOpenSSL-x509-system - adler32 - btrfs - disk-free-space From c7da4b403779d0ad519591197074cb79e6da0a56 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 28 Oct 2020 17:01:10 +0800 Subject: [PATCH 2128/2682] drop versions bounds (#5705) --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2809748a..c3c7a827 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5052,9 +5052,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5686 - formatting < 7 - # https://github.com/commercialhaskell/stackage/issues/5705 - - versions < 4 - # end of packages # Package flags are applied to individual packages, and override the values of From ddd22cef2f4e9b5624247748c39c422ee96690b4 Mon Sep 17 00:00:00 2001 From: Ryan Scott Date: Wed, 28 Oct 2020 06:39:51 -0400 Subject: [PATCH 2129/2682] Remove upper bounds on th-orphans, wai-middleware-static The libraries that were preventing the latest versions of `th-orphans` and `wai-middleware-static` from being used in Stackage have since upgraded. Fixes #5669. Fixes #5672. --- build-constraints.yaml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c3c7a827..8900a289 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5020,9 +5020,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5633 - language-c < 0.9 - # https://github.com/commercialhaskell/stackage/issues/5669 - - th-orphans < 0.13.11 - # https://github.com/commercialhaskell/stackage/issues/5668 - th-abstraction < 0.4 - bifunctors < 5.5.8 @@ -5038,9 +5035,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5666 - generic-deriving < 1.14 - # https://github.com/commercialhaskell/stackage/issues/5672 - - wai-middleware-static < 0.9.0 - # https://github.com/commercialhaskell/stackage/issues/5673 - text-show < 3.9 From 2d2d08477d79ea4584aaf25674a7d556204f4a43 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 29 Oct 2020 13:02:50 +0800 Subject: [PATCH 2130/2682] wai-saml2 missing test file (mbg/wai-saml2#4) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index c3c7a827..a5a0ba86 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5715,6 +5715,7 @@ expected-test-failures: - doctest-discover # 0.1.0.9 https://github.com/karun012/doctest-discover/issues/22 - doctest - reanimate-svg # https://github.com/commercialhaskell/stackage/issues/5688 + - wai-saml2 # https://github.com/mbg/wai-saml2/issues/4 # Assertion failures, these can be real bugs or just limitations # in the test cases. From 64aea85458da50c3e1f0b4dde36ce96f05202538 Mon Sep 17 00:00:00 2001 From: Andreas Abel Date: Thu, 29 Oct 2020 23:51:58 +0100 Subject: [PATCH 2131/2682] Add Agda --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1d38fa5b..06ab5fbe 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -15,6 +15,7 @@ packages: "Andreas Abel @andreasabel": - BNFC - STMonadTrans + - Agda "Diogo Biazus ": - hasql-notifications From 969dc5a75df1822fb7dcf02f08a1229451d72edc Mon Sep 17 00:00:00 2001 From: Clint Adams Date: Sat, 31 Oct 2020 19:43:41 -0400 Subject: [PATCH 2132/2682] Add monad-chronicle (split out of grandfathered dependency these) --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 06ab5fbe..05449c0b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1276,6 +1276,8 @@ packages: - opensource - debian - cabal-debian + # dependencies: + - monad-chronicle "Piyush P Kurur @piyush-kurur": - raaz < 0 # via base-4.13.0.0 From 52a41d34958f5dd0bfa439c62e6ddea50a75b031 Mon Sep 17 00:00:00 2001 From: Andreas Abel Date: Sun, 1 Nov 2020 01:02:51 +0100 Subject: [PATCH 2133/2682] Add agda2lagda (new package) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 06ab5fbe..43b35882 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -16,6 +16,7 @@ packages: - BNFC - STMonadTrans - Agda + - agda2lagda "Diogo Biazus ": - hasql-notifications From db12946aae36b8356c805afaf0b4b01bdece602b Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sat, 31 Oct 2020 17:58:24 +0800 Subject: [PATCH 2134/2682] drop an extra newline --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 227e2d26..36d27b19 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5867,7 +5867,6 @@ expected-test-failures: # https://github.com/cdornan/fmt/issues/30 - fmt - # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 4c055ac8c75bc35aa52e979aa2d7963c29fd0574 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 3 Nov 2020 01:20:32 +0800 Subject: [PATCH 2135/2682] polysemy < 1.4.0.0 (#5718) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 36d27b19..77c3d0f4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5050,6 +5050,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5686 - formatting < 7 + # https://github.com/commercialhaskell/stackage/issues/5718 + - polysemy < 1.4.0.0 + # end of packages # Package flags are applied to individual packages, and override the values of From da6789d40ae8af2df3b01d7bbbf0c29ed973ac80 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 3 Nov 2020 01:23:26 +0800 Subject: [PATCH 2136/2682] binary-instances < 1.0.1 (#5566) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 77c3d0f4..1224ea09 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4962,6 +4962,7 @@ packages: - QuickCheck < 2.14 - quickcheck-instances < 0.3.24 - splitmix < 0.1 + - binary-instances < 1.0.1 # https://github.com/commercialhaskell/stackage/issues/5349 - typed-uuid < 0.1.0.0 From 07174d07c28a215521bf943af89a1bac8502fc39 Mon Sep 17 00:00:00 2001 From: Chris Martin Date: Tue, 3 Nov 2020 13:51:35 -0700 Subject: [PATCH 2137/2682] Add hex-text --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1224ea09..19980a97 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3816,6 +3816,7 @@ packages: - aws-cloudfront-signed-cookies - data-ascii - d10 + - hex-text - stripe-concepts - stripe-signature < 0 # criterion 0.27 - stripe-scotty < 0 # via scotty From 7c45a77733b0e25dd8c67927c4fe4504ed03ad32 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Wed, 4 Nov 2020 18:26:28 +0000 Subject: [PATCH 2138/2682] Restricts scheduler < 1.5.0 (#5720) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1224ea09..52af3961 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3449,7 +3449,7 @@ packages: - massiv - massiv-io - massiv-test - - scheduler + - scheduler < 1.5.0 # https://github.com/commercialhaskell/stackage/issues/5720 - Color - safe-decimal - flush-queue From 271e526c9f3fb49dcaff862fb8cd451363bbb6e3 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Wed, 4 Nov 2020 18:42:27 +0000 Subject: [PATCH 2139/2682] Restricts massiv < 0.5.5 (#5720) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 52af3961..ac75fe84 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3446,7 +3446,7 @@ packages: "Alexey Kuleshevich @lehins": - wai-middleware-auth # - hip # lens 4.16 via diagrams/chart - - massiv + - massiv < 0.5.5 # https://github.com/commercialhaskell/stackage/issues/5720 - massiv-io - massiv-test - scheduler < 1.5.0 # https://github.com/commercialhaskell/stackage/issues/5720 From d24db58c9d89965b52ac82209d7d37058d02894e Mon Sep 17 00:00:00 2001 From: 7nalchev Date: Thu, 5 Nov 2020 20:51:04 +0100 Subject: [PATCH 2140/2682] add morpheus graphql subscriptions --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ac75fe84..7b01d104 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4307,6 +4307,7 @@ packages: - morpheus-graphql - morpheus-graphql-core - morpheus-graphql-client + - morpheus-graphql-subscriptions "Satoshi Egi @egisatoshi": - backtracking From 90b6a17c1a1217fe09343828cefabd932d0c8dcb Mon Sep 17 00:00:00 2001 From: Timo von Holtz Date: Thu, 5 Nov 2020 23:05:15 +0100 Subject: [PATCH 2141/2682] Readd protocol-buffers --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ac75fe84..da4d12b9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2270,14 +2270,14 @@ packages: - friday-juicypixels < 0 - hbeanstalk < 0 # sClose not in scope - hedis - - hprotoc < 0 # compilation failure + - hprotoc - hsyslog-udp < 0 - iso3166-country-codes - iso639 - monoidal-containers < 0 # via base-4.13.0.0 - murmur-hash - - protocol-buffers < 0 # MonadFail - - protocol-buffers-descriptor < 0 # via protocol-buffers + - protocol-buffers + - protocol-buffers-descriptor - regex-pcre - string-class - string-combinators From 22252eef307b031d50fb53962e837f365ad9535d Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Fri, 6 Nov 2020 05:27:53 +0000 Subject: [PATCH 2142/2682] Restricts persistent (& co) --- build-constraints.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7b01d104..e37a1e55 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -650,11 +650,11 @@ packages: - mime-mail-ses - mime-types - network-conduit-tls - - persistent - - persistent-mysql - - persistent-postgresql - - persistent-sqlite - - persistent-template < 2.8.3 # #5347/closed + - persistent < 2.11 # https://github.com/commercialhaskell/stackage/issues/5724 + - persistent-mysql < 2.11 # via persistent-2.11 + - persistent-postgresql < 2.11 # via persistent-2.11 + - persistent-sqlite > 2.11 # via persistent-2.11 + - persistent-template < 2.8.3 # via persistent-2.11 (#5347/closed) - persistent-test < 0 # https://github.com/commercialhaskell/stackage/issues/5641 # - stackage-curator # http-conduit 2.3 via amazonka - store From bca7be090e67617e8093d3abd9ed410e1c96bf4a Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Fri, 6 Nov 2020 05:29:56 +0000 Subject: [PATCH 2143/2682] Fixes persistent bounds restriction --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e37a1e55..0fe3442a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -651,9 +651,9 @@ packages: - mime-types - network-conduit-tls - persistent < 2.11 # https://github.com/commercialhaskell/stackage/issues/5724 - - persistent-mysql < 2.11 # via persistent-2.11 + - persistent-mysql < 2.10 # via persistent-2.11 - persistent-postgresql < 2.11 # via persistent-2.11 - - persistent-sqlite > 2.11 # via persistent-2.11 + - persistent-sqlite < 2.11 # via persistent-2.11 - persistent-template < 2.8.3 # via persistent-2.11 (#5347/closed) - persistent-test < 0 # https://github.com/commercialhaskell/stackage/issues/5641 # - stackage-curator # http-conduit 2.3 via amazonka From 5913d63b1fbec93dc007588c2ba91e6e77612a45 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Fri, 6 Nov 2020 05:34:03 +0000 Subject: [PATCH 2144/2682] Fixes persistent-mysql bounds --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0fe3442a..759cb597 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -651,7 +651,7 @@ packages: - mime-types - network-conduit-tls - persistent < 2.11 # https://github.com/commercialhaskell/stackage/issues/5724 - - persistent-mysql < 2.10 # via persistent-2.11 + - persistent-mysql < 2.10.3 # via persistent-2.11 - persistent-postgresql < 2.11 # via persistent-2.11 - persistent-sqlite < 2.11 # via persistent-2.11 - persistent-template < 2.8.3 # via persistent-2.11 (#5347/closed) From 7ec816ad439bd35e13c55aa78cc827d0b100c5f7 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Fri, 6 Nov 2020 05:38:41 +0000 Subject: [PATCH 2145/2682] Re-enables scheduler & massive (#5720) --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 759cb597..b7ec8eed 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3446,10 +3446,10 @@ packages: "Alexey Kuleshevich @lehins": - wai-middleware-auth # - hip # lens 4.16 via diagrams/chart - - massiv < 0.5.5 # https://github.com/commercialhaskell/stackage/issues/5720 + - massiv - massiv-io - massiv-test - - scheduler < 1.5.0 # https://github.com/commercialhaskell/stackage/issues/5720 + - scheduler - Color - safe-decimal - flush-queue From 2f7ddb13464197a1bb5718191d9ba094a186f802 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 6 Nov 2020 15:58:00 +0800 Subject: [PATCH 2146/2682] allow megaparsec 9 (#5632) and dhall >= 1.34 (#5580) disable ghc-clippy-plugin (ArturGajowy/ghc-clippy-plugin#3) until fixed --- build-constraints.yaml | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b7ec8eed..9540501b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -31,7 +31,7 @@ packages: - safe-tensor "Artur Gajowy @ArturGajowy": - - ghc-clippy-plugin + - ghc-clippy-plugin < 0 # dhall (and text-1.3) "Daniel Rolls @danielrolls": - byte-count-reader < 0 # ghc 8.10 @@ -4989,14 +4989,6 @@ packages: # blocked by 5535 - recursion-schemes < 5.2 - stackcollapse-ghc < 0.0.1.3 - - egison-pattern-src < 0.2.1.1 - - # https://github.com/commercialhaskell/stackage/issues/5580 - - dhall < 1.34.0 - - dhall-bash < 1.0.32 - # - dhall-nix < 1.1.16 - - dhall-json < 1.7.1 - - dhall-lsp-server < 1.0.9 # https://github.com/commercialhaskell/stackage/issues/5592 - ansi-terminal < 0.11 @@ -5018,11 +5010,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5623 - http-api-data < 0.4.2 - # https://github.com/commercialhaskell/stackage/issues/5632 - - megaparsec < 9.0.0 - - hspec-megaparsec < 2.2.0 - - megaparsec-tests < 9.0.0 - # https://github.com/commercialhaskell/stackage/issues/5633 - language-c < 0.9 From 48022226e979eaf87d9b89b2c918f673f44f4527 Mon Sep 17 00:00:00 2001 From: Matt Parsons Date: Fri, 6 Nov 2020 08:59:07 -0700 Subject: [PATCH 2147/2682] Unblock persistent-typed-db and persistent-pagination --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b7ec8eed..30b7fbe2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -655,7 +655,7 @@ packages: - persistent-postgresql < 2.11 # via persistent-2.11 - persistent-sqlite < 2.11 # via persistent-2.11 - persistent-template < 2.8.3 # via persistent-2.11 (#5347/closed) - - persistent-test < 0 # https://github.com/commercialhaskell/stackage/issues/5641 + - persistent-test # - stackage-curator # http-conduit 2.3 via amazonka - store - wai-extra @@ -2392,9 +2392,9 @@ packages: - servant-quickcheck < 0 - esqueleto - hedgehog-fakedata - - persistent-typed-db < 0 # pending esqueleto + - persistent-typed-db - persistent-qq - - persistent-pagination < 0 # pending esqueleto + - persistent-pagination - hspec-hedgehog - exception-via From 04718f725372f43c2528851f2e90e9c9acdee5d7 Mon Sep 17 00:00:00 2001 From: Matt Parsons Date: Fri, 6 Nov 2020 09:37:17 -0700 Subject: [PATCH 2148/2682] Modify persistent-test blocker message I've updated `persistent-test` on Hackage to have appropriate version bounds, so it should build when `persistent-2.11` is on Stackage. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b7ec8eed..b5546d96 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -655,7 +655,7 @@ packages: - persistent-postgresql < 2.11 # via persistent-2.11 - persistent-sqlite < 2.11 # via persistent-2.11 - persistent-template < 2.8.3 # via persistent-2.11 (#5347/closed) - - persistent-test < 0 # https://github.com/commercialhaskell/stackage/issues/5641 + - persistent-test < 0 # via persistent-2.11 # - stackage-curator # http-conduit 2.3 via amazonka - store - wai-extra From dfc3eb32c755db21e06f1aa5d5f2f74686be834d Mon Sep 17 00:00:00 2001 From: Matt Parsons Date: Fri, 6 Nov 2020 10:50:43 -0700 Subject: [PATCH 2149/2682] persistent-test < 0 # via persistent-2.11 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 30b7fbe2..cd52b20b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -655,7 +655,7 @@ packages: - persistent-postgresql < 2.11 # via persistent-2.11 - persistent-sqlite < 2.11 # via persistent-2.11 - persistent-template < 2.8.3 # via persistent-2.11 (#5347/closed) - - persistent-test + - persistent-test < 0 # via persistent-2.11 # - stackage-curator # http-conduit 2.3 via amazonka - store - wai-extra From 8f0952ad1d8e03d9a15fdb452353ac238258d92d Mon Sep 17 00:00:00 2001 From: parsonsmatt Date: Fri, 6 Nov 2020 10:59:24 -0700 Subject: [PATCH 2150/2682] revert that change --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index cd52b20b..4f55a55e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -655,7 +655,7 @@ packages: - persistent-postgresql < 2.11 # via persistent-2.11 - persistent-sqlite < 2.11 # via persistent-2.11 - persistent-template < 2.8.3 # via persistent-2.11 (#5347/closed) - - persistent-test < 0 # via persistent-2.11 + - persistent-test < 0 # https://github.com/commercialhaskell/stackage/issues/5641 # - stackage-curator # http-conduit 2.3 via amazonka - store - wai-extra From 1e03fb0b81f4e42360cada485ca3b5301a835b23 Mon Sep 17 00:00:00 2001 From: Maxim Koltsov Date: Thu, 5 Nov 2020 00:55:11 +0300 Subject: [PATCH 2151/2682] Reenable servant --- build-constraints.yaml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6e62abb6..337f7dc5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1556,24 +1556,24 @@ packages: "Haskell Servant ": - servant - - servant-blaze < 0 # ghc 8.10 via servant + - servant-blaze - servant-cassava < 0 # ghc 8.10 via servant - - servant-client < 0 # ghc 8.10 via servant - - servant-client-core < 0 # ghc 8.10 via servant - - servant-conduit < 0 # ghc 8.10 via servant & unliftio-core - - servant-docs < 0 # ghc 8.10 via servant - - servant-foreign < 0 # ghc 8.10 via servant - - servant-http-streams < 0 # via servant + - servant-client + - servant-client-core + - servant-conduit + - servant-docs + - servant-foreign + - servant-http-streams - servant-js < 0 # ghc 8.10 via servant - servant-lucid < 0 # ghc 8.10 via servant - - servant-machines < 0 # ghc 8.10 via servant + - servant-machines - servant-mock < 0 # ghc 8.10 via servant - - servant-multipart < 0 # via servant - - servant-pipes < 0 # ghc 8.10 via servant - - servant-server < 0 # ghc 8.10 via servant - - servant-swagger < 0 # ghc 8.10 via servant & swagger2 - - servant-swagger-ui < 0 # ghc 8.10 via servant & swagger2 - - servant-swagger-ui-core < 0 # ghc 8.10 via servant & swagger2 + - servant-multipart + - servant-pipes + - servant-server + - servant-swagger + - servant-swagger-ui + - servant-swagger-ui-core "Optics ": - indexed-profunctors From 4eafc4b46459c688c9e79e6e634d4161bdf3ea99 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Fri, 6 Nov 2020 23:11:49 +0000 Subject: [PATCH 2152/2682] Drops type-of-html-static (#5728) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6e62abb6..c9661c77 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -307,7 +307,7 @@ packages: "Florian Knupfer @knupfer": - type-of-html - - type-of-html-static + - type-of-html-static < 0 # https://github.com/commercialhaskell/stackage/issues/5728 - chronos-bench "Mikolaj Konarski @Mikolaj": From 98217b65e8fe8e34765f2e28e03640a84615679c Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Fri, 6 Nov 2020 23:19:08 +0000 Subject: [PATCH 2153/2682] Disables hadolint-1.18.2 (#5729) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c9661c77..bba307a4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3753,7 +3753,7 @@ packages: - language-docker - docker-build-cacher < 0 # GHC 8.4 via turtle - mysql-haskell-nem < 0 # via io-streams - - hadolint + - hadolint < 0 # via megaparsec-9.0.1 https://github.com/commercialhaskell/stackage/issues/5729 "Phil Ruffwind @Rufflewind": - blas-hs < 0 # MonadFail From 124ae239bb465352ae46ed42f4b9cce612be58b7 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Fri, 6 Nov 2020 23:23:13 +0000 Subject: [PATCH 2154/2682] Lifts recursion-schemes restriction (#5540) --- build-constraints.yaml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index bba307a4..ae4f6c32 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4985,11 +4985,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5537 - tasty-expected-failure < 0.12 - # https://github.com/commercialhaskell/stackage/issues/5540 - # blocked by 5535 - - recursion-schemes < 5.2 - - stackcollapse-ghc < 0.0.1.3 - # https://github.com/commercialhaskell/stackage/issues/5592 - ansi-terminal < 0.11 From 5c2b7b9e734db709025cc5c8f1b1bd1089b198de Mon Sep 17 00:00:00 2001 From: Matt Parsons Date: Fri, 6 Nov 2020 16:23:34 -0700 Subject: [PATCH 2155/2682] Add record-wrangler --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ae4f6c32..a4a6fc28 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2397,6 +2397,7 @@ packages: - persistent-pagination - hspec-hedgehog - exception-via + - record-wrangler "Matthew Pickering @mpickering": - refact From 433564c78a0e6634b6f023fe1c82c8b56f67554e Mon Sep 17 00:00:00 2001 From: Matt Parsons Date: Fri, 6 Nov 2020 16:36:52 -0700 Subject: [PATCH 2156/2682] Add persistent-documentation --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ae4f6c32..a09091f4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2392,6 +2392,7 @@ packages: - servant-quickcheck < 0 - esqueleto - hedgehog-fakedata + - persistent-documentation - persistent-typed-db - persistent-qq - persistent-pagination From 4e770012ad12a381dcf8a3216d60a672aea54d59 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sat, 7 Nov 2020 00:41:03 +0000 Subject: [PATCH 2157/2682] Unrestricts th-abstraction (#5668) --- build-constraints.yaml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ae4f6c32..8d0ccdfa 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5009,13 +5009,12 @@ packages: - language-c < 0.9 # https://github.com/commercialhaskell/stackage/issues/5668 - - th-abstraction < 0.4 - - bifunctors < 5.5.8 - - bound < 2.0.2 - - deriving-compat < 0.5.10 - - free < 5.1.4 - - invariant < 0.5.4 - - structs < 0.1.4 + # - bifunctors < 5.5.8 + # - bound < 2.0.2 + # - deriving-compat < 0.5.10 + # - free < 5.1.4 + # - invariant < 0.5.4 + # - structs < 0.1.4 # https://github.com/commercialhaskell/stackage/issues/5667 - profunctors < 5.6 From ab9285d65e38d7b2b73c534f7a4e23529279b5ee Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sat, 7 Nov 2020 00:47:04 +0000 Subject: [PATCH 2158/2682] Unrestricts polysemy (#5718) Also restricts co-log-polysemy --- build-constraints.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8d0ccdfa..53e563fd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3712,7 +3712,7 @@ packages: "Kowainik @chshersh @vrom911": - co-log-core - co-log - - co-log-polysemy + - co-log-polysemy < 0 - colourista - first-class-patterns - ilist @@ -5033,9 +5033,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5686 - formatting < 7 - # https://github.com/commercialhaskell/stackage/issues/5718 - - polysemy < 1.4.0.0 - # end of packages # Package flags are applied to individual packages, and override the values of From 1f75f6b187ba92decb92210808e44f2fd3ed4e30 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sat, 7 Nov 2020 00:48:01 +0000 Subject: [PATCH 2159/2682] Disables clash-prelude (#5668) --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 53e563fd..0ee1cb9b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2079,9 +2079,9 @@ packages: - ghc-typelits-extra - ghc-typelits-knownnat - ghc-typelits-natnormalise - - clash-prelude - - clash-lib - - clash-ghc + - clash-prelude < 0 # via th-abstraction-0.4 https://github.com/commercialhaskell/stackage/issues/5668 + - clash-lib < 0 < # via clash-prelude + - clash-ghc < 0 < # via clash-prelude "Athan Clark @athanclark": - aeson-attoparsec From edc2ce044f632e2981dc31974630006966c00179 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sat, 7 Nov 2020 00:50:08 +0000 Subject: [PATCH 2160/2682] Fixes typo --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0ee1cb9b..bd16abc2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2080,8 +2080,8 @@ packages: - ghc-typelits-knownnat - ghc-typelits-natnormalise - clash-prelude < 0 # via th-abstraction-0.4 https://github.com/commercialhaskell/stackage/issues/5668 - - clash-lib < 0 < # via clash-prelude - - clash-ghc < 0 < # via clash-prelude + - clash-lib < 0 # via clash-prelude + - clash-ghc < 0 # via clash-prelude "Athan Clark @athanclark": - aeson-attoparsec From 475d37e44c7644d6550e5ab7f5d053eedb33d015 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sat, 7 Nov 2020 00:57:41 +0000 Subject: [PATCH 2161/2682] Disables polysemy (#5718) --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index bd16abc2..f7ded3e4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -139,7 +139,7 @@ packages: - type-errors "Matej Niznik @TheMatten": - - polysemy + - polysemy < 0 # via Cabal-3.2.0.0 https://github.com/commercialhaskell/stackage/issues/5718 - polysemy-plugin < 0 - polysemy-zoo < 0 # via hedis - loopbreaker < 0 # ghc 8.10 @@ -5433,7 +5433,6 @@ skipped-tests: - snappy # https://github.com/bos/snappy/issues/1 - cron # Could not deduce (SOP.All (SOP.All Arbitrary) xss) arising from a use of ‘SOP.hcpure’ - config-ini # https://github.com/aisamanra/config-ini/issues/22 - - polysemy-plugin # https://github.com/commercialhaskell/stackage/issues/4733 - dhall # https://github.com/dhall-lang/dhall-haskell/issues/1985 # Runtime issues From 8597486e2158256b3b98324aef7145fa5410a01d Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sun, 8 Nov 2020 22:15:04 +0000 Subject: [PATCH 2162/2682] Re-enables base16-bytestring (#5649) --- build-constraints.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0d53c067..cca9535f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -688,7 +688,7 @@ packages: - alex - async - - base16-bytestring < 1 # https://github.com/commercialhaskell/stackage/issues/5649 + - base16-bytestring - csv-conduit < 0 # ghc 8.10 - executable-hash < 0 # via cryptohash - executable-path @@ -4748,7 +4748,7 @@ packages: - relapse - relational-schemas - rerebase - - resolv + - resolv < 0 # via base16-bytestring https://github.com/commercialhaskell/stackage/issues/5649 - resource-pool - resourcet - rfc5051 @@ -5184,6 +5184,7 @@ skipped-tests: - simple-vec3 # ghc 8.10 - static-text # ghc 8.10 - monad-par # ghc 8.10 + - avers # via base16-bytestring https://github.com/commercialhaskell/stackage/issues/5649 # test-framework per ghc 8.8 - extensible-effects # via test-framework From 9aed4d1517d025ae7503a0467fcea7a2e830cd06 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sun, 8 Nov 2020 22:21:31 +0000 Subject: [PATCH 2163/2682] Revert "Add hex-text" --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index cca9535f..f3bf9a58 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3818,7 +3818,6 @@ packages: - aws-cloudfront-signed-cookies - data-ascii - d10 - - hex-text - stripe-concepts - stripe-signature < 0 # criterion 0.27 - stripe-scotty < 0 # via scotty From 3559d37f8862e2edad85cd03324a2311db812c0b Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sun, 8 Nov 2020 22:24:31 +0000 Subject: [PATCH 2164/2682] Restricts base16-bytestring < 1.0 (#5649) Blocked by casa-tyeps-0.0.1 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f3bf9a58..df07c2f2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -688,7 +688,7 @@ packages: - alex - async - - base16-bytestring + - base16-bytestring < 1 # https://github.com/commercialhaskell/stackage/issues/5649 - csv-conduit < 0 # ghc 8.10 - executable-hash < 0 # via cryptohash - executable-path From 3821874fed35b690855b83ccdff48eab1e1d8594 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Mon, 9 Nov 2020 11:31:21 -0500 Subject: [PATCH 2165/2682] Re-enables resolv (#5649) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index df07c2f2..f4b5a6b6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4747,7 +4747,7 @@ packages: - relapse - relational-schemas - rerebase - - resolv < 0 # via base16-bytestring https://github.com/commercialhaskell/stackage/issues/5649 + - resolv - resource-pool - resourcet - rfc5051 From af4a9c640618b9f1aa24943209d0d171a65af2a0 Mon Sep 17 00:00:00 2001 From: Joshua Chia Date: Tue, 10 Nov 2020 11:21:21 +0800 Subject: [PATCH 2166/2682] Reinstate clash-prelude --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f4b5a6b6..81f438e3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2079,9 +2079,9 @@ packages: - ghc-typelits-extra - ghc-typelits-knownnat - ghc-typelits-natnormalise - - clash-prelude < 0 # via th-abstraction-0.4 https://github.com/commercialhaskell/stackage/issues/5668 - - clash-lib < 0 # via clash-prelude - - clash-ghc < 0 # via clash-prelude + - clash-prelude + - clash-lib + - clash-ghc "Athan Clark @athanclark": - aeson-attoparsec From 8fd5504b50096459a419d2f200c89043b27cd671 Mon Sep 17 00:00:00 2001 From: Jonas Carpay Date: Tue, 10 Nov 2020 19:17:23 +0900 Subject: [PATCH 2167/2682] Add `aeson-commit` and `js-chart` --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 81f438e3..967b48c0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2536,6 +2536,8 @@ packages: - apecs - apecs-gloss - apecs-physics + - aeson-commit + - js-chart "Spencer Janssen @spencerjanssen": - Xauth From bfc8026e6e885d4b7bc09c0f0f3cf888a7ac1696 Mon Sep 17 00:00:00 2001 From: Ryan Scott Date: Tue, 10 Nov 2020 08:35:35 -0500 Subject: [PATCH 2168/2682] Allow text-show-3.9 Fixes #5673. --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 81f438e3..1192586e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5024,9 +5024,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5666 - generic-deriving < 1.14 - # https://github.com/commercialhaskell/stackage/issues/5673 - - text-show < 3.9 - # https://github.com/commercialhaskell/stackage/issues/5676 - haskell-lsp < 0.23 - haskell-lsp-types < 0.23 From 01067c1763f2f8d6ca1807d9fc976539dbcfeb65 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 11 Nov 2020 01:46:05 +0800 Subject: [PATCH 2169/2682] add dirichlet (needed by mcmc) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 81f438e3..b922e646 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4403,6 +4403,7 @@ packages: - tlynx - elynx - mcmc + - dirichlet "Eric Rochester @erochest": - text-regex-replace From 5c0cf1039e3646e52bdc515d3c9e662d0c4e80fe Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 11 Nov 2020 01:47:05 +0800 Subject: [PATCH 2170/2682] try re-enabling pantry and stack at least they built for me locally --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b922e646..83fad8ce 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -727,7 +727,7 @@ packages: - githash - time-manager - - pantry < 0 # aeson 1.5 + - pantry - mega-sdist < 0 # Cabal issues - http-download - hi-file-parser @@ -1472,7 +1472,7 @@ packages: - optparse-simple - hpack - bindings-uname - - stack < 0 # ghc 8.10 # < 9.9.9 # see #3563/closed + - stack < 9.9.9 # see #3563/closed "Michael Sloan @mgsloan": - store From 844997c1853ebf9ab9b9f25fbad158e1c4482135 Mon Sep 17 00:00:00 2001 From: Michael Gale Date: Thu, 12 Nov 2020 15:46:35 +0000 Subject: [PATCH 2171/2682] Remove wai-saml2 from expected-test-failures --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 02043706..de5719b3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5698,7 +5698,6 @@ expected-test-failures: - doctest-discover # 0.1.0.9 https://github.com/karun012/doctest-discover/issues/22 - doctest - reanimate-svg # https://github.com/commercialhaskell/stackage/issues/5688 - - wai-saml2 # https://github.com/mbg/wai-saml2/issues/4 # Assertion failures, these can be real bugs or just limitations # in the test cases. From 235dbccffc64836bd47f03dd8d10e02a565c01dd Mon Sep 17 00:00:00 2001 From: Michael Gale Date: Thu, 12 Nov 2020 15:46:51 +0000 Subject: [PATCH 2172/2682] Add moss --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index de5719b3..33bb0dea 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4415,6 +4415,7 @@ packages: "Michael B. Gale @mbg": - c14n + - moss - wai-saml2 "Jun Narumi @narumij": From 266f91cf225ef088507fe08a1f822c5915495f88 Mon Sep 17 00:00:00 2001 From: Michael Gale Date: Thu, 12 Nov 2020 15:52:35 +0000 Subject: [PATCH 2173/2682] Add wai-rate-limit --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 33bb0dea..5dca48c9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4416,6 +4416,7 @@ packages: "Michael B. Gale @mbg": - c14n - moss + - wai-rate-limit - wai-saml2 "Jun Narumi @narumij": From a219f0ab892b8a719c9bedcfea18820a1a943405 Mon Sep 17 00:00:00 2001 From: Michael Gale Date: Thu, 12 Nov 2020 15:55:58 +0000 Subject: [PATCH 2174/2682] Add wai-rate-limit-redis --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5dca48c9..20936f53 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4417,6 +4417,7 @@ packages: - c14n - moss - wai-rate-limit + - wai-rate-limit-redis - wai-saml2 "Jun Narumi @narumij": @@ -5687,6 +5688,7 @@ expected-test-failures: - users-postgresql-simple # PostgreSQL - wai-cors # PhantomJS - wai-session-postgresql # PostgreSQL + - wai-rate-limit-redis # Redis - web3 # requires running server - webdriver-angular # webdriver server - websockets From 6031fe6adbd76615fb8eb1b1dfe88335f06c3d6b Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 13 Nov 2020 18:16:37 +0800 Subject: [PATCH 2175/2682] enable type-of-html-static but expect testsuite build fail (#5728) --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 02043706..bb4c7d3f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -307,7 +307,7 @@ packages: "Florian Knupfer @knupfer": - type-of-html - - type-of-html-static < 0 # https://github.com/commercialhaskell/stackage/issues/5728 + - type-of-html-static - chronos-bench "Mikolaj Konarski @Mikolaj": @@ -5742,6 +5742,7 @@ expected-test-failures: - squeal-postgresql # https://github.com/fpco/stackage/issues/3180 - text-icu # https://github.com/bos/text-icu/issues/32 - text-ldap # https://github.com/khibino/haskell-text-ldap/issues/1 + - type-of-html-static # https://github.com/commercialhaskell/stackage/issues/5728 - unicode-transforms # https://github.com/harendra-kumar/unicode-transforms/issues/15 - vector-algorithms # http://hub.darcs.net/dolio/vector-algorithms/issue/9 - vivid-supercollider # https://github.com/commercialhaskell/stackage/issues/4250 From bcda1ec3cf272ab4e7ae97ad382f8fa6c1cf16e0 Mon Sep 17 00:00:00 2001 From: Behrang Norouzinia Date: Sat, 14 Nov 2020 14:23:17 +0330 Subject: [PATCH 2176/2682] add jalaali --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 02043706..b46ca194 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4440,6 +4440,9 @@ packages: - nri-prelude - nri-env-parser + "Behrang Norouzinia @behrang": + - jalaali + "Grandfathered dependencies": - Boolean - Decimal From ca1faac7fc2737d623bd4dac87ea7bbcc044d879 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sat, 14 Nov 2020 21:39:28 +0000 Subject: [PATCH 2177/2682] Restricts casa-types < 0.0.2 (#5649) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 02043706..01cbd6b5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -906,7 +906,7 @@ packages: - odbc # - structured-haskell-mode # https://github.com/chrisdone/structured-haskell-mode/issues/156 - casa-client - - casa-types + - casa-types < 0.0.2 # https://github.com/commercialhaskell/stackage/issues/5649 "Alberto G. Corona @agocorona": - RefSerialize From a5e54bc9e5180bb641ffccb321b582ca665d5253 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sat, 14 Nov 2020 21:40:37 +0000 Subject: [PATCH 2178/2682] Restricts hyper < 0.2 (#5741) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 01cbd6b5..b50b9ed0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -483,7 +483,7 @@ packages: - topograph - ix-shapable - hsshellscript - - hyper + - hyper < 0.2 # https://github.com/commercialhaskell/stackage/issues/5741 - storable-endian "Jeremy Barisch-Rooney @barischrooneyj": From 8b8df1f6fffd35b5f0c81dc7f310af3b4ede8cb4 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sun, 15 Nov 2020 06:44:27 +0000 Subject: [PATCH 2179/2682] Disables clash-prelude tests (#5742) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f1b19518..03261a15 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5452,6 +5452,7 @@ skipped-tests: - binary-parsers # https://github.com/winterland1989/binary-parsers/issues/3 - simple-affine-space # https://github.com/commercialhaskell/stackage/issues/5110 - hw-kafka-client # https://github.com/commercialhaskell/stackage/pull/5542 + - clash-prelude # Unable to find executable - https://github.com/commercialhaskell/stackage/issues/5742 # Missing foreign library - symengine # symengine From 1b5c00adfd7f4a46356d4107d4b1d51c94668e32 Mon Sep 17 00:00:00 2001 From: YAMAMOTO Yuji Date: Sun, 15 Nov 2020 18:12:19 +0900 Subject: [PATCH 2180/2682] Add fakefs, fakepull --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 03261a15..29d3cc2b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2854,6 +2854,8 @@ packages: - network-messagepack-rpc-websocket - unicode-show - deriveJsonNoPrefix + - fakefs + - fakepull "Hans-Christian Esperer @hce": # avwx # https://github.com/hce/avwx/issues/2 From e921a1f5512d942bd8b4e3ec10310bf387d11492 Mon Sep 17 00:00:00 2001 From: Alexander Batischev Date: Sun, 15 Nov 2020 15:54:19 +0300 Subject: [PATCH 2181/2682] Add hakyll-convert --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 03261a15..caa32eef 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4446,6 +4446,9 @@ packages: "Behrang Norouzinia @behrang": - jalaali + "Alexander Batischev @Minoru": + - hakyll-convert + "Grandfathered dependencies": - Boolean - Decimal From d3f5cde083dfa584cb68876b44a6a774c4e5f973 Mon Sep 17 00:00:00 2001 From: Taylor Fausak Date: Sun, 15 Nov 2020 09:44:48 -0500 Subject: [PATCH 2182/2682] Add Witch --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 03261a15..fe319ff7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2020,6 +2020,7 @@ packages: - salve - splint - strive + - witch - wuss - bmp # @benl23x5 From a655353dcd3decd37363a4e9c4a3b479902bc7a4 Mon Sep 17 00:00:00 2001 From: Taylor Fausak Date: Sun, 15 Nov 2020 09:45:42 -0500 Subject: [PATCH 2183/2682] Allow Burrito version 1.2 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index fe319ff7..d0991869 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2006,7 +2006,7 @@ packages: "Taylor Fausak @tfausak": - autoexporter - - burrito < 1.2.0.0 + - burrito - derulo - flow - github-release < 1.3.4 # https://github.com/commercialhaskell/stackage/issues/5610 From f86830bf152bf236320a6bf4ed343b86a3d17585 Mon Sep 17 00:00:00 2001 From: Taylor Fausak Date: Sun, 15 Nov 2020 09:46:34 -0500 Subject: [PATCH 2184/2682] Allow newer github-release --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d0991869..f5fdd4c6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2009,7 +2009,7 @@ packages: - burrito - derulo - flow - - github-release < 1.3.4 # https://github.com/commercialhaskell/stackage/issues/5610 + - github-release - json-feed # - lackey # servant - list-singleton From 0785540d916b5e7a099e32b8b1b2474c2ca6457c Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sun, 15 Nov 2020 18:54:08 +0000 Subject: [PATCH 2185/2682] Unrestricts hyper (#5741) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 03261a15..8ad0904b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -483,7 +483,7 @@ packages: - topograph - ix-shapable - hsshellscript - - hyper < 0.2 # https://github.com/commercialhaskell/stackage/issues/5741 + - hyper - storable-endian "Jeremy Barisch-Rooney @barischrooneyj": From c13395c07fe00e1cde7fa6bb3d80c5047c57cd3c Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Mon, 16 Nov 2020 12:51:34 -0500 Subject: [PATCH 2186/2682] Re-enable clash-prelude tests (#5742) --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a6c33e1b..1168c0a4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5458,7 +5458,6 @@ skipped-tests: - binary-parsers # https://github.com/winterland1989/binary-parsers/issues/3 - simple-affine-space # https://github.com/commercialhaskell/stackage/issues/5110 - hw-kafka-client # https://github.com/commercialhaskell/stackage/pull/5542 - - clash-prelude # Unable to find executable - https://github.com/commercialhaskell/stackage/issues/5742 # Missing foreign library - symengine # symengine From 57ebc2369722547e78394ee5a2f160bae1453201 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 3 Oct 2020 17:37:27 -0700 Subject: [PATCH 2187/2682] Try `generic-aeson` --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1168c0a4..9c6d4125 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1342,7 +1342,7 @@ packages: - arrow-list < 0 - attoparsec-expr - code-builder < 0 - - generic-aeson < 0 + - generic-aeson # 0 - generic-xmlpickler < 0 - hxt-pickle-utils < 0 - imagesize-conduit From fc86c6ebc8f6255d325d603f0e2508e30bd08a5c Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 4 Oct 2020 17:37:27 -0700 Subject: [PATCH 2188/2682] Reorder and try `stm-containers` --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9c6d4125..aaa4514c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1342,7 +1342,6 @@ packages: - arrow-list < 0 - attoparsec-expr - code-builder < 0 - - generic-aeson # 0 - generic-xmlpickler < 0 - hxt-pickle-utils < 0 - imagesize-conduit @@ -1431,6 +1430,8 @@ packages: - wl-pprint - AC-Angle - language-protobuf + - generic-aeson + - stm-containers # 0 # https://github.com/commercialhaskell/stackage/pull/5289#issuecomment-610353366 "Flavio Corpa @kutyel": - language-avro @@ -1496,7 +1497,6 @@ packages: - partial-handler - postgresql-binary - slave-thread < 0 - - stm-containers < 0 # https://github.com/commercialhaskell/stackage/pull/5289#issuecomment-610353366 "Iustin Pop @iustin": - prefix-units From 591d2f40cdfae941e949dbb941a1c0fdb950c9b4 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Mon, 12 Oct 2020 17:37:27 -0700 Subject: [PATCH 2189/2682] Add missing `stm-hamt` --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index aaa4514c..ee80c7ba 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1431,6 +1431,7 @@ packages: - AC-Angle - language-protobuf - generic-aeson + - stm-hamt - stm-containers # 0 # https://github.com/commercialhaskell/stackage/pull/5289#issuecomment-610353366 "Flavio Corpa @kutyel": From 8df392ca216e299953b853b36f5a095688a1f2bd Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Mon, 12 Oct 2020 17:37:27 -0700 Subject: [PATCH 2190/2682] Add missing `primitive-extras` and `mwc-random-monad` --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ee80c7ba..a5f8183e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1431,6 +1431,8 @@ packages: - AC-Angle - language-protobuf - generic-aeson + - primitive-extras + - mwc-random-monad - stm-hamt - stm-containers # 0 # https://github.com/commercialhaskell/stackage/pull/5289#issuecomment-610353366 From 2610ed19e9c4c206c61b7c84964a7ab1395c01de Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 17 Oct 2020 17:37:27 -0700 Subject: [PATCH 2191/2682] Add missing `primitive-unlifted` and `monad-primitive` --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index a5f8183e..feaf02c3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1432,6 +1432,8 @@ packages: - language-protobuf - generic-aeson - primitive-extras + - monad-primitive + - primitive-unlifted - mwc-random-monad - stm-hamt - stm-containers # 0 # https://github.com/commercialhaskell/stackage/pull/5289#issuecomment-610353366 From e064d76ac2e6c008f65a7a908681d20f56631c4a Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 24 Oct 2020 17:37:27 -0700 Subject: [PATCH 2192/2682] Upper bound `primitive-unlifted` --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index feaf02c3..05a75e23 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1433,7 +1433,7 @@ packages: - generic-aeson - primitive-extras - monad-primitive - - primitive-unlifted + - primitive-unlifted < 0.2 - mwc-random-monad - stm-hamt - stm-containers # 0 # https://github.com/commercialhaskell/stackage/pull/5289#issuecomment-610353366 From d73dd3f4f27eaa4e233f4ae7861b727a2d38b1a6 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 25 Oct 2020 17:37:27 -0700 Subject: [PATCH 2193/2682] Add `parameterized` --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 05a75e23..8e16a177 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1431,6 +1431,7 @@ packages: - AC-Angle - language-protobuf - generic-aeson + - parameterized - primitive-extras - monad-primitive - primitive-unlifted < 0.2 From 5a7c25a157557752081d628039e530d86c4302e8 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 30 Oct 2020 17:37:27 -0700 Subject: [PATCH 2194/2682] Reorder items to not cause conflict for #5735 --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8e16a177..feda3f7e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1433,11 +1433,11 @@ packages: - generic-aeson - parameterized - primitive-extras - - monad-primitive - primitive-unlifted < 0.2 - - mwc-random-monad - stm-hamt - - stm-containers # 0 # https://github.com/commercialhaskell/stackage/pull/5289#issuecomment-610353366 + - stm-containers + - monad-primitive + - mwc-random-monad "Flavio Corpa @kutyel": - language-avro From 59450ab79e0e56414dc091e94d22f33ad284eb64 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 31 Oct 2020 17:37:27 -0700 Subject: [PATCH 2195/2682] Add `tracing-control` and `stm-lifted` --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index feda3f7e..203ceea0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1432,10 +1432,12 @@ packages: - language-protobuf - generic-aeson - parameterized + - tracing-control - primitive-extras - primitive-unlifted < 0.2 - stm-hamt - stm-containers + - stm-lifted - monad-primitive - mwc-random-monad From 5a62a0b62be5ec155c37bbfa82710444e4f63400 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 7 Nov 2020 17:37:27 -0700 Subject: [PATCH 2196/2682] Skip tests for `parameterized` due to #5746. Close #5735 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 203ceea0..c6d7128d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5567,6 +5567,9 @@ skipped-tests: # TODO - rpmbuild-order + # https://github.com/commercialhaskell/stackage/issues/5746 + - parameterized + # end of skipped-tests From 00659503e70ef8d8ddad31c08b510e84abee8667 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 17 Nov 2020 08:20:04 -0800 Subject: [PATCH 2197/2682] Try removing uppoer bound on `http-client` (#5572) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c6d7128d..ba476f3d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -722,7 +722,7 @@ packages: - windns - mono-traversable - - http-client < 0.7 # https://github.com/commercialhaskell/stackage/issues/5572 + - http-client # 0.7 # https://github.com/commercialhaskell/stackage/issues/5572 - http-conduit - githash From 33dcecc88d402c7882df0f49e92c2b405a3b4237 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 17 Nov 2020 08:26:11 -0800 Subject: [PATCH 2198/2682] Prune `amazonka-*` (#5572( --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ba476f3d..7b6c16fb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -722,7 +722,7 @@ packages: - windns - mono-traversable - - http-client # 0.7 # https://github.com/commercialhaskell/stackage/issues/5572 + - http-client - http-conduit - githash @@ -1764,7 +1764,7 @@ packages: "Brendan Hay @brendanhay": - amazonka < 0 # ghc 8.10 via unliftio-core - - amazonka-core + - amazonka-core < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - amazonka-test - amazonka-apigateway - amazonka-application-autoscaling From 506fb369c53662f3bbe5ff43c795615a72c2b080 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 17 Nov 2020 08:29:16 -0800 Subject: [PATCH 2199/2682] Prune all `amazonka-*` (#5572) --- build-constraints.yaml | 176 ++++++++++++++++++++--------------------- 1 file changed, 88 insertions(+), 88 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7b6c16fb..ea12d4c0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1765,95 +1765,95 @@ packages: "Brendan Hay @brendanhay": - amazonka < 0 # ghc 8.10 via unliftio-core - amazonka-core < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-test - - amazonka-apigateway - - amazonka-application-autoscaling - - amazonka-appstream - - amazonka-athena - - amazonka-autoscaling - - amazonka-budgets - - amazonka-certificatemanager - - amazonka-cloudformation - - amazonka-cloudfront - - amazonka-cloudhsm - - amazonka-cloudsearch - - amazonka-cloudsearch-domains - - amazonka-cloudtrail - - amazonka-cloudwatch - - amazonka-cloudwatch-events - - amazonka-cloudwatch-logs - - amazonka-codebuild - - amazonka-codecommit - - amazonka-codedeploy - - amazonka-codepipeline - - amazonka-cognito-identity - - amazonka-cognito-idp - - amazonka-cognito-sync - - amazonka-config - - amazonka-datapipeline - - amazonka-devicefarm - - amazonka-directconnect - - amazonka-discovery - - amazonka-dms - - amazonka-ds - - amazonka-dynamodb - - amazonka-dynamodb-streams + - amazonka-test < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-apigateway < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-application-autoscaling < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-appstream < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-athena < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-autoscaling < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-budgets < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-certificatemanager < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-cloudformation < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-cloudfront < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-cloudhsm < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-cloudsearch < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-cloudsearch-domains < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-cloudtrail < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-cloudwatch < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-cloudwatch-events < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-cloudwatch-logs < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-codebuild < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-codecommit < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-codedeploy < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-codepipeline < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-cognito-identity < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-cognito-idp < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-cognito-sync < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-config < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-datapipeline < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-devicefarm < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-directconnect < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-discovery < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-dms < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-ds < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-dynamodb < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-dynamodb-streams < 0 # https://github.com/commercialhaskell/stackage/issues/5572 # - amazonka-ec2 # https://github.com/brendanhay/amazonka/issues/549 - - amazonka-ecr - - amazonka-ecs - - amazonka-efs - - amazonka-elasticache - - amazonka-elasticbeanstalk - - amazonka-elasticsearch - - amazonka-elastictranscoder - - amazonka-elb - - amazonka-elbv2 - - amazonka-emr - - amazonka-gamelift - - amazonka-glacier - - amazonka-glue - - amazonka-health - - amazonka-iam - - amazonka-importexport - - amazonka-inspector - - amazonka-iot - - amazonka-iot-dataplane - - amazonka-kinesis - - amazonka-kinesis-analytics - - amazonka-kinesis-firehose - - amazonka-kms - - amazonka-lambda - - amazonka-lightsail - - amazonka-marketplace-analytics - - amazonka-marketplace-metering - - amazonka-ml - - amazonka-opsworks - - amazonka-opsworks-cm - - amazonka-pinpoint - - amazonka-polly - - amazonka-rds - - amazonka-redshift - - amazonka-rekognition - - amazonka-route53 - - amazonka-route53-domains - - amazonka-s3 - - amazonka-sdb - - amazonka-servicecatalog - - amazonka-ses - - amazonka-shield - - amazonka-sms - - amazonka-snowball - - amazonka-sns - - amazonka-sqs - - amazonka-ssm - - amazonka-stepfunctions - - amazonka-storagegateway - - amazonka-sts - - amazonka-support - - amazonka-swf - - amazonka-waf - - amazonka-workspaces - - amazonka-xray + - amazonka-ecr < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-ecs < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-efs < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-elasticache < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-elasticbeanstalk < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-elasticsearch < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-elastictranscoder < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-elb < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-elbv2 < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-emr < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-gamelift < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-glacier < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-glue < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-health < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-iam < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-importexport < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-inspector < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-iot < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-iot-dataplane < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-kinesis < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-kinesis-analytics < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-kinesis-firehose < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-kms < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-lambda < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-lightsail < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-marketplace-analytics < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-marketplace-metering < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-ml < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-opsworks < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-opsworks-cm < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-pinpoint < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-polly < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-rds < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-redshift < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-rekognition < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-route53 < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-route53-domains < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-s3 < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-sdb < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-servicecatalog < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-ses < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-shield < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-sms < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-snowball < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-sns < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-sqs < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-ssm < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-stepfunctions < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-storagegateway < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-sts < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-support < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-swf < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-waf < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-workspaces < 0 # https://github.com/commercialhaskell/stackage/issues/5572 + - amazonka-xray < 0 # https://github.com/commercialhaskell/stackage/issues/5572 # - gogol # fails to build due to conduit 1.3, servant 0.13 # - gogol-core # - gogol-adexchange-buyer From 9adde620ce98221e19d0cde8a7c70655b06ca900 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 17 Nov 2020 08:31:42 -0800 Subject: [PATCH 2200/2682] Drop `serverless-haskell` due to `amazonka-*` (#5572) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ea12d4c0..2afbccf3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3965,7 +3965,7 @@ packages: "Alexey Kotlyarov @koterpillar": - appendmap - - serverless-haskell + - serverless-haskell < 0 # via amazonka-*, https://github.com/commercialhaskell/stackage/issues/5572 "Guru Devanla @gdevanla": - pptable From 3d0db1e80bff46aedb5bd8ec3a4a86c56f88ea4e Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 17 Nov 2020 08:35:58 -0800 Subject: [PATCH 2201/2682] Remove large chunk of dropped packages. Close #5572 --- build-constraints.yaml | 190 ----------------------------------------- 1 file changed, 190 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2afbccf3..20437354 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1763,196 +1763,6 @@ packages: - jose-jwt "Brendan Hay @brendanhay": - - amazonka < 0 # ghc 8.10 via unliftio-core - - amazonka-core < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-test < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-apigateway < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-application-autoscaling < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-appstream < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-athena < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-autoscaling < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-budgets < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-certificatemanager < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-cloudformation < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-cloudfront < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-cloudhsm < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-cloudsearch < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-cloudsearch-domains < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-cloudtrail < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-cloudwatch < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-cloudwatch-events < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-cloudwatch-logs < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-codebuild < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-codecommit < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-codedeploy < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-codepipeline < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-cognito-identity < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-cognito-idp < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-cognito-sync < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-config < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-datapipeline < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-devicefarm < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-directconnect < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-discovery < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-dms < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-ds < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-dynamodb < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-dynamodb-streams < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - # - amazonka-ec2 # https://github.com/brendanhay/amazonka/issues/549 - - amazonka-ecr < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-ecs < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-efs < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-elasticache < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-elasticbeanstalk < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-elasticsearch < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-elastictranscoder < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-elb < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-elbv2 < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-emr < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-gamelift < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-glacier < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-glue < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-health < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-iam < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-importexport < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-inspector < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-iot < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-iot-dataplane < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-kinesis < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-kinesis-analytics < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-kinesis-firehose < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-kms < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-lambda < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-lightsail < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-marketplace-analytics < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-marketplace-metering < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-ml < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-opsworks < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-opsworks-cm < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-pinpoint < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-polly < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-rds < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-redshift < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-rekognition < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-route53 < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-route53-domains < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-s3 < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-sdb < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-servicecatalog < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-ses < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-shield < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-sms < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-snowball < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-sns < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-sqs < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-ssm < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-stepfunctions < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-storagegateway < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-sts < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-support < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-swf < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-waf < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-workspaces < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - - amazonka-xray < 0 # https://github.com/commercialhaskell/stackage/issues/5572 - # - gogol # fails to build due to conduit 1.3, servant 0.13 - # - 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 - # - ede # https://github.com/brendanhay/ede/issues/28 - - pagerduty < 0 # build failure with GHC 8.4 https://github.com/brendanhay/pagerduty/issues/10 - semver - text-manipulate From 62c9af4a124699300796f444b87ba209b05f152c Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 17 Nov 2020 08:43:57 -0800 Subject: [PATCH 2202/2682] Remove a bunch a blocks with no packages left in the snapshot --- build-constraints.yaml | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 20437354..ddf11310 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3489,10 +3489,6 @@ packages: - haddock-library - http-client-openssl - "Mark Hopkins @mjhopkins": - [] - # - alerta # servant-client 0.12 - "Steven Vandevelde @icidasset": - shikensu @@ -3504,15 +3500,6 @@ packages: - mltool - hmatrix-morpheus - "Edward Amsden @eamsden": - [] - # https://bitbucket.org/fmapE/h2c/issues/1/compilation-failure-since-upgrading-to - #- h2c - #- bno055-haskell - - "Lars Brünjes @brunjlar": - - pell < 0 # GHC 8.4 via arithmoi - "Matt Noonan @matt-noonan": - justified-containers - roles >= 0.2 @@ -3686,9 +3673,6 @@ packages: - airship < 0 # GHC 8.4 via http-media - hedgehog-corpus - "Sam Stites @stites": - - gym-http-api < 0 # via servant servant-client - "Tom Sydney Kerckhove @NorfairKing": - cursor - cursor-brick From 90be787ee3d93f43a73a3a45e364b7a2e002d6bf Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 17 Nov 2020 08:46:50 -0800 Subject: [PATCH 2203/2682] Restore packages dropped due to #5572 since we have #5747 with the same bounds --- build-constraints.yaml | 194 ++++++++++++++++++++++++++++++++++++++++- 1 file changed, 192 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ddf11310..fe933b3c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -722,7 +722,7 @@ packages: - windns - mono-traversable - - http-client + - http-client < 0.7 # https://github.com/commercialhaskell/stackage/issues/5747 - http-conduit - githash @@ -1763,6 +1763,196 @@ packages: - jose-jwt "Brendan Hay @brendanhay": + - amazonka < 0 # ghc 8.10 via unliftio-core + - amazonka-core + - amazonka-test + - amazonka-apigateway + - amazonka-application-autoscaling + - amazonka-appstream + - amazonka-athena + - amazonka-autoscaling + - amazonka-budgets + - amazonka-certificatemanager + - amazonka-cloudformation + - amazonka-cloudfront + - amazonka-cloudhsm + - amazonka-cloudsearch + - amazonka-cloudsearch-domains + - amazonka-cloudtrail + - amazonka-cloudwatch + - amazonka-cloudwatch-events + - amazonka-cloudwatch-logs + - amazonka-codebuild + - amazonka-codecommit + - amazonka-codedeploy + - amazonka-codepipeline + - amazonka-cognito-identity + - amazonka-cognito-idp + - amazonka-cognito-sync + - amazonka-config + - amazonka-datapipeline + - amazonka-devicefarm + - amazonka-directconnect + - amazonka-discovery + - amazonka-dms + - amazonka-ds + - amazonka-dynamodb + - amazonka-dynamodb-streams + # - amazonka-ec2 # https://github.com/brendanhay/amazonka/issues/549 + - amazonka-ecr + - amazonka-ecs + - amazonka-efs + - amazonka-elasticache + - amazonka-elasticbeanstalk + - amazonka-elasticsearch + - amazonka-elastictranscoder + - amazonka-elb + - amazonka-elbv2 + - amazonka-emr + - amazonka-gamelift + - amazonka-glacier + - amazonka-glue + - amazonka-health + - amazonka-iam + - amazonka-importexport + - amazonka-inspector + - amazonka-iot + - amazonka-iot-dataplane + - amazonka-kinesis + - amazonka-kinesis-analytics + - amazonka-kinesis-firehose + - amazonka-kms + - amazonka-lambda + - amazonka-lightsail + - amazonka-marketplace-analytics + - amazonka-marketplace-metering + - amazonka-ml + - amazonka-opsworks + - amazonka-opsworks-cm + - amazonka-pinpoint + - amazonka-polly + - amazonka-rds + - amazonka-redshift + - amazonka-rekognition + - amazonka-route53 + - amazonka-route53-domains + - amazonka-s3 + - amazonka-sdb + - amazonka-servicecatalog + - amazonka-ses + - amazonka-shield + - amazonka-sms + - amazonka-snowball + - amazonka-sns + - amazonka-sqs + - amazonka-ssm + - amazonka-stepfunctions + - amazonka-storagegateway + - amazonka-sts + - amazonka-support + - amazonka-swf + - amazonka-waf + - amazonka-workspaces + - amazonka-xray + # - gogol # fails to build due to conduit 1.3, servant 0.13 + # - 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 + # - ede # https://github.com/brendanhay/ede/issues/28 + - pagerduty < 0 # build failure with GHC 8.4 https://github.com/brendanhay/pagerduty/issues/10 - semver - text-manipulate @@ -3759,7 +3949,7 @@ packages: "Alexey Kotlyarov @koterpillar": - appendmap - - serverless-haskell < 0 # via amazonka-*, https://github.com/commercialhaskell/stackage/issues/5572 + - serverless-haskell "Guru Devanla @gdevanla": - pptable From 7a003e9ac0a99baa4be23eb28d35e923bd65333a Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 17 Nov 2020 08:53:13 -0800 Subject: [PATCH 2204/2682] Upper bound `http-client-openssl` (#5748) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index fe933b3c..e94e0763 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3677,7 +3677,7 @@ packages: "Alex Biehl @alexbiehl": - haddock-library - - http-client-openssl + - http-client-openssl < 0.3.3 # https://github.com/commercialhaskell/stackage/issues/5748 "Steven Vandevelde @icidasset": - shikensu From 3bbfce6ff3010e24ed4c771185421508f4ec98f6 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 17 Nov 2020 08:56:40 -0800 Subject: [PATCH 2205/2682] Upper bound `microlens` (#5749) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e94e0763..c1678b78 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2433,7 +2433,7 @@ packages: - servant-JuicyPixels < 0 # ghc 8.10 via servant "Artyom @neongreen": - - microlens + - microlens < 0.4.12 # https://github.com/commercialhaskell/stackage/issues/5749 - microlens-platform - microlens-mtl - microlens-th From f3dedfd5c339d0230b4a0ded8963d4614b23f3a0 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 17 Nov 2020 09:00:49 -0800 Subject: [PATCH 2206/2682] More bounds due to #5749 --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c1678b78..14393913 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2434,10 +2434,10 @@ packages: "Artyom @neongreen": - microlens < 0.4.12 # https://github.com/commercialhaskell/stackage/issues/5749 - - microlens-platform + - microlens-platform < 0.4.12 # https://github.com/commercialhaskell/stackage/issues/5749 - microlens-mtl - microlens-th - - microlens-ghc + - microlens-ghc < 0.4.12 # https://github.com/commercialhaskell/stackage/issues/5749 - microlens-contra - shortcut-links < 0 # MonadFail - cheapskate-highlight From 8fec6182180f6362add1ec6f125ffbb3878421d1 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 17 Nov 2020 09:05:01 -0800 Subject: [PATCH 2207/2682] More bounds due to #5749 --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 14393913..c13e9d10 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -43,7 +43,7 @@ packages: - isbn "Koz Ross @kozross": - - medea + - medea < 1.2.0 # https://github.com/commercialhaskell/stackage/issues/5749 "Ashlynn Anderson @lambdadog": - proto3-wire @@ -2434,7 +2434,7 @@ packages: "Artyom @neongreen": - microlens < 0.4.12 # https://github.com/commercialhaskell/stackage/issues/5749 - - microlens-platform < 0.4.12 # https://github.com/commercialhaskell/stackage/issues/5749 + - microlens-platform < 0.4.2 # https://github.com/commercialhaskell/stackage/issues/5749 - microlens-mtl - microlens-th - microlens-ghc < 0.4.12 # https://github.com/commercialhaskell/stackage/issues/5749 From a6ded4bde0e5bff62b7409e0dd00fe38013b59a4 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 17 Nov 2020 09:11:37 -0800 Subject: [PATCH 2208/2682] Try a different branch of controlling deps --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c13e9d10..e94644ff 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -43,7 +43,7 @@ packages: - isbn "Koz Ross @kozross": - - medea < 1.2.0 # https://github.com/commercialhaskell/stackage/issues/5749 + - medea # 1.2.0 # https://github.com/commercialhaskell/stackage/issues/5749 "Ashlynn Anderson @lambdadog": - proto3-wire @@ -2434,10 +2434,10 @@ packages: "Artyom @neongreen": - microlens < 0.4.12 # https://github.com/commercialhaskell/stackage/issues/5749 - - microlens-platform < 0.4.2 # https://github.com/commercialhaskell/stackage/issues/5749 + - microlens-platform # 0.4.2 # https://github.com/commercialhaskell/stackage/issues/5749 - microlens-mtl - microlens-th - - microlens-ghc < 0.4.12 # https://github.com/commercialhaskell/stackage/issues/5749 + - microlens-ghc # 0.4.12 # https://github.com/commercialhaskell/stackage/issues/5749 - microlens-contra - shortcut-links < 0 # MonadFail - cheapskate-highlight From bb440da572adae701e595ac905fbbd634dd1fb8a Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 17 Nov 2020 09:13:19 -0800 Subject: [PATCH 2209/2682] Try a different branch of controlling deps --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e94644ff..491d4f53 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2434,10 +2434,10 @@ packages: "Artyom @neongreen": - microlens < 0.4.12 # https://github.com/commercialhaskell/stackage/issues/5749 - - microlens-platform # 0.4.2 # https://github.com/commercialhaskell/stackage/issues/5749 + - microlens-platform < 0.4.2 # https://github.com/commercialhaskell/stackage/issues/5749 - microlens-mtl - microlens-th - - microlens-ghc # 0.4.12 # https://github.com/commercialhaskell/stackage/issues/5749 + - microlens-ghc < 0.4.13 # https://github.com/commercialhaskell/stackage/issues/5749 - microlens-contra - shortcut-links < 0 # MonadFail - cheapskate-highlight From 8e7e1bb37eb7694e1946f84daa157ed79c291a13 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 17 Nov 2020 09:15:23 -0800 Subject: [PATCH 2210/2682] Remove comment --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 491d4f53..ead702ea 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -43,7 +43,7 @@ packages: - isbn "Koz Ross @kozross": - - medea # 1.2.0 # https://github.com/commercialhaskell/stackage/issues/5749 + - medea "Ashlynn Anderson @lambdadog": - proto3-wire From b1c633b4e08877e5e3a031597728e87652baded4 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 18 Nov 2020 07:58:05 -0800 Subject: [PATCH 2211/2682] Try removal of upper bound for `microlens` --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ead702ea..a01b6c46 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2433,11 +2433,11 @@ packages: - servant-JuicyPixels < 0 # ghc 8.10 via servant "Artyom @neongreen": - - microlens < 0.4.12 # https://github.com/commercialhaskell/stackage/issues/5749 - - microlens-platform < 0.4.2 # https://github.com/commercialhaskell/stackage/issues/5749 + - microlens # 0.4.12 # https://github.com/commercialhaskell/stackage/issues/5749 + - microlens-platform # 0.4.2 # https://github.com/commercialhaskell/stackage/issues/5749 - microlens-mtl - microlens-th - - microlens-ghc < 0.4.13 # https://github.com/commercialhaskell/stackage/issues/5749 + - microlens-ghc # 0.4.13 # https://github.com/commercialhaskell/stackage/issues/5749 - microlens-contra - shortcut-links < 0 # MonadFail - cheapskate-highlight From 2ffe1b93a478798dde6c3cbed250d124864ce849 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 18 Nov 2020 08:00:18 -0800 Subject: [PATCH 2212/2682] Put back upper bound, `vty` still needs them --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a01b6c46..ead702ea 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2433,11 +2433,11 @@ packages: - servant-JuicyPixels < 0 # ghc 8.10 via servant "Artyom @neongreen": - - microlens # 0.4.12 # https://github.com/commercialhaskell/stackage/issues/5749 - - microlens-platform # 0.4.2 # https://github.com/commercialhaskell/stackage/issues/5749 + - microlens < 0.4.12 # https://github.com/commercialhaskell/stackage/issues/5749 + - microlens-platform < 0.4.2 # https://github.com/commercialhaskell/stackage/issues/5749 - microlens-mtl - microlens-th - - microlens-ghc # 0.4.13 # https://github.com/commercialhaskell/stackage/issues/5749 + - microlens-ghc < 0.4.13 # https://github.com/commercialhaskell/stackage/issues/5749 - microlens-contra - shortcut-links < 0 # MonadFail - cheapskate-highlight From dc5d883106dc1aa478514d4b602fd21099729c63 Mon Sep 17 00:00:00 2001 From: Daniel Rolls Date: Tue, 17 Nov 2020 19:54:51 +0000 Subject: [PATCH 2213/2682] re-add byte-count-reader --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ead702ea..0270a6c0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -34,7 +34,7 @@ packages: - ghc-clippy-plugin < 0 # dhall (and text-1.3) "Daniel Rolls @danielrolls": - - byte-count-reader < 0 # ghc 8.10 + - byte-count-reader "Allan Lukwago @epicallan": - servant-errors < 0 # ghc 8.10 via servant From df93f2dc7114405fd5d223f3a9c7a7e94edf4a46 Mon Sep 17 00:00:00 2001 From: Artyom Kazak Date: Tue, 17 Nov 2020 20:28:53 +0300 Subject: [PATCH 2214/2682] Update neongreen's email --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0270a6c0..9ef88651 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2432,7 +2432,7 @@ packages: - hasql-migration < 0 # https://github.com/tvh/hasql-migration/issues/4 - servant-JuicyPixels < 0 # ghc 8.10 via servant - "Artyom @neongreen": + "Artyom Kazak @neongreen": - microlens < 0.4.12 # https://github.com/commercialhaskell/stackage/issues/5749 - microlens-platform < 0.4.2 # https://github.com/commercialhaskell/stackage/issues/5749 - microlens-mtl From 539bd28daf35179b73bee92fbbf708e7e2e55df1 Mon Sep 17 00:00:00 2001 From: Alexander Bondarenko <486682+dpwiz@users.noreply.github.com> Date: Tue, 17 Nov 2020 16:00:09 +0300 Subject: [PATCH 2215/2682] Enable hedn Megaparsec bounds updated. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9ef88651..3d45be27 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1972,7 +1972,7 @@ packages: - maximal-cliques "Alexander Bondarenko @dpwiz": - - hedn < 0 # ghc 8.10 + - hedn - soap - soap-tls - soap-openssl From cd2c582a46c0f72488855ebb38ac682c28ebe797 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 19 Nov 2020 18:12:33 -0800 Subject: [PATCH 2216/2682] Try `ghc-clippy-plugin` --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3d45be27..4ec21a0c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -31,7 +31,7 @@ packages: - safe-tensor "Artur Gajowy @ArturGajowy": - - ghc-clippy-plugin < 0 # dhall (and text-1.3) + - ghc-clippy-plugin # 0 # dhall (and text-1.3) "Daniel Rolls @danielrolls": - byte-count-reader From 8e8c4f18c020d72e162fbf7e3117afb79ae42a54 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 19 Nov 2020 18:21:13 -0800 Subject: [PATCH 2217/2682] `ghc-clippy-plugin` still needs to be disabled (#5753) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4ec21a0c..1be70183 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -31,7 +31,7 @@ packages: - safe-tensor "Artur Gajowy @ArturGajowy": - - ghc-clippy-plugin # 0 # dhall (and text-1.3) + - ghc-clippy-plugin < 0 # dhall, https://github.com/commercialhaskell/stackage/issues/5753 "Daniel Rolls @danielrolls": - byte-count-reader From 042582bfcde9bab927775d6fb2eb690b4f18fef6 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 19 Nov 2020 18:21:24 -0800 Subject: [PATCH 2218/2682] Try `servant-errors` --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1be70183..9e7584c9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -37,7 +37,7 @@ packages: - byte-count-reader "Allan Lukwago @epicallan": - - servant-errors < 0 # ghc 8.10 via servant + - servant-errors # 0 # ghc 8.10 via servant "Christian Charukiewicz @charukiewicz": - isbn From b84af8361e0adc8ee8f01fd95d4006edb01760cf Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 19 Nov 2020 18:26:47 -0800 Subject: [PATCH 2219/2682] Try `servant-github-webhook` --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9e7584c9..75e4d8cd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -37,7 +37,7 @@ packages: - byte-count-reader "Allan Lukwago @epicallan": - - servant-errors # 0 # ghc 8.10 via servant + - servant-errors "Christian Charukiewicz @charukiewicz": - isbn @@ -295,7 +295,7 @@ packages: # - sessiontypes-distributed # lens 4.16 via diagrams "Jacob Thomas Errington @tsani": - - servant-github-webhook < 0 + - servant-github-webhook # 0 - pushbullet-types "Theodore Lief Gannon @tejon": From 15400f3bc6d016c2e968ce6249e54e1132685c01 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 19 Nov 2020 18:35:12 -0800 Subject: [PATCH 2220/2682] Also try `github` --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 75e4d8cd..ed1c094f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -295,7 +295,7 @@ packages: # - sessiontypes-distributed # lens 4.16 via diagrams "Jacob Thomas Errington @tsani": - - servant-github-webhook # 0 + - servant-github-webhook # 0 # needs github, https://github.com/commercialhaskell/stackage/issues/5754 - pushbullet-types "Theodore Lief Gannon @tejon": @@ -4606,7 +4606,7 @@ packages: - ghc-paths - ghc-prof - github - - github < 0 # via http-client-0.6.1 + - github # 0 # via http-client-0.6.1 - groom - groups - hackage-security From 2b8c3b2832656c1cfc7b18c67c48fdcf2c842f26 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 19 Nov 2020 18:45:12 -0800 Subject: [PATCH 2221/2682] Reenable `github`, now we can close #5754 and re-enable `servant-github-webhook` too --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ed1c094f..1e440674 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -295,7 +295,7 @@ packages: # - sessiontypes-distributed # lens 4.16 via diagrams "Jacob Thomas Errington @tsani": - - servant-github-webhook # 0 # needs github, https://github.com/commercialhaskell/stackage/issues/5754 + - servant-github-webhook - pushbullet-types "Theodore Lief Gannon @tejon": @@ -4606,7 +4606,7 @@ packages: - ghc-paths - ghc-prof - github - - github # 0 # via http-client-0.6.1 + - github - groom - groups - hackage-security From 38ae6f79643cf68eb8580c1a1cf804db935bf562 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 19 Nov 2020 18:47:58 -0800 Subject: [PATCH 2222/2682] Try `servant-kotlin` --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1e440674..131ed034 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -351,7 +351,7 @@ packages: "Nobutada Matsubara @matsubara0507": - chatwork < 0 - rakuten < 0 - - servant-kotlin < 0 # via containers-0.6.2.1 + - servant-kotlin # 0 # via containers-0.6.2.1 "Pavol Klacansky @pavolzetor": - openexr-write From d14536e0c14494ab4422fb6db761bb8717498117 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 19 Nov 2020 18:50:57 -0800 Subject: [PATCH 2223/2682] Give up --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 131ed034..1e440674 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -351,7 +351,7 @@ packages: "Nobutada Matsubara @matsubara0507": - chatwork < 0 - rakuten < 0 - - servant-kotlin # 0 # via containers-0.6.2.1 + - servant-kotlin < 0 # via containers-0.6.2.1 "Pavol Klacansky @pavolzetor": - openexr-write From a5216da7afc57884f2536a398c722320d1d5e16b Mon Sep 17 00:00:00 2001 From: nerded1337 <59234919+nerded1337@users.noreply.github.com> Date: Fri, 20 Nov 2020 10:29:34 +0100 Subject: [PATCH 2224/2682] add zydiskell package Hi guys, I am developing a [Haskell language binding](https://github.com/nerded1337/zydiskell) for the [Zydis library](https://github.com/zyantific/zydis). It would be a good thing to list it in stackage as I plan to maintain it! What do you think? --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1e440674..102d1282 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4443,6 +4443,9 @@ packages: "Alexander Batischev @Minoru": - hakyll-convert + + "Edward Nerd @nerded1337": + - zydiskell "Grandfathered dependencies": - Boolean From 439c757df841c6cb48cbf2dbd0fd3963790739da Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 22 Nov 2020 15:17:27 -0800 Subject: [PATCH 2225/2682] Skip tests for `servant-openapi3` --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 102d1282..12742864 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5557,6 +5557,9 @@ skipped-tests: # https://github.com/commercialhaskell/stackage/issues/5746 - parameterized + # https://github.com/commercialhaskell/stackage/issues/5756 + - servant-openapi3 + # end of skipped-tests From 0d50883fdf648adbcdde5db991d4177c79184cc1 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 23 Nov 2020 07:07:40 +0100 Subject: [PATCH 2226/2682] Cleanup old constraints --- build-constraints.yaml | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 12742864..62c7fe9b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4443,7 +4443,7 @@ packages: "Alexander Batischev @Minoru": - hakyll-convert - + "Edward Nerd @nerded1337": - zydiskell @@ -5020,14 +5020,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5633 - language-c < 0.9 - # https://github.com/commercialhaskell/stackage/issues/5668 - # - bifunctors < 5.5.8 - # - bound < 2.0.2 - # - deriving-compat < 0.5.10 - # - free < 5.1.4 - # - invariant < 0.5.4 - # - structs < 0.1.4 - # https://github.com/commercialhaskell/stackage/issues/5667 - profunctors < 5.6 From 45c7048b3393b3d9059bb798951fedf9430c40b6 Mon Sep 17 00:00:00 2001 From: Maxim Koltsov Date: Mon, 23 Nov 2020 20:44:45 +0300 Subject: [PATCH 2227/2682] Reenable servant-openapi3 tests --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 62c7fe9b..b4e7bb86 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5549,9 +5549,6 @@ skipped-tests: # https://github.com/commercialhaskell/stackage/issues/5746 - parameterized - # https://github.com/commercialhaskell/stackage/issues/5756 - - servant-openapi3 - # end of skipped-tests From 7fe173f44bf27187cb9f636e533bf93cff003fd2 Mon Sep 17 00:00:00 2001 From: Brandon Chinn Date: Mon, 23 Nov 2020 10:37:35 -0800 Subject: [PATCH 2228/2682] Add resourcet-pool --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 62c7fe9b..04dfe0ac 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4286,6 +4286,9 @@ packages: - hpc-lcov - th-test-utils + "Brandon Chinn @brandonchinn178": + - resourcet-pool + "Akshay Mankar @akshaymankar": - jsonpath From 2843698d426dfd06f1045d63923c68e42715e7df Mon Sep 17 00:00:00 2001 From: Sebastian Nagel Date: Wed, 25 Nov 2020 02:03:51 +0100 Subject: [PATCH 2229/2682] Re-add servant-exceptions Build issues vs. servant-0.16 (and newer) have been resolved and released as version 0.2.0 --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b89d5794..3979cc78 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3918,7 +3918,8 @@ packages: "Sebastian Nagel @ch1bo": - hdevtools < 0 # compilation failure - - servant-exceptions < 0 # https://github.com/ch1bo/servant-exceptions/issues/9 + - servant-exceptions + - servant-exceptions-server "Vaibhav Sagar @vaibhavsagar": - ihaskell From a4369ec59eba543b729fe91d453628b4c4dee658 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Wed, 25 Nov 2020 08:11:54 +0100 Subject: [PATCH 2230/2682] numhask < 0.7.0.0 for #5474 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index b89d5794..b076f135 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4991,6 +4991,7 @@ packages: - random < 1.2.0 - random-fu < 0.2.7.6 - random-source < 0.3.0.10 + - numhask < 0.7.0.0 # https://github.com/commercialhaskell/stackage/issues/5524 - dlist < 1.0 From 400ea472323f88acbc5369c3ee51ae08a3e81ea4 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Wed, 25 Nov 2020 08:13:33 +0100 Subject: [PATCH 2231/2682] bitvec < 1.1.0.0 for #5760 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index b076f135..7c8246ef 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5038,6 +5038,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5686 - formatting < 7 + # https://github.com/commercialhaskell/stackage/issues/5760 + - bitvec < 1.1.0.0 + # end of packages # Package flags are applied to individual packages, and override the values of From f7e29d0bd5a3cca8cf2cda4512621e5efe8fb313 Mon Sep 17 00:00:00 2001 From: Brandon Chinn Date: Thu, 26 Nov 2020 19:13:56 -0800 Subject: [PATCH 2232/2682] Enable persistent 2.11 --- build-constraints.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7c8246ef..52480a4a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -650,12 +650,12 @@ packages: - mime-mail-ses - mime-types - network-conduit-tls - - persistent < 2.11 # https://github.com/commercialhaskell/stackage/issues/5724 - - persistent-mysql < 2.10.3 # via persistent-2.11 - - persistent-postgresql < 2.11 # via persistent-2.11 - - persistent-sqlite < 2.11 # via persistent-2.11 - - persistent-template < 2.8.3 # via persistent-2.11 (#5347/closed) - - persistent-test < 0 # via persistent-2.11 + - persistent + - persistent-mysql + - persistent-postgresql + - persistent-sqlite + - persistent-template + - persistent-test # - stackage-curator # http-conduit 2.3 via amazonka - store - wai-extra From f14caa1ae67f0472a76fcb4ee4c45dde1b9307d7 Mon Sep 17 00:00:00 2001 From: martoon Date: Fri, 27 Nov 2020 15:15:24 +0300 Subject: [PATCH 2233/2682] Add tasty-hunit-compat --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7c8246ef..72d8cd75 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3707,6 +3707,7 @@ packages: # - importify - log-warper < 0 # GHC 8.4 via lifted-async-0.10.0.1 - o-clock + - tasty-hunit-compat - universum - with-utf8 - uncaught-exception From 563cc37be902d8714722dc6de82e15a94f605a22 Mon Sep 17 00:00:00 2001 From: Alejandro Peralta Bazas <31170385+aleperaltabazas@users.noreply.github.com> Date: Mon, 30 Nov 2020 15:36:20 -0300 Subject: [PATCH 2234/2682] Add hocon --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 180cca11..34b1a80a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4452,6 +4452,9 @@ packages: "Edward Nerd @nerded1337": - zydiskell + "Alejandro Peralta Bazas @aleperaltabazas": + - hocon + "Grandfathered dependencies": - Boolean - Decimal From a0d34c01d236866359915c1edc9af02d55932228 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Mon, 30 Nov 2020 18:58:51 -0600 Subject: [PATCH 2235/2682] Add upper bound for text-manipulate, #5765 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 180cca11..1c2c108b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5043,6 +5043,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5760 - bitvec < 1.1.0.0 + # https://github.com/commercialhaskell/stackage/issues/5765 + - text-manipulate < 0.3 + # end of packages # Package flags are applied to individual packages, and override the values of From 716c9018f4d3bb495ffb800c10569b823362406e Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Mon, 30 Nov 2020 19:03:46 -0600 Subject: [PATCH 2236/2682] Add upper bound for hnix-store-core, #5766 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1c2c108b..e1c5312d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5046,6 +5046,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5765 - text-manipulate < 0.3 + # https://github.com/commercialhaskell/stackage/issues/5766 + - hnix-store-core < 0.3 + # end of packages # Package flags are applied to individual packages, and override the values of From 54b54d8f5348933717b2c86990af38892723b273 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Tue, 1 Dec 2020 14:21:29 -0600 Subject: [PATCH 2237/2682] Add upper bounds for persistent and related packages, #5767 --- build-constraints.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0b46edf4..b1d7f083 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5052,6 +5052,14 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5766 - hnix-store-core < 0.3 + # https://github.com/commercialhaskell/stackage/issues/5767 + - persistent < 2.11 + - persistent-mysql < 2.10.3 + - persistent-postgresql < 2.11 + - persistent-sqlite < 2.11 + - persistent-template < 2.8.3 + - persistent-test < 0 + # end of packages # Package flags are applied to individual packages, and override the values of From 3ebe0bf482a8b759bf2eed7c245b04eb06f4fc3f Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Tue, 1 Dec 2020 19:30:33 -0600 Subject: [PATCH 2238/2682] Add persistent-typed-db upper bound, #5767 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index b1d7f083..e3c8b53d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5059,6 +5059,7 @@ packages: - persistent-sqlite < 2.11 - persistent-template < 2.8.3 - persistent-test < 0 + - persistent-typed-db < 0.1.0.2 # end of packages From 846f11ac5d9033bd8c0f4809d99f23a2d414fb7c Mon Sep 17 00:00:00 2001 From: Kamil Dworakowski Date: Thu, 3 Dec 2020 19:38:52 +0100 Subject: [PATCH 2239/2682] Add error-or related packages --- build-constraints.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index e3c8b53d..5eddee1a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -9,6 +9,12 @@ cabal-format-version: "3.0" # Constraints for brand new builds packages: + "Kamil Dworakowski @luntain": + - error-or + - error-or-utils + - inbox + - mock-time + "Liang-Ting Chen @L-TChen": - geniplate-mirror From 0c4001f48ca136d7ed9ebd6da7861c551f944ffb Mon Sep 17 00:00:00 2001 From: Alexey Kuleshevich Date: Fri, 4 Dec 2020 05:06:50 +0300 Subject: [PATCH 2240/2682] Allow new version of splitmix-0.1.x in --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e3c8b53d..a19aedb6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4982,7 +4982,6 @@ packages: # To close this, we may need to set flags.QuickCheck.old-random = true unless we've updated to random 1.2 - QuickCheck < 2.14 - quickcheck-instances < 0.3.24 - - splitmix < 0.1 - binary-instances < 1.0.1 # https://github.com/commercialhaskell/stackage/issues/5349 From a88276987f9fbe04635db3af9aaaee264979e79c Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Mon, 21 Sep 2020 13:46:16 -0700 Subject: [PATCH 2241/2682] Re-enable taffybar --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e3c8b53d..4cc5ae47 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4273,7 +4273,7 @@ packages: - gtk-strut - rate-limit - status-notifier-item - - taffybar < 0 # ghc 8.10 + - taffybar - time-units - xml-helpers - xdg-desktop-entry From a81dc5a4fcd6d240df4e930829edff56e2b53c94 Mon Sep 17 00:00:00 2001 From: Alexey Kuleshevich Date: Sat, 5 Dec 2020 18:47:55 +0300 Subject: [PATCH 2242/2682] Also re-enable QuickCheck --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a19aedb6..187ea02e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4980,7 +4980,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5566 # To close this, we may need to set flags.QuickCheck.old-random = true unless we've updated to random 1.2 - - QuickCheck < 2.14 - quickcheck-instances < 0.3.24 - binary-instances < 1.0.1 From 83ff36b2c43cff962b7fea6b534bfc4503111265 Mon Sep 17 00:00:00 2001 From: Alexey Kuleshevich Date: Sat, 5 Dec 2020 20:59:15 +0300 Subject: [PATCH 2243/2682] Remove upper bounds due to QuickCheck due to #5566 and: * set `package-flags.QuickCheck.old-random: true` --- build-constraints.yaml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 187ea02e..f604abfc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3625,13 +3625,14 @@ packages: - proto-lens-runtime - proto-lens-setup - proto-lens - - proto-lens-arbitrary + # disabled due to QuickCheck < 2.14 + # - proto-lens-arbitrary - proto-lens-optparse - tensorflow-test - pier-core < 0 - pier < 0 - haskeline - - ghc-source-gen + - ghc-source-gen # tests disabled due to QuickCheck < 2.14 "Christof Schramm ": - mnist-idx @@ -4978,11 +4979,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5587 - network < 3.1.2.0 - # https://github.com/commercialhaskell/stackage/issues/5566 - # To close this, we may need to set flags.QuickCheck.old-random = true unless we've updated to random 1.2 - - quickcheck-instances < 0.3.24 - - binary-instances < 1.0.1 - # https://github.com/commercialhaskell/stackage/issues/5349 - typed-uuid < 0.1.0.0 @@ -5064,6 +5060,8 @@ packages: # Package flags are applied to individual packages, and override the values of # global-flags package-flags: + QuickCheck: + old-random: true pathtype: old-time: false @@ -5320,6 +5318,7 @@ skipped-tests: - exact-pi # QuickCHeck 2.12, tasty-1.2 - focuslist # via genvalidity, see https://github.com/commercialhaskell/stackage/pull/4436#issuecomment-475110614 - ghc-prof # via tasty-1.2 + - ghc-source-gen # via QuickCheck- - github # hspec-2.6.0, hspec-discover-2.6.0 - hackage-security # QuickCheck - haddock-library # base-compat-0.10.1, hspec-2.5.1 From a587de962d256b67a8dbae35e0c43cabd49cc135 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Sat, 5 Dec 2020 17:52:53 -0600 Subject: [PATCH 2244/2682] Expect test failure for http-conduit, #5771 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 98b16709..6753d270 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5788,6 +5788,7 @@ expected-test-failures: - yesod-gitrev # https://github.com/DanBurton/yesod-gitrev/issues/5 - chronos # #5443/closed - massiv + - http-conduit # https://github.com/commercialhaskell/stackage/issues/5771 # Recursive deps https://github.com/fpco/stackage/issues/1818 - options From e8580628fe185055c18d61b21233367996d013a9 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Sat, 5 Dec 2020 21:53:22 -0600 Subject: [PATCH 2245/2682] Add upper bounds for hledger packages, #5772 --- build-constraints.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6753d270..d938fdea 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5067,6 +5067,12 @@ packages: - persistent-test < 0 - persistent-typed-db < 0.1.0.2 + # https://github.com/commercialhaskell/stackage/issues/5772 + - hledger-lib < 1.20 + - hledger < 1.20 + - hledger-ui < 1.20 + - hledger-web < 1.20 + # end of packages # Package flags are applied to individual packages, and override the values of From 7bbe9f301a36ade29c5a0509add1e996e10375e6 Mon Sep 17 00:00:00 2001 From: Brandon Chinn Date: Sat, 5 Dec 2020 21:41:03 -0800 Subject: [PATCH 2246/2682] Add persistent-mtl --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d938fdea..eaa29ee2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4296,6 +4296,7 @@ packages: "Brandon Chinn @brandonchinn178": - resourcet-pool + - persistent-mtl "Akshay Mankar @akshaymankar": - jsonpath From f4cd9c34fd2d66f9eab0de1c81e9cae258f22d63 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Sun, 6 Dec 2020 16:00:44 -0600 Subject: [PATCH 2247/2682] Upper bound for chiphunk, #5774 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index eaa29ee2..825394de 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5074,6 +5074,9 @@ packages: - hledger-ui < 1.20 - hledger-web < 1.20 + # https://github.com/commercialhaskell/stackage/issues/5774 + - chiphunk < 0.1.3.0 + # end of packages # Package flags are applied to individual packages, and override the values of From 3ce62e4739cc4d3c0b0e75e20dabdba5b28b1b37 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Mon, 7 Dec 2020 12:54:34 -0800 Subject: [PATCH 2248/2682] allow pretty-simple 4.0.0.0, prettyprinter 1.7.0 --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 825394de..8deba808 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -520,7 +520,7 @@ packages: - monadlist - ref-tf - unordered-containers - - prettyprinter < 1.7.0 # https://github.com/commercialhaskell/stackage/issues/5558 + - prettyprinter - prettyprinter-ansi-terminal - prettyprinter-compat-wl-pprint - prettyprinter-compat-ansi-wl-pprint @@ -2508,7 +2508,7 @@ packages: - natural-transformation - password - password-instances - - pretty-simple < 4 # https://github.com/commercialhaskell/stackage/issues/5644 + - pretty-simple - print-console-colors - read-env-var - servant-checked-exceptions < 0 # ghc 8.10 via servant From 5ba00194eac09712d3f906a18b620a97fa6ec214 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Mon, 7 Dec 2020 18:14:53 -0600 Subject: [PATCH 2249/2682] Expect test failure for monad-logger-prefix, #5776 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 825394de..207fc4d4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5799,6 +5799,7 @@ expected-test-failures: - chronos # #5443/closed - massiv - http-conduit # https://github.com/commercialhaskell/stackage/issues/5771 + - monad-logger-prefix # https://github.com/commercialhaskell/stackage/issues/5776 # Recursive deps https://github.com/fpco/stackage/issues/1818 - options From e8d7f23ba14f53f138a6c57d30cee8e3256d50e5 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Mon, 7 Dec 2020 18:24:14 -0600 Subject: [PATCH 2250/2682] Expect test failure for hgeometry, #5777 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 207fc4d4..1c6cc1e5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5800,6 +5800,7 @@ expected-test-failures: - massiv - http-conduit # https://github.com/commercialhaskell/stackage/issues/5771 - monad-logger-prefix # https://github.com/commercialhaskell/stackage/issues/5776 + - hgeometry # https://github.com/commercialhaskell/stackage/issues/5777 # Recursive deps https://github.com/fpco/stackage/issues/1818 - options From 07c930fa2ba96057449b54293e5b31a4b7c85347 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Mon, 7 Dec 2020 18:26:16 -0600 Subject: [PATCH 2251/2682] Remove upper bounds for hledger, closes #5772 --- build-constraints.yaml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1c0aeeda..3a996613 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5068,12 +5068,6 @@ packages: - persistent-test < 0 - persistent-typed-db < 0.1.0.2 - # https://github.com/commercialhaskell/stackage/issues/5772 - - hledger-lib < 1.20 - - hledger < 1.20 - - hledger-ui < 1.20 - - hledger-web < 1.20 - # https://github.com/commercialhaskell/stackage/issues/5774 - chiphunk < 0.1.3.0 From 54852cd7d3a2d975c4d5b019b5aef020fa722f22 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Mon, 7 Dec 2020 18:27:56 -0600 Subject: [PATCH 2252/2682] Remove upper bound for chiphunk, closes #5774 --- build-constraints.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3a996613..85b13774 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5068,8 +5068,6 @@ packages: - persistent-test < 0 - persistent-typed-db < 0.1.0.2 - # https://github.com/commercialhaskell/stackage/issues/5774 - - chiphunk < 0.1.3.0 # end of packages From 44d14e610cd8668d18d46e417aa4bb83fd642de8 Mon Sep 17 00:00:00 2001 From: Jon Schoning Date: Mon, 7 Dec 2020 21:49:22 -0600 Subject: [PATCH 2253/2682] enable pinboard --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 85b13774..d2f189db 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -802,7 +802,7 @@ packages: - mandrill < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build "Jon Schoning @jonschoning": - - pinboard < 0 # via time-1.9.3 + - pinboard - swagger-petstore < 0 # via katip "Jasper Van der Jeugt @jaspervdj": From 6d2ee84accae18059551cbb780ef60923e56ea4b Mon Sep 17 00:00:00 2001 From: Mathieu Boespflug Date: Tue, 8 Dec 2020 16:48:08 +0200 Subject: [PATCH 2254/2682] Readd HaskellR (inline-r and H) --- build-constraints.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 85b13774..b19c0990 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2218,15 +2218,14 @@ packages: - fn "Mathieu Boespflug @mboes": - - cassette < 0 # build failure with GHC 8.4 - choice - distributed-closure - inline-java < 0 - - inline-r < 0 # via inline-c + - inline-r - jni < 0 # compilation failure - jvm < 0 # transitive compilation failure - jvm-streaming < 0 - - H < 0 # via inline-r + - H - sparkle < 0 - th-lift From 50936685c7eba89912c78ebd0d475aafd462619c Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Tue, 8 Dec 2020 12:20:53 -0600 Subject: [PATCH 2255/2682] Add upper bounds for prettyprinter/hledger, #5779 --- build-constraints.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 85b13774..2269a0be 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5068,6 +5068,14 @@ packages: - persistent-test < 0 - persistent-typed-db < 0.1.0.2 + # https://github.com/commercialhaskell/stackage/issues/5779 + - prettyprinter < 1.7.0 + - pretty-simple < 4 + - hledger-lib < 1.20 + - hledger < 1.20 + - hledger-ui < 1.20 + - hledger-web < 1.20 + # end of packages From 0e94be81cd82ddb6daabb7d8431bb7ceb4863f7c Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Tue, 8 Dec 2020 12:24:11 -0600 Subject: [PATCH 2256/2682] Add upper bound for structured-cli, #5780 --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2269a0be..67690e41 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5076,6 +5076,8 @@ packages: - hledger-ui < 1.20 - hledger-web < 1.20 + # https://github.com/commercialhaskell/stackage/issues/5780 + - structured-cli < 2.7 # end of packages From 12dd41ccc412561f847fe3c81c88f298f15691ed Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Tue, 8 Dec 2020 12:25:52 -0600 Subject: [PATCH 2257/2682] Don't expect a failure for monad-logger-prefix tests, closes #5776 --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 67690e41..da2408e5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5801,7 +5801,6 @@ expected-test-failures: - chronos # #5443/closed - massiv - http-conduit # https://github.com/commercialhaskell/stackage/issues/5771 - - monad-logger-prefix # https://github.com/commercialhaskell/stackage/issues/5776 - hgeometry # https://github.com/commercialhaskell/stackage/issues/5777 # Recursive deps https://github.com/fpco/stackage/issues/1818 From 190684002f7d72bbfd3593d2d13267c9361fbdc7 Mon Sep 17 00:00:00 2001 From: patrick brisbin Date: Wed, 9 Dec 2020 09:38:37 -0500 Subject: [PATCH 2258/2682] Re-enable and add Freckle packages --- build-constraints.yaml | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3844d0b6..bd90d2fc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1057,12 +1057,21 @@ packages: - asciidiagram "Patrick Brisbin @pbrisbin": - - bugsnag-haskell < 0 # via yesod-core + - bugsnag-haskell - gravatar - load-env - - yesod-auth-oauth2 < 0 # via hoauth2 & yesod-core - - yesod-markdown < 0 # pbrisbin/yesod-markdown#65 - - yesod-paginator < 0 # via persistent + - yesod-auth-oauth2 + - yesod-markdown + - yesod-paginator + + # Freckle packages I'm maintaining for us + - bcp47 + - bcp47-orphan + - faktory + - graphula + - generics-eot # 3rd party, but needed by Graphula + - hspec-expectations-json + - yesod-page-cursor "Felipe Lessa @meteficha": - fb @@ -4072,7 +4081,7 @@ packages: - codec-beam "Chris Parks @cdparks": - - closed < 0 # via persistent + - closed "Chris Coffey @ChrisCoffey": - servant-tracing < 0 # via servant-server From 8897a5c20819505afe831abc6286096390afe886 Mon Sep 17 00:00:00 2001 From: patrick brisbin Date: Wed, 9 Dec 2020 09:55:10 -0500 Subject: [PATCH 2259/2682] Package name typo --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index bd90d2fc..2d02ae66 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1066,7 +1066,7 @@ packages: # Freckle packages I'm maintaining for us - bcp47 - - bcp47-orphan + - bcp47-orphans - faktory - graphula - generics-eot # 3rd party, but needed by Graphula From 74d7935276cf42ed9edb60c81986190874345523 Mon Sep 17 00:00:00 2001 From: patrick brisbin Date: Wed, 9 Dec 2020 10:13:26 -0500 Subject: [PATCH 2260/2682] Re-disable some packages --- build-constraints.yaml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2d02ae66..03d742ee 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1060,17 +1060,16 @@ packages: - bugsnag-haskell - gravatar - load-env - - yesod-auth-oauth2 - - yesod-markdown + - yesod-auth-oauth2 < 0 # hoauth2-1.16.0 + - yesod-markdown < 0 # pandoc - yesod-paginator # Freckle packages I'm maintaining for us - - bcp47 - - bcp47-orphans - - faktory - - graphula - - generics-eot # 3rd party, but needed by Graphula - - hspec-expectations-json + - bcp47 < 0 # aeson, megaparsec, text + - bcp47-orphans < 0 # esqueleto, text + - faktory < 0 # megaparsec + - graphula < 0 # aeson, base, bytestring, generics-eot, unliftio-core + - hspec-expectations-json # base, text - yesod-page-cursor "Felipe Lessa @meteficha": From 7e1e8af9fecdd3d27d26c486533da625771af21a Mon Sep 17 00:00:00 2001 From: patrick brisbin Date: Wed, 9 Dec 2020 10:14:06 -0500 Subject: [PATCH 2261/2682] Typo --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 03d742ee..beba34fc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1069,7 +1069,7 @@ packages: - bcp47-orphans < 0 # esqueleto, text - faktory < 0 # megaparsec - graphula < 0 # aeson, base, bytestring, generics-eot, unliftio-core - - hspec-expectations-json # base, text + - hspec-expectations-json < 0 # base, text - yesod-page-cursor "Felipe Lessa @meteficha": From 8c21c83f71966ff8c7c0d100220d871932400309 Mon Sep 17 00:00:00 2001 From: Joshua Booth Date: Thu, 10 Dec 2020 20:03:09 -0800 Subject: [PATCH 2262/2682] add bitwise-enum --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3844d0b6..2cb2cf03 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4461,6 +4461,9 @@ packages: "Alejandro Peralta Bazas @aleperaltabazas": - hocon + + "Joshua Booth @jnbooth": + - bitwise-enum "Grandfathered dependencies": - Boolean From 5007f23d19ea71667b8570d06fc659b637b79c75 Mon Sep 17 00:00:00 2001 From: Tom Sydney Kerckhove Date: Fri, 11 Dec 2020 23:43:11 +0100 Subject: [PATCH 2263/2682] re-enable envparse --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3844d0b6..80d62b5c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1452,7 +1452,7 @@ packages: "Matvey Aksenov @supki": - terminal-size - - envparse < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build + - envparse "Luis G. Torres @giogadi": - kdt From ea2827d4c1651ce907143e6248228876a94fd10f Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Sat, 12 Dec 2020 07:39:21 +0000 Subject: [PATCH 2264/2682] hedgehog-1.0.4 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3844d0b6..fd156169 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -346,7 +346,7 @@ packages: - normalization-insensitive < 0 # GHC 8.4 via unicode-transforms "Jacob Stanley @jacobstanley": - - hedgehog + - hedgehog < 1.0.4 # https://github.com/commercialhaskell/stackage/issues/5784 - hedgehog-quickcheck - transformers-bifunctors - unix-compat From e8ce0e4969220a0c6e8b75a8d4ad078a977b535a Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Mon, 14 Dec 2020 07:51:42 +0000 Subject: [PATCH 2265/2682] yesod-core failing a test --- build-constraints.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 924ea9c2..40211a04 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1063,7 +1063,7 @@ packages: - yesod-auth-oauth2 < 0 # hoauth2-1.16.0 - yesod-markdown < 0 # pandoc - yesod-paginator - + # Freckle packages I'm maintaining for us - bcp47 < 0 # aeson, megaparsec, text - bcp47-orphans < 0 # esqueleto, text @@ -4469,7 +4469,7 @@ packages: "Alejandro Peralta Bazas @aleperaltabazas": - hocon - + "Joshua Booth @jnbooth": - bitwise-enum @@ -5913,6 +5913,9 @@ expected-test-failures: # https://github.com/cdornan/fmt/issues/30 - fmt + # https://github.com/yesodweb/yesod/issues/1711 + - yesod-core + # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From b9036bede0937d41e90292dd5a2b124e696a7e2a Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Wed, 16 Dec 2020 09:53:27 -0800 Subject: [PATCH 2266/2682] disable prettyprinter-compat-annotated-wl-pprint for hledger/pretty-simple/prettyprinter (#5779) --- build-constraints.yaml | 28 +++++++++++----------------- 1 file changed, 11 insertions(+), 17 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 40211a04..15d14326 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1373,21 +1373,20 @@ packages: - uri-encode "Simon Michael @simonmichael": - # + - quickbench < 0 # via docopt + - regex-compat-tdfa + - shelltestrunner # The hledger project aims to keep the latest release of the core - # hledger-lib and hledger packages in stackage nightly at all times. - # When other hledger-* packages have too-restrictive bounds, we prefer they - # be removed, rather than putting an upper bound on hledger-lib and hledger. - # (https://github.com/fpco/stackage/issues/3494) - # + # "hledger-lib" and "hledger" packages in stackage nightly at all times. + # When other hledger-* packages (or minor non-hledger packages) have + # incompatible bounds, we would prefer they be disabled temporarily, + # rather than disabling the latest hledger-lib and hledger. + # (https://github.com/commercialhaskell/stackage/issues/3494, + # https://github.com/commercialhaskell/stackage/issues/5779) - hledger - hledger-lib - hledger-ui - hledger-web - # - - quickbench < 0 # via docopt - - regex-compat-tdfa - - shelltestrunner "Mihai Maruseac @mihaimaruseac": - io-manager @@ -5080,12 +5079,7 @@ packages: - persistent-typed-db < 0.1.0.2 # https://github.com/commercialhaskell/stackage/issues/5779 - - prettyprinter < 1.7.0 - - pretty-simple < 4 - - hledger-lib < 1.20 - - hledger < 1.20 - - hledger-ui < 1.20 - - hledger-web < 1.20 + - prettyprinter-compat-annotated-wl-pprint < 0 # https://github.com/commercialhaskell/stackage/issues/5780 - structured-cli < 2.7 @@ -6409,7 +6403,7 @@ no-revisions: - pantry - rio-prettyprint - hi-file-parser -# #3706: +# https://github.com/commercialhaskell/stackage/issues/3706: - hledger - hledger-lib - hledger-ui From 04156d1f05818ef5e1bcd5b4d18bada4056c804a Mon Sep 17 00:00:00 2001 From: Marco Z Date: Thu, 17 Dec 2020 15:25:45 +0100 Subject: [PATCH 2267/2682] Re-enable backprop --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 40211a04..c4566ff3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2174,7 +2174,7 @@ packages: "Justin Le @mstksg": - advent-of-code-api < 0 # ghc 8.10 via servant - auto - - backprop < 0 # via vinyl + - backprop - bins - configurator-export - decidable < 0 # via vinyl From 5211602c8323c37d30dc418345c870afb5c55e3e Mon Sep 17 00:00:00 2001 From: Marco Z Date: Thu, 17 Dec 2020 15:33:00 +0100 Subject: [PATCH 2268/2682] Re-enable packages that were blocked by vinyl --- build-constraints.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 40211a04..b6d9d4a1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2174,17 +2174,17 @@ packages: "Justin Le @mstksg": - advent-of-code-api < 0 # ghc 8.10 via servant - auto - - backprop < 0 # via vinyl + - backprop - bins - configurator-export - - decidable < 0 # via vinyl + - decidable - emd < 0 # via typelits-witnesses - - functor-products < 0 # via vinyl + - functor-products - hamilton < 0 # via vty - - hmatrix-backprop < 0 # via backprop + - hmatrix-backprop - hmatrix-vector-sized - lens-typelevel < 0 # GHC 8.8 via ghc-typelits-presburger (konn/equational-reasoning-in-haskell#4) - - list-witnesses < 0 # via vinyl + - list-witnesses - nonempty-containers - one-liner-instances - prompt From 199dbd780a17d832ce7fae253f7f4db292a22910 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 17 Dec 2020 15:12:52 -0500 Subject: [PATCH 2269/2682] add indexed-traversable under @ekmett --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 40211a04..97b86462 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -956,6 +956,7 @@ packages: - hybrid-vectors - hyperloglog - hyphenation + - indexed-traversable - integration - intern - intervals From 9e49d433418fa71df45fcf1681cf1834a64dfa3f Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 17 Dec 2020 15:31:18 -0500 Subject: [PATCH 2270/2682] move removal constraint --- build-constraints.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1951baae..8e8c5b0c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -524,7 +524,7 @@ packages: - prettyprinter-ansi-terminal - prettyprinter-compat-wl-pprint - prettyprinter-compat-ansi-wl-pprint - - prettyprinter-compat-annotated-wl-pprint + - prettyprinter-compat-annotated-wl-pprint < 0 # https://github.com/commercialhaskell/stackage/issues/5779 - prettyprinter-convert-ansi-wl-pprint "Joe M @joe9": @@ -5079,9 +5079,6 @@ packages: - persistent-test < 0 - persistent-typed-db < 0.1.0.2 - # https://github.com/commercialhaskell/stackage/issues/5779 - - prettyprinter-compat-annotated-wl-pprint < 0 - # https://github.com/commercialhaskell/stackage/issues/5780 - structured-cli < 2.7 From 0ecfa87a4a88ca1c1fa8abb04ae6a3e3457413d5 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 17 Dec 2020 15:40:04 -0500 Subject: [PATCH 2271/2682] skip more tests to unblock QuickCheck --- build-constraints.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index bb01093a..d129f3e5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5339,7 +5339,7 @@ skipped-tests: - exact-pi # QuickCHeck 2.12, tasty-1.2 - focuslist # via genvalidity, see https://github.com/commercialhaskell/stackage/pull/4436#issuecomment-475110614 - ghc-prof # via tasty-1.2 - - ghc-source-gen # via QuickCheck- + - ghc-source-gen # via QuickCheck-2.14 - github # hspec-2.6.0, hspec-discover-2.6.0 - hackage-security # QuickCheck - haddock-library # base-compat-0.10.1, hspec-2.5.1 @@ -5374,6 +5374,7 @@ skipped-tests: - servant-client-core # via hspec-2.7.0 - servant-docs # via tasty-1.2 - servant-foreign # via hspec-2.7.0 + - servant-http-streams # via QuickCheck-2.14 - servant-js # via hspec-2.7.0 - servant-server # via hspec-2.7.0 - servant-swagger # via hspec-2.7.0 @@ -5389,6 +5390,7 @@ skipped-tests: - text-short # tasty 1.1 - these # via tasty-1.2 - tree-diff # trifecta 2 + - uniprot-kb # QuickCheck-2.14 - vector # QuickCheck-2.11.3 - vinyl # via hspec-2.7.0 - wide-word # via semirings From f795fbb12b7c95d66fc669f9da4a09477b1fd9c1 Mon Sep 17 00:00:00 2001 From: Manuel Date: Fri, 18 Dec 2020 00:12:11 +0100 Subject: [PATCH 2272/2682] add experimenter --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d129f3e5..e2c98df1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -9,6 +9,9 @@ cabal-format-version: "3.0" # Constraints for brand new builds packages: + "Manuel Schneckenreither @schnecki": + - experimenter + "Kamil Dworakowski @luntain": - error-or - error-or-utils From b2dc95358f31dc7e8a043b6a5ce0cf9304303a81 Mon Sep 17 00:00:00 2001 From: Michael Gale Date: Fri, 18 Dec 2020 12:10:36 +0000 Subject: [PATCH 2273/2682] Add `logstash` and related packages --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d129f3e5..754dadb6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4431,6 +4431,9 @@ packages: "Michael B. Gale @mbg": - c14n + - katip-logstash + - logstash + - monad-logger-logstash - moss - wai-rate-limit - wai-rate-limit-redis From c084254864eab1d92ebbe449fcdc6441f44b98dd Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Fri, 18 Dec 2020 11:39:58 -0500 Subject: [PATCH 2274/2682] skip more tests per #5566 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d129f3e5..6baed27d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4422,6 +4422,7 @@ packages: - elynx - mcmc - dirichlet + - circular "Eric Rochester @erochest": - text-regex-replace @@ -5331,11 +5332,13 @@ skipped-tests: - cabal-install # tasty 1.1 - cayley-client # via hspec-2.6.0 - cborg # via tasty-1.2 + - circular # QuickCHeck-2.14 - clay # via hspec-discover-2.6.0 - codec-rpm # via hspec-2.6.0 - colour # QuickCheck-2.11.3 - drawille # hspec 2.4 - ed25519 # QuickCheck, hlint and more + - elynx-tree # QuickCheck-2.14 - exact-pi # QuickCHeck 2.12, tasty-1.2 - focuslist # via genvalidity, see https://github.com/commercialhaskell/stackage/pull/4436#issuecomment-475110614 - ghc-prof # via tasty-1.2 From e574599e40c76bedc07faa42a977dfc1acbd5911 Mon Sep 17 00:00:00 2001 From: Mitchell Rosen Date: Sun, 20 Dec 2020 19:51:53 -0500 Subject: [PATCH 2275/2682] Add ki, remove wai-middleware-travisci --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6baed27d..7fed9626 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2091,11 +2091,11 @@ packages: - aeson-better-errors "Mitchell Rosen @mitchellwrosen": + - ki - tasty-hspec - termbox - text-ansi - timer-wheel - - wai-middleware-travisci < 0 # via base-4.13.0.0 "QBayLogic B.V. ": - ghc-tcplugins-extra From df7fe379d2d2120863da20502f4a927a973c10d9 Mon Sep 17 00:00:00 2001 From: Manuel Date: Tue, 22 Dec 2020 18:30:56 +0100 Subject: [PATCH 2276/2682] Update build-constraints.yaml --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index e2c98df1..0cc398e8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -11,6 +11,7 @@ cabal-format-version: "3.0" packages: "Manuel Schneckenreither @schnecki": - experimenter + - api-maker "Kamil Dworakowski @luntain": - error-or From 93941b8ec6cdee0210513d4789e8800947b9863c Mon Sep 17 00:00:00 2001 From: patrick brisbin Date: Tue, 22 Dec 2020 13:54:17 -0500 Subject: [PATCH 2277/2682] Re-enable yesod-auth-oauth2 and hspec-expectations-json Both packages have been released with passing nightly builds. --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6baed27d..1ead2912 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1061,7 +1061,7 @@ packages: - bugsnag-haskell - gravatar - load-env - - yesod-auth-oauth2 < 0 # hoauth2-1.16.0 + - yesod-auth-oauth2 - yesod-markdown < 0 # pandoc - yesod-paginator @@ -1070,7 +1070,7 @@ packages: - bcp47-orphans < 0 # esqueleto, text - faktory < 0 # megaparsec - graphula < 0 # aeson, base, bytestring, generics-eot, unliftio-core - - hspec-expectations-json < 0 # base, text + - hspec-expectations-json - yesod-page-cursor "Felipe Lessa @meteficha": From d02dd627535089ca1c475f05e651b695f9bf6f6f Mon Sep 17 00:00:00 2001 From: patrick brisbin Date: Tue, 22 Dec 2020 14:21:07 -0500 Subject: [PATCH 2278/2682] Re-disable hspec-expectations-json My local verification missed something. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1ead2912..3179fdc9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1070,7 +1070,7 @@ packages: - bcp47-orphans < 0 # esqueleto, text - faktory < 0 # megaparsec - graphula < 0 # aeson, base, bytestring, generics-eot, unliftio-core - - hspec-expectations-json + - hspec-expectations-json < 0 # aeson, text - yesod-page-cursor "Felipe Lessa @meteficha": From a17dddd12e49ca3308cb66f7a9d9bd33b60e2cc8 Mon Sep 17 00:00:00 2001 From: Alexander Vershilov Date: Wed, 23 Dec 2020 00:12:31 +0300 Subject: [PATCH 2279/2682] Add HaskellNet package --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6baed27d..9954e1d8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3869,6 +3869,7 @@ packages: "Alexander Vershilov @qnikst": - stm-conduit - co-log-concurrent + - HaskellNet "Tung Dao @tungd": - time-locale-vietnamese From d577a9f58b979505d86d340fdbe9e6ebde623d2a Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 25 Dec 2020 12:31:46 +0800 Subject: [PATCH 2280/2682] tasty-1.4 (#5795) --- build-constraints.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6baed27d..19e7d2e6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4991,9 +4991,11 @@ packages: - Win32 == 2.6.1.0 "Stackage upper bounds": - # https://github.com/commercialhaskell/stackage/issues/5570 + # https://github.com/commercialhaskell/stackage/issues/5570 1.3 + # https://github.com/commercialhaskell/stackage/issues/5795 1.4 - tasty < 1.3 - tasty-golden < 2.3.3.3 + - tasty-silver < 3.2 # https://github.com/commercialhaskell/stackage/issues/5587 - network < 3.1.2.0 From 91aa46936876412e207bb0e012001300c21c4d77 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 25 Dec 2020 12:32:34 +0800 Subject: [PATCH 2281/2682] trailing whitespace --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 19e7d2e6..223bc19c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1382,7 +1382,7 @@ packages: # When other hledger-* packages (or minor non-hledger packages) have # incompatible bounds, we would prefer they be disabled temporarily, # rather than disabling the latest hledger-lib and hledger. - # (https://github.com/commercialhaskell/stackage/issues/3494, + # (https://github.com/commercialhaskell/stackage/issues/3494, # https://github.com/commercialhaskell/stackage/issues/5779) - hledger - hledger-lib From 7c9eb299ee5e876a9fc9755139b67d11d00cd057 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 25 Dec 2020 13:13:19 +0800 Subject: [PATCH 2282/2682] try reenabling hadolint (#5729) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1f357657..3a37c5c1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3774,7 +3774,7 @@ packages: - language-docker - docker-build-cacher < 0 # GHC 8.4 via turtle - mysql-haskell-nem < 0 # via io-streams - - hadolint < 0 # via megaparsec-9.0.1 https://github.com/commercialhaskell/stackage/issues/5729 + - hadolint "Phil Ruffwind @Rufflewind": - blas-hs < 0 # MonadFail From 447adb065472e0912ed0bed54c7f847b7f8583ea Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 25 Dec 2020 13:14:05 +0800 Subject: [PATCH 2283/2682] remove whitespace --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3a37c5c1..3da1bd9c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -12,7 +12,7 @@ packages: "Manuel Schneckenreither @schnecki": - experimenter - api-maker - + "Kamil Dworakowski @luntain": - error-or - error-or-utils From b5c18cd1a79d2ab13476a06e443781a2a351ebb7 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 25 Dec 2020 14:26:26 +0800 Subject: [PATCH 2284/2682] build.sh: update stack to 2.5.1 --- automated/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automated/build.sh b/automated/build.sh index 52113d7d..dc4e9f29 100755 --- a/automated/build.sh +++ b/automated/build.sh @@ -68,7 +68,7 @@ chmod +x curator echo -n "curator version: " docker run --rm -v $(pwd)/curator:/exe $IMAGE /exe --version -curl -L https://github.com/commercialhaskell/stack/releases/download/v2.3.3/stack-2.3.3-linux-x86_64-bin > stack +curl -L https://github.com/commercialhaskell/stack/releases/download/v2.5.1/stack-2.5.1-linux-x86_64-bin > stack #curl -L "https://download.fpcomplete.com/stackage-curator-2/stack-fffc0a40e2253788f6b9cb7471c03fd571d69bde.bz2" | bunzip2 > stack chmod +x stack echo -n "stack version: " From d79a3626d98d32d1411ce3439932c8e79e379299 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 25 Dec 2020 15:47:41 +0800 Subject: [PATCH 2285/2682] update Nightly to ghc-8.10.3 --- Dockerfile | 2 +- build-constraints.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 66888f1f..7d242a7a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM fpco/pid1:18.04 ENV HOME /home/stackage ENV LANG en_US.UTF-8 -ENV GHCVER 8.10.2 +ENV GHCVER 8.10.3 # NOTE: also update debian-bootstrap.sh when cuda version changes ENV PATH /home/stackage/.stack/programs/x86_64-linux/ghc-$GHCVER/bin:/usr/local/cuda-10.0/bin:/usr/sbin:/usr/bin:/sbin:/bin diff --git a/build-constraints.yaml b/build-constraints.yaml index 3da1bd9c..72dc2436 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1,6 +1,6 @@ ghc-major-version: "8.10" # new curator is supposed to use exact GHC version -ghc-version: "8.10.2" +ghc-version: "8.10.3" # This affects which version of the Cabal file format we allow. We # should ensure that this is always no greater than the version From 161ba90dfa077a5f7d08289a7db2be7f0d145d86 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 25 Dec 2020 16:19:14 +0800 Subject: [PATCH 2286/2682] try downgrading universum to 1.5 for ghc-8.10.3 text (#5796) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 72dc2436..15e2eb8b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3726,7 +3726,7 @@ packages: - log-warper < 0 # GHC 8.4 via lifted-async-0.10.0.1 - o-clock - tasty-hunit-compat - - universum + - universum < 1.6.0 # text-1.2.4: https://github.com/commercialhaskell/stackage/issues/5796 - with-utf8 - uncaught-exception From 6e3b48f8045d93bdf0340b5778dc84cfd05382be Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sat, 26 Dec 2020 17:22:31 +0800 Subject: [PATCH 2287/2682] CURATORS: missing diskspace After updating Nightly from 8.10.2 to 8.10.3, I had to remove the old stack builds under the previous ghc Cabal version which were taking up a lot of space (~96GB) --- CURATORS.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CURATORS.md b/CURATORS.md index d6325c89..847515d8 100644 --- a/CURATORS.md +++ b/CURATORS.md @@ -344,7 +344,9 @@ LTS minor bumps typically are run on Sundays. * You can detect the problem by running `df`. If you see that `/` is out of space, we have a problem. * If you see that `/var/stackage/` is out of space, you can: - * run `./etc/diskspace/clean-old-stack-libs.sh [nightly|lts-XX]` (hopefully sufficient) + * run `./etc/diskspace/clean-old-stack-libs.sh [nightly|lts-XX]` + * If that is insufficient then remove all the old builds under the previous ghc/Cabal version: + * `rm -r /var/stackage/stackage/automated/work/[nightly|lts-XX]/unpack-dir/unpacked/*/.stack-work/dist/x86_64-linux/Cabal-X.Y.0.0/` optionally (not recommended?): * `rm -r /var/stackage/stackage/automated/work/lts*/unpack-dir/unpacked/` From 59baca24ec6a2ffb050a340b1a2ad9f7ae841ca0 Mon Sep 17 00:00:00 2001 From: Bodigrim Date: Sat, 26 Dec 2020 14:21:44 +0000 Subject: [PATCH 2288/2682] Add quote-quot --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 15e2eb8b..c905ed2e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3256,6 +3256,7 @@ packages: - tasty-rerun - integer-roots - smallcheck + - quote-quot "Ashley Yakeley @AshleyYakeley": - countable From c6fbb33a2bb94c8d26602fb2d9f5385e27f2c896 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 27 Dec 2020 11:31:59 +0800 Subject: [PATCH 2289/2682] brick testsuite failing (jtdaugherty/brick#303) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 15e2eb8b..9eb9aec6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5816,6 +5816,7 @@ expected-test-failures: - massiv - http-conduit # https://github.com/commercialhaskell/stackage/issues/5771 - hgeometry # https://github.com/commercialhaskell/stackage/issues/5777 + - brick # https://github.com/jtdaugherty/brick/issues/303 # Recursive deps https://github.com/fpco/stackage/issues/1818 - options From 89f16c81efaba3b8b16fdc98a28893f9403dce76 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 27 Dec 2020 11:43:44 +0800 Subject: [PATCH 2290/2682] tasty-hedgehog allows hedgehog-1.0.4 (fixes #5784) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 385fb361..dfec61b0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -350,7 +350,7 @@ packages: - normalization-insensitive < 0 # GHC 8.4 via unicode-transforms "Jacob Stanley @jacobstanley": - - hedgehog < 1.0.4 # https://github.com/commercialhaskell/stackage/issues/5784 + - hedgehog - hedgehog-quickcheck - transformers-bifunctors - unix-compat From e3b3449d2796b1a37101c7ea00fdfcffea2dfa52 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 27 Dec 2020 11:56:22 +0800 Subject: [PATCH 2291/2682] relax persistent bounds (#5767) --- build-constraints.yaml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index dfec61b0..3baddf30 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5075,15 +5075,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5766 - hnix-store-core < 0.3 - # https://github.com/commercialhaskell/stackage/issues/5767 - - persistent < 2.11 - - persistent-mysql < 2.10.3 - - persistent-postgresql < 2.11 - - persistent-sqlite < 2.11 - - persistent-template < 2.8.3 - - persistent-test < 0 - - persistent-typed-db < 0.1.0.2 - # https://github.com/commercialhaskell/stackage/issues/5780 - structured-cli < 2.7 From 93858ede22a154fd16b768285dbb9f3283f60aa6 Mon Sep 17 00:00:00 2001 From: Dennis Gosnell Date: Sun, 27 Dec 2020 15:16:49 +0900 Subject: [PATCH 2292/2682] Re-enable xml-html-qq --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index dfec61b0..177eb6c7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2528,7 +2528,7 @@ packages: - servant-static-th < 0 # ghc 8.10 via servant - termonad < 0 # via gi-vte - world-peace - - xml-html-qq < 0 # via heterocephalus + - xml-html-qq - xml-indexed-cursor "Franklin Chen @FranklinChen": From 1022ff52769eab2010a8eee0503dc2ca053357ee Mon Sep 17 00:00:00 2001 From: Simon Jakobi Date: Sun, 27 Dec 2020 10:18:14 +0100 Subject: [PATCH 2293/2682] Re-enable prettyprinter-compat-annotated-wl-pprint --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8c61adf0..eade6009 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -528,7 +528,7 @@ packages: - prettyprinter-ansi-terminal - prettyprinter-compat-wl-pprint - prettyprinter-compat-ansi-wl-pprint - - prettyprinter-compat-annotated-wl-pprint < 0 # https://github.com/commercialhaskell/stackage/issues/5779 + - prettyprinter-compat-annotated-wl-pprint - prettyprinter-convert-ansi-wl-pprint "Joe M @joe9": From 23c3baee447a00ed08eae26d22a3f9ce19c04cd0 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 27 Dec 2020 17:04:17 +0800 Subject: [PATCH 2294/2682] yesod-page-cursor testsuite fails with persistent-2.11 (freckle/yesod-page-cursor#20) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index eade6009..2c38e413 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5809,6 +5809,7 @@ expected-test-failures: - http-conduit # https://github.com/commercialhaskell/stackage/issues/5771 - hgeometry # https://github.com/commercialhaskell/stackage/issues/5777 - brick # https://github.com/jtdaugherty/brick/issues/303 + - yesod-page-cursor # https://github.com/freckle/yesod-page-cursor/issues/20 # Recursive deps https://github.com/fpco/stackage/issues/1818 - options From 0db0886656078f103a1f00a58a763b276e0cdb9a Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 27 Dec 2020 17:12:58 +0800 Subject: [PATCH 2295/2682] xls is failing to find gnu/stubs-64.h (harendra-kumar/xls#7) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2c38e413..d2fc615c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -600,7 +600,7 @@ packages: - packcheck - streamly < 0 # primitive 0.7.1.0 - unicode-transforms - - xls + - xls < 0 # https://github.com/harendra-kumar/xls/issues/7 "Pranay Sashank @pranaysashank": - fusion-plugin-types From 4faf10ddec93cdf69f7a8c09b7246b8a6a0c9eec Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 27 Dec 2020 17:19:41 +0800 Subject: [PATCH 2296/2682] string-random testsuite broke (hiratara/hs-string-random#16) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d2fc615c..c7873a4f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5810,6 +5810,7 @@ expected-test-failures: - hgeometry # https://github.com/commercialhaskell/stackage/issues/5777 - brick # https://github.com/jtdaugherty/brick/issues/303 - yesod-page-cursor # https://github.com/freckle/yesod-page-cursor/issues/20 + - string-random # https://github.com/hiratara/hs-string-random/issues/16 # Recursive deps https://github.com/fpco/stackage/issues/1818 - options From 733ffc77eb42b7a2624228c0989e5e2124b33c40 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 27 Dec 2020 17:30:25 +0800 Subject: [PATCH 2297/2682] disable range (#5799) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c7873a4f..6319c0fc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2329,7 +2329,7 @@ packages: - hsass "Robert Massaioli @robertmassaioli": - - range + - range < 0 # https://github.com/commercialhaskell/stackage/issues/5799 "Vladislav Zavialov @int-index": - transformers-lift < 0 # transformers https://github.com/commercialhaskell/stackage/issues/4408 From 4db1f6cc9f2c1214d386fb058103949950aa6eca Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 27 Dec 2020 17:34:24 +0800 Subject: [PATCH 2298/2682] ghc-events testsuite missing file (haskell/ghc-events#70) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6319c0fc..a78c7e94 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5752,6 +5752,7 @@ expected-test-failures: - doctest-discover # 0.1.0.9 https://github.com/karun012/doctest-discover/issues/22 - doctest - reanimate-svg # https://github.com/commercialhaskell/stackage/issues/5688 + - ghc-events # https://github.com/haskell/ghc-events/issues/70 # Assertion failures, these can be real bugs or just limitations # in the test cases. From 461420579681deda89d9bd0312c0fd5188e620af Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 27 Dec 2020 20:36:37 +0800 Subject: [PATCH 2299/2682] functor-products (mstksg/functor-products#1) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a78c7e94..a6495a82 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2183,7 +2183,7 @@ packages: - configurator-export - decidable - emd < 0 # via typelits-witnesses - - functor-products + - functor-products < 0 # https://github.com/mstksg/functor-products/issues/1 - hamilton < 0 # via vty - hmatrix-backprop - hmatrix-vector-sized From 6f8911f5d2abaf9d429819c719265c1d19d42791 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 27 Dec 2020 20:38:55 +0800 Subject: [PATCH 2300/2682] ListLike failing with ghc-8.10.3 (ddssff/listlike#8) and deps (#5801) --- build-constraints.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index a6495a82..a3e9bf8c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5078,6 +5078,16 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5780 - structured-cli < 2.7 + # https://github.com/commercialhaskell/stackage/issues/5801 + - ListLike < 0 # https://github.com/ddssff/listlike/issues/8 + - Earley < 0 + - debian < 0 + - cabal-debian <0 # via debian + - process-extras < 0 + - pdfinfo < 0 # via process-extra + - tasty-silver < 0 # via process-extras + - hoogle < 0 # via process-extra + # end of packages # Package flags are applied to individual packages, and override the values of @@ -5337,6 +5347,7 @@ skipped-tests: - clay # via hspec-discover-2.6.0 - codec-rpm # via hspec-2.6.0 - colour # QuickCheck-2.11.3 + - dhall-json # tasty-silver https://github.com/commercialhaskell/stackage/issues/5801 - drawille # hspec 2.4 - ed25519 # QuickCheck, hlint and more - elynx-tree # QuickCheck-2.14 From 4fff1e125c3f030d575878406ef3ab42df118d1e Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 27 Dec 2020 21:30:30 +0800 Subject: [PATCH 2301/2682] fixup! functor-products (mstksg/functor-products#1) (#5802) --- build-constraints.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a3e9bf8c..3a696c73 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5078,6 +5078,11 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5780 - structured-cli < 2.7 + # https://github.com/commercialhaskell/stackage/issues/5802 + - functor-products < 0 # https://github.com/mstksg/functor-products/issues/1 + - decidable < 0 + - list-witnesses < 0 + # https://github.com/commercialhaskell/stackage/issues/5801 - ListLike < 0 # https://github.com/ddssff/listlike/issues/8 - Earley < 0 @@ -5087,7 +5092,6 @@ packages: - pdfinfo < 0 # via process-extra - tasty-silver < 0 # via process-extras - hoogle < 0 # via process-extra - # end of packages # Package flags are applied to individual packages, and override the values of From 2e56634802aa2d848425958f01f0dd8440fda475 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 27 Dec 2020 22:50:45 +0800 Subject: [PATCH 2302/2682] Revert "disable range (#5799)": should be safe again This reverts commit 733ffc77eb42b7a2624228c0989e5e2124b33c40. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3a696c73..fd3f5258 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2329,7 +2329,7 @@ packages: - hsass "Robert Massaioli @robertmassaioli": - - range < 0 # https://github.com/commercialhaskell/stackage/issues/5799 + - range "Vladislav Zavialov @int-index": - transformers-lift < 0 # transformers https://github.com/commercialhaskell/stackage/issues/4408 From 9ef147121cce14eda079d9433d86868eee32e019 Mon Sep 17 00:00:00 2001 From: Omari Norman Date: Sun, 27 Dec 2020 14:04:02 -0500 Subject: [PATCH 2303/2682] Abandon Earley --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index fd3f5258..29a2a254 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -753,7 +753,6 @@ packages: - rainbow - rainbox - multiarg - - Earley - ofx - accuerr - timelens @@ -4948,6 +4947,7 @@ packages: # See https://github.com/fpco/stackage/issues/1056 "Abandoned packages": - curl + - Earley - non-empty-sequence # Purescript From 6184a72d4b596b0d8223cf10fdb660926599747d Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 28 Dec 2020 11:19:34 +0800 Subject: [PATCH 2304/2682] Revert "brick testsuite failing (jtdaugherty/brick#303)" This reverts commit c6fbb33a2bb94c8d26602fb2d9f5385e27f2c896. --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index fd3f5258..12ecc172 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5824,7 +5824,6 @@ expected-test-failures: - massiv - http-conduit # https://github.com/commercialhaskell/stackage/issues/5771 - hgeometry # https://github.com/commercialhaskell/stackage/issues/5777 - - brick # https://github.com/jtdaugherty/brick/issues/303 - yesod-page-cursor # https://github.com/freckle/yesod-page-cursor/issues/20 - string-random # https://github.com/hiratara/hs-string-random/issues/16 From ce4f77b991b8b6839f856bffd4d0253632aef57e Mon Sep 17 00:00:00 2001 From: Jonas Carpay Date: Mon, 28 Dec 2020 14:54:38 +0900 Subject: [PATCH 2305/2682] Add tasty-focus --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index fd3f5258..0358f233 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2564,6 +2564,7 @@ packages: - apecs-physics - aeson-commit - js-chart + - tasty-focus "Spencer Janssen @spencerjanssen": - Xauth From d1a5d3559f366375be6b6fd23874f9be8a226790 Mon Sep 17 00:00:00 2001 From: Toshio Ito Date: Wed, 30 Dec 2020 14:18:22 +0900 Subject: [PATCH 2306/2682] re-enable debug-ito's packages. Now they are compatible with ghc-8.10 (base-4.14) --- build-constraints.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 80cccbd0..5d756130 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3138,15 +3138,15 @@ packages: "Toshio Ito @debug-ito": - fold-debounce - - fold-debounce-conduit < 0 # ghc 8.10 + - fold-debounce-conduit - stopwatch - wikicfp-scraper - - wild-bind < 0 # ghc 8.10 - - wild-bind-x11 < 0 # ghc 8.10 - - greskell < 0 # ghc 8.10 - - greskell-core < 0 # ghc 8.10 - - greskell-websocket < 0 # ghc 8.10 - - hspec-need-env < 0 # ghc 8.10 + - wild-bind + - wild-bind-x11 + - greskell + - greskell-core + - greskell-websocket + - hspec-need-env "Cies Breijs @cies": - htoml From 56c79cc20bf7aa8496c9ce3270cf52ce1787c3fb Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 30 Dec 2020 12:23:56 +0800 Subject: [PATCH 2307/2682] base64 testsuite crashing (emilypi/base64#31) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 80cccbd0..4dc9c0ac 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5628,6 +5628,7 @@ expected-test-failures: # re-enabled, but will eventually fail again. Only remove these # from expected-failures if we know a fix has been released. - aeson-lens # https://github.com/tanakh/aeson-lens/issues/10 + - base64 # https://github.com/emilypi/base64/issues/31 - cabal-debian # https://github.com/ddssff/cabal-debian/issues/50 - capataz # https://github.com/roman/Haskell-capataz/issues/6 - concurrent-extra # https://github.com/basvandijk/concurrent-extra/issues/12 From 620c5fbeb98fdb6797fae20ecaceacff60b147a6 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 30 Dec 2020 12:33:33 +0800 Subject: [PATCH 2308/2682] email-validate testsuite failing (Porges/email-validate-hs#55) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4dc9c0ac..cc0df168 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5828,6 +5828,7 @@ expected-test-failures: - hgeometry # https://github.com/commercialhaskell/stackage/issues/5777 - yesod-page-cursor # https://github.com/freckle/yesod-page-cursor/issues/20 - string-random # https://github.com/hiratara/hs-string-random/issues/16 + - email-validate # https://github.com/Porges/email-validate-hs/issues/55 # Recursive deps https://github.com/fpco/stackage/issues/1818 - options From f40638cf5c8ae7e1fbf82e5b3314a24da0d19fcd Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 30 Dec 2020 13:21:42 +0800 Subject: [PATCH 2309/2682] revert to stack-2.3.3 for building to see if it reduces build churn --- automated/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automated/build.sh b/automated/build.sh index dc4e9f29..52113d7d 100755 --- a/automated/build.sh +++ b/automated/build.sh @@ -68,7 +68,7 @@ chmod +x curator echo -n "curator version: " docker run --rm -v $(pwd)/curator:/exe $IMAGE /exe --version -curl -L https://github.com/commercialhaskell/stack/releases/download/v2.5.1/stack-2.5.1-linux-x86_64-bin > stack +curl -L https://github.com/commercialhaskell/stack/releases/download/v2.3.3/stack-2.3.3-linux-x86_64-bin > stack #curl -L "https://download.fpcomplete.com/stackage-curator-2/stack-fffc0a40e2253788f6b9cb7471c03fd571d69bde.bz2" | bunzip2 > stack chmod +x stack echo -n "stack version: " From 44cc596b024d6629442ed9d57aeb37ac9999df22 Mon Sep 17 00:00:00 2001 From: Shlomo Shuck Date: Wed, 30 Dec 2020 14:24:29 -0500 Subject: [PATCH 2310/2682] Add pcre2 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index cc0df168..29989e04 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4482,6 +4482,9 @@ packages: "Joshua Booth @jnbooth": - bitwise-enum + + "Shlomo Shuck @sjshuck": + - pcre2 "Grandfathered dependencies": - Boolean From c801372762463db8fec8741ec67c389d0944b23f Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 31 Dec 2020 16:03:00 +0800 Subject: [PATCH 2311/2682] Revert back to stack-2.5.1 from stack-2.3.3: seems same rebuilding This reverts commit f40638cf5c8ae7e1fbf82e5b3314a24da0d19fcd. --- automated/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automated/build.sh b/automated/build.sh index 52113d7d..dc4e9f29 100755 --- a/automated/build.sh +++ b/automated/build.sh @@ -68,7 +68,7 @@ chmod +x curator echo -n "curator version: " docker run --rm -v $(pwd)/curator:/exe $IMAGE /exe --version -curl -L https://github.com/commercialhaskell/stack/releases/download/v2.3.3/stack-2.3.3-linux-x86_64-bin > stack +curl -L https://github.com/commercialhaskell/stack/releases/download/v2.5.1/stack-2.5.1-linux-x86_64-bin > stack #curl -L "https://download.fpcomplete.com/stackage-curator-2/stack-fffc0a40e2253788f6b9cb7471c03fd571d69bde.bz2" | bunzip2 > stack chmod +x stack echo -n "stack version: " From 85fa43991a0d494033dfaf6820d474f1a245a0a9 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 31 Dec 2020 16:53:35 +0800 Subject: [PATCH 2312/2682] conferer < 1.0.0.0 (#5808) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 29989e04..72883626 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5096,6 +5096,9 @@ packages: - pdfinfo < 0 # via process-extra - tasty-silver < 0 # via process-extras - hoogle < 0 # via process-extra + + # https://github.com/commercialhaskell/stackage/issues/5808 + - conferer < 1.0.0.0 # end of packages # Package flags are applied to individual packages, and override the values of From 9e769bcc9850be219271ca703ee795164aed1d11 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 31 Dec 2020 16:59:30 +0800 Subject: [PATCH 2313/2682] add more conferor bounds (#5808) --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 72883626..6cf455fa 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5099,6 +5099,8 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5808 - conferer < 1.0.0.0 + - conferer-hspec < 1.0.0.0 + - conferer-warp < 1.0.0.0 # end of packages # Package flags are applied to individual packages, and override the values of From 200ec34282eb64dbf56e0f154fa057a3440d47ad Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 1 Jan 2021 08:40:31 +0800 Subject: [PATCH 2314/2682] bech32 testsuite fail (input-output-hk/bech32#31) --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6cf455fa..7d057446 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5940,6 +5940,8 @@ expected-test-failures: # https://github.com/yesodweb/yesod/issues/1711 - yesod-core + # https://github.com/input-output-hk/bech32/issues/31 + - bech32 # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From e5edd6399895ed1029d1166b974111aa45ef79db Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 1 Jan 2021 08:41:10 +0800 Subject: [PATCH 2315/2682] nuke some trailing whitespace --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7d057446..772f4712 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4482,7 +4482,7 @@ packages: "Joshua Booth @jnbooth": - bitwise-enum - + "Shlomo Shuck @sjshuck": - pcre2 From 9c2571ec5fd62d7446cd0c14f8cb2660ecd8e4f7 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 1 Jan 2021 08:48:04 +0800 Subject: [PATCH 2316/2682] clash-prelude testsuite doctests (clash-lang/clash-compiler#1622) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 772f4712..7f5eb55c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5942,6 +5942,9 @@ expected-test-failures: # https://github.com/input-output-hk/bech32/issues/31 - bech32 + + # https://github.com/clash-lang/clash-compiler/issues/1622 + - clash-prelude # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 6d19b51074634cb13726bc3097a09fb9fad49d63 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 1 Jan 2021 08:54:00 +0800 Subject: [PATCH 2317/2682] free < 5.1.6 (#5667) profunctors-5.5.2 ([changelog](http://hackage.haskell.org/package/profunctors-5.5.2/changelog)) (Edward Kmett @ek mett, Stackage upper bounds) is out of bounds for: - [ ] free-5.1.6 (>=5.6.1 && < 6). Edward Kmett @ekmett. @RyanGlScott. Used by: library --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7f5eb55c..868ca4cc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5058,6 +5058,7 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5667 - profunctors < 5.6 + - free < 5.1.6 # https://github.com/commercialhaskell/stackage/issues/5666 - generic-deriving < 1.14 From 0593032e515e8db03ad1e68d5222efe852c00695 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 1 Jan 2021 16:46:17 +0800 Subject: [PATCH 2318/2682] headroom doctest MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit src/Headroom/Command/Utils.hs:20:1: error: Could not load module ‘RIO’ It is a member of the hidden package ‘rio-0.1.19.0’. --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 868ca4cc..00f77e17 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5946,6 +5946,9 @@ expected-test-failures: # https://github.com/clash-lang/clash-compiler/issues/1622 - clash-prelude + + # doctest: rio + - headroom # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 34ffc0c96bcd18bd1c6b12a46da5787ff6feee66 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 1 Jan 2021 21:25:56 +0800 Subject: [PATCH 2319/2682] xml-indexed-cursor doctest MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit src/Text/XML/Cursor/Indexed.hs:111:1: error: Could not load module ‘Data.Default’ It is a member of the hidden package ‘data-default-0.7.1.1’. src/Text/XML/Cursor/Indexed.hs:120:1: error: Could not load module ‘Text.XML’ It is a member of the hidden package ‘xml-conduit-1.9.0.0’. --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 00f77e17..88a4401f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5947,8 +5947,9 @@ expected-test-failures: # https://github.com/clash-lang/clash-compiler/issues/1622 - clash-prelude - # doctest: rio + # doctest - headroom + - xml-indexed-cursor # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From aac1959cccee8f083fde49f4cd5fbaa7ddb33da5 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 1 Jan 2021 21:29:49 +0800 Subject: [PATCH 2320/2682] yesod-paginator doctest MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Test suite failure for package yesod-paginator-1.1.1.0 src/Yesod/Paginator/Prelude.hs:17:1: error: Could not load module ‘Safe’ It is a member of the hidden package ‘safe-0.3.19’. src/Yesod/Paginator/Prelude.hs:20:1: error: Could not load module ‘Web.PathPieces’ It is a member of the hidden package ‘path-pieces-0.2.1’. --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 88a4401f..efd12bbe 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5950,6 +5950,7 @@ expected-test-failures: # doctest - headroom - xml-indexed-cursor + - yesod-paginator # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 58230a24c13aef563208262909cc43f3b5a55743 Mon Sep 17 00:00:00 2001 From: Marco Z Date: Fri, 1 Jan 2021 15:31:18 +0100 Subject: [PATCH 2321/2682] Add dot cc @andrewthad --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index efd12bbe..83e23cfa 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1182,6 +1182,7 @@ packages: "Andrew Thaddeus Martin @andrewthad": - colonnade < 0 # via profunctors-5.5 - blaze-colonnade < 0 # via profunctors-5.5 + - dot "Chris Allen @bitemyapp": - machines-directory < 0 # via machines-0.7 From 5f0f446df42c5b7d4d5ddb41bad4d1e338e89a1e Mon Sep 17 00:00:00 2001 From: Lucas David Traverso Date: Sun, 3 Jan 2021 02:07:42 -0300 Subject: [PATCH 2322/2682] Replace deprecated `conferer-source-json` with `conferer-aeson` --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 82b41357..3fc5ceb6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3987,7 +3987,7 @@ packages: #- conferer-snap # Because snap - conferer-warp - conferer-hspec - - conferer-source-json + - conferer-aeson "Tim Humphries @thumphries": - transformers-either < 0 # via exceptions-0.10.0 From 7949a2311a596fe4b00155948379dd59a21617c1 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Mon, 4 Jan 2021 01:04:46 +0000 Subject: [PATCH 2323/2682] Disables bitwise-enum (#5811) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 82b41357..d0efb45c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4482,7 +4482,7 @@ packages: - hocon "Joshua Booth @jnbooth": - - bitwise-enum + - bitwise-enum < 0 # https://github.com/commercialhaskell/stackage/issues/5811 "Shlomo Shuck @sjshuck": - pcre2 From 9b6e4add9cbf22034d300045a3c81a9381c3bdea Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Mon, 4 Jan 2021 01:07:02 +0000 Subject: [PATCH 2324/2682] Unrestricts conferer, et al. (#5810) --- build-constraints.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d0efb45c..22fec5ff 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5099,10 +5099,6 @@ packages: - tasty-silver < 0 # via process-extras - hoogle < 0 # via process-extra - # https://github.com/commercialhaskell/stackage/issues/5808 - - conferer < 1.0.0.0 - - conferer-hspec < 1.0.0.0 - - conferer-warp < 1.0.0.0 # end of packages # Package flags are applied to individual packages, and override the values of From 654ae93f7adf9d92df052ed34b9d1a92851fc37a Mon Sep 17 00:00:00 2001 From: Alexey Kuleshevich Date: Mon, 4 Jan 2021 14:37:10 +0300 Subject: [PATCH 2325/2682] Add new packages `massiv-serialise` and `massiv-persist` --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5616a678..13ecebba 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3483,6 +3483,8 @@ packages: - massiv - massiv-io - massiv-test + - massiv-serialise + - massiv-persist - scheduler - Color - safe-decimal From 39b54496a79008313acc1cf3de90bd0d870ea13d Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Tue, 5 Jan 2021 02:59:14 +0000 Subject: [PATCH 2326/2682] Disables yesod-page-cursor tests (#5813) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5616a678..34f6953f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5430,6 +5430,7 @@ skipped-tests: - persistent-mysql # https://github.com/commercialhaskell/stackage/issues/5641 - persistent-postgresql # https://github.com/commercialhaskell/stackage/issues/5641 - persistent-sqlite # https://github.com/commercialhaskell/stackage/issues/5641 + - yesod-page-cursor # https://github.com/commercialhaskell/stackage/issues/5813 # Blocked due to tests failing to compile for GHC 8.6 - async-refresh From 0c95c1a2fd1316e0855f50abc4c5886b7fb1f260 Mon Sep 17 00:00:00 2001 From: Philipp Hausmann Date: Thu, 31 Dec 2020 10:33:27 +0100 Subject: [PATCH 2327/2682] Add language-thrift --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6cf455fa..b3cacf78 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2166,6 +2166,7 @@ packages: - semiring-simple "Philipp Hausmann @phile314": + - language-thrift - tasty-silver "Michael Thompson @michaelt": From e160b7aa3e763192c9b689e3c04c6ec223361de0 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Wed, 6 Jan 2021 00:15:35 -0500 Subject: [PATCH 2328/2682] Preserves snapshot-incomplete with NOPLAN=1 Previously, 'NOPLAN=1' would overwrite the 'snapshot-incomplete.yaml' file. This makes it difficult tweak things (e.g. by explicitly bumping a package in response to maintainer request). Now 'NOPLAN=1' will skip generating 'snapshot-incomplete.yaml' entirely, and it will be up to a previous run w/out a 'NOPLAN' override to set this up properly. --- automated/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automated/build.sh b/automated/build.sh index dc4e9f29..a5cc0294 100755 --- a/automated/build.sh +++ b/automated/build.sh @@ -108,7 +108,7 @@ then docker run $ARGS_PREBUILD $IMAGE /bin/bash -c "curator update && curator constraints --target $TARGET && curator snapshot-incomplete --target $TARGET && curator snapshot" fi else - docker run $ARGS_PREBUILD $IMAGE /bin/bash -c "curator snapshot-incomplete --target $TARGET && curator snapshot" + docker run $ARGS_PREBUILD $IMAGE /bin/bash -c "curator snapshot" fi From 20202e92c2849737fed8a75ef72a7114a81e83ca Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Wed, 6 Jan 2021 16:30:27 -0500 Subject: [PATCH 2329/2682] Restricts lukko < 0.1.1.3 (#5795) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7e189b6f..6b7fcf49 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4719,7 +4719,7 @@ packages: - log-base < 0 # ghc 8.10 via unliftio-core - logging-facade - lrucache - - lukko + - lukko < 0.1.1.3 # https://github.com/commercialhaskell/stackage/issues/5795 - lzma - managed - math-functions From 1b625a7e3ba26fdbf99bd50dd3af888335789c2e Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Wed, 6 Jan 2021 16:33:19 -0500 Subject: [PATCH 2330/2682] Re-adds bitwise-enum (#5811) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6b7fcf49..c085edcf 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4485,7 +4485,7 @@ packages: - hocon "Joshua Booth @jnbooth": - - bitwise-enum < 0 # https://github.com/commercialhaskell/stackage/issues/5811 + - bitwise-enum "Shlomo Shuck @sjshuck": - pcre2 From 7c6cf9e247a660b16d00f3b02bbdaaff80519394 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sat, 9 Jan 2021 05:23:06 +0000 Subject: [PATCH 2331/2682] Disables hedgehog-classes (#5816) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c085edcf..07f4073a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2285,7 +2285,7 @@ packages: - chronos - refined - these-skinny - - hedgehog-classes + - hedgehog-classes < 0 # https://github.com/commercialhaskell/stackage/issues/5816 "Kostiantyn Rybnikov @k-bx": - SHA From 397581eaff122a14810066429d3660fda96cbd65 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sun, 10 Jan 2021 22:23:14 +0000 Subject: [PATCH 2332/2682] Restricts hsshellscript < 3.5.0 (#5817) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 07f4073a..b1a7e074 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -492,7 +492,7 @@ packages: - cabal-plan - topograph - ix-shapable - - hsshellscript + - hsshellscript < 3.5.0 # https://github.com/commercialhaskell/stackage/issues/5817 - hyper - storable-endian From 76bfaa68997393cac9df0d5d1ceb110ff70e4fb5 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sun, 10 Jan 2021 22:36:54 +0000 Subject: [PATCH 2333/2682] Re-enables tasty-expected-failure (#5537) --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b1a7e074..f7b303fc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5034,9 +5034,6 @@ packages: - rebase < 1.7 - rerebase < 1.7 - # https://github.com/commercialhaskell/stackage/issues/5537 - - tasty-expected-failure < 0.12 - # https://github.com/commercialhaskell/stackage/issues/5592 - ansi-terminal < 0.11 From 3db37523c59b4d76e5f53cb24c11151d13f2b4e4 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sun, 10 Jan 2021 23:18:07 +0000 Subject: [PATCH 2334/2682] Skips lukko test suite (#5795) --- build-constraints.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f7b303fc..1aae0a66 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4719,7 +4719,7 @@ packages: - log-base < 0 # ghc 8.10 via unliftio-core - logging-facade - lrucache - - lukko < 0.1.1.3 # https://github.com/commercialhaskell/stackage/issues/5795 + - lukko - lzma - managed - math-functions @@ -5622,6 +5622,9 @@ skipped-tests: # https://github.com/commercialhaskell/stackage/issues/5746 - parameterized + + # via tasty-1.4 https://github.com/commercialhaskell/stackage/issues/5795 + - lukko # end of skipped-tests From 9a9cd90a96c7c1deda3f86e36f43d902d364b0fd Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sun, 10 Jan 2021 23:39:02 +0000 Subject: [PATCH 2335/2682] Disables tasty-expected-failure tests (cycles) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1aae0a66..5caa4d4f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5599,6 +5599,7 @@ skipped-tests: - distributive # via hspec - bifunctors # via hspec - doctest # via hspec + - tasty-expected-failure # via tasty-hedgehog # Requires filesystem access - json-autotype From 8db0ee5857fe95bd74b86a309840cb1d4eebbfe4 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 8 Jan 2021 17:37:27 -0700 Subject: [PATCH 2336/2682] Upper bound `tasty-ant-xml` (#5820, #5795) --- build-constraints.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5caa4d4f..35cda327 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4073,7 +4073,9 @@ packages: "Sergey Vinokurov @sergv": - bencoding < 0 # via bencode - emacs-module < 0 # ghc 8.10.1 #5436/closed - - tasty-ant-xml + # https://github.com/commercialhaskell/stackage/issues/5820 + # via https://github.com/commercialhaskell/stackage/issues/5795 1.4 + - tasty-ant-xml < 1.1.8 "Eugene Smolanka @esmolanka": - sexp-grammar From bb983cbb75765c19927fc04dce35cd20a7a872b1 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 9 Jan 2021 17:37:27 -0700 Subject: [PATCH 2337/2682] Upper bound `witherable-class` (#5821) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 35cda327..37430a38 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2157,7 +2157,7 @@ packages: - drinkery - monad-skeleton - xml-lens - - witherable-class + - witherable-class < 0.0.1 # https://github.com/commercialhaskell/stackage/issues/5821 - deriving-aeson "Peter Harpending @pharpend": From 79df07e93dbd39fad914e462d2d2202d880532f4 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 10 Jan 2021 17:37:27 -0700 Subject: [PATCH 2338/2682] Upper bound `binaryen` (#5822) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 37430a38..7d975dba 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3304,7 +3304,7 @@ packages: - language-fortran < 0 # build failure with GHC 8.4 "Cheng Shao @TerrorJack": - - binaryen + - binaryen < 0.0.6 # https://github.com/commercialhaskell/stackage/issues/5822 - cabal-toolkit < 0 # GHC 8.4 via Cabal-2.2.0.0 - direct-rocksdb < 0 # GHC 8.4 via Cabal-2.2.0.0 From 5ec386a4123c3aaa3ab0c428f1eb6db7a75b5185 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 12 Jan 2021 17:41:30 -0800 Subject: [PATCH 2339/2682] Fully disable `binaryen` (#5822) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7d975dba..92841986 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3304,7 +3304,7 @@ packages: - language-fortran < 0 # build failure with GHC 8.4 "Cheng Shao @TerrorJack": - - binaryen < 0.0.6 # https://github.com/commercialhaskell/stackage/issues/5822 + - binaryen < 0 # https://github.com/commercialhaskell/stackage/issues/5822 - cabal-toolkit < 0 # GHC 8.4 via Cabal-2.2.0.0 - direct-rocksdb < 0 # GHC 8.4 via Cabal-2.2.0.0 From 8d4f79faa4abddacc7ed07325ff849508cab080f Mon Sep 17 00:00:00 2001 From: Albert Krewinkel Date: Mon, 11 Jan 2021 12:19:46 +0100 Subject: [PATCH 2340/2682] Add tasty-lua --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 92841986..602665c6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3640,6 +3640,7 @@ packages: - hslua-module-system - hslua-module-text - jira-wiki-markup + - tasty-lua "Judah Jacobson @judah": - proto-lens-protobuf-types From d7b7481ff238018fc670050ad111c4a1df8474cb Mon Sep 17 00:00:00 2001 From: Andreas Abel Date: Tue, 12 Jan 2021 15:28:45 +0100 Subject: [PATCH 2341/2682] [ #5801 ] Reenable ListLike Packages depending on ListLike should be reenabled in the next step. --- build-constraints.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 602665c6..55ad639d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5093,11 +5093,11 @@ packages: - list-witnesses < 0 # https://github.com/commercialhaskell/stackage/issues/5801 - - ListLike < 0 # https://github.com/ddssff/listlike/issues/8 - - Earley < 0 - - debian < 0 + # https://github.com/ddssff/listlike/issues/8 [fixed] + - Earley < 0 # via ListLike + - debian < 0 # via ListLike - cabal-debian <0 # via debian - - process-extras < 0 + - process-extras < 0 # via ListLike - pdfinfo < 0 # via process-extra - tasty-silver < 0 # via process-extras - hoogle < 0 # via process-extra From edb305ea367284b0305e1fedf3da39e68546d7c5 Mon Sep 17 00:00:00 2001 From: Andreas Abel Date: Thu, 14 Jan 2021 19:31:21 +0100 Subject: [PATCH 2342/2682] [ #5801 #5819 ] take over grandfathered ListLike --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 55ad639d..a161674e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -27,6 +27,7 @@ packages: - STMonadTrans - Agda - agda2lagda + - ListLike "Diogo Biazus ": - hasql-notifications @@ -4507,7 +4508,6 @@ packages: - HsOpenSSL - HsYAML - JuicyPixels-scale-dct - - ListLike - MemoTrie - NumInstances - Only From d76202cb9df5c8b419f7e2491df438288e7d48e2 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 15 Jan 2021 09:56:53 -0800 Subject: [PATCH 2343/2682] Upper bound `yesod-auth-oauth2` (#5825) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a161674e..95482a44 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1065,7 +1065,7 @@ packages: - bugsnag-haskell - gravatar - load-env - - yesod-auth-oauth2 + - yesod-auth-oauth2 < 0.6.2 # https://github.com/commercialhaskell/stackage/issues/5825 - yesod-markdown < 0 # pandoc - yesod-paginator From 5a3d16ee22deb678e48f0550a9013e4cb176b7a7 Mon Sep 17 00:00:00 2001 From: Andreas Abel Date: Fri, 15 Jan 2021 09:58:08 +0100 Subject: [PATCH 2344/2682] Remove duplicate "Agda" entry The "Agda < 0" under @ars contradicts the "Agda" entry under @andreasabel. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 95482a44..b6b1060d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2435,7 +2435,7 @@ packages: - ipython-kernel "Andrés Sicard-Ramírez @asr": - - Agda < 0 + [] # - Agda moved to Andreas Abel "James Cook @mokus0": - dependent-map < 0 # via constraints-extras From 13ffa08ee99c5078f41c99df4d723a231121216d Mon Sep 17 00:00:00 2001 From: Andreas Abel Date: Fri, 15 Jan 2021 09:08:38 +0100 Subject: [PATCH 2345/2682] [ #5801 ] Reenable process-extras and Earley after fix of ListLike --- build-constraints.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b6b1060d..a686ea8e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5094,10 +5094,8 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5801 # https://github.com/ddssff/listlike/issues/8 [fixed] - - Earley < 0 # via ListLike - - debian < 0 # via ListLike + - debian < 0 # via process-extras - cabal-debian <0 # via debian - - process-extras < 0 # via ListLike - pdfinfo < 0 # via process-extra - tasty-silver < 0 # via process-extras - hoogle < 0 # via process-extra From 6192d089e2b909cf4272c77cf2b5bb65c0232bb7 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 15 Jan 2021 09:59:26 -0800 Subject: [PATCH 2346/2682] Test `ListLike` and fix #5801 --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a686ea8e..19f44a60 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5809,7 +5809,6 @@ expected-test-failures: - reanimate # https://github.com/commercialhaskell/stackage/issues/5626 # Compilation failures - - ListLike # No issue tracker, e-mail sent to maintainer - amazonka-core # https://github.com/brendanhay/amazonka/issues/397 - async-timer # https://github.com/mtesseract/async-timer/issues/8 - commutative # https://github.com/athanclark/commutative/issues/4 From 0b1d2768549c56747d31acc76f80d24aa63cfed0 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 15 Jan 2021 10:24:17 -0800 Subject: [PATCH 2347/2682] Still disable `Agda` (#5826) --- build-constraints.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 19f44a60..c57509a7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -25,7 +25,7 @@ packages: "Andreas Abel @andreasabel": - BNFC - STMonadTrans - - Agda + - Agda < 0 # https://github.com/commercialhaskell/stackage/issues/5826 - agda2lagda - ListLike @@ -2434,9 +2434,6 @@ packages: "Andrew Gibiansky @gibiansky": - ipython-kernel - "Andrés Sicard-Ramírez @asr": - [] # - Agda moved to Andreas Abel - "James Cook @mokus0": - dependent-map < 0 # via constraints-extras - dependent-sum < 0 # via constraints-extras From 6eae2ca8b0ebfe46c7f7c34d390307a765d92591 Mon Sep 17 00:00:00 2001 From: Chris Penner Date: Sat, 16 Jan 2021 13:23:27 -0600 Subject: [PATCH 2348/2682] Add slick --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index c57509a7..d0965128 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -113,6 +113,7 @@ packages: - lens-regex-pcre - lens-csv - selections + - slick - unipatterns "Emily Pillmore @topos": From fb8c0f6ce7fd425ed615edb48d1006500489f9e4 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 16 Jan 2021 11:52:41 -0800 Subject: [PATCH 2349/2682] Disable `unification-fd` (#5827) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c57509a7..4a84e9b8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2019,7 +2019,7 @@ packages: - hxt-tagsoup - hexpat - digits - - unification-fd + - unification-fd < 0 # https://github.com/commercialhaskell/stackage/issues/5827 - logict - leveldb-haskell - system-argv0 From 9e31ca84bcf6cc0ed9ec2fc9306376df7985d621 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 17 Jan 2021 08:05:38 -0800 Subject: [PATCH 2350/2682] Upper bound `{ghc-typelits,singletons}-presburger` (#5829) --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4a84e9b8..3c3dc531 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4387,8 +4387,8 @@ packages: "Hiromi Ishii @konn": - equational-reasoning - - ghc-typelits-presburger - - singletons-presburger + - ghc-typelits-presburger < 0.5 # https://github.com/commercialhaskell/stackage/issues/5829 + - singletons-presburger < 0.5 # https://github.com/commercialhaskell/stackage/issues/5829 - type-natural - subcategories - sized From 4264082a04d91590a3777a8f2947d00a8c15ec6e Mon Sep 17 00:00:00 2001 From: Andreas Abel Date: Sun, 17 Jan 2021 12:06:56 +0100 Subject: [PATCH 2351/2682] [ #5801 ] Reenable debian, hoogle, pdfinfo (via process-extras) process-extras is back in nightly, these packages build now --- build-constraints.yaml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3c3dc531..00788805 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5090,12 +5090,8 @@ packages: - list-witnesses < 0 # https://github.com/commercialhaskell/stackage/issues/5801 - # https://github.com/ddssff/listlike/issues/8 [fixed] - - debian < 0 # via process-extras - cabal-debian <0 # via debian - - pdfinfo < 0 # via process-extra - - tasty-silver < 0 # via process-extras - - hoogle < 0 # via process-extra + - tasty-silver < 0 # via tasty # end of packages From 91d510ef0032d084d5316c794bb5448d2f7293ca Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 17 Jan 2021 08:28:37 -0800 Subject: [PATCH 2352/2682] Upper bound `type-natural` temporarily as we want builds to run to cut new LTS (#5829) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 00788805..e3987b04 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4389,7 +4389,7 @@ packages: - equational-reasoning - ghc-typelits-presburger < 0.5 # https://github.com/commercialhaskell/stackage/issues/5829 - singletons-presburger < 0.5 # https://github.com/commercialhaskell/stackage/issues/5829 - - type-natural + - type-natural < 1 # https://github.com/commercialhaskell/stackage/issues/5829 - subcategories - sized From 98f58cb9f90c88c09ee78713eb3b586112facd6e Mon Sep 17 00:00:00 2001 From: Hiromi ISHII Date: Mon, 18 Jan 2021 01:55:07 +0900 Subject: [PATCH 2353/2682] Fixes #5829: drops uppber bounds of `ghc-typelits-presburger`, `singletons-presburger` and `type-natural`. --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e3987b04..179e6589 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4387,9 +4387,9 @@ packages: "Hiromi Ishii @konn": - equational-reasoning - - ghc-typelits-presburger < 0.5 # https://github.com/commercialhaskell/stackage/issues/5829 - - singletons-presburger < 0.5 # https://github.com/commercialhaskell/stackage/issues/5829 - - type-natural < 1 # https://github.com/commercialhaskell/stackage/issues/5829 + - ghc-typelits-presburger + - singletons-presburger + - type-natural - subcategories - sized From 3f6462b2fe64b9a35a9514d65a4ccb5c7053c58f Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Mon, 18 Jan 2021 17:37:27 -0700 Subject: [PATCH 2354/2682] Expect test failure for `jose-jwt` (#5822) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 179e6589..e883dc4a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5946,6 +5946,9 @@ expected-test-failures: - headroom - xml-indexed-cursor - yesod-paginator + + # https://github.com/commercialhaskell/stackage/issues/5832 + - jose-jwt # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From ef63590688d692375b460f40490809c49e04101d Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Mon, 18 Jan 2021 17:37:27 -0700 Subject: [PATCH 2355/2682] Expect test failure for `duration` (#5823) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index e883dc4a..463d6819 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5949,6 +5949,9 @@ expected-test-failures: # https://github.com/commercialhaskell/stackage/issues/5832 - jose-jwt + + # https://github.com/commercialhaskell/stackage/issues/5833 + - duration # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 7e45a2d94428886643e086b65e2d49bb069d3a45 Mon Sep 17 00:00:00 2001 From: Simon Jakobi Date: Tue, 19 Jan 2021 01:47:38 +0100 Subject: [PATCH 2356/2682] Remove dhall-lsp-server from expected-test-failures Context: https://github.com/dhall-lang/dhall-haskell/issues/1891 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 179e6589..965a9667 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5927,9 +5927,6 @@ expected-test-failures: # https://github.com/kazu-yamamoto/dns/issues/153 - dns - # https://github.com/dhall-lang/dhall-haskell/issues/1891 - - dhall-lsp-server - # https://github.com/cdornan/fmt/issues/30 - fmt From 571364080519d4406acb6d90b7f7d792540e9f22 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 19 Jan 2021 14:11:40 -0800 Subject: [PATCH 2357/2682] Upper bound `call-stack` (#5834) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 463d6819..41fe7674 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4549,7 +4549,7 @@ packages: - c2hs - ca-province-codes - cabal-doctest - - call-stack + - call-stack < 0.3.0 # https://github.com/commercialhaskell/stackage/issues/5834 - casing - cassava-megaparsec - cborg From 109f6e0f70958434fa5e26f7c4baa22eeee02fd4 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 19 Jan 2021 14:16:04 -0800 Subject: [PATCH 2358/2682] More `call-stack` bound issues (#5834) --- build-constraints.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 41fe7674..6b384c01 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4549,7 +4549,7 @@ packages: - c2hs - ca-province-codes - cabal-doctest - - call-stack < 0.3.0 # https://github.com/commercialhaskell/stackage/issues/5834 + - call-stack - casing - cassava-megaparsec - cborg @@ -5093,6 +5093,10 @@ packages: - cabal-debian <0 # via debian - tasty-silver < 0 # via tasty + # https://github.com/commercialhaskell/stackage/issues/5834 + - call-stack < 0.3.0 + - HUnit < 1.6.2.0 + # end of packages # Package flags are applied to individual packages, and override the values of From ea03a37dc6fbedfb467a1104b36e02f4c5c316e6 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Thu, 21 Jan 2021 23:34:17 +0100 Subject: [PATCH 2359/2682] clock < 0.8.2 for #5836 --- build-constraints.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1dc31b6b..f7acb073 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5097,6 +5097,9 @@ packages: - call-stack < 0.3.0 - HUnit < 1.6.2.0 + # https://github.com/commercialhaskell/stackage/issues/5836 + - clock < 0.8.2 + # end of packages # Package flags are applied to individual packages, and override the values of @@ -5621,7 +5624,7 @@ skipped-tests: # https://github.com/commercialhaskell/stackage/issues/5746 - parameterized - + # via tasty-1.4 https://github.com/commercialhaskell/stackage/issues/5795 - lukko From d7ba51e2af03858ca8301325a104619cf46c33ae Mon Sep 17 00:00:00 2001 From: Yoshikuni Jujo Date: Fri, 22 Jan 2021 10:59:51 +0900 Subject: [PATCH 2360/2682] add typecheck-plugin-nat-simple --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f7acb073..328129c7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3046,6 +3046,7 @@ packages: - warp-tls-uid - nowdoc - HaXml + - typecheck-plugin-nat-simple "Jan Gerlinger @JanGe": - irc-dcc < 0 From 6f3b019cea580bf4de9c72297b6e19b209d82f00 Mon Sep 17 00:00:00 2001 From: Andreas Abel Date: Fri, 22 Jan 2021 09:44:51 +0100 Subject: [PATCH 2361/2682] [ close #5801 ] reenable cabal-debian and tasty-silver < 3.2 verify-package now works for * cabal-debian * tasty-silver-3.1.15 The latest tasty-silver depends on tasty >= 1.4 (issue #5795) tasty version 1.2.3 found - tasty-silver requires >=1.4 --- build-constraints.yaml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f7acb073..3cb54281 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5089,10 +5089,6 @@ packages: - decidable < 0 - list-witnesses < 0 - # https://github.com/commercialhaskell/stackage/issues/5801 - - cabal-debian <0 # via debian - - tasty-silver < 0 # via tasty - # https://github.com/commercialhaskell/stackage/issues/5834 - call-stack < 0.3.0 - HUnit < 1.6.2.0 @@ -5359,7 +5355,7 @@ skipped-tests: - clay # via hspec-discover-2.6.0 - codec-rpm # via hspec-2.6.0 - colour # QuickCheck-2.11.3 - - dhall-json # tasty-silver https://github.com/commercialhaskell/stackage/issues/5801 + - dhall-json # tasty-silver https://github.com/commercialhaskell/stackage/issues/5795 - drawille # hspec 2.4 - ed25519 # QuickCheck, hlint and more - elynx-tree # QuickCheck-2.14 From 26ddd846381f2d3915ec61b784050652b1a14fcd Mon Sep 17 00:00:00 2001 From: Andreas Abel Date: Fri, 22 Jan 2021 11:55:43 +0100 Subject: [PATCH 2362/2682] reenable and adopt haskell-src I am now maintainer of haskell-src and released revision 1.0.3.1-r2 that accepts happy-1.20. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f7acb073..b8517848 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -28,6 +28,7 @@ packages: - Agda < 0 # https://github.com/commercialhaskell/stackage/issues/5826 - agda2lagda - ListLike + - haskell-src "Diogo Biazus ": - hasql-notifications @@ -4660,7 +4661,6 @@ packages: - haskell-gi-overloading - haskell-lexer - haskell-lsp-types - - haskell-src < 0 # ghc 8.10 - haskell-src-exts - haxl < 0 # via time-1.9.3 - heap From fc01a0127f8f11a1b197c39b62d838151975abc0 Mon Sep 17 00:00:00 2001 From: Maxim Koltsov Date: Thu, 21 Jan 2021 16:00:02 +0300 Subject: [PATCH 2363/2682] Reenable hasbolt --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f7acb073..b82db9a4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3583,7 +3583,7 @@ packages: - github-webhooks "Pavel Yakovlev @zmactep": - - hasbolt < 0 # ghc 8.10 + - hasbolt - uniprot-kb - mmtf < 0 # MonadFail From da6fc9dc36504aa0c2bb6f90f82905b7c7dc2dab Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Mon, 25 Jan 2021 07:42:02 -0800 Subject: [PATCH 2364/2682] Expect test failure for `dbus` (#5841) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f625520e..e1106106 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5953,6 +5953,9 @@ expected-test-failures: # https://github.com/commercialhaskell/stackage/issues/5833 - duration + + # https://github.com/commercialhaskell/stackage/issues/5841 + - dbus # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From b2af14c8f21d1ef0b09b7ce8614adce6c092230b Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 25 Jan 2021 19:07:01 +0100 Subject: [PATCH 2365/2682] generic-lens related upper bounds for #5842 --- build-constraints.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index e1106106..2995790f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5097,6 +5097,11 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5836 - clock < 0.8.2 + # https://github.com/commercialhaskell/stackage/issues/5842 + - generic-lens < 2.1.0.0 + - generic-lens-core < 2.1.0.0 + - generic-optics < 2.1.0.0 + # end of packages # Package flags are applied to individual packages, and override the values of From f21bdc26e7c14fdd5e0df63269c20e0889ba1e53 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 25 Jan 2021 19:08:41 +0100 Subject: [PATCH 2366/2682] libmpd < 0.10.0.0 for #5843 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2995790f..139c939c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5102,6 +5102,9 @@ packages: - generic-lens-core < 2.1.0.0 - generic-optics < 2.1.0.0 + # https://github.com/commercialhaskell/stackage/issues/5843 + - libmpd < 0.10.0.0 + # end of packages # Package flags are applied to individual packages, and override the values of From 9969cca46dfb94674f3124b9650159568543ba82 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 26 Jan 2021 15:06:32 +0800 Subject: [PATCH 2367/2682] FAQ: refresh "why LTS ghc old?" lts17 was released with 8.10.3 --- README.md | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index cc14cf07..dfd4acf5 100644 --- a/README.md +++ b/README.md @@ -92,13 +92,12 @@ __Why is Stackage LTS still on an older version of GHC?__ Typically it takes some months from a new major ghc release before the Haskell ecosystem supports it fully enough that we can push it -to a new stable Stackage major version release. The lag for minor ghc releases -should be less but it still requires extra work and there is usually -some delay, but this also allows for sufficient community testing before updating. +to a new stable Stackage major version release. There can also be +ghc regressions that hold up a LTS major release. -eg Currently there is a 8.10.2 issue with linking on Windows. -Once 8.10.3 is out and we are satisfied it is working well in Nightly -we will plan to move to release LTS 17 based on ghc-8.10. +The lag for minor ghc releases should be less +but it still requires extra work and there is usually some delay - this also +allows for some community testing before updating LTS. __Why does Stackage have an older version of a package than Hackage?__ From 75cb170ca7e92a229639209b93bbbe18f8393022 Mon Sep 17 00:00:00 2001 From: Ivan Gromakovskii Date: Tue, 26 Jan 2021 18:48:33 +0300 Subject: [PATCH 2368/2682] Remove constraint on universum Problem: universum-1.6.0 and newer doesn't support text-1.2.4.1 which is the latest version of text. It was reported in https://github.com/commercialhaskell/stackage/issues/5796 Because of that `build-constraints.yaml` now constrains universum's version to be less than 1.6.0. Solution: now that universum-1.7.2 has been released and supports the latest `text`, the constraint can be dropped entirely. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 139c939c..94c489a7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3732,7 +3732,7 @@ packages: - log-warper < 0 # GHC 8.4 via lifted-async-0.10.0.1 - o-clock - tasty-hunit-compat - - universum < 1.6.0 # text-1.2.4: https://github.com/commercialhaskell/stackage/issues/5796 + - universum - with-utf8 - uncaught-exception From 6ca3937258a0f9fbd62e0622ba2c2e1cebd28792 Mon Sep 17 00:00:00 2001 From: Veronika Romashkina Date: Tue, 26 Jan 2021 16:55:09 +0000 Subject: [PATCH 2369/2682] Remove duplicated shortcut-links `shortcut-links` has been moved under @kowainik maintenance long ago (see line 3750: https://github.com/commercialhaskell/stackage/blob/9969cca46dfb94674f3124b9650159568543ba82/build-constraints.yaml#L3750). --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 139c939c..0b2eb5cb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2456,7 +2456,6 @@ packages: - microlens-th - microlens-ghc < 0.4.13 # https://github.com/commercialhaskell/stackage/issues/5749 - microlens-contra - - shortcut-links < 0 # MonadFail - cheapskate-highlight - cheapskate-lucid - cmark-lucid From 001134173f594285a17d0708489326a30ac8a1f4 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Tue, 26 Jan 2021 11:14:12 -0600 Subject: [PATCH 2370/2682] Add upper bound for dbus, #5846 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 139c939c..af0ac4e9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5105,6 +5105,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5843 - libmpd < 0.10.0.0 + # https://github.com/commercialhaskell/stackage/issues/5846 + - dbus < 1.2.18 + # end of packages # Package flags are applied to individual packages, and override the values of From 418430e29cd3898dbf4b32a62b0194e959b2c4aa Mon Sep 17 00:00:00 2001 From: Stefan Wehr Date: Tue, 26 Jan 2021 22:29:59 +0100 Subject: [PATCH 2371/2682] re-enable HTF --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 139c939c..6299ae91 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -858,7 +858,7 @@ packages: - clock "Stefan Wehr @skogsbaer": - - HTF < 0 # ghc 8.10 + - HTF - xmlgen - stm-stats < 0 - large-hashable < 0 # compilation failure From 18c71fa39464cbc7b3edeaaa2f9084a07bf61afb Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Tue, 26 Jan 2021 17:36:40 -0600 Subject: [PATCH 2372/2682] Add an upper bound for tidal, #5848 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index af0ac4e9..c7276fd9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5108,6 +5108,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5846 - dbus < 1.2.18 + # https://github.com/commercialhaskell/stackage/issues/5848 + - tidal < 1.7 + # end of packages # Package flags are applied to individual packages, and override the values of From 9d720dc3e96532cf21e91d6012b2aa329a060824 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Tue, 26 Jan 2021 20:28:06 -0600 Subject: [PATCH 2373/2682] Remove upper bound on libmpd, closes #5843 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6aab455b..f41f43d3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5101,9 +5101,6 @@ packages: - generic-lens-core < 2.1.0.0 - generic-optics < 2.1.0.0 - # https://github.com/commercialhaskell/stackage/issues/5843 - - libmpd < 0.10.0.0 - # https://github.com/commercialhaskell/stackage/issues/5846 - dbus < 1.2.18 From 9f08ca405ea5c438090b6f9a4dca793bcbe0b4a8 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Wed, 27 Jan 2021 10:35:28 -0600 Subject: [PATCH 2374/2682] Add upper bound for cryptonite, #5849 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f41f43d3..060a690b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5107,6 +5107,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5848 - tidal < 1.7 + # https://github.com/commercialhaskell/stackage/issues/5849 + - cryptonite < 0.28 + # end of packages # Package flags are applied to individual packages, and override the values of From 1f5cc1ca3bf14d08e9a80dd61713c41779ebb6bd Mon Sep 17 00:00:00 2001 From: "Yang, Bo" Date: Wed, 27 Jan 2021 14:05:21 -0800 Subject: [PATCH 2375/2682] Reenable control-dsl Reenable control-dsl since doctest-discover is not causing any problems. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 060a690b..8e64817c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -210,7 +210,7 @@ packages: - mpi-hs-cereal "Yang Bo @Atry": - - control-dsl < 0 # via doctest-discover + - control-dsl "Laurent P. René de Cotret @LaurentRDC": - pandoc-plot < 0 # ghc 8.10 via pandoc From 4883c922a05981b3886fd1aa369dcf58d4615579 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Fri, 29 Jan 2021 16:45:57 -0600 Subject: [PATCH 2376/2682] Add upper bound for vector, #5851 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5a158eb2..074205d3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5110,6 +5110,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5849 - cryptonite < 0.28 + # https://github.com/commercialhaskell/stackage/issues/5851 + - vector < 0.12.2 + # end of packages # Package flags are applied to individual packages, and override the values of From ebbb7412ff5f8eee6b6737ba0929d94590e32da6 Mon Sep 17 00:00:00 2001 From: Bodigrim Date: Sat, 30 Jan 2021 14:40:51 +0000 Subject: [PATCH 2377/2682] Add tasty-bench --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 074205d3..9bb92d3d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3258,6 +3258,7 @@ packages: - integer-roots - smallcheck - quote-quot + - tasty-bench "Ashley Yakeley @AshleyYakeley": - countable From 5d64db17e879f503683b3070c8e09e7605cc7b95 Mon Sep 17 00:00:00 2001 From: David Himmelstrup Date: Sun, 31 Jan 2021 22:45:28 +0800 Subject: [PATCH 2378/2682] Add vector-circular. --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9bb92d3d..d6d4a00a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4259,6 +4259,7 @@ packages: - reanimate-svg - reanimate - earcut + - vector-circular # required by reanimate as of 0.4.2.0 - hgeometry - hgeometry-combinatorial From 0bbb19886f4e422d8e8157e0815f39c6aa700ef5 Mon Sep 17 00:00:00 2001 From: Ryan Scott Date: Sun, 31 Jan 2021 11:14:40 -0500 Subject: [PATCH 2379/2682] Allow vector-0.12.2, skip lens tests This implements the plan set out in https://github.com/commercialhaskell/stackage/issues/5851#issuecomment-770405905. Fixes #5851. --- build-constraints.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9bb92d3d..d0eb74a8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5111,9 +5111,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5849 - cryptonite < 0.28 - # https://github.com/commercialhaskell/stackage/issues/5851 - - vector < 0.12.2 - # end of packages # Package flags are applied to individual packages, and override the values of @@ -5642,6 +5639,8 @@ skipped-tests: # via tasty-1.4 https://github.com/commercialhaskell/stackage/issues/5795 - lukko + # via vector-0.12.2 https://github.com/commercialhaskell/stackage/issues/5851 + - lens # end of skipped-tests From af3950fac9ea2da5b61a20191c3aeb0f3eb04456 Mon Sep 17 00:00:00 2001 From: Li-yao Xia Date: Sun, 24 Jan 2021 19:53:00 -0500 Subject: [PATCH 2380/2682] Add generic-functor --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9bb92d3d..6d38d333 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -543,6 +543,7 @@ packages: - first-class-families - generic-data - generic-data-surgery + - generic-functor - generic-random - scanf - show-combinators From 2e7bee68b1e1a76a0728750dd91172384321ebc5 Mon Sep 17 00:00:00 2001 From: Emil Axelsson <78emil@gmail.com> Date: Mon, 1 Feb 2021 10:24:48 +0100 Subject: [PATCH 2381/2682] Add tree-view --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9bb92d3d..b651b1c3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4493,6 +4493,9 @@ packages: "Shlomo Shuck @sjshuck": - pcre2 + "Emil Axelsson <78emil@gmail.com> @emax": + - tree-view + "Grandfathered dependencies": - Boolean - Decimal From 132caeb3bddde701913d8451b4f1ca26f94cf341 Mon Sep 17 00:00:00 2001 From: gbrsales Date: Mon, 1 Feb 2021 16:05:19 +0100 Subject: [PATCH 2382/2682] Add back cabal-appimage Now builds with GHC 8.10.3. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9bb92d3d..fcd93ff2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4420,7 +4420,7 @@ packages: - it-has "Gabriele Sales @gbrsales": - - cabal-appimage < 0 # ghc 8.10 + - cabal-appimage "Dominik Schrempf @dschrempf": - pava From f007cff63a32e823a376c6849ea0b43b325e5ed9 Mon Sep 17 00:00:00 2001 From: Patrick Bahr Date: Wed, 3 Feb 2021 12:08:00 +0100 Subject: [PATCH 2383/2682] add compdata --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index fe349fef..5ddf8a15 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -87,6 +87,7 @@ packages: "Patrick Bahr ": - equivalence + - compdata "Rob Stewart @robstewart57": - gitlab-haskell From ba5e4c31c49b75afd31fce09409a4aa395d44ea6 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 3 Feb 2021 17:37:27 -0700 Subject: [PATCH 2384/2682] Test `conferer` --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index beb8d03e..1fb5b4ad 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3995,7 +3995,7 @@ packages: - map-syntax < 0 # GHC 8.4 via base-4.11.0.0 - heist < 0 # GHC 8.4 via map-syntax - snap < 0 # GHC 8.4 via base-4.11.0.0 - - conferer + - conferer < 1.1 #- conferer-snap # Because snap - conferer-warp - conferer-hspec From 81a5b566cd10e8b8eaca46c0f5b90155a121ec8c Mon Sep 17 00:00:00 2001 From: Simon Jakobi Date: Thu, 4 Feb 2021 05:02:33 +0100 Subject: [PATCH 2385/2682] Unhide newtype-generics The conflicting module was removed in v0.6. --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 88cbf729..34b99484 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6415,7 +6415,6 @@ hide: - nanospec # conflicts with Test.Hspec in hspec - HTF # conflicts with Test.Framework in test-framework - courier # conflicts with Network.Transport in network-transport -- newtype-generics # conflicts with Control.Newtype in newtype - objective # conflicts with Control.Object in natural-transformation - binary-ieee754 # conflicts with data-binary-ieee754 - rerebase # conflicts with base From f6f2a67a3ae5f205344755a2f718001b163e03aa Mon Sep 17 00:00:00 2001 From: "Yang, Bo" Date: Wed, 27 Jan 2021 14:05:21 -0800 Subject: [PATCH 2386/2682] Reenable control-dsl Reenable control-dsl since doctest-discover is not causing any problems. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 00788805..850601e6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -209,7 +209,7 @@ packages: - mpi-hs-cereal "Yang Bo @Atry": - - control-dsl < 0 # via doctest-discover + - control-dsl "Laurent P. René de Cotret @LaurentRDC": - pandoc-plot < 0 # ghc 8.10 via pandoc From 912638e39b245c2a0faabd118a50bd0f09f32618 Mon Sep 17 00:00:00 2001 From: Bardur Arantsson Date: Thu, 4 Feb 2021 19:10:20 +0100 Subject: [PATCH 2387/2682] Re-enable unliftio-stream --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 88cbf729..e21eac63 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3969,7 +3969,7 @@ packages: - pg-harness-client - pg-harness-server < 0 # via scotty - unliftio-pool - - unliftio-streams < 0 # via io-streams + - unliftio-streams "Sebastian Graf @sgraf812": - pomaps < 0 # GHC 8.4 via base-4.11.0.0 From 0e5eceab3b860389c411ca0688776e69106abe09 Mon Sep 17 00:00:00 2001 From: Bardur Arantsson Date: Thu, 4 Feb 2021 19:37:15 +0100 Subject: [PATCH 2388/2682] Re-enable peregrin --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 88cbf729..0d2e983e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3965,7 +3965,7 @@ packages: - re2 "Bardur Arantsson @BardurArantsson": - - peregrin < 0 # via postgresql-simple + - peregrin - pg-harness-client - pg-harness-server < 0 # via scotty - unliftio-pool From ae99ae04a84de9a2a40eaa6e0bdd08336ce4da60 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 4 Feb 2021 17:37:27 -0700 Subject: [PATCH 2389/2682] Test `conferer-aeson` --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1fb5b4ad..35b46c89 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3999,7 +3999,7 @@ packages: #- conferer-snap # Because snap - conferer-warp - conferer-hspec - - conferer-aeson + - conferer-aeson < 1.1 "Tim Humphries @thumphries": - transformers-either < 0 # via exceptions-0.10.0 From 7f44c86f0d59d0b0235bb67e3efbdd4759931f3d Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Fri, 5 Feb 2021 06:35:25 +0000 Subject: [PATCH 2390/2682] ghc-lib-parser, ghc-lib-parser-ex --- build-constraints.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 88cbf729..9c87a9f4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5114,6 +5114,11 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5849 - cryptonite < 0.28 + # https://github.com/commercialhaskell/stackage/issues/5862 + - ghc-lib-parser < 9.0.1.20210205 + - ghc-lib < 9.0.1.20210205 + - ghc-lib-parser-ex < 9.0.0.0 + # end of packages # Package flags are applied to individual packages, and override the values of From fb0fa89717f8d4be905d583402ba9c73164d97c2 Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Fri, 5 Feb 2021 07:00:18 +0000 Subject: [PATCH 2391/2682] bound tests not compiling --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9c87a9f4..551b5a70 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5530,6 +5530,7 @@ skipped-tests: - cron # Could not deduce (SOP.All (SOP.All Arbitrary) xss) arising from a use of ‘SOP.hcpure’ - config-ini # https://github.com/aisamanra/config-ini/issues/22 - dhall # https://github.com/dhall-lang/dhall-haskell/issues/1985 + - bound # 'Ambiguous occurrence ‘foldMap’' # Runtime issues - blank-canvas # Never finishes https://github.com/ku-fpg/blank-canvas/issues/73 From 50183d5e8f08ec5954e426cb683c750a7e93b5c9 Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Fri, 5 Feb 2021 07:32:52 +0000 Subject: [PATCH 2392/2682] cross-reference bound tests issue --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 551b5a70..1c4c693b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5530,7 +5530,7 @@ skipped-tests: - cron # Could not deduce (SOP.All (SOP.All Arbitrary) xss) arising from a use of ‘SOP.hcpure’ - config-ini # https://github.com/aisamanra/config-ini/issues/22 - dhall # https://github.com/dhall-lang/dhall-haskell/issues/1985 - - bound # 'Ambiguous occurrence ‘foldMap’' + - bound # https://github.com/commercialhaskell/stackage/pull/5854 # Runtime issues - blank-canvas # Never finishes https://github.com/ku-fpg/blank-canvas/issues/73 From f757ef50968c36d60a606e0ae9aa29417b39e79d Mon Sep 17 00:00:00 2001 From: Ryan Scott Date: Fri, 5 Feb 2021 08:23:45 -0500 Subject: [PATCH 2393/2682] Re-enable bound's tests --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1c4c693b..9c87a9f4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5530,7 +5530,6 @@ skipped-tests: - cron # Could not deduce (SOP.All (SOP.All Arbitrary) xss) arising from a use of ‘SOP.hcpure’ - config-ini # https://github.com/aisamanra/config-ini/issues/22 - dhall # https://github.com/dhall-lang/dhall-haskell/issues/1985 - - bound # https://github.com/commercialhaskell/stackage/pull/5854 # Runtime issues - blank-canvas # Never finishes https://github.com/ku-fpg/blank-canvas/issues/73 From a01db293f5037c6a0144abadb73c5ec53fb7145b Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 6 Feb 2021 17:37:27 -0700 Subject: [PATCH 2394/2682] Revert `conferer-*` testing --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 35b46c89..beb8d03e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3995,11 +3995,11 @@ packages: - map-syntax < 0 # GHC 8.4 via base-4.11.0.0 - heist < 0 # GHC 8.4 via map-syntax - snap < 0 # GHC 8.4 via base-4.11.0.0 - - conferer < 1.1 + - conferer #- conferer-snap # Because snap - conferer-warp - conferer-hspec - - conferer-aeson < 1.1 + - conferer-aeson "Tim Humphries @thumphries": - transformers-either < 0 # via exceptions-0.10.0 From 86e77a17c3e046a718df360744837cbf0e0e815f Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 6 Feb 2021 17:37:27 -0700 Subject: [PATCH 2395/2682] Upper bound some `conferer-*` packages (#5896) --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index beb8d03e..f65b47c4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3995,11 +3995,11 @@ packages: - map-syntax < 0 # GHC 8.4 via base-4.11.0.0 - heist < 0 # GHC 8.4 via map-syntax - snap < 0 # GHC 8.4 via base-4.11.0.0 - - conferer + - conferer < 1.1 # https://github.com/commercialhaskell/stackage/issues/5896 #- conferer-snap # Because snap - conferer-warp - conferer-hspec - - conferer-aeson + - conferer-aeson < 1.1 # https://github.com/commercialhaskell/stackage/issues/5896 "Tim Humphries @thumphries": - transformers-either < 0 # via exceptions-0.10.0 From 7a3fad56d04bbef7b743a4dcbb80db5e32442af4 Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Sun, 7 Feb 2021 19:49:36 +0000 Subject: [PATCH 2396/2682] parser-combinators-1.3.0 --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1c4c693b..0bd68f80 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5119,6 +5119,10 @@ packages: - ghc-lib < 9.0.1.20210205 - ghc-lib-parser-ex < 9.0.0.0 + # https://github.com/commercialhaskell/stackage/issues/5864 + - parser-combinators < 1.3.0 + - parser-combinators-tests < 1.3.0 + # end of packages # Package flags are applied to individual packages, and override the values of From 7378a46eb981858510828b2b07902682f0823c79 Mon Sep 17 00:00:00 2001 From: Jasper Woudenberg <78842482+jwoudenberg-nri@users.noreply.github.com> Date: Thu, 4 Mar 2021 07:46:49 +0100 Subject: [PATCH 2397/2682] Drop nri-prelude from expected test failures list --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f65b47c4..093bf9ba 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6028,9 +6028,6 @@ expected-test-failures: # https://github.com/unrelentingtech/hspec-expectations-pretty-diff/issues/7 - hspec-expectations-pretty-diff - # https://github.com/commercialhaskell/stackage/issues/5884 - - nri-prelude - # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 5a63766132f6b60ccfbbfc77d4185e912051b3e3 Mon Sep 17 00:00:00 2001 From: patrick brisbin Date: Fri, 5 Mar 2021 11:51:43 -0500 Subject: [PATCH 2398/2682] Re-enable pbrisbin and Freckle packages - The issue with yesod-auth-oauth2 is fixed. - yesod-markdown, bcp47*, faktory, and hspec-expectations-json have all had releases with relaxed upper bounds We're watching https://packdeps.haskellers.com/ more closely now, so hopefully these will break less. --- build-constraints.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 093bf9ba..10293639 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1068,16 +1068,16 @@ packages: - bugsnag-haskell - gravatar - load-env - - yesod-auth-oauth2 < 0.6.2 # https://github.com/commercialhaskell/stackage/issues/5825 - - yesod-markdown < 0 # pandoc + - yesod-auth-oauth2 + - yesod-markdown - yesod-paginator # Freckle packages I'm maintaining for us - - bcp47 < 0 # aeson, megaparsec, text - - bcp47-orphans < 0 # esqueleto, text - - faktory < 0 # megaparsec - - graphula < 0 # aeson, base, bytestring, generics-eot, unliftio-core - - hspec-expectations-json < 0 # aeson, text + - bcp47 + - bcp47-orphans + - faktory + - graphula < 0 # generics-eot + - hspec-expectations-json - yesod-page-cursor "Felipe Lessa @meteficha": From 0bb383f2e7f16f757eaeb5ca8a911b1a73d15f1a Mon Sep 17 00:00:00 2001 From: Tom Sydney Kerckhove Date: Sun, 7 Mar 2021 15:16:04 +0100 Subject: [PATCH 2399/2682] Add safe-coloured text and the sydtest packages --- build-constraints.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 10293639..837eaf7f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3918,8 +3918,14 @@ packages: - genvalidity-mergeful - genvalidity-mergeless - genvalidity-path + - genvalidity-persistent - genvalidity-property - genvalidity-scientific + - genvalidity-sydtest + - genvalidity-sydtest-aeson + - genvalidity-sydtest-hashable + - genvalidity-sydtest-lens + - genvalidity-sydtest-persistent - genvalidity-text - genvalidity-time - genvalidity-typed-uuid @@ -3929,12 +3935,20 @@ packages: - mergeful - mergeless - pretty-relative-time + - safe-coloured-text + - sydtest + - sydtest-discover + - sydtest-persistent-sqlite + - sydtest-servant + - sydtest-wai + - sydtest-yesod - typed-uuid - validity - validity-aeson - validity-bytestring - validity-containers - validity-path + - validity-persistent - validity-primitive - validity-scientific - validity-text From 38b412292df537905db7329931e31d29a043af1a Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 7 Feb 2021 17:37:27 -0700 Subject: [PATCH 2400/2682] Upper bound `monoid-subclasses` (#5900) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 837eaf7f..737ba95c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1029,7 +1029,7 @@ packages: "Mario Blazevic @blamario": - monad-parallel - monad-coroutine - - monoid-subclasses + - monoid-subclasses < 1.1 # https://github.com/commercialhaskell/stackage/issues/5900 - rank2classes - input-parsers - incremental-parser From 34b7af27b7a3293e1e6b89c45dc2614abccd8c12 Mon Sep 17 00:00:00 2001 From: Andreas Abel Date: Mon, 8 Feb 2021 10:10:52 +0100 Subject: [PATCH 2401/2682] [ fix #5826 ] reenable Agda Agda-2.6.1.3 builds with nightly-2021-02-06. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0bd68f80..1e38cba0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -25,7 +25,7 @@ packages: "Andreas Abel @andreasabel": - BNFC - STMonadTrans - - Agda < 0 # https://github.com/commercialhaskell/stackage/issues/5826 + - Agda - agda2lagda - ListLike - haskell-src From d9dbe2727fc5c253312a34bb67aa9f90c0e92ee2 Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Mon, 8 Feb 2021 10:36:58 +0000 Subject: [PATCH 2402/2682] disable vector-circular test suite --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index cd2ede06..4c2de57e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5457,6 +5457,7 @@ skipped-tests: - persistent-mysql # https://github.com/commercialhaskell/stackage/issues/5641 - persistent-postgresql # https://github.com/commercialhaskell/stackage/issues/5641 - persistent-sqlite # https://github.com/commercialhaskell/stackage/issues/5641 + - vector-circular # (verified requires missing hedgehog-classes) https://github.com/commercialhaskell/stackage/pull/5853#issuecomment-770394206 - yesod-page-cursor # https://github.com/commercialhaskell/stackage/issues/5813 # Blocked due to tests failing to compile for GHC 8.6 From be1241453795f7eadc9a0421b2cb150a944ae5bc Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Mon, 8 Feb 2021 18:24:24 -0500 Subject: [PATCH 2403/2682] add constraint "chronos < 1.1.2" per #5867 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4c2de57e..eb813a04 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5126,6 +5126,9 @@ packages: - parser-combinators < 1.3.0 - parser-combinators-tests < 1.3.0 + # https://github.com/commercialhaskell/stackage/issues/5867 + - chronos < 1.1.2 + # end of packages # Package flags are applied to individual packages, and override the values of From a4beb1ee22f20011b2219aeeadc7c084afe8977d Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Tue, 9 Feb 2021 05:04:31 +0000 Subject: [PATCH 2404/2682] invertible: expected-test-failures --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index eb813a04..2e84bb81 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5894,6 +5894,7 @@ expected-test-failures: - relude # doctest fails due to GHC bugs, will be fixed in the next `relude` release - stm-delay # https://github.com/joeyadams/haskell-stm-delay/issues/5 - tmp-postgres # https://github.com/jfischoff/tmp-postgres/issues/1 + - invertible # https://github.com/dylex/invertible/issues/4 # https://github.com/pruvisto/heap/issues/11 - heap From 0dd78ffc8233e197f4e344fa6d679e70e08764ec Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 10 Feb 2021 17:35:34 -0500 Subject: [PATCH 2405/2682] nightly ghc: 8.10.3 -> 8.10.4 --- Dockerfile | 2 +- build-constraints.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7d242a7a..b330e2ac 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM fpco/pid1:18.04 ENV HOME /home/stackage ENV LANG en_US.UTF-8 -ENV GHCVER 8.10.3 +ENV GHCVER 8.10.4 # NOTE: also update debian-bootstrap.sh when cuda version changes ENV PATH /home/stackage/.stack/programs/x86_64-linux/ghc-$GHCVER/bin:/usr/local/cuda-10.0/bin:/usr/sbin:/usr/bin:/sbin:/bin diff --git a/build-constraints.yaml b/build-constraints.yaml index 2e84bb81..993a22fe 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1,6 +1,6 @@ ghc-major-version: "8.10" # new curator is supposed to use exact GHC version -ghc-version: "8.10.3" +ghc-version: "8.10.4" # This affects which version of the Cabal file format we allow. We # should ensure that this is always no greater than the version From c08d41f6a947fe456c7e54122c1d99277a3e5334 Mon Sep 17 00:00:00 2001 From: Alex McLean Date: Thu, 11 Feb 2021 16:38:48 +0000 Subject: [PATCH 2406/2682] Remove upper bounds - fixes #5848 The new Tidal 1.7.1 release resolves the issue with stack. --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 993a22fe..b09784c5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5111,9 +5111,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5846 - dbus < 1.2.18 - # https://github.com/commercialhaskell/stackage/issues/5848 - - tidal < 1.7 - # https://github.com/commercialhaskell/stackage/issues/5849 - cryptonite < 0.28 From a85fcd16f774e855cba38cd840c2f92c1b3c2426 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Fri, 12 Feb 2021 17:23:56 -0500 Subject: [PATCH 2407/2682] Update CURATORS.md --- CURATORS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CURATORS.md b/CURATORS.md index 847515d8..93e498be 100644 --- a/CURATORS.md +++ b/CURATORS.md @@ -220,7 +220,7 @@ file](https://github.com/fpco/stackage-content/blob/master/stack/global-hints.ya is updated with information on the latest GHC release by cloning that repo and running `./update-global-hints.yaml ghc-X.Y.Z`. -Also required to build an LTS minor bump with a ghc version change: On the build server, modify `/var/stackage/stackage/automated/wrk/lts-$THIS_LTS_MAJOR_VER/constraints.yaml` and update the ghc-version. Then run `NOPLAN=1 /var/stackage/stackage/automated/build lts-$THIS_LTS_MINOR_BUMP` to build the LTS. +Also required to build an LTS minor bump with a ghc version change: On the build server, modify `/var/stackage/stackage/automated/work/lts-$THIS_LTS_MAJOR_VER/constraints.yaml` and update the ghc-version. (You may need to update sibling files as well.) Then run `NOPLAN=1 /var/stackage/stackage/automated/build.sh lts-$THIS_LTS_MINOR_BUMP` to build the LTS. ### Getting the new image to the build server Once a new Docker image is available, you'll need to pull it onto the stackage-build server (see From f2fa95a77ca21428f0682db165a911b741c8fd60 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 13 Feb 2021 17:37:27 -0700 Subject: [PATCH 2408/2682] Mark test failures on GHC 9.0.1 (#5901, #5902, #5903, #5904) --- build-constraints.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 737ba95c..68105d17 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5550,6 +5550,12 @@ skipped-tests: - xml-conduit-parse - yesod-test + # Fails to build with GHC 9.0.1 + - sydtest-servant # https://github.com/commercialhaskell/stackage/issues/5901 + - sydtest-persistent-sqlite # https://github.com/commercialhaskell/stackage/issues/5902 + - genvalidity-persistent # https://github.com/commercialhaskell/stackage/issues/5903 + - Color # https://github.com/commercialhaskell/stackage/issues/5904 + # Transitive outdated dependencies # These can also be checked for updates periodically. - options # ansi-terminal-0.8 via chell From 3f6739a4606ed7f9c8bd0b64faad10198540d396 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sat, 13 Feb 2021 23:11:16 -0500 Subject: [PATCH 2409/2682] Update CURATORS.md --- CURATORS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CURATORS.md b/CURATORS.md index 93e498be..808e4a1f 100644 --- a/CURATORS.md +++ b/CURATORS.md @@ -307,7 +307,7 @@ First run `build.sh` to regenerate updated `ltsXX/work/constraints.yaml` and `lt For an LTS minor bump, you'll typically want to: -* Add constraints to package `range:` fields _under_ the `source:` field in that `constraints.yaml`. +* Add constraints to package `range:` fields _under_ the `source:` field in that `constraints.yaml`, and edit `snapshot-incomplete.yaml` to change the version used for that package, if necessary. * Add new packages to the `constraints.yaml` file * Test, benchmark, haddock failures can also be added to package fields in the `constraints.yaml` if necessary, though it should be avoided if possible for LTS. From 7660358a55d123833443beaba2050fd2b4ffabd2 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 14 Feb 2021 17:37:27 -0700 Subject: [PATCH 2410/2682] Expect test failures on `faktory` with GHC 9.0.1 (#5905) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 68105d17..056cdb52 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5850,6 +5850,7 @@ expected-test-failures: - hnix # #5469/closed - http-client # httpbin issues, https://github.com/snoyberg/http-client/issues/439 - http-directory # httpbin issues, https://github.com/juhp/http-directory/issues/1 + - faktory # connection refused, https://github.com/commercialhaskell/stackage/issues/5905 # Missing test files in sdist # Hopefully gets fixed in the next release... From 42c75a2fbd147fefbf4b9ec1932b926b7b5ff1f0 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Mon, 15 Feb 2021 12:37:16 -0500 Subject: [PATCH 2411/2682] expect test failure per haskellari/binary-instances#7 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 993a22fe..dd3bfb3b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5673,6 +5673,7 @@ expected-test-failures: # from expected-failures if we know a fix has been released. - aeson-lens # https://github.com/tanakh/aeson-lens/issues/10 - base64 # https://github.com/emilypi/base64/issues/31 + - binary-instances # https://github.com/haskellari/binary-instances/issues/7 - cabal-debian # https://github.com/ddssff/cabal-debian/issues/50 - capataz # https://github.com/roman/Haskell-capataz/issues/6 - concurrent-extra # https://github.com/basvandijk/concurrent-extra/issues/12 From 66c9261ac1ca42dd8b3f360f10fb4f4f0f977958 Mon Sep 17 00:00:00 2001 From: Patrick Bahr Date: Mon, 15 Feb 2021 19:17:29 +0100 Subject: [PATCH 2412/2682] add Rattus --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index dd3bfb3b..fb38aaf8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -88,6 +88,7 @@ packages: "Patrick Bahr ": - equivalence - compdata + - Rattus "Rob Stewart @robstewart57": - gitlab-haskell From c08da5a5a898bdcacec9598a704f3f00ae70051d Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 17 Feb 2021 11:12:08 +0800 Subject: [PATCH 2413/2682] enable pandoc --- build-constraints.yaml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index dd3bfb3b..d739d917 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -214,7 +214,7 @@ packages: - control-dsl "Laurent P. René de Cotret @LaurentRDC": - - pandoc-plot < 0 # ghc 8.10 via pandoc + - pandoc-plot "Andrew Newman @andrewfnewman": - geojson @@ -820,7 +820,7 @@ packages: - psqueues - websockets - websockets-snap - - hakyll < 0 # ghc 8.10 via pandoc + - hakyll < 0 # via pandoc-citeproc "Sibi Prabakaran @psibi": - download @@ -2956,8 +2956,11 @@ packages: - doclayout - doctemplates - emojis - - pandoc < 0 # https://github.com/commercialhaskell/stackage/issues/5567 - - pandoc-citeproc < 0 # ghc 8.10 via pandoc + - pandoc + - citeproc + - commonmark + - commonmark-extensions + - commonmark-pandoc - HsYAML-aeson - ipynb #< 0 # via aeson-diff @@ -4289,7 +4292,7 @@ packages: - rope-utf16-splay "Venkateswara Rao Mandela @vmandela": - - pandoc-csv2table < 0 # ghc 8.10 via pandoc + - pandoc-csv2table "Elben Shira @elben": - pencil < 0 # via hsass From e2ac7b630834655df94e17ccb2a987b72c6d5c29 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 17 Feb 2021 11:29:21 +0800 Subject: [PATCH 2414/2682] add github workflow check action --- .github/workflows/check.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/check.yml diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml new file mode 100644 index 00000000..9e83df3f --- /dev/null +++ b/.github/workflows/check.yml @@ -0,0 +1,20 @@ +name: check +on: [push,pull_request] +jobs: + build: + runs-on: ubuntu-latest + name: Stackage check + steps: + - uses: actions/checkout@v2 + - uses: haskell/actions/setup@v1 + with: + stack-version: '2.5' + - uses: actions/cache@v2 + with: + path: | + ~/.stack + ~/.stackage/curator/cache + key: ${{ runner.os }}-stackage-nightly-${{ hashFiles('**/build-constraints.yaml') }} + restore-keys: | + ${{ runner.os }}- + - run: etc/check.sh From aa885b674e84c679663aadca9dacb299c5bd26b8 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 19 Feb 2021 18:56:50 +0800 Subject: [PATCH 2415/2682] add http2 bound for #5649 (please group bounds in stackage upper bounds) --- build-constraints.yaml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c97aee88..9a339997 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -703,7 +703,7 @@ packages: - alex - async - - base16-bytestring < 1 # https://github.com/commercialhaskell/stackage/issues/5649 + - base16-bytestring - csv-conduit < 0 # ghc 8.10 - executable-hash < 0 # via cryptohash - executable-path @@ -920,7 +920,7 @@ packages: - odbc # - structured-haskell-mode # https://github.com/chrisdone/structured-haskell-mode/issues/156 - casa-client - - casa-types < 0.0.2 # https://github.com/commercialhaskell/stackage/issues/5649 + - casa-types "Alberto G. Corona @agocorona": - RefSerialize @@ -5130,6 +5130,11 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5867 - chronos < 1.1.2 + # https://github.com/commercialhaskell/stackage/issues/5649 + - base16-bytestring < 1 + - http2 < 2.0.6 + - casa-types < 0.0.2 + # end of packages # Package flags are applied to individual packages, and override the values of From a87db5b327c6062f37d2bc89b8064b7f7952fdbe Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 19 Feb 2021 19:02:39 +0800 Subject: [PATCH 2416/2682] constraints < 0.13 (#5873) --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9a339997..b4db9482 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5135,6 +5135,8 @@ packages: - http2 < 2.0.6 - casa-types < 0.0.2 + # https://github.com/commercialhaskell/stackage/issues/5873 + - constraints < 0.13 # end of packages # Package flags are applied to individual packages, and override the values of From 4710e62383b567fb9f5d5d77eea9acb6075eaf1b Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 19 Feb 2021 19:08:36 +0800 Subject: [PATCH 2417/2682] lens < 5 (#5874) --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index b4db9482..75d5b729 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5137,6 +5137,10 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5873 - constraints < 0.13 + + # https://github.com/commercialhaskell/stackage/issues/5874 + - lens < 5 + # end of packages # Package flags are applied to individual packages, and override the values of From c41881fa9a68110b36ddf9002f5dec47d2ef67c2 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 19 Feb 2021 19:09:00 +0800 Subject: [PATCH 2418/2682] heaps < 0.4 (#5875) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 75d5b729..4fe62632 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5141,6 +5141,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5874 - lens < 5 + # https://github.com/commercialhaskell/stackage/issues/5875 + - heaps < 0.4 + # end of packages # Package flags are applied to individual packages, and override the values of From 95485b1ddd71bcac1e6fe7666a481f520819e4ae Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 19 Feb 2021 19:14:05 +0800 Subject: [PATCH 2419/2682] pretty-diff < 0.4.0.0 (#5876) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4fe62632..ae704f64 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5144,6 +5144,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5875 - heaps < 0.4 + # https://github.com/commercialhaskell/stackage/issues/5876 + - pretty-diff < 0.4.0.0 + # end of packages # Package flags are applied to individual packages, and override the values of From ed8f2028c1021ae326a8ba5972cf3d8b4ba1b16d Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 19 Feb 2021 19:19:12 +0800 Subject: [PATCH 2420/2682] pretty-diff < 0.3.0.0 (#5876) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ae704f64..0db8aac6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5145,7 +5145,7 @@ packages: - heaps < 0.4 # https://github.com/commercialhaskell/stackage/issues/5876 - - pretty-diff < 0.4.0.0 + - pretty-diff < 0.3.0.0 # end of packages From f9cd502c29287e1766ad8f8642d8bad6cd204d03 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Fri, 19 Feb 2021 12:19:39 +0100 Subject: [PATCH 2421/2682] Remove bitvec upper bound and close #5760 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c97aee88..bfcf8016 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5083,9 +5083,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5686 - formatting < 7 - # https://github.com/commercialhaskell/stackage/issues/5760 - - bitvec < 1.1.0.0 - # https://github.com/commercialhaskell/stackage/issues/5765 - text-manipulate < 0.3 From 5f05667134d779b8cba6dc90c4479a5df8c238bf Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 21 Feb 2021 01:11:51 +0800 Subject: [PATCH 2422/2682] hashable < 1.3.1.0 for aeson property ordering prevents plenty of testsuites breakage --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0db8aac6..6498121f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5147,6 +5147,8 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5876 - pretty-diff < 0.3.0.0 + # https://github.com/commercialhaskell/stackage/issues/5878 + - hashable < 1.3.1.0 # end of packages # Package flags are applied to individual packages, and override the values of From 27c50ad27014da8d5b563b6137376387d4f3887e Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 21 Feb 2021 01:34:54 +0800 Subject: [PATCH 2423/2682] drop pretty-diff < 0.3.0.0: fixes #5876 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 57be3bbd..223b2a91 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5141,9 +5141,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5875 - heaps < 0.4 - # https://github.com/commercialhaskell/stackage/issues/5876 - - pretty-diff < 0.3.0.0 - # https://github.com/commercialhaskell/stackage/issues/5878 - hashable < 1.3.1.0 # end of packages From fcc5ea235ff38f2184ec4b9d85c2a6737af315dd Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 21 Feb 2021 02:25:47 +0800 Subject: [PATCH 2424/2682] github workflow: specify ghc version for completeness --- .github/workflows/check.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 9e83df3f..b484afe8 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -8,6 +8,7 @@ jobs: - uses: actions/checkout@v2 - uses: haskell/actions/setup@v1 with: + ghc-version: '8.10.4' stack-version: '2.5' - uses: actions/cache@v2 with: From a4e107cbe1c67a9befe651f18a9fe005c3e13bce Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 21 Feb 2021 02:37:53 +0800 Subject: [PATCH 2425/2682] github workflow: specify ghc 8.10 - ubuntu 8.10.3 currently --- .github/workflows/check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index b484afe8..00dd351c 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -8,7 +8,7 @@ jobs: - uses: actions/checkout@v2 - uses: haskell/actions/setup@v1 with: - ghc-version: '8.10.4' + ghc-version: '8.10' stack-version: '2.5' - uses: actions/cache@v2 with: From 98e53dc17ea968b7c9044631b902d182ac78dfbe Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 21 Feb 2021 02:45:36 +0800 Subject: [PATCH 2426/2682] github workflow: also specify cabal-install default 3.4 to avoid pulling 3.2 --- .github/workflows/check.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 00dd351c..16f9685c 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -9,6 +9,7 @@ jobs: - uses: haskell/actions/setup@v1 with: ghc-version: '8.10' + cabal-version: '3.4' stack-version: '2.5' - uses: actions/cache@v2 with: From 75cd4ea5af9304b24458d9a23e4e1e5a9bb439f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20G=C3=A9lineau?= Date: Sat, 20 Feb 2021 18:02:28 -0500 Subject: [PATCH 2427/2682] change of maintainer for hint and recursion-schemes --- build-constraints.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 223b2a91..f4ac09de 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -990,7 +990,6 @@ packages: - profunctors - promises - rcu - - recursion-schemes - reducers - reflection - semigroupoid-extras @@ -4503,6 +4502,10 @@ packages: "Emil Axelsson <78emil@gmail.com> @emax": - tree-view + "Samuel Gélineau @gelisam": + - hint + - recursion-schemes + "Grandfathered dependencies": - Boolean - Decimal @@ -4676,7 +4679,6 @@ packages: - haxl < 0 # via time-1.9.3 - heap - hex < 0 # via base-4.13.0.0 - - hint - hmatrix - hmatrix-gsl - hostname From 29840bd63ac3b131895d8933af9a9e843bec6453 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 20 Feb 2021 17:37:27 -0700 Subject: [PATCH 2428/2682] Mark test failures on GHC 9.0.1 (#5906) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 056cdb52..66606e9a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5555,6 +5555,7 @@ skipped-tests: - sydtest-persistent-sqlite # https://github.com/commercialhaskell/stackage/issues/5902 - genvalidity-persistent # https://github.com/commercialhaskell/stackage/issues/5903 - Color # https://github.com/commercialhaskell/stackage/issues/5904 + - sydtest-yesod # https://github.com/commercialhaskell/stackage/issues/5906 # Transitive outdated dependencies # These can also be checked for updates periodically. From 55f3b8edd8b9a6b2e68ab3c5322150fe5c8547e4 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 21 Feb 2021 12:00:17 +0800 Subject: [PATCH 2429/2682] drop hnix-store-core <0.3 (#5766) with cryptohash-sha512 & new nix-derivation --- build-constraints.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 223b2a91..c107f7f0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1183,6 +1183,7 @@ packages: - dhall-yaml - aeson-yaml # req'd by dhall-json - dhall-nix < 0 + - nix-derivation "Andrew Thaddeus Martin @andrewthad": - colonnade < 0 # via profunctors-5.5 @@ -4599,7 +4600,7 @@ packages: - crypto-random - cryptohash-cryptoapi - cryptohash-sha256 - - cryptohash-sha512 < 0 # ghc 8.10 + - cryptohash-sha512 - css-text - csv - cubicbezier @@ -5086,9 +5087,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5765 - text-manipulate < 0.3 - # https://github.com/commercialhaskell/stackage/issues/5766 - - hnix-store-core < 0.3 - # https://github.com/commercialhaskell/stackage/issues/5780 - structured-cli < 2.7 From 0ee609718385ad859a21eceb32aa190867661df8 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 21 Feb 2021 12:18:05 +0800 Subject: [PATCH 2430/2682] add rhbzquery --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7683217f..bc9a81af 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1653,6 +1653,7 @@ packages: - http-query - pagure-cli - pkgtreediff + - rhbzquery - rpmbuild-order - simple-cabal - simple-cmd From 3b12ea4c28af88ed5eef277d90dc76ae57567fd3 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 21 Feb 2021 17:37:27 -0700 Subject: [PATCH 2431/2682] Mark benchmark failures on GHC 9.0.1 (#5903) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 66606e9a..fee486d2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6069,6 +6069,7 @@ expected-benchmark-failures: - raaz # https://github.com/commercialhaskell/stackage/issues/4766 - thyme - xmlgen # https://github.com/skogsbaer/xmlgen/issues/6 + - genvalidity-persistent # https://github.com/commercialhaskell/stackage/issues/5903 # end of expected-benchmark-failures From e4f343ea7303651ee985b5f2a56d504aabf668b9 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 22 Feb 2021 12:11:46 +0800 Subject: [PATCH 2432/2682] pandoc-csv2table fails MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit /var/stackage/work/unpack-dir/unpacked/pandoc-csv2table-1.0.8-d0129475813b77e2be82483cb754207a8a68850d09fcbdf153fe2965c4b4b831/src/Text/Table/Helper.hs:87:32: error: • The constructor ‘J.Table’ should have 6 arguments, but has been given 5 • In the pattern: J.Table _ as ds ts tss In the pattern: [(J.Table _ as ds ts tss)] In the pattern: J.Pandoc m [(J.Table _ as ds ts tss)] | 87 | addInlineLabel i (J.Pandoc m [(J.Table _ as ds ts tss)]) = J.Pandoc m [(J.Table i as ds ts tss)] | ^^^^^^^^^^^^^^^^^^^^^^ --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index bc9a81af..5b0bb072 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4294,7 +4294,7 @@ packages: - rope-utf16-splay "Venkateswara Rao Mandela @vmandela": - - pandoc-csv2table + - pandoc-csv2table < 0 # compilation error "Elben Shira @elben": - pencil < 0 # via hsass From 5cc75aa1d919e3df8d0e2d95a91184950d635630 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 22 Feb 2021 18:22:28 +0800 Subject: [PATCH 2433/2682] mmark-ext testsuite failing (mmark-md/mmark-ext#20) --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5b0bb072..83b92edd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6028,6 +6028,8 @@ expected-benchmark-failures: - thyme - xmlgen # https://github.com/skogsbaer/xmlgen/issues/6 + # https://github.com/mmark-md/mmark-ext/issues/20 + - mmark-ext # end of expected-benchmark-failures From fdb57a1daa93d5cdeb63845822b006d886fd273a Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 22 Feb 2021 18:25:03 +0800 Subject: [PATCH 2434/2682] mmark testsuite failing (mmark-md/mmark#76) --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 83b92edd..b3f57dce 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6030,6 +6030,8 @@ expected-benchmark-failures: # https://github.com/mmark-md/mmark-ext/issues/20 - mmark-ext + # https://github.com/mmark-md/mmark/issues/76 + - mmark # end of expected-benchmark-failures From 258c784ba4518ef5d6c26994474e669d5b04c083 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 22 Feb 2021 18:29:35 +0800 Subject: [PATCH 2435/2682] aeson-schemas testsuite failing (LeapYear/aeson-schemas#65) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index b3f57dce..80f4d9c6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6032,6 +6032,9 @@ expected-benchmark-failures: - mmark-ext # https://github.com/mmark-md/mmark/issues/76 - mmark + # https://github.com/LeapYear/aeson-schemas/issues/65 + - aeson-schemas + # end of expected-benchmark-failures From 798096d63ce9fe625bd60467b8f8b44636dda0e5 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 22 Feb 2021 18:40:13 +0800 Subject: [PATCH 2436/2682] heterocephalus doctest requires hidden shakespeare and blaze-markup cc @arowM --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 80f4d9c6..b1b06923 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5888,6 +5888,7 @@ expected-test-failures: - yesod-page-cursor # https://github.com/freckle/yesod-page-cursor/issues/20 - string-random # https://github.com/hiratara/hs-string-random/issues/16 - email-validate # https://github.com/Porges/email-validate-hs/issues/55 + - heterocephalus # doctest requires hidden shakespeare and blaze-markup # Recursive deps https://github.com/fpco/stackage/issues/1818 - options From 01ee44e33968176e3e0df73a3ccc988486237b56 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 22 Feb 2021 18:43:25 +0800 Subject: [PATCH 2437/2682] testsuite failure (unrelentingtech/hspec-expectations-pretty-diff#7) --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index b1b06923..169bc751 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6035,6 +6035,8 @@ expected-benchmark-failures: - mmark # https://github.com/LeapYear/aeson-schemas/issues/65 - aeson-schemas + # https://github.com/unrelentingtech/hspec-expectations-pretty-diff/issues/7 + - hspec-expectations-pretty-diff # end of expected-benchmark-failures From 3b74129b52895b4d2c5cb71c809b885b02410133 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 22 Feb 2021 19:04:40 +0800 Subject: [PATCH 2438/2682] iproute doctest with hidden containers and other errors fyi @kazu-yamamoto --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 169bc751..fcb6580d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5889,6 +5889,7 @@ expected-test-failures: - string-random # https://github.com/hiratara/hs-string-random/issues/16 - email-validate # https://github.com/Porges/email-validate-hs/issues/55 - heterocephalus # doctest requires hidden shakespeare and blaze-markup + - iproute # doctest with hidden containers and other errors # Recursive deps https://github.com/fpco/stackage/issues/1818 - options From 09c94bb1dde2930a50b2fe5603fb72317c9a30ad Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 22 Feb 2021 19:20:04 +0800 Subject: [PATCH 2439/2682] remove hnix-store-core from Nightly at request of hnix team (#5872) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index fcb6580d..03a5e7ac 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -524,7 +524,7 @@ packages: - checkers - hnix < 0 - hashing - - hnix-store-core + - hnix-store-core < 0 # https://github.com/commercialhaskell/stackage/issues/5872 - monadlist - ref-tf - unordered-containers From c72c4bb20096c320a895cdaeb4292481df795c46 Mon Sep 17 00:00:00 2001 From: Brandon Chinn Date: Mon, 22 Feb 2021 10:02:40 -0800 Subject: [PATCH 2440/2682] Fix aeson-schemas test --- build-constraints.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 03a5e7ac..83f6b686 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6034,8 +6034,6 @@ expected-benchmark-failures: - mmark-ext # https://github.com/mmark-md/mmark/issues/76 - mmark - # https://github.com/LeapYear/aeson-schemas/issues/65 - - aeson-schemas # https://github.com/unrelentingtech/hspec-expectations-pretty-diff/issues/7 - hspec-expectations-pretty-diff From b37fccce1b30a5bea872ba0afe0fdec7f5b4627e Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 23 Feb 2021 08:58:52 +0800 Subject: [PATCH 2441/2682] move expected test failures to right section: mmark et al ugh! --- build-constraints.yaml | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 83f6b686..dafcfd63 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6010,6 +6010,16 @@ expected-test-failures: # https://github.com/commercialhaskell/stackage/issues/5841 - dbus + + # https://github.com/mmark-md/mmark-ext/issues/20 + - mmark-ext + + # https://github.com/mmark-md/mmark/issues/76 + - mmark + + # https://github.com/unrelentingtech/hspec-expectations-pretty-diff/issues/7 + - hspec-expectations-pretty-diff + # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run @@ -6030,13 +6040,6 @@ expected-benchmark-failures: - thyme - xmlgen # https://github.com/skogsbaer/xmlgen/issues/6 - # https://github.com/mmark-md/mmark-ext/issues/20 - - mmark-ext - # https://github.com/mmark-md/mmark/issues/76 - - mmark - # https://github.com/unrelentingtech/hspec-expectations-pretty-diff/issues/7 - - hspec-expectations-pretty-diff - # end of expected-benchmark-failures From 382f62488e2b47c06294e7d209321f5781c3f59c Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 23 Feb 2021 09:10:46 +0800 Subject: [PATCH 2442/2682] optics-0.4 (#5881) --- build-constraints.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index dafcfd63..12c79707 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5144,6 +5144,12 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5878 - hashable < 1.3.1.0 + + # https://github.com/commercialhaskell/stackage/issues/5881 + - optics < 0.4 + - optics-core < 0.4 + - optics-extra < 0.4 + - optics-th < 0.4 # end of packages # Package flags are applied to individual packages, and override the values of From ceed63ff3df1adc907285ac47d9061d4421a2efb Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 24 Feb 2021 14:12:13 +0800 Subject: [PATCH 2443/2682] one-liner-2.0 needs ghc9 (linear-base) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 12c79707..f6afc5d8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4766,7 +4766,7 @@ packages: - nicify-lib - old-locale - old-time - - one-liner + - one-liner < 2.0 # via linear-base (ghc9) - operational - optional-args - options From 7fe180630d2de062c80fb054957427fd08eb4927 Mon Sep 17 00:00:00 2001 From: Yoshikuni Jujo Date: Wed, 24 Feb 2021 15:33:29 +0900 Subject: [PATCH 2444/2682] add ranged-list --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f6afc5d8..e3e53a35 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3054,6 +3054,7 @@ packages: - nowdoc - HaXml - typecheck-plugin-nat-simple + - ranged-list "Jan Gerlinger @JanGe": - irc-dcc < 0 From 145b1dc27656fe04e6ca19d8674a79252b4e396c Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 24 Feb 2021 17:37:27 -0700 Subject: [PATCH 2445/2682] Bump to GHC 9.0.1 --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index fee486d2..97a8ce15 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1,6 +1,6 @@ -ghc-major-version: "8.10" +ghc-major-version: "9.0" # new curator is supposed to use exact GHC version -ghc-version: "8.10.4" +ghc-version: "9.0.1" # This affects which version of the Cabal file format we allow. We # should ensure that this is always no greater than the version From f14aa4d5d02e6b19d5b72f7bf044243cd0ab18dc Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Fri, 26 Feb 2021 18:17:18 +0000 Subject: [PATCH 2446/2682] Restricts semialign-indexed (#5874) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e3e53a35..9229af9b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4827,7 +4827,7 @@ packages: - securemem - selective - semialign - - semialign-indexed + - semialign-indexed < 1.2 # via `lens-5` https://github.com/commercialhaskell/stackage/issues/5874 - semialign-optics - serialise - servant-client-core From 8eccaae38da8e85a91bb4b4d576be809efb00729 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Fri, 26 Feb 2021 18:19:14 +0000 Subject: [PATCH 2447/2682] Restricts semialign & semialign-optics (#5881) --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9229af9b..53f29481 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4826,9 +4826,9 @@ packages: - scientific - securemem - selective - - semialign + - semialign < 1.2 # via `indexed-traversable-instances` https://github.com/commercialhaskell/stackage/issues/5881 - semialign-indexed < 1.2 # via `lens-5` https://github.com/commercialhaskell/stackage/issues/5874 - - semialign-optics + - semialign-optics < 1.2 # via `optics-core-0.4` https://github.com/commercialhaskell/stackage/issues/5881 - serialise - servant-client-core - servant-swagger-ui From efec838fe06b69c80b69aa8a71781e1838a7ebc2 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Fri, 26 Feb 2021 18:28:56 +0000 Subject: [PATCH 2448/2682] Restricts morpheus-graphql-* (#5883) --- build-constraints.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 53f29481..8d38c51e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4345,10 +4345,10 @@ packages: - minimal-configuration "Davit Nalchevanidze @nalchevanidze": - - morpheus-graphql - - morpheus-graphql-core - - morpheus-graphql-client - - morpheus-graphql-subscriptions + - morpheus-graphql < 0.17 # via `morpheus-graphql-app` https://github.com/commercialhaskell/stackage/issues/5883 + - morpheus-graphql-core < 0.17 # via `morpheus-graphql-app` https://github.com/commercialhaskell/stackage/issues/5883 + - morpheus-graphql-client < 0.17 # via `morpheus-graphql-core` https://github.com/commercialhaskell/stackage/issues/5883 + - morpheus-graphql-subscriptions < 0.17 # via `morpheus-graphql-app` & `morpheus-graphql-core` https://github.com/commercialhaskell/stackage/issues/5883 "Satoshi Egi @egisatoshi": - backtracking From e2672ab0c5625080f8ebd7dbff44d25c65a3ffc7 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sat, 27 Feb 2021 01:31:22 +0000 Subject: [PATCH 2449/2682] Expects nri-prelude test failures (#5884) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8d38c51e..0c874919 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6026,6 +6026,9 @@ expected-test-failures: # https://github.com/unrelentingtech/hspec-expectations-pretty-diff/issues/7 - hspec-expectations-pretty-diff + + # https://github.com/commercialhaskell/stackage/issues/5884 + - nri-prelude # end of expected-test-failures From d1969d24e8bc8bece14de08789b0a344b3e056d2 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sat, 27 Feb 2021 17:11:49 +0100 Subject: [PATCH 2450/2682] Re-enable fclabels and shake-language-c --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0c874919..9df21700 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1216,7 +1216,7 @@ packages: "Sebastiaan Visser @sebastiaanvisser": - clay - - fclabels < 0 # via base-4.13.0.0 + - fclabels "Robert Klotzner @eskimor": - purescript-bridge @@ -1579,7 +1579,7 @@ packages: - product-profunctors "Samplecount stefan@samplecount.com @kaoskorobase": - - shake-language-c < 0 # via fclabels + - shake-language-c "David Turner @davecturner": - alarmclock @@ -6026,7 +6026,7 @@ expected-test-failures: # https://github.com/unrelentingtech/hspec-expectations-pretty-diff/issues/7 - hspec-expectations-pretty-diff - + # https://github.com/commercialhaskell/stackage/issues/5884 - nri-prelude From 1a1d1bc1f4e905042a9d3ba4c3edf6691001e35f Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sat, 27 Feb 2021 19:19:31 +0000 Subject: [PATCH 2451/2682] Restricts strict-tuple-lens (#5874) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0c874919..e7dd1ec5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -133,7 +133,7 @@ packages: - smash-microlens - smash-lens - strict-tuple - - strict-tuple-lens + - strict-tuple-lens < 0.2 # via `lens-5` "Matthieu Monsch @mtth": - flags-applicative From 394b0a8e97552965ddac80a34a11a3fb9e2a368e Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Sun, 28 Feb 2021 18:47:07 +0000 Subject: [PATCH 2452/2682] Disables hgeometry & reanimate (et al.) (#5886) --- build-constraints.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e7dd1ec5..11e3f3a1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4264,13 +4264,13 @@ packages: "David Himmelstrup @lemmih": - chiphunk - - reanimate-svg - - reanimate + - reanimate-svg < 0 # via reanimate + - reanimate < 0 # via hgeometry & hgeometry-combinatorial - earcut - vector-circular # required by reanimate as of 0.4.2.0 - - hgeometry - - hgeometry-combinatorial + - hgeometry < 0 # via vector-0.12.2.0 https://github.com/commercialhaskell/stackage/issues/5886 + - hgeometry-combinatorial < 0 # via vector-0.12.2.0 https://github.com/commercialhaskell/stackage/issues/5886 - approximate-equality # required by hgeometry-combinatorial - type-level-natural-number # required by approximate-equality From afa4b0536bf33c52e3ab9b181b1d73ca21e4f2ce Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 28 Feb 2021 17:37:27 -0700 Subject: [PATCH 2453/2682] Bump to GHC 9.0.1 --- build-constraints.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 97a8ce15..5b80c814 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5037,6 +5037,19 @@ packages: # Need to always match the version shipped with GHC - Win32 == 2.6.1.0 + "Broken with GHC 9.0.1": + - Agda < 0 + - cabal-rpm < 0 + - entropy < 0 + - fixed-vector-hetero < 0 + - lens < 0 + - packdeps < 0 + - pantry < 0 + - proto-lens-setup < 0 + - servant-openapi < 0 + - servant-swagger < 0 + - singletons < 0 + "Stackage upper bounds": # https://github.com/commercialhaskell/stackage/issues/5570 1.3 # https://github.com/commercialhaskell/stackage/issues/5795 1.4 From a804a3ef5567047fb0379abaf075413cefd982be Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 28 Feb 2021 17:37:27 -0700 Subject: [PATCH 2454/2682] Bump to GHC 9.0.1 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5b80c814..86cecff5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5046,7 +5046,7 @@ packages: - packdeps < 0 - pantry < 0 - proto-lens-setup < 0 - - servant-openapi < 0 + - servant-openapi3 < 0 - servant-swagger < 0 - singletons < 0 From 8426401ae56866f8282225520d829668d649fac0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emysl=20=C5=A0=C5=A5astn=C3=BD?= Date: Mon, 1 Mar 2021 21:14:17 +0100 Subject: [PATCH 2455/2682] Update build-constraints.yaml --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5d9cfe01..46e0b9f5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -101,6 +101,9 @@ packages: "Tobias Reinhart @TobiReinhart": - sparse-tensor + + "Přemysl Šťastný @stastnypremysl": + - curly-expander "Stephan Schiffels @stschiff": - sequence-formats From 609e600f049209a7cf5f9be3ca0e9e4d74327313 Mon Sep 17 00:00:00 2001 From: Hexirp Date: Tue, 2 Mar 2021 18:26:45 +0900 Subject: [PATCH 2456/2682] Re-enable doctest-driver-gen --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5d9cfe01..d43a01bd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3825,7 +3825,7 @@ packages: - docker < 0 "Hexirp @Hexirp": - - doctest-driver-gen < 0 # ghc 8.10 + - doctest-driver-gen "Václav Haisman @wilx": - hs-bibutils From e528974782f5512357362bac0fe4d1b1c35fe055 Mon Sep 17 00:00:00 2001 From: Michael Glass Date: Wed, 3 Mar 2021 15:52:20 +0100 Subject: [PATCH 2457/2682] add nri-observability we recently released nri-observability, which consumes nri-prelude's `log` abstraction and reports to, logs, BugSnag. When we have it a little more mature, we'll also release a Honeycomb and perhaps NewRelic. --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5d9cfe01..f01c1ab2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4481,8 +4481,9 @@ packages: - derive-topdown "NoRedInk ": - - nri-prelude - nri-env-parser + - nri-observability + - nri-prelude "Behrang Norouzinia @behrang": - jalaali From 4f2b5e7687bb207c366c2882beb234620e33aa31 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Thu, 4 Mar 2021 02:06:50 +0000 Subject: [PATCH 2458/2682] Restricts haddock-library (#5890) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5d9cfe01..a9e25ebb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3708,7 +3708,7 @@ packages: - conduit-zstd "Alex Biehl @alexbiehl": - - haddock-library + - haddock-library < 1.10 # https://github.com/commercialhaskell/stackage/issues/5890 - http-client-openssl < 0.3.3 # https://github.com/commercialhaskell/stackage/issues/5748 "Steven Vandevelde @icidasset": From 6168a9932d9006663e79aa601d9a0ff02250e328 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Thu, 4 Mar 2021 02:07:25 +0000 Subject: [PATCH 2459/2682] Restricts mysql (#5891) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a9e25ebb..24ea4392 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1424,7 +1424,7 @@ packages: - wai-middleware-caching-redis < 0 # GHC 8.4 via hedis "Paul Rouse @paul-rouse": - - mysql + - mysql < 0.2 # https://github.com/commercialhaskell/stackage/issues/5891 - mysql-simple - sphinx < 0 # Could not find module Network - xmlhtml < 0 # GHC 8.4 via hspec-2.5.0 From 9cc23380e8f14bb5a2604651ed6174054f65fcc3 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Thu, 4 Mar 2021 02:15:16 +0000 Subject: [PATCH 2460/2682] Revert "add curly-expander" --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e649597f..beb8d03e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -101,9 +101,6 @@ packages: "Tobias Reinhart @TobiReinhart": - sparse-tensor - - "Přemysl Šťastný @stastnypremysl": - - curly-expander "Stephan Schiffels @stschiff": - sequence-formats From 79a26debdfc6a706696b79d8fb7bd24a06d7da93 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Thu, 4 Mar 2021 02:19:36 +0000 Subject: [PATCH 2461/2682] Revert "Preserves snapshot-incomplete with NOPLAN=1" --- automated/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automated/build.sh b/automated/build.sh index a5cc0294..dc4e9f29 100755 --- a/automated/build.sh +++ b/automated/build.sh @@ -108,7 +108,7 @@ then docker run $ARGS_PREBUILD $IMAGE /bin/bash -c "curator update && curator constraints --target $TARGET && curator snapshot-incomplete --target $TARGET && curator snapshot" fi else - docker run $ARGS_PREBUILD $IMAGE /bin/bash -c "curator snapshot" + docker run $ARGS_PREBUILD $IMAGE /bin/bash -c "curator snapshot-incomplete --target $TARGET && curator snapshot" fi From 6f6c6656fad1c8a8e3f715800508476bb641440a Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 6 Mar 2021 17:37:27 -0700 Subject: [PATCH 2462/2682] Bump to GHC 9.0.1 --- build-constraints.yaml | 49 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 86cecff5..3d8dfd55 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5039,7 +5039,56 @@ packages: "Broken with GHC 9.0.1": - Agda < 0 + - HTTP < 0 + - HaXml < 0 + - HsYAML < 0 + - HsYAML-aeson < 0 + - JuicyPixels-scale-dct < 0 + - MapWith < 0 + - MissingH < 0 + - aeson-diff < 0 + - avers < 0 + - aws-cloudfront-signed-cookies < 0 + - bech32 < 0 + - bech32-th < 0 + - benchpress < 0 + - binary-tagged < 0 + - brick < 0 + - broadcast-chan < 0 + - bugzilla-redhat < 0 + - butcher < 0 + - bzlib < 0 + - cabal-plan < 0 - cabal-rpm < 0 + - cborg < 0 + - cborg-json < 0 + - circular < 0 + - co-log < 0 + - co-log-core < 0 + - colourista < 0 + - configurator-pg < 0 + - country < 0 + - crypto-enigma < 0 + - cryptohash-md5 < 0 + - cryptohash-sha1 < 0 + - cryptohash-sha256 < 0 + - cryptohash-sha512 < 0 + - css-syntax < 0 + - czipwith < 0 + - d10 < 0 + - data-compat < 0 + - data-forest < 0 + - deepseq-generics < 0 + - deepseq-instances < 0 + - dialogflow-fulfillment < 0 + - dirichlet < 0 + - doctest-driver-gen < 0 + - earcut < 0 + - ekg < 0 + - ekg-core < 0 + - ekg-json < 0 + - ekg-statsd < 0 + - eliminators < 0 - entropy < 0 - fixed-vector-hetero < 0 - lens < 0 From b6f300e2f986ce5ce7b8d400482fade797887558 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 6 Mar 2021 17:37:27 -0700 Subject: [PATCH 2463/2682] Bump to GHC 9.0.1 --- build-constraints.yaml | 118 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 118 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3d8dfd55..33c4ae9c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5090,14 +5090,132 @@ packages: - ekg-statsd < 0 - eliminators < 0 - entropy < 0 + - fclabels < 0 + - feed < 0 + - file-embed-lzma < 0 + - first-class-families < 0 - fixed-vector-hetero < 0 + - generic-aeson < 0 + - generic-functor < 0 + - generic-monoid < 0 + - ghc-lib < 0 + - ghc-lib-parser < 0 + - github < 0 + - greskell < 0 + - greskell-core < 0 + - greskell-websocket < 0 + - hackage-security < 0 + - haddock-library < 0 + - hashable < 0 + - haskell-lsp < 0 + - haskell-lsp-types < 0 + - haxr < 0 + - hgrev < 0 + - hledger < 0 + - hledger-lib < 0 + - hledger-ui < 0 + - hledger-web < 0 + - hmatrix < 0 + - hslogger < 0 + - hspec-expectations-json < 0 + - hspec-tables < 0 + - http-api-data < 0 + - http-media < 0 + - hyper < 0 + - ihaskell < 0 + - ilist < 0 + - influxdb < 0 + - io-streams-haproxy < 0 + - ki < 0 - lens < 0 + - libjwt-typed < 0 + - life-sync < 0 + - loc < 0 + - lzma < 0 + - membrain < 0 + - multistate < 0 + - newtype < 0 + - nri-env-parser < 0 + - nri-observability < 0 + - nri-prelude < 0 + - openapi3 < 0 + - optics-extra < 0 - packdeps < 0 - pantry < 0 + - partial-semigroup < 0 + - path-text-utf8 < 0 + - pava < 0 + - perfect-vector-shuffle < 0 + - postgrest < 0 + - pqueue < 0 + - profunctors < 0 + - proto-lens < 0 + - proto-lens-optparse < 0 + - proto-lens-protobuf-types < 0 + - proto-lens-protoc < 0 + - proto-lens-runtime < 0 - proto-lens-setup < 0 + - protolude < 0 + - publicsuffix < 0 + - pusher-http-haskell < 0 + - range-set-list < 0 + - refined < 0 + - regex-applicative-text < 0 + - regex-pcre-builtin < 0 + - relude < 0 + - resolv < 0 + - rethinkdb-client-driver < 0 + - semialign < 0 + - semialign-indexed < 0 + - semialign-optics < 0 + - serialise < 0 + - servant < 0 + - servant-client < 0 + - servant-client-core < 0 + - servant-docs < 0 + - servant-errors < 0 + - servant-foreign < 0 + - servant-http-streams < 0 - servant-openapi3 < 0 + - servant-server < 0 - servant-swagger < 0 + - servant-swagger-ui < 0 + - servant-swagger-ui-core < 0 + - setlocale < 0 + - shellmet < 0 + - shortcut-links < 0 - singletons < 0 + - slist < 0 + - snap-server < 0 + - stackcollapse-ghc < 0 + - strict-tuple < 0 + - strict-tuple-lens < 0 + - stripe-concepts < 0 + - structured < 0 + - swagger2 < 0 + - swish < 0 + - tasty-hedgehog < 0 + - tasty-hspec < 0 + - tasty-wai < 0 + - tdigest < 0 + - termbox < 0 + - text-ansi < 0 + - text-format < 0 + - these-skinny < 0 + - threepenny-gui < 0 + - through-text < 0 + - timer-wheel < 0 + - tomland < 0 + - tonalude < 0 + - type-errors-pretty < 0 + - typerep-map < 0 + - validation-selective < 0 + - vector-binary-instances < 0 + - wild-bind < 0 + - wild-bind-x11 < 0 + - with-utf8 < 0 + - zydiskell < 0 + "Stackage upper bounds": # https://github.com/commercialhaskell/stackage/issues/5570 1.3 From d3be9eafd5ae4d8f0d2e01365cafba74c198f9a7 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 7 Mar 2021 09:29:01 -0800 Subject: [PATCH 2464/2682] Bump to GHC 9.0.1 --- build-constraints.yaml | 31 ++++++++++++++++++++++++++----- 1 file changed, 26 insertions(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 33c4ae9c..10713c78 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5046,7 +5046,9 @@ packages: - JuicyPixels-scale-dct < 0 - MapWith < 0 - MissingH < 0 + - Rattus < 0 - aeson-diff < 0 + - apply-refact < 0 - avers < 0 - aws-cloudfront-signed-cookies < 0 - bech32 < 0 @@ -5063,6 +5065,8 @@ packages: - cborg < 0 - cborg-json < 0 - circular < 0 + - clash-ghc < 0 + - clash-lib < 0 - co-log < 0 - co-log-core < 0 - colourista < 0 @@ -5082,8 +5086,10 @@ packages: - deepseq-instances < 0 - dialogflow-fulfillment < 0 - dirichlet < 0 + - doctest < 0 - doctest-driver-gen < 0 - earcut < 0 + - egison < 0 - ekg < 0 - ekg-core < 0 - ekg-json < 0 @@ -5095,11 +5101,21 @@ packages: - file-embed-lzma < 0 - first-class-families < 0 - fixed-vector-hetero < 0 + - fusion-plugin < 0 - generic-aeson < 0 - generic-functor < 0 - generic-monoid < 0 + - ghc-check < 0 + - ghc-exactprint < 0 - ghc-lib < 0 - ghc-lib-parser < 0 + - ghc-parser < 0 + - ghc-source-gen < 0 + - ghc-tcplugins-extra < 0 + - ghc-typelits-extra < 0 + - ghc-typelits-knownnat < 0 + - ghc-typelits-natnormalise < 0 + - ghc-typelits-presburger < 0 - github < 0 - greskell < 0 - greskell-core < 0 @@ -5107,10 +5123,13 @@ packages: - hackage-security < 0 - haddock-library < 0 - hashable < 0 + - haskell-import-graph < 0 - haskell-lsp < 0 - haskell-lsp-types < 0 - haxr < 0 - hgrev < 0 + - hie-bios < 0 + - hint < 0 - hledger < 0 - hledger-lib < 0 - hledger-ui < 0 @@ -5125,6 +5144,7 @@ packages: - ihaskell < 0 - ilist < 0 - influxdb < 0 + - inspection-testing < 0 - io-streams-haproxy < 0 - ki < 0 - lens < 0 @@ -5159,6 +5179,7 @@ packages: - publicsuffix < 0 - pusher-http-haskell < 0 - range-set-list < 0 + - record-dot-preprocessor < 0 - refined < 0 - regex-applicative-text < 0 - regex-pcre-builtin < 0 @@ -5185,8 +5206,10 @@ packages: - shellmet < 0 - shortcut-links < 0 - singletons < 0 + - singletons-presburger < 0 - slist < 0 - snap-server < 0 + - splint < 0 - stackcollapse-ghc < 0 - strict-tuple < 0 - strict-tuple-lens < 0 @@ -5208,9 +5231,12 @@ packages: - tomland < 0 - tonalude < 0 - type-errors-pretty < 0 + - type-natural < 0 + - typecheck-plugin-nat-simple < 0 - typerep-map < 0 - validation-selective < 0 - vector-binary-instances < 0 + - weigh < 0 - wild-bind < 0 - wild-bind-x11 < 0 - with-utf8 < 0 @@ -5312,11 +5338,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5849 - cryptonite < 0.28 - # https://github.com/commercialhaskell/stackage/issues/5862 - - ghc-lib-parser < 9.0.1.20210205 - - ghc-lib < 9.0.1.20210205 - - ghc-lib-parser-ex < 9.0.0.0 - # https://github.com/commercialhaskell/stackage/issues/5864 - parser-combinators < 1.3.0 - parser-combinators-tests < 1.3.0 From 2facdadf199aefeff6cd30a9f6a08272ca938125 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 7 Mar 2021 09:34:32 -0800 Subject: [PATCH 2465/2682] Bump to GHC 9.0.1 --- build-constraints.yaml | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 10713c78..f60a27f1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5048,13 +5048,16 @@ packages: - MissingH < 0 - Rattus < 0 - aeson-diff < 0 + - aeson-schemas < 0 - apply-refact < 0 + - arithmoi < 0 - avers < 0 - aws-cloudfront-signed-cookies < 0 - bech32 < 0 - bech32-th < 0 - benchpress < 0 - binary-tagged < 0 + - bits-extra < 0 - brick < 0 - broadcast-chan < 0 - bugzilla-redhat < 0 @@ -5067,9 +5070,12 @@ packages: - circular < 0 - clash-ghc < 0 - clash-lib < 0 + - clash-prelude < 0 - co-log < 0 - co-log-core < 0 - colourista < 0 + - composite-aeson < 0 + - composite-base < 0 - configurator-pg < 0 - country < 0 - crypto-enigma < 0 @@ -5080,31 +5086,43 @@ packages: - css-syntax < 0 - czipwith < 0 - d10 < 0 + - data-accessor-template < 0 - data-compat < 0 - data-forest < 0 + - dbus < 0 - deepseq-generics < 0 - deepseq-instances < 0 + - dhall < 0 - dialogflow-fulfillment < 0 - dirichlet < 0 - doctest < 0 - doctest-driver-gen < 0 - earcut < 0 + - ed25519 < 0 - egison < 0 + - egison-pattern-src-th-mode < 0 - ekg < 0 - ekg-core < 0 - ekg-json < 0 - ekg-statsd < 0 - eliminators < 0 + - email-validate < 0 - entropy < 0 + - equational-reasoning < 0 + - exception-hierarchy < 0 + - exceptions < 0 - fclabels < 0 - feed < 0 - file-embed-lzma < 0 - first-class-families < 0 - fixed-vector-hetero < 0 + - freer-simple < 0 - fusion-plugin < 0 - generic-aeson < 0 + - generic-deriving < 0 - generic-functor < 0 - generic-monoid < 0 + - geniplate-mirror < 0 - ghc-check < 0 - ghc-exactprint < 0 - ghc-lib < 0 @@ -5127,6 +5145,7 @@ packages: - haskell-lsp < 0 - haskell-lsp-types < 0 - haxr < 0 + - hedgehog < 0 - hgrev < 0 - hie-bios < 0 - hint < 0 @@ -5135,18 +5154,26 @@ packages: - hledger-ui < 0 - hledger-web < 0 - hmatrix < 0 + - hmpfr < 0 - hslogger < 0 - hspec-expectations-json < 0 - hspec-tables < 0 - http-api-data < 0 - http-media < 0 + - hw-dsv < 0 + - hw-prim < 0 + - hw-streams < 0 + - hw-xml < 0 - hyper < 0 - ihaskell < 0 - ilist < 0 - influxdb < 0 - inspection-testing < 0 + - invertible-grammar < 0 - io-streams-haproxy < 0 + - ixset-typed < 0 - ki < 0 + - kind-generics-th < 0 - lens < 0 - libjwt-typed < 0 - life-sync < 0 @@ -5158,8 +5185,10 @@ packages: - nri-env-parser < 0 - nri-observability < 0 - nri-prelude < 0 + - o-clock < 0 - openapi3 < 0 - optics-extra < 0 + - optics-th < 0 - packdeps < 0 - pantry < 0 - partial-semigroup < 0 @@ -5168,6 +5197,7 @@ packages: - perfect-vector-shuffle < 0 - postgrest < 0 - pqueue < 0 + - prairie < 0 - profunctors < 0 - proto-lens < 0 - proto-lens-optparse < 0 @@ -5179,11 +5209,14 @@ packages: - publicsuffix < 0 - pusher-http-haskell < 0 - range-set-list < 0 + - rank2classes < 0 - record-dot-preprocessor < 0 + - records-sop < 0 - refined < 0 - regex-applicative-text < 0 - regex-pcre-builtin < 0 - relude < 0 + - req < 0 - resolv < 0 - rethinkdb-client-driver < 0 - semialign < 0 @@ -5213,6 +5246,7 @@ packages: - stackcollapse-ghc < 0 - strict-tuple < 0 - strict-tuple-lens < 0 + - string-interpolate < 0 - stripe-concepts < 0 - structured < 0 - swagger2 < 0 @@ -5224,18 +5258,25 @@ packages: - termbox < 0 - text-ansi < 0 - text-format < 0 + - text-show-instances < 0 + - th-desugar < 0 + - th-expand-syns < 0 + - th-test-utils < 0 - these-skinny < 0 - threepenny-gui < 0 - through-text < 0 - timer-wheel < 0 - tomland < 0 - tonalude < 0 + - ttc < 0 - type-errors-pretty < 0 - type-natural < 0 - typecheck-plugin-nat-simple < 0 - typerep-map < 0 + - unicode-transforms < 0 - validation-selective < 0 - vector-binary-instances < 0 + - vector-circular < 0 - weigh < 0 - wild-bind < 0 - wild-bind-x11 < 0 From 98e048950c5800b34842e990d9e8343fec1b4b97 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 7 Mar 2021 09:53:35 -0800 Subject: [PATCH 2466/2682] Bump to GHC 9.0.1 --- build-constraints.yaml | 571 ++++++++++++++++++++++++++++++++++++++++- 1 file changed, 570 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f60a27f1..ba0cd017 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5282,7 +5282,576 @@ packages: - wild-bind-x11 < 0 - with-utf8 < 0 - zydiskell < 0 - + # next set of packages broken by packages above this line + - BNFC < 0 + - Chart < 0 + - ConfigFile < 0 + - DAV < 0 + - DBFunctor < 0 + - ENIG < 0 + - ForestStructures < 0 + - HaTeX < 0 + - HandsomeSoup < 0 + - JuicyPixels-blurhash < 0 + - LambdaHack < 0 + - MusicBrainz < 0 + - PyF < 0 + - accuerr < 0 + - ad < 0 + - adjunctions < 0 + - aeson < 0 + - aeson-combinators < 0 + - aeson-commit < 0 + - aeson-compat < 0 + - aeson-lens < 0 + - aeson-optics < 0 + - aeson-picker < 0 + - aeson-with < 0 + - amazonka-core < 0 + - amazonka-s3 < 0 + - ap-normalize < 0 + - api-field-json-th < 0 + - api-maker < 0 + - approximate < 0 + - arbor-lru-cache < 0 + - arbor-postgres < 0 + - ascii-case < 0 + - ascii-char < 0 + - ascii-group < 0 + - ascii-superset < 0 + - asciidiagram < 0 + - asif < 0 + - async < 0 + - aur < 0 + - aura < 0 + - auto < 0 + - avro < 0 + - backprop < 0 + - base16-lens < 0 + - base32-lens < 0 + - base64-bytestring-type < 0 + - base64-lens < 0 + - basic-prelude < 0 + - bcp47 < 0 + - bcp47-orphans < 0 + - bcrypt < 0 + - bimaps < 0 + - bin < 0 + - binary-instances < 0 + - bins < 0 + - boltzmann-samplers < 0 + - bound < 0 + - boundingboxes < 0 + - bsb-http-chunked < 0 + - bson < 0 + - bugsnag-hs < 0 + - bv-little < 0 + - bytes < 0 + - cabal-debian < 0 + - cabal-file < 0 + - cabal-flatpak < 0 + - cabal2nix < 0 + - cache < 0 + - cacophony < 0 + - casa-types < 0 + - case-insensitive < 0 + - cassava < 0 + - cayley-client < 0 + - character-cases < 0 + - chiphunk < 0 + - chronos < 0 + - classy-prelude < 0 + - clientsession < 0 + - closed < 0 + - co-log-concurrent < 0 + - compdata < 0 + - compensated < 0 + - composable-associations < 0 + - composable-associations-aeson < 0 + - composite-aeson-path < 0 + - composite-aeson-refined < 0 + - composite-binary < 0 + - composite-ekg < 0 + - composite-hashable < 0 + - composite-tuple < 0 + - composite-xstep < 0 + - concise < 0 + - concurrent-supply < 0 + - conduit-algorithms < 0 + - configurator < 0 + - constraints < 0 + - construct < 0 + - control-dsl < 0 + - core-data < 0 + - core-program < 0 + - core-text < 0 + - credential-store < 0 + - crypto-api < 0 + - crypto-random-api < 0 + - cryptocompare < 0 + - ctrie < 0 + - cubicspline < 0 + - cuckoo-filter < 0 + - currency < 0 + - cursor-brick < 0 + - cyclotomic < 0 + - data-ascii < 0 + - data-dword < 0 + - data-fix < 0 + - data-interval < 0 + - data-msgpack < 0 + - data-msgpack-types < 0 + - data-reify < 0 + - datadog < 0 + - dbus-hslogger < 0 + - debian < 0 + - declarative < 0 + - deferred-folds < 0 + - dejafu < 0 + - dense-linear-algebra < 0 + - deque < 0 + - derive-topdown < 0 + - dhall-bash < 0 + - dhall-json < 0 + - dhall-lsp-server < 0 + - dhall-yaml < 0 + - dimensional < 0 + - distribution-nixpkgs < 0 + - distribution-opensuse < 0 + - dns < 0 + - doctemplates < 0 + - doctest-discover < 0 + - download < 0 + - duration < 0 + - dynamic-state < 0 + - either < 0 + - elm2nix < 0 + - elynx-markov < 0 + - elynx-tools < 0 + - envelope < 0 + - ersatz < 0 + - eve < 0 + - eventful-core < 0 + - eventstore < 0 + - experimenter < 0 + - expiring-cache-map < 0 + - extended-reals < 0 + - fakedata < 0 + - fedora-haskell-tools < 0 + - file-modules < 0 + - fin < 0 + - fixed-vector < 0 + - flat < 0 + - fmt < 0 + - focuslist < 0 + - foldl < 0 + - folds < 0 + - free < 0 + - from-sum < 0 + - ftp-client < 0 + - functor-classes-compat < 0 + - fuzzy-dates < 0 + - generic-data < 0 + - generic-data-surgery < 0 + - generic-lens < 0 + - generic-optics < 0 + - generic-random < 0 + - generics-sop-lens < 0 + - genvalidity-hspec-hashable < 0 + - genvalidity-property < 0 + - genvalidity-sydtest-hashable < 0 + - genvalidity-unordered-containers < 0 + - geojson < 0 + - ghc-syntax-highlighter < 0 + - ghci-hexcalc < 0 + - github-webhooks < 0 + - gothic < 0 + - graph-core < 0 + - graphite < 0 + - graphql-client < 0 + - gravatar < 0 + - gtk-sni-tray < 0 + - hOpenPGP < 0 + - hadolint < 0 + - hakyll-convert < 0 + - hall-symbols < 0 + - happstack-server < 0 + - hashable-time < 0 + - hashmap < 0 + - hashtables < 0 + - haskell-gi < 0 + - haskey-btree < 0 + - hasql < 0 + - hasql-queue < 0 + - hasty-hamiltonian < 0 + - headroom < 0 + - hedgehog-fakedata < 0 + - hedgehog-fn < 0 + - hedgehog-quickcheck < 0 + - hedis < 0 + - hedn < 0 + - heterocephalus < 0 + - hexml-lens < 0 + - hidapi < 0 + - highlighting-kate < 0 + - hledger-iadd < 0 + - hledger-interest < 0 + - hledger-stockquotes < 0 + - hlint < 0 + - hmatrix-backprop < 0 + - hmatrix-gsl < 0 + - hmatrix-gsl-stats < 0 + - hmatrix-morpheus < 0 + - hmatrix-vector-sized < 0 + - hoauth2 < 0 + - hocon < 0 + - hoogle < 0 + - hopenpgp-tools < 0 + - hpack-dhall < 0 + - hsc2hs < 0 + - hslua-aeson < 0 + - hspec-hedgehog < 0 + - htoml < 0 + - http-date < 0 + - http-link-header < 0 + - http-types < 0 + - http2 < 0 + - human-readable-duration < 0 + - hw-balancedparens < 0 + - hw-bits < 0 + - hw-conduit < 0 + - hw-diagnostics < 0 + - hw-eliasfano < 0 + - hw-excess < 0 + - hw-fingertree < 0 + - hw-fingertree-strict < 0 + - hw-hedgehog < 0 + - hw-hspec-hedgehog < 0 + - hw-ip < 0 + - hw-json < 0 + - hw-json-simd < 0 + - hw-json-simple-cursor < 0 + - hw-json-standard-cursor < 0 + - hw-mquery < 0 + - hw-packed-vector < 0 + - hw-parser < 0 + - hw-rankselect < 0 + - hw-rankselect-base < 0 + - hw-simd < 0 + - hw-succinct < 0 + - hxt-http < 0 + - hyperloglog < 0 + - incremental-parser < 0 + - inline-c < 0 + - inline-r < 0 + - insert-ordered-containers < 0 + - intern < 0 + - interpolator < 0 + - intro < 0 + - invariant < 0 + - invertible < 0 + - iproute < 0 + - ipynb < 0 + - irc-client < 0 + - irc-conduit < 0 + - ixset-typed-binary-instance < 0 + - ixset-typed-conversions < 0 + - ixset-typed-hashable-instance < 0 + - jose < 0 + - json-rpc < 0 + - jwt < 0 + - kan-extensions < 0 + - kanji < 0 + - kazura-queue < 0 + - kdt < 0 + - keys < 0 + - krank < 0 + - language-nix < 0 + - lapack < 0 + - lattices < 0 + - learn-physics < 0 + - lens-action < 0 + - lens-aeson < 0 + - lens-csv < 0 + - lens-datetime < 0 + - lens-misc < 0 + - lens-process < 0 + - lens-properties < 0 + - lens-regex < 0 + - lens-regex-pcre < 0 + - lift-generics < 0 + - line < 0 + - linear < 0 + - liquid-fixpoint < 0 + - little-logger < 0 + - load-env < 0 + - log-domain < 0 + - lrucaching < 0 + - lsp-test < 0 + - lucid < 0 + - lzma-conduit < 0 + - machines < 0 + - main-tester < 0 + - massiv < 0 + - massiv-io < 0 + - massiv-persist < 0 + - massiv-serialise < 0 + - math-extras < 0 + - matrix-as-xyz < 0 + - matrix-static < 0 + - mcmc < 0 + - medea < 0 + - mercury-api < 0 + - metrics < 0 + - mfsolve < 0 + - microlens-aeson < 0 + - microlens-platform < 0 + - microlens-process < 0 + - min-max-pqueue < 0 + - mini-egison < 0 + - minio-hs < 0 + - mltool < 0 + - mmark < 0 + - model < 0 + - modern-uri < 0 + - modular < 0 + - monad-metrics < 0 + - mono-traversable < 0 + - mono-traversable-keys < 0 + - morpheus-graphql < 0 + - morpheus-graphql-client < 0 + - morpheus-graphql-core < 0 + - morpheus-graphql-subscriptions < 0 + - multiset < 0 + - mustache < 0 + - netwire < 0 + - network < 0 + - network-byte-order < 0 + - network-ip < 0 + - network-transport < 0 + - nonce < 0 + - nonempty-containers < 0 + - nonempty-vector < 0 + - not-gloss < 0 + - nqe < 0 + - numhask < 0 + - nvim-hs < 0 + - odbc < 0 + - oeis2 < 0 + - once < 0 + - one-liner < 0 + - opaleye < 0 + - opentelemetry < 0 + - opentelemetry-extra < 0 + - optics < 0 + - optics-vl < 0 + - ormolu < 0 + - pagure-cli < 0 + - pandoc < 0 + - pandoc-plot < 0 + - password < 0 + - password-instances < 0 + - path < 0 + - pcg-random < 0 + - pcre-heavy < 0 + - pcre-utils < 0 + - pcre2 < 0 + - perfect-hash-generator < 0 + - persistent < 0 + - persistent-template < 0 + - persistent-typed-db < 0 + - pg-harness-client < 0 + - pgp-wordlist < 0 + - pinboard < 0 + - pipes-extras < 0 + - pipes-group < 0 + - pointed < 0 + - poly < 0 + - posix-paths < 0 + - postgres-options < 0 + - postgresql-simple < 0 + - pptable < 0 + - pretty-simple < 0 + - prettyprinter < 0 + - prettyprinter-ansi-terminal < 0 + - prettyprinter-convert-ansi-wl-pprint < 0 + - primitive-extras < 0 + - process-extras < 0 + - product-profunctors < 0 + - profiterole < 0 + - prometheus-client < 0 + - prospect < 0 + - proto3-wire < 0 + - psqueues < 0 + - purescript-bridge < 0 + - pushbullet-types < 0 + - qchas < 0 + - quadratic-irrational < 0 + - quickcheck-arbitrary-adt < 0 + - quickcheck-instances < 0 + - radius < 0 + - rainbow < 0 + - rainbox < 0 + - ral < 0 + - random-bytestring < 0 + - random-tree < 0 + - ranged-list < 0 + - rasterific-svg < 0 + - rattle < 0 + - read-env-var < 0 + - rebase < 0 + - reducers < 0 + - regex < 0 + - regex-with-pcre < 0 + - registry < 0 + - relapse < 0 + - renderable < 0 + - req-conduit < 0 + - resource-pool < 0 + - retry < 0 + - rhbzquery < 0 + - rio < 0 + - safe-decimal < 0 + - safe-json < 0 + - safe-money < 0 + - safe-tensor < 0 + - safecopy < 0 + - salak < 0 + - saltine < 0 + - sbp < 0 + - scheduler < 0 + - scientific < 0 + - scotty < 0 + - scrypt < 0 + - sdl2 < 0 + - search-algorithms < 0 + - secp256k1-haskell < 0 + - semigroupoid-extras < 0 + - semigroupoids < 0 + - semirings < 0 + - semver < 0 + - servant-blaze < 0 + - servant-conduit < 0 + - servant-exceptions < 0 + - servant-exceptions-server < 0 + - servant-github-webhook < 0 + - servant-machines < 0 + - servant-multipart < 0 + - servant-pipes < 0 + - servant-rawm < 0 + - serverless-haskell < 0 + - serversession < 0 + - sexp-grammar < 0 + - shake < 0 + - shake-language-c < 0 + - shake-plus-extended < 0 + - singleton-nats < 0 + - sized < 0 + - slack-api < 0 + - slack-progressbar < 0 + - slynx < 0 + - smash < 0 + - smash-lens < 0 + - snap-core < 0 + - sparse-tensor < 0 + - spatial-math < 0 + - speedy-slice < 0 + - squeal-postgresql < 0 + - squeather < 0 + - stack < 0 + - statistics < 0 + - status-notifier-item < 0 + - stm-containers < 0 + - stm-hamt < 0 + - store < 0 + - stratosphere < 0 + - strict < 0 + - strict-list < 0 + - subcategories < 0 + - svg-tree < 0 + - sweet-egison < 0 + - sydtest-servant < 0 + - symmetry-operations-symbols < 0 + - taffybar < 0 + - tar-conduit < 0 + - tasty-ant-xml < 0 + - tasty-discover < 0 + - text-latin1 < 0 + - text-region < 0 + - text-short < 0 + - text-show < 0 + - th-reify-many < 0 + - these < 0 + - these-lens < 0 + - throwable-exceptions < 0 + - thyme < 0 + - tidal < 0 + - timelens < 0 + - tmapchan < 0 + - tmapmvar < 0 + - tmp-postgres < 0 + - transaction < 0 + - tree-diff < 0 + - trifecta < 0 + - triplesec < 0 + - ttl-hashtables < 0 + - ttrie < 0 + - turtle < 0 + - type-errors < 0 + - type-level-kv-list < 0 + - typed-uuid < 0 + - ulid < 0 + - uniplate < 0 + - unique < 0 + - universum < 0 + - unix-time < 0 + - unordered-containers < 0 + - uri-bytestring < 0 + - uuid < 0 + - uuid-types < 0 + - validation < 0 + - validity-unordered-containers < 0 + - validity-vector < 0 + - vault < 0 + - vec < 0 + - vector-instances < 0 + - vector-sized < 0 + - verbosity < 0 + - versions < 0 + - vty < 0 + - wai-logger < 0 + - wai-middleware-auth < 0 + - wai-middleware-clacks < 0 + - wai-rate-limit-redis < 0 + - wai-session < 0 + - wakame < 0 + - warp < 0 + - wcwidth < 0 + - webby < 0 + - webgear-server < 0 + - websockets < 0 + - websockets-snap < 0 + - witherable-class < 0 + - within < 0 + - world-peace < 0 + - wreq < 0 + - xlsx < 0 + - xlsx-tabular < 0 + - xml-conduit < 0 + - xml-html-qq < 0 + - xml-indexed-cursor < 0 + - xml-lens < 0 + - xml-to-json < 0 + - xmonad < 0 + - xmonad-extras < 0 + - yesod-auth < 0 + - yesod-form < 0 + - yesod-paginator < 0 + - yesod-static < 0 + - yjsvg < 0 + - zim-parser < 0 + - zippers < 0 + - zlib-lens < 0 "Stackage upper bounds": # https://github.com/commercialhaskell/stackage/issues/5570 1.3 From 5761a198e69c4771596f688791184005ace4c68f Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 7 Mar 2021 10:13:58 -0800 Subject: [PATCH 2467/2682] Bump to GHC 9.0.1 --- build-constraints.yaml | 613 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 613 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ba0cd017..509f88a7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -5852,6 +5852,619 @@ packages: - zim-parser < 0 - zippers < 0 - zlib-lens < 0 + # next set of packages broken by packages above this line + - Allure < 0 + - ChannelT < 0 + - Earley < 0 + - H < 0 + - HTF < 0 + - HsOpenSSL < 0 + - IPv6Addr < 0 + - RSA < 0 + - Rasterific < 0 + - RefSerialize < 0 + - ShellCheck < 0 + - TCache < 0 + - Taxonomy < 0 + - aeson-attoparsec < 0 + - aeson-better-errors < 0 + - aeson-casing < 0 + - aeson-default < 0 + - aeson-generic-compat < 0 + - aeson-pretty < 0 + - aeson-qq < 0 + - aeson-yak < 0 + - aeson-yaml < 0 + - alarmclock < 0 + - amazonka-apigateway < 0 + - amazonka-application-autoscaling < 0 + - amazonka-appstream < 0 + - amazonka-athena < 0 + - amazonka-autoscaling < 0 + - amazonka-budgets < 0 + - amazonka-certificatemanager < 0 + - amazonka-cloudformation < 0 + - amazonka-cloudfront < 0 + - amazonka-cloudhsm < 0 + - amazonka-cloudsearch < 0 + - amazonka-cloudsearch-domains < 0 + - amazonka-cloudtrail < 0 + - amazonka-cloudwatch < 0 + - amazonka-cloudwatch-events < 0 + - amazonka-cloudwatch-logs < 0 + - amazonka-codebuild < 0 + - amazonka-codecommit < 0 + - amazonka-codedeploy < 0 + - amazonka-codepipeline < 0 + - amazonka-cognito-identity < 0 + - amazonka-cognito-idp < 0 + - amazonka-cognito-sync < 0 + - amazonka-config < 0 + - amazonka-datapipeline < 0 + - amazonka-devicefarm < 0 + - amazonka-directconnect < 0 + - amazonka-discovery < 0 + - amazonka-dms < 0 + - amazonka-ds < 0 + - amazonka-dynamodb < 0 + - amazonka-dynamodb-streams < 0 + - amazonka-ecr < 0 + - amazonka-ecs < 0 + - amazonka-efs < 0 + - amazonka-elasticache < 0 + - amazonka-elasticbeanstalk < 0 + - amazonka-elasticsearch < 0 + - amazonka-elastictranscoder < 0 + - amazonka-elb < 0 + - amazonka-elbv2 < 0 + - amazonka-emr < 0 + - amazonka-gamelift < 0 + - amazonka-glacier < 0 + - amazonka-glue < 0 + - amazonka-health < 0 + - amazonka-iam < 0 + - amazonka-importexport < 0 + - amazonka-inspector < 0 + - amazonka-iot < 0 + - amazonka-iot-dataplane < 0 + - amazonka-kinesis < 0 + - amazonka-kinesis-analytics < 0 + - amazonka-kinesis-firehose < 0 + - amazonka-kms < 0 + - amazonka-lambda < 0 + - amazonka-lightsail < 0 + - amazonka-marketplace-analytics < 0 + - amazonka-marketplace-metering < 0 + - amazonka-ml < 0 + - amazonka-opsworks < 0 + - amazonka-opsworks-cm < 0 + - amazonka-pinpoint < 0 + - amazonka-polly < 0 + - amazonka-rds < 0 + - amazonka-redshift < 0 + - amazonka-rekognition < 0 + - amazonka-route53 < 0 + - amazonka-route53-domains < 0 + - amazonka-sdb < 0 + - amazonka-servicecatalog < 0 + - amazonka-ses < 0 + - amazonka-shield < 0 + - amazonka-sms < 0 + - amazonka-snowball < 0 + - amazonka-sns < 0 + - amazonka-sqs < 0 + - amazonka-ssm < 0 + - amazonka-stepfunctions < 0 + - amazonka-storagegateway < 0 + - amazonka-sts < 0 + - amazonka-support < 0 + - amazonka-swf < 0 + - amazonka-test < 0 + - amazonka-waf < 0 + - amazonka-workspaces < 0 + - amazonka-xray < 0 + - amqp < 0 + - amqp-utils < 0 + - apecs < 0 + - apecs-gloss < 0 + - apecs-physics < 0 + - ascii < 0 + - ascii-predicates < 0 + - ascii-progress < 0 + - ascii-th < 0 + - async-extra < 0 + - async-pool < 0 + - atom-basic < 0 + - attoparsec < 0 + - attoparsec-path < 0 + - authenticate < 0 + - authenticate-oauth < 0 + - auto-update < 0 + - backtracking < 0 + - base16 < 0 + - base32 < 0 + - base32string < 0 + - base58-bytestring < 0 + - base58string < 0 + - base64 < 0 + - bench < 0 + - bimap-server < 0 + - binary-ext < 0 + - binary-parsers < 0 + - bits < 0 + - bitwise-enum < 0 + - blanks < 0 + - boring < 0 + - bower-json < 0 + - buffer-builder < 0 + - bugsnag-haskell < 0 + - bytestring-conversion < 0 + - ca-province-codes < 0 + - cardano-coin-selection < 0 + - casa-client < 0 + - cassava-conduit < 0 + - cassava-megaparsec < 0 + - cfenv < 0 + - chan < 0 + - charset < 0 + - cheapskate < 0 + - cheapskate-highlight < 0 + - cheapskate-lucid < 0 + - checkers < 0 + - chimera < 0 + - chronologique < 0 + - chronos-bench < 0 + - citeproc < 0 + - classy-prelude-conduit < 0 + - cmark-lucid < 0 + - codec-rpm < 0 + - commutative < 0 + - comonad-extras < 0 + - concurrent-output < 0 + - conduit < 0 + - conduit-extra < 0 + - conferer-aeson < 0 + - conferer-warp < 0 + - config-ini < 0 + - configurator-export < 0 + - connection < 0 + - connection-pool < 0 + - criterion < 0 + - criterion-measurement < 0 + - cryptohash-cryptoapi < 0 + - data-textual < 0 + - depq < 0 + - deriveJsonNoPrefix < 0 + - deriving-aeson < 0 + - distributed-closure < 0 + - dl-fedora < 0 + - dlist-nonempty < 0 + - dublincore-xml-conduit < 0 + - ecstasy < 0 + - edit-distance-vector < 0 + - egison-pattern-src < 0 + - elm-bridge < 0 + - elm-export < 0 + - elynx < 0 + - elynx-seq < 0 + - elynx-tree < 0 + - enclosed-exceptions < 0 + - envy < 0 + - eq < 0 + - esqueleto < 0 + - essence-of-live-coding < 0 + - essence-of-live-coding-quickcheck < 0 + - etc < 0 + - eventful-test-helpers < 0 + - every < 0 + - exp-pairs < 0 + - extra < 0 + - faktory < 0 + - fast-logger < 0 + - fb < 0 + - filelock < 0 + - flags-applicative < 0 + - flush-queue < 0 + - fn < 0 + - follow-file < 0 + - forma < 0 + - formatting < 0 + - fsnotify < 0 + - ftp-client-conduit < 0 + - fuzzyset < 0 + - genvalidity-aeson < 0 + - genvalidity-containers < 0 + - genvalidity-hspec < 0 + - genvalidity-hspec-aeson < 0 + - genvalidity-hspec-binary < 0 + - genvalidity-hspec-cereal < 0 + - genvalidity-hspec-optics < 0 + - genvalidity-hspec-persistent < 0 + - genvalidity-mergeful < 0 + - genvalidity-mergeless < 0 + - genvalidity-path < 0 + - genvalidity-persistent < 0 + - genvalidity-scientific < 0 + - genvalidity-sydtest-aeson < 0 + - genvalidity-sydtest-persistent < 0 + - genvalidity-typed-uuid < 0 + - genvalidity-uuid < 0 + - genvalidity-vector < 0 + - ghc-lib-parser-ex < 0 + - ghc-prof < 0 + - gi-atk < 0 + - gi-cairo < 0 + - gi-dbusmenu < 0 + - gi-dbusmenugtk3 < 0 + - gi-gdk < 0 + - gi-gdkpixbuf < 0 + - gi-gdkx11 < 0 + - gi-gio < 0 + - gi-glib < 0 + - gi-gobject < 0 + - gi-graphene < 0 + - gi-gtk < 0 + - gi-harfbuzz < 0 + - gi-pango < 0 + - gi-xlib < 0 + - ginger < 0 + - gingersnap < 0 + - github-release < 0 + - github-rest < 0 + - github-types < 0 + - gitlab-haskell < 0 + - glabrous < 0 + - gluturtle < 0 + - google-isbn < 0 + - hackage-db < 0 + - hamtsolo < 0 + - hapistrano < 0 + - hasbolt < 0 + - haskell-gi-base < 0 + - haskell-names < 0 + - haskell-src-exts-util < 0 + - hasql-notifications < 0 + - hasql-optparse-applicative < 0 + - hasql-pool < 0 + - hasql-transaction < 0 + - hexstring < 0 + - hi-file-parser < 0 + - hinfo < 0 + - hinotify < 0 + - hkd-default < 0 + - hmm-lapack < 0 + - hosc < 0 + - hourglass-orphans < 0 + - hpack < 0 + - hpc-lcov < 0 + - hruby < 0 + - hsdns < 0 + - hsebaysdk < 0 + - hslua < 0 + - hspec-expectations-pretty-diff < 0 + - hspec-golden-aeson < 0 + - hspec-wai < 0 + - hspec-wai-json < 0 + - html-conduit < 0 + - html-entities < 0 + - html-entity-map < 0 + - http-client < 0 + - http-client-openssl < 0 + - http-client-overrides < 0 + - http-client-tls < 0 + - http-common < 0 + - http-conduit < 0 + - http-directory < 0 + - http-download < 0 + - http-query < 0 + - http-reverse-proxy < 0 + - http-streams < 0 + - httpd-shed < 0 + - hunit-dejafu < 0 + - hvega < 0 + - hyphenation < 0 + - immortal-queue < 0 + - inbox < 0 + - inflections < 0 + - ini < 0 + - inline-c-cpp < 0 + - inliterate < 0 + - interpolate < 0 + - intset-imperative < 0 + - io-memoize < 0 + - io-streams < 0 + - ipython-kernel < 0 + - islink < 0 + - it-has < 0 + - jose-jwt < 0 + - json-feed < 0 + - json-rpc-generic < 0 + - jsonpath < 0 + - junit-xml < 0 + - katip < 0 + - katip-logstash < 0 + - kawhi < 0 + - koofr-client < 0 + - kubernetes-webhook-haskell < 0 + - language-avro < 0 + - language-bash < 0 + - language-docker < 0 + - language-thrift < 0 + - lapack-ffi-tools < 0 + - leveldb-haskell < 0 + - libmpd < 0 + - liboath-hs < 0 + - lifted-async < 0 + - linear-circuit < 0 + - list-t < 0 + - llvm-hs-pure < 0 + - logict < 0 + - logstash < 0 + - lucid-cdn < 0 + - lucid-extras < 0 + - lukko < 0 + - lz4-frame-conduit < 0 + - magico < 0 + - markdown < 0 + - massiv-test < 0 + - matplotlib < 0 + - matrix-market-attoparsec < 0 + - megaparsec < 0 + - megaparsec-tests < 0 + - mergeful < 0 + - mergeless < 0 + - microstache < 0 + - mighty-metropolis < 0 + - mime-mail-ses < 0 + - mmark-cli < 0 + - mmark-ext < 0 + - mod < 0 + - monad-chronicle < 0 + - monad-logger-json < 0 + - monad-logger-logstash < 0 + - monad-products < 0 + - monad-unlift < 0 + - monad-unlift-ref < 0 + - mongoDB < 0 + - mono-traversable-instances < 0 + - monoid-subclasses < 0 + - moss < 0 + - mutable-containers < 0 + - mx-state-codes < 0 + - natural-transformation < 0 + - ndjson-conduit < 0 + - netpbm < 0 + - netwire-input < 0 + - netwire-input-glfw < 0 + - network-bsd < 0 + - network-conduit-tls < 0 + - network-messagepack-rpc < 0 + - network-messagepack-rpc-websocket < 0 + - network-simple < 0 + - network-simple-tls < 0 + - network-transport-composed < 0 + - nonemptymap < 0 + - nsis < 0 + - nuxeo < 0 + - nvim-hs-contrib < 0 + - nvim-hs-ghcid < 0 + - oauthenticated < 0 + - one-liner-instances < 0 + - opensource < 0 + - openssl-streams < 0 + - opentelemetry-lightstep < 0 + - opentelemetry-wai < 0 + - pandoc-types < 0 + - parsers < 0 + - path-binary-instance < 0 + - path-extensions < 0 + - path-extra < 0 + - path-io < 0 + - path-like < 0 + - pdfinfo < 0 + - peregrin < 0 + - persistent-documentation < 0 + - persistent-mtl < 0 + - persistent-mysql < 0 + - persistent-pagination < 0 + - persistent-postgresql < 0 + - persistent-qq < 0 + - persistent-sqlite < 0 + - persistent-test < 0 + - pg-transact < 0 + - pipes-aeson < 0 + - pipes-bytestring < 0 + - pipes-concurrency < 0 + - pipes-csv < 0 + - pipes-network < 0 + - pipes-network-tls < 0 + - pipes-ordered-zip < 0 + - pipes-wai < 0 + - pkgtreediff < 0 + - plaid < 0 + - plotlyhs < 0 + - poly-arity < 0 + - port-utils < 0 + - postgresql-binary < 0 + - postgresql-libpq-notify < 0 + - postgresql-orm < 0 + - postgresql-typed < 0 + - prettyprinter-compat-annotated-wl-pprint < 0 + - prettyprinter-compat-ansi-wl-pprint < 0 + - prettyprinter-compat-wl-pprint < 0 + - primitive-unlifted < 0 + - prometheus < 0 + - prometheus-wai-middleware < 0 + - protobuf < 0 + - protobuf-simple < 0 + - protocol-buffers < 0 + - pureMD5 < 0 + - pvar < 0 + - qrcode-core < 0 + - quickcheck-classes < 0 + - range < 0 + - ratel < 0 + - ratel-wai < 0 + - recursion-schemes < 0 + - reform-happstack < 0 + - rerebase < 0 + - resistor-cube < 0 + - resourcet-pool < 0 + - result < 0 + - rhine < 0 + - rigel-viz < 0 + - rio-orphans < 0 + - rio-prettyprint < 0 + - roc-id < 0 + - rpmbuild-order < 0 + - salak-yaml < 0 + - sampling < 0 + - scalpel < 0 + - sdl2-gfx < 0 + - sdl2-image < 0 + - sdl2-mixer < 0 + - sdl2-ttf < 0 + - selda < 0 + - selda-json < 0 + - selda-postgresql < 0 + - selda-sqlite < 0 + - sendfile < 0 + - sequence-formats < 0 + - sequenceTools < 0 + - serversession-frontend-wai < 0 + - set-cover < 0 + - shake-plus < 0 + - shakespeare < 0 + - shell-conduit < 0 + - shelly < 0 + - shikensu < 0 + - simple-log < 0 + - simple-sendfile < 0 + - simple-templates < 0 + - skein < 0 + - skews < 0 + - skylighting-core < 0 + - smash-aeson < 0 + - smash-microlens < 0 + - smoothie < 0 + - smtp-mail < 0 + - snap-blaze < 0 + - soap < 0 + - soap-openssl < 0 + - soap-tls < 0 + - socks < 0 + - sourcemap < 0 + - sparse-linear-algebra < 0 + - special-values < 0 + - splice < 0 + - stache < 0 + - stm-conduit < 0 + - store-streaming < 0 + - streaming-commons < 0 + - streams < 0 + - string-conversions < 0 + - string-random < 0 + - stripe-core < 0 + - stripe-http-client < 0 + - stripe-tests < 0 + - strive < 0 + - swagger < 0 + - sydtest < 0 + - sydtest-discover < 0 + - sydtest-persistent-sqlite < 0 + - sydtest-wai < 0 + - sydtest-yesod < 0 + - systemd < 0 + - tagged-transformer < 0 + - tasty < 0 + - tasty-dejafu < 0 + - tasty-golden < 0 + - tasty-silver < 0 + - text-builder < 0 + - text-printer < 0 + - textlocal < 0 + - th-orphans < 0 + - th-printf < 0 + - these-optics < 0 + - throttle-io-stream < 0 + - tinylog < 0 + - tls < 0 + - tls-debug < 0 + - tls-session-manager < 0 + - tlynx < 0 + - tostring < 0 + - tracing < 0 + - tracing-control < 0 + - typed-process < 0 + - ua-parser < 0 + - unagi-chan < 0 + - unboxed-ref < 0 + - unboxing-vector < 0 + - uncertain < 0 + - uniq-deep < 0 + - unit-constraint < 0 + - universe-instances-extended < 0 + - unliftio < 0 + - unliftio-pool < 0 + - uri-bytestring-aeson < 0 + - users < 0 + - utf8-conversions < 0 + - validity-aeson < 0 + - validity-path < 0 + - validity-persistent < 0 + - validity-scientific < 0 + - validity-uuid < 0 + - vector-bytes-instances < 0 + - vformat-aeson < 0 + - wai < 0 + - wai-app-static < 0 + - wai-conduit < 0 + - wai-cors < 0 + - wai-enforce-https < 0 + - wai-extra < 0 + - wai-feature-flags < 0 + - wai-handler-launch < 0 + - wai-middleware-caching < 0 + - wai-middleware-static < 0 + - wai-rate-limit < 0 + - wai-saml2 < 0 + - wai-slack-middleware < 0 + - wai-websockets < 0 + - warp-tls < 0 + - warp-tls-uid < 0 + - webdriver < 0 + - webex-teams-api < 0 + - webex-teams-conduit < 0 + - webex-teams-pipes < 0 + - wss-client < 0 + - wuss < 0 + - xdg-desktop-entry < 0 + - xml-conduit-writer < 0 + - xml-hamlet < 0 + - xmonad-contrib < 0 + - yaml < 0 + - yamlparse-applicative < 0 + - yesod < 0 + - yesod-auth-hashdb < 0 + - yesod-auth-oauth2 < 0 + - yesod-bin < 0 + - yesod-core < 0 + - yesod-fb < 0 + - yesod-gitrev < 0 + - yesod-markdown < 0 + - yesod-newsfeed < 0 + - yesod-page-cursor < 0 + - yesod-persistent < 0 + - yesod-sitemap < 0 + - yesod-test < 0 + - yesod-websockets < 0 + - yi-rope < 0 + - zeromq4-haskell < 0 + - zeromq4-patterns < 0 + - zip < 0 + - ztail < 0 + + "Stackage upper bounds": # https://github.com/commercialhaskell/stackage/issues/5570 1.3 From 7d227332c40e486025b692eab66b7ae0b392b575 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 7 Mar 2021 10:28:32 -0800 Subject: [PATCH 2468/2682] Bump to GHC 9.0.1 --- build-constraints.yaml | 175 ++++++++++++++++++++++++++++++++++++++++- 1 file changed, 174 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 509f88a7..37705917 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6463,7 +6463,180 @@ packages: - zeromq4-patterns < 0 - zip < 0 - ztail < 0 - + # next set of packages broken by packages above this line + - Color < 0 + - HsOpenSSL-x509-system < 0 + - JuicyPixels-extra < 0 + - QuasiText < 0 + - Spintax < 0 + - ace < 0 + - async-refresh < 0 + - async-refresh-tokens < 0 + - attoparsec-base64 < 0 + - attoparsec-binary < 0 + - attoparsec-expr < 0 + - attoparsec-iso8601 < 0 + - base64-bytestring < 0 + - binary-conduit < 0 + - bitvec < 0 + - board-games < 0 + - boolean-like < 0 + - byte-count-reader < 0 + - bz2 < 0 + - bzlib-conduit < 0 + - cases < 0 + - cereal-conduit < 0 + - cmark-gfm < 0 + - commonmark < 0 + - commonmark-extensions < 0 + - commonmark-pandoc < 0 + - conduit-concurrent-map < 0 + - conduit-parse < 0 + - conduit-zstd < 0 + - cpio-conduit < 0 + - cpuinfo < 0 + - cron < 0 + - crypto-numbers < 0 + - crypto-pubkey < 0 + - cryptohash < 0 + - cryptonite-conduit < 0 + - css-text < 0 + - cue-sheet < 0 + - cursor-fuzzy-time < 0 + - cursor-gen < 0 + - data-serializer < 0 + - dataurl < 0 + - doclayout < 0 + - dotenv < 0 + - editor-open < 0 + - elynx-nexus < 0 + - errors-ext < 0 + - essence-of-live-coding-gloss < 0 + - essence-of-live-coding-pulse < 0 + - fakedata-parser < 0 + - filepattern < 0 + - flat-mcmc < 0 + - fold-debounce-conduit < 0 + - frontmatter < 0 + - fsnotify-conduit < 0 + - fuzzy < 0 + - fuzzy-time < 0 + - generics-sop < 0 + - genvalidity-bytestring < 0 + - genvalidity-criterion < 0 + - genvalidity-sydtest < 0 + - genvalidity-sydtest-lens < 0 + - genvalidity-text < 0 + - genvalidity-time < 0 + - ghcid < 0 + - gi-cairo-connector < 0 + - gi-cairo-render < 0 + - gi-gtk-hs < 0 + - gtk-strut < 0 + - hadoop-streaming < 0 + - haskell-src-meta < 0 + - hexml < 0 + - higher-leveldb < 0 + - hjsmin < 0 + - hkgr < 0 + - hostname-validate < 0 + - hp2pretty < 0 + - hprotoc < 0 + - hslua-module-doclayout < 0 + - hslua-module-system < 0 + - hslua-module-text < 0 + - hspec-attoparsec < 0 + - hspec-checkers < 0 + - hspec-megaparsec < 0 + - hw-conduit-merges < 0 + - hweblib < 0 + - imagesize-conduit < 0 + - input-parsers < 0 + - ip6addr < 0 + - irc < 0 + - language-protobuf < 0 + - libyaml < 0 + - llvm-hs < 0 + - logging < 0 + - makefile < 0 + - mock-time < 0 + - monad-logger < 0 + - mysql-simple < 0 + - neat-interpolation < 0 + - network-uri < 0 + - nix-derivation < 0 + - openpgp-asciiarmor < 0 + - pager < 0 + - parser-combinators-tests < 0 + - pipes-attoparsec < 0 + - pipes-binary < 0 + - pipes-fastx < 0 + - pipes-http < 0 + - pretty-relative-time < 0 + - project-template < 0 + - protocol-buffers-descriptor < 0 + - qrcode-juicypixels < 0 + - quickcheck-special < 0 + - rampart < 0 + - rcu < 0 + - rdf < 0 + - reform-hamlet < 0 + - replace-attoparsec < 0 + - replace-megaparsec < 0 + - rhine-gloss < 0 + - rocksdb-haskell-jprupp < 0 + - rocksdb-query < 0 + - safeio < 0 + - seqid-streams < 0 + - serf < 0 + - ses-html < 0 + - simple-cmd < 0 + - simple-vec3 < 0 + - skylighting < 0 + - smallcheck < 0 + - sqlite-simple < 0 + - streaming-attoparsec < 0 + - stripe-haskell < 0 + - tagged-binary < 0 + - tasty-bench < 0 + - tasty-expected-failure < 0 + - tasty-focus < 0 + - tasty-hunit < 0 + - tasty-hunit-compat < 0 + - tasty-kat < 0 + - tasty-leancheck < 0 + - tasty-lua < 0 + - tasty-program < 0 + - tasty-quickcheck < 0 + - tasty-rerun < 0 + - tasty-smallcheck < 0 + - tasty-test-reporter < 0 + - tasty-th < 0 + - tensors < 0 + - terminal-progress-bar < 0 + - texmath < 0 + - text-ldap < 0 + - text-regex-replace < 0 + - th-utilities < 0 + - thread-local-storage < 0 + - thread-supervisor < 0 + - time-manager < 0 + - time-parsers < 0 + - timerep < 0 + - tldr < 0 + - uniprot-kb < 0 + - universe < 0 + - unliftio-streams < 0 + - urbit-hob < 0 + - wai-eventsource < 0 + - wikicfp-scraper < 0 + - word-wrap < 0 + - xeno < 0 + - xss-sanitize < 0 + - zenacy-html < 0 + - zip-stream < 0 + - zipper-extra < 0 + - zstd < 0 "Stackage upper bounds": From c81a82676a0b1ae42a3ae91547fa178d1609a1a3 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 7 Mar 2021 10:33:02 -0800 Subject: [PATCH 2469/2682] Bump to GHC 9.0.1 --- build-constraints.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 37705917..237c0052 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6637,6 +6637,25 @@ packages: - zip-stream < 0 - zipper-extra < 0 - zstd < 0 + # next set of packages broken by packages above this line + - cgi < 0 + - dotenv < 0 + - frontmatter < 0 + - getopt-generics < 0 + - here < 0 + - hspec-smallcheck < 0 + - hxt < 0 + - interpolatedstring-perl6 < 0 + - language-c-quote < 0 + - mixed-types-num < 0 + - monad-logger-prefix < 0 + - pretty-sop < 0 + - qm-interpolated-string < 0 + - sqlcli < 0 + - sqlcli-odbc < 0 + - test-framework-smallcheck < 0 + - tuple-sop < 0 + - uri-encode < 0 "Stackage upper bounds": From 834b8a550f28fab797fff4692f73caffdc2d7dae Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 7 Mar 2021 10:35:22 -0800 Subject: [PATCH 2470/2682] Bump to GHC 9.0.1 --- build-constraints.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 237c0052..03f7180b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6656,6 +6656,14 @@ packages: - test-framework-smallcheck < 0 - tuple-sop < 0 - uri-encode < 0 + # next set of packages broken by packages above this line + - epub-metadata < 0 + - hxt-css < 0 + - hxt-curl < 0 + - hxt-expat < 0 + - hxt-tagsoup < 0 + - mime-mail < 0 + - text-conversions < 0 "Stackage upper bounds": From 6256a50c078b113475f47aed874b20b13bc63eaa Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 7 Mar 2021 10:42:25 -0800 Subject: [PATCH 2471/2682] Bump to GHC 9.0.1 --- build-constraints.yaml | 66 +++++++++++++++++++++++++++++++++++++++++- 1 file changed, 65 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 03f7180b..59bf8152 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6665,7 +6665,6 @@ packages: - mime-mail < 0 - text-conversions < 0 - "Stackage upper bounds": # https://github.com/commercialhaskell/stackage/issues/5570 1.3 # https://github.com/commercialhaskell/stackage/issues/5795 1.4 @@ -7031,6 +7030,71 @@ skipped-tests: - safeio # via test-framework-th - tzdata # via test-framework-th + # GHC 9.0.1 (mostly tasty or related) + - STMonadTrans < 0 + - asn1-encoding < 0 + - barbies < 0 + - blaze-markup < 0 + - bounded-queue < 0 + - cabal2spec < 0 + - casing < 0 + - compiler-warnings < 0 + - cookie < 0 + - countable < 0 + - cryptonite < 0 + - cryptonite-openssl < 0 + - csp < 0 + - cubicbezier < 0 + - data-bword < 0 + - di-core < 0 + - diagrams-solve < 0 + - dunai < 0 + - either-both < 0 + - fast-digits < 0 + - free-vl < 0 + - githash < 0 + - haskell-src-exts < 0 + - hourglass < 0 + - hpc-codecov < 0 + - hsini < 0 + - immortal < 0 + - jira-wiki-markup < 0 + - language-java < 0 + - math-functions < 0 + - matrices < 0 + - matrix < 0 + - monad-loops < 0 + - nondeterminism < 0 + - paripari < 0 + - parsec-numeric < 0 + - pkcs10 < 0 + - pretty-diff < 0 + - primitive < 0 + - quickcheck-higherorder < 0 + - quote-quot < 0 + - regex-applicative < 0 + - rope-utf16-splay < 0 + - say < 0 + - selective < 0 + - sitemap-gen < 0 + - streaming-bytestring < 0 + - string-transform < 0 + - structs < 0 + - syb < 0 + - temporary < 0 + - test-fun < 0 + - text-manipulate < 0 + - titlecase < 0 + - traverse-with-class < 0 + - vector-rotcev < 0 + - vector-split < 0 + - wl-pprint-annotated < 0 + - x509 < 0 + - x509-store < 0 + - x509-validation < 0 + - xml-picklers < 0 + - xmlgen < 0 + # other dep issues - Cabal # GHC 8.4 via base-orphans-0.7, base-orphans-0.7 - DBFunctor # missing file test_options.csv From 6edd9b5982147af61d0a97733519e5dc9ca4fbc0 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 7 Mar 2021 10:46:26 -0800 Subject: [PATCH 2472/2682] Bump to GHC 9.0.1 --- build-constraints.yaml | 126 ++++++++++++++++++++--------------------- 1 file changed, 63 insertions(+), 63 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 59bf8152..493deb87 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -7031,69 +7031,69 @@ skipped-tests: - tzdata # via test-framework-th # GHC 9.0.1 (mostly tasty or related) - - STMonadTrans < 0 - - asn1-encoding < 0 - - barbies < 0 - - blaze-markup < 0 - - bounded-queue < 0 - - cabal2spec < 0 - - casing < 0 - - compiler-warnings < 0 - - cookie < 0 - - countable < 0 - - cryptonite < 0 - - cryptonite-openssl < 0 - - csp < 0 - - cubicbezier < 0 - - data-bword < 0 - - di-core < 0 - - diagrams-solve < 0 - - dunai < 0 - - either-both < 0 - - fast-digits < 0 - - free-vl < 0 - - githash < 0 - - haskell-src-exts < 0 - - hourglass < 0 - - hpc-codecov < 0 - - hsini < 0 - - immortal < 0 - - jira-wiki-markup < 0 - - language-java < 0 - - math-functions < 0 - - matrices < 0 - - matrix < 0 - - monad-loops < 0 - - nondeterminism < 0 - - paripari < 0 - - parsec-numeric < 0 - - pkcs10 < 0 - - pretty-diff < 0 - - primitive < 0 - - quickcheck-higherorder < 0 - - quote-quot < 0 - - regex-applicative < 0 - - rope-utf16-splay < 0 - - say < 0 - - selective < 0 - - sitemap-gen < 0 - - streaming-bytestring < 0 - - string-transform < 0 - - structs < 0 - - syb < 0 - - temporary < 0 - - test-fun < 0 - - text-manipulate < 0 - - titlecase < 0 - - traverse-with-class < 0 - - vector-rotcev < 0 - - vector-split < 0 - - wl-pprint-annotated < 0 - - x509 < 0 - - x509-store < 0 - - x509-validation < 0 - - xml-picklers < 0 - - xmlgen < 0 + - STMonadTrans + - asn1-encoding + - barbies + - blaze-markup + - bounded-queue + - cabal2spec + - casing + - compiler-warnings + - cookie + - countable + - cryptonite + - cryptonite-openssl + - csp + - cubicbezier + - data-bword + - di-core + - diagrams-solve + - dunai + - either-both + - fast-digits + - free-vl + - githash + - haskell-src-exts + - hourglass + - hpc-codecov + - hsini + - immortal + - jira-wiki-markup + - language-java + - math-functions + - matrices + - matrix + - monad-loops + - nondeterminism + - paripari + - parsec-numeric + - pkcs10 + - pretty-diff + - primitive + - quickcheck-higherorder + - quote-quot + - regex-applicative + - rope-utf16-splay + - say + - selective + - sitemap-gen + - streaming-bytestring + - string-transform + - structs + - syb + - temporary + - test-fun + - text-manipulate + - titlecase + - traverse-with-class + - vector-rotcev + - vector-split + - wl-pprint-annotated + - x509 + - x509-store + - x509-validation + - xml-picklers + - xmlgen # other dep issues - Cabal # GHC 8.4 via base-orphans-0.7, base-orphans-0.7 From 244838aa35afbea7736fb47c773ae4ec9396ea5d Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 7 Mar 2021 10:49:50 -0800 Subject: [PATCH 2473/2682] Bump to GHC 9.0.1 --- build-constraints.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 493deb87..63ecb663 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -7746,6 +7746,11 @@ expected-benchmark-failures: # Recursive deps https://github.com/fpco/stackage/issues/1818 - hashable + # GHC 9.0.1 + - ghc-trace-events + - quote-quot + - say + # Missing files in sdist # Compilation failures From a6da8fb558767f0f348807b6d55bc0e721acb953 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 7 Mar 2021 10:57:16 -0800 Subject: [PATCH 2474/2682] Bump to GHC 9.0.1 --- build-constraints.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 63ecb663..3d43088d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -7746,11 +7746,6 @@ expected-benchmark-failures: # Recursive deps https://github.com/fpco/stackage/issues/1818 - hashable - # GHC 9.0.1 - - ghc-trace-events - - quote-quot - - say - # Missing files in sdist # Compilation failures @@ -7953,6 +7948,11 @@ skipped-benchmarks: - xmlgen - yi-rope + # GHC 9.0.1 + - ghc-trace-events + - quote-quot + - say + # Transitive outdated dependencies # These packages # These can also be checked for updates periodically. From 5d6a5a7adc085b3a51aeee98f30c48cd8dbeb558 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 7 Mar 2021 13:18:32 -0800 Subject: [PATCH 2475/2682] Bump to GHC 9.0.1 --- build-constraints.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3d43088d..f0b0c6ca 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6664,6 +6664,29 @@ packages: - hxt-tagsoup < 0 - mime-mail < 0 - text-conversions < 0 + # Following pass the constraint checks but fail at compile time + - Decimal < 0 + - HStringTemplate < 0 + - barbies < 0 + - basement < 0 + - btrfs < 0 + - bytestring-strict-builder < 0 + - data-lens-light < 0 + - drinkery < 0 + - enum-subset-generate < 0 + - generic-lens-core < 0 + - hpc-codecov < 0 + - hs-functors < 0 + - lens-family < 0 + - operational < 0 + - partial-isomorphism < 0 + - rawfilepath < 0 + - selective < 0 + - tf-data-compat < 0 + - th-extras < 0 + - traverse-with-class < 0 + - vinyl < 0 + - word24 < 0 "Stackage upper bounds": # https://github.com/commercialhaskell/stackage/issues/5570 1.3 From 780b51c9c30bb5fa7489bc9767d051e5dc7b1f7b Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 7 Mar 2021 13:19:51 -0800 Subject: [PATCH 2476/2682] Bump to GHC 9.0.1 --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f0b0c6ca..620b5fe8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6679,10 +6679,10 @@ packages: - hs-functors < 0 - lens-family < 0 - operational < 0 - - partial-isomorphism < 0 + - partial-isomorphisms < 0 - rawfilepath < 0 - selective < 0 - - tf-data-compat < 0 + - th-data-compat < 0 - th-extras < 0 - traverse-with-class < 0 - vinyl < 0 From cf4de701969151792f8119795d522005e2bb3990 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 7 Mar 2021 13:21:27 -0800 Subject: [PATCH 2477/2682] Bump to GHC 9.0.1 --- build-constraints.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 620b5fe8..95e29545 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6687,6 +6687,21 @@ packages: - traverse-with-class < 0 - vinyl < 0 - word24 < 0 + # Blocked by packages in the above set + - cryptonite < 0 + - cryptonite-openssl < 0 + - flexible-defaults < 0 + - foundation < 0 + - gauge < 0 + - lenz < 0 + - memory < 0 + - operational-class < 0 + - pem < 0 + - persistable-record < 0 + - product-isomorphic < 0 + - random-source < 0 + - relational-query-HDBC < 0 + - time-lens < 0 "Stackage upper bounds": # https://github.com/commercialhaskell/stackage/issues/5570 1.3 From d055368be904dc2613fc87534843bb2d977f4937 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 7 Mar 2021 13:33:35 -0800 Subject: [PATCH 2478/2682] Bump to GHC 9.0.1 --- build-constraints.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 95e29545..08591e8f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6702,6 +6702,23 @@ packages: - random-source < 0 - relational-query-HDBC < 0 - time-lens < 0 + # Blocked by packages in the above set + - asn1-types < 0 + - eap < 0 + - hashing < 0 + - locators < 0 + - persistable-types-HDBC-pg < 0 + - pkcs10 < 0 + - protocol-radius < 0 + - random-fu < 0 + - relational-query < 0 + - relational-record < 0 + - rvar < 0 + - securemem < 0 + - x509 < 0 + - x509-store < 0 + - x509-system < 0 + - x509-validation < 0 "Stackage upper bounds": # https://github.com/commercialhaskell/stackage/issues/5570 1.3 @@ -7988,6 +8005,9 @@ skipped-benchmarks: # GHC 9.0.1 - ghc-trace-events + - hourglass + - math-functions + - newtype-generics - quote-quot - say From b9eed5ae6860efe88322e397ba25196d113a063c Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 7 Mar 2021 13:35:08 -0800 Subject: [PATCH 2479/2682] Bump to GHC 9.0.1 --- build-constraints.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 08591e8f..8ba049f4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6719,6 +6719,19 @@ packages: - x509-store < 0 - x509-system < 0 - x509-validation < 0 + # Blocked by packages in the above set + - asn1-encoding < 0 + - asn1-parse < 0 + - cipher-aes < 0 + - cipher-camellia < 0 + - cipher-des < 0 + - crypto-cipher-types < 0 + - crypto-pubkey-types < 0 + - crypto-random < 0 + - nettle < 0 + - protocol-radius-test < 0 + - relational-schemas < 0 + "Stackage upper bounds": # https://github.com/commercialhaskell/stackage/issues/5570 1.3 From e3493d83692bf9af4bbc5f35677ddc1ce2d36625 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 7 Mar 2021 13:36:29 -0800 Subject: [PATCH 2480/2682] Bump to GHC 9.0.1 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8ba049f4..da403686 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6731,6 +6731,9 @@ packages: - nettle < 0 - protocol-radius-test < 0 - relational-schemas < 0 + # Blocked by packages in the above set + - cipher-rc4 < 0 + - cprng-aes < 0 "Stackage upper bounds": From efb14c63224daaa3ab26b6ec8365721e955890af Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 7 Mar 2021 13:40:11 -0800 Subject: [PATCH 2481/2682] Bump to GHC 9.0.1 --- build-constraints.yaml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index da403686..821ce1b2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6732,9 +6732,19 @@ packages: - protocol-radius-test < 0 - relational-schemas < 0 # Blocked by packages in the above set + - asn1-encoding < 0 + - asn1-parse < 0 + - cipher-aes < 0 + - cipher-camellia < 0 + - cipher-des < 0 - cipher-rc4 < 0 - cprng-aes < 0 - + - crypto-cipher-types < 0 + - crypto-pubkey-types < 0 + - crypto-random < 0 + - nettle < 0 + - protocol-radius-test < 0 + - relational-schemas < 0 "Stackage upper bounds": # https://github.com/commercialhaskell/stackage/issues/5570 1.3 From e5e22328c05beb466dd6f548b7c9a5bd98e5354c Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 7 Mar 2021 13:45:09 -0800 Subject: [PATCH 2482/2682] Bump to GHC 9.0.1 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 821ce1b2..4698b494 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -7175,6 +7175,9 @@ skipped-tests: - x509-validation - xml-picklers - xmlgen + # These fail to compile, despite passing bounds checks + - do-notation + - record-wrangler # other dep issues - Cabal # GHC 8.4 via base-orphans-0.7, base-orphans-0.7 From 98993f564828a6a666a7dbf1d77f2641a0c26f30 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 7 Mar 2021 16:26:57 -0800 Subject: [PATCH 2483/2682] Bump to GHC 9.0.1 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4698b494..6ab8df7f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4012,7 +4012,7 @@ packages: - conferer < 1.1 # https://github.com/commercialhaskell/stackage/issues/5896 #- conferer-snap # Because snap - conferer-warp - - conferer-hspec + - conferer-hspec < 1.1 # https://github.com/commercialhaskell/stackage/issues/5896 - conferer-aeson < 1.1 # https://github.com/commercialhaskell/stackage/issues/5896 "Tim Humphries @thumphries": From 07df76723985387059d72d1917a85978ad184ad1 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 7 Mar 2021 16:45:02 -0800 Subject: [PATCH 2484/2682] Bump to GHC 9.0.1 --- build-constraints.yaml | 1020 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 1020 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6ab8df7f..cbaa1ff0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -7848,6 +7848,1026 @@ expected-benchmark-failures: # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: + # Compilation with GHC 9.0.1 crashes with `Prelude.chr: bad argument` + - AC-Angle + - ALUT + - ANum + - Boolean + - BoundedChan + - ChasingBottoms + - Clipboard + - ClustalParser + - Diff + - Ebnf2ps + - FenwickTree + - FindBin + - FloatingHex + - FontyFruity + - GLFW-b + - GLURaw + - GLUT + - GenericPretty + - Glob + - HCodecs + - HDBC + - HDBC-session + - HSlippyMap + - HSvm + - HUnit + - HUnit-approx + - HasBigDecimal + - Imlib + - IntervalMap + - JuicyPixels + - LibZip + - List + - LibZip + - List + - ListLike + - ListTree + - MemoTrie + - MonadPrompt + - MonadRandom + - NineP + - NumInstances + - ObjectName + - OneTuple + - Only + - OpenAL + - OpenGL + - OpenGLRaw + - ParsecTools + - QuickCheck + - Ranged-sets + - SHA + - STMonadTrans + - SafeSemaphore + - StateVar + - TypeCompose + - ViennaRNAParser + - X11 + - X11-xft + - Xauth + - abstract-deque + - abstract-par + - action-permutations + - adler32 + - agda2lagda + - al + - alerts + - alex + - alg + - algebraic-graphs + - almost-fix + - alsa-core + - alsa-mixer + - alsa-pcm + - alsa-seq + - alternative-vector + - annotated-wl-pprint + - ansi-terminal + - ansi-wl-pprint + - app-settings + - appar + - appendmap + - apportionment + - approximate-equality + - array-memoize + - approximate-equality + - array-memoize + - arrow-extras + - assert-failure + - assoc + - astro + - atomic-primops + - atomic-write + - audacity + - autoexporter + - bank-holidays-england + - base-compat + - base-compat-batteries + - base-orphans + - base-prelude + - base-unicode-symbols + - base16-bytestring + - base64-string + - bazel-runfiles + - bbdb + - between + - bibtex + - bifunctors + - bimap + - binary-ieee754 + - binary-list + - binary-orphans + - binary-parser + - binary-search + - binary-shared + - bindings-DSL + - bindings-GLFW + - bindings-libzip + - bindings-uname + - bitarray + - bitset-word8 + - blake2 + - blas-carray + - blas-comfort-array + - blas-ffi + - blaze-bootstrap + - blaze-builder + - blaze-html + - blaze-markup + - blaze-svg + - blaze-textual + - bmp + - boolsimplifier + - boots + - bordacount + - both + - bounded-queue + - both + - bounded-queue + - boxes + - buffer-pipe + - burrito + - bv + - byte-order + - byteable + - bytedump + - byteorder + - byteset + - bytestring-builder + - bytestring-lexing + - bytestring-mmap + - bytestring-to-vector + - bytestring-tree-builder + - c14n + - c2hs + - cabal-appimage + - cabal-doctest + - cabal2spec + - calendar-recycling + - call-stack + - can-i-haz + - carray + - cased + - casing + - cast + - category + - cereal + - cereal-text + - cereal-vector + - charsetdetect-ae + - chaselev-deque + - checksum + - choice + - chunked-data + - circle-packing + - clay + - climb + - clock + - clock-extras + - clumpiness + - cmark + - cmdargs + - code-page + - codec-beam + - colorful-monoids + - colorize-haskell + - colour + - combinatorial + - comfort-array + - combinatorial + - comfort-array + - comfort-graph + - comonad + - compactmap + - compiler-warnings + - composition + - composition-extra + - concurrency + - concurrent-extra + - concurrent-split + - cond + - conduit-combinators + - conferer + - conferer-hspec + - console-style + - constraint + - constraint-tuples + - contravariant + - contravariant-extras + - control-bool + - control-monad-free + - control-monad-omega + - convertible + - cookie + - countable + - cpphs + - cpu + - crackNum + - crc32c + - csp + - csv + - cubicbezier + - curl + - currencies + - cursor + - cutter + - data-accessor + - data-accessor-mtl + - data-accessor-transformers + - data-binary-ieee754 + - data-bword + - data-checked + - data-clist + - data-default + - data-default-class + - data-default-instances-containers + - data-default-instances-dlist + - data-default-instances-old-locale + - data-diverse + - data-endian + - data-has + - data-endian + - data-has + - data-hash + - data-inttrie + - data-memocombinators + - data-or + - data-ordlist + - data-ref + - debian-build + - debug-trace-var + - dec + - deriving-compat + - derulo + - di-core + - di-monad + - diagrams-solve + - dictionary-sharing + - digest + - digits + - direct-sqlite + - directory-tree + - discount + - disk-free-space + - distributive + - dlist + - dlist-instances + - do-list + - do-notation + - dockerfile + - doctest-exitcode-stdio + - doctest-lib + - doldol + - dot + - dotgen + - dotnet-timespan + - double-conversion + - dsp + - dual + - dunai + - dvorak + - dyre + - easy-file + - echo + - edit-distance + - either-both + - either-unwrap + - elerea + - elf + - elm-core-sources + - emojis + - enummapset + - enumset + - enummapset + - enumset + - envparse + - equal-files + - equivalence + - erf + - error-or + - error-or-utils + - errors + - event-list + - exact-combinatorics + - exact-pi + - exception-mtl + - exception-transformers + - exception-via + - executable-path + - exit-codes + - exomizer + - explicit-exception + - express + - extensible-effects + - extensible-exceptions + - extractable-singleton + - extrapolate + - fail + - failable + - fakefs + - fakepull + - fast-digits + - fast-math + - feature-flags + - fedora-dists + - fft + - fgl + - file-embed + - file-path-th + - filemanip + - fileplow + - filtrable + - fingertree + - finite-typelits + - first-class-patterns + - fitspec + - fixed + - fixed-length + - flac + - flac-picture + - floatshow + - flow + - fmlist + - focus + - fold-debounce + - [focus + - fold-debounce + - foldable1 + - foreign-store + - forkable-monad + - format-numbers + - free-categories + - free-vl + - freenect + - freetype2 + - friendly-time + - funcmp + - function-builder + - fusion-plugin-types + - fuzzcheck + - gd + - gdp + - general-games + - generic-arbitrary + - generic-constraints + - genvalidity + - ghc-byteorder + - ghc-core + - ghc-events + - ghc-paths + - ghc-trace-events + - ghcjs-codemirror + - ghost-buster + - githash + - gitrev + - gl + - gloss + - gloss-rendering + - gnuplot + - gpolyline + - graph-wrapper + - graphs + - graphviz + - groom + - group-by-date + - groups + - guarded-allocation + - half + - happy + - hashids + - haskeline + - haskell-gi-overloading + - haskell-lexer + - haskell-src + - haskell-src-exts + - hdaemonize + - heap + - hdaemonize + - heap + - heaps + - hebrew-time + - hedgehog-corpus + - heredoc + - hexpat + - hformat + - hlibcpuid + - hlibgit2 + - hlibsass + - hnock + - hopenssl + - hopfli + - hostname + - hourglass + - hs-GeoIP + - hs-bibutils + - hs-php-session + - hsass + - hscolour + - hsemail + - hsini + - hsinstall + - hsp + - hspec + - hspec-contrib + - hspec-core + - hspec-discover + - hspec-expectations + - hspec-expectations-lifted + - hspec-golden + - hspec-leancheck + - hspec-meta + - hspec-need-env + - hspec-parsec + - hsshellscript + - hsyslog + - htaglib + - html + - hvect + - hw-int + - hw-kafka-client + - hw-string-parse + - hxt-charproperties + - hxt-regex-xmlschema + - hxt-unicode + - hybrid-vectors + - iconv + - identicon + - ieee754 + - if + - ieee754 + - if + - iff + - ihs + - immortal + - include-file + - indents + - indexed + - indexed-containers + - indexed-list-literals + - indexed-profunctors + - indexed-traversable + - infer-license + - inj + - instance-control + - integer-logarithms + - integer-roots + - integration + - interpolation + - intervals + - io-machine + - io-manager + - io-region + - io-storage + - irc-ctcp + - isbn + - iso3166-country-codes + - iso639 + - iso8601-time + - iterable + - ix-shapable + - jack + - jailbreak-cabal + - jalaali + - jira-wiki-markup + - js-chart + - js-dgtable + - js-flot + - js-jquery + - justified-containers + - keycode + - kind-apply + - kind-generics + - kmeans + - l10n + - labels + - lame + - language-c + - language-java + - language-javascript + - language-python + - lapack-carray + - language-python + - lapack-carray + - lapack-comfort-array + - lapack-ffi + - largeword + - latex + - lawful + - lazy-csv + - lazyio + - lca + - leancheck + - leancheck-instances + - leapseconds-announced + - lens-family-core + - lens-family-th + - libffi + - libgit + - libgraph + - lifted-base + - linenoise + - linux-file-extents + - linux-namespaces + - list-predicate + - list-singleton + - listsafe + - little-rio + - lmdb + - loch-th + - lockfree-queue + - logfloat + - logging-facade + - logging-facade-syslog + - loop + - lrucache + - magic + - mainland-pretty + - managed + - markdown-unlit + - markov-chain + - math-functions + - mathexpr + - matrices + - matrix + - maximal-cliques + - mbox + - mbox-utility + - mcmc-types + - med-module + - median-stream + - mersenne-random-pure64 + - messagepack + - microlens + - messagepack + - microlens + - microlens-contra + - microlens-ghc + - microlens-mtl + - microlens-th + - microspec + - midair + - midi + - mime-types + - minimal-configuration + - minimorph + - miniutter + - mintty + - missing-foreign + - mmap + - mmorph + - mnist-idx + - mockery + - monad-control + - monad-control-aligned + - monad-coroutine + - monad-extras + - monad-journal + - monad-loops + - monad-memo + - monad-par + - monad-par-extras + - monad-parallel + - monad-peel + - monad-primitive + - monad-resumption + - monad-skeleton + - monad-st + - monad-time + - monadic-arrays + - monadlist + - monads-tf + - monoid-transformer + - more-containers + - mountpoints + - mpi-hs + - mpi-hs-binary + - mpi-hs-cereal + - mtl-compat + - mtl-prelude + - multi-containers + - multiarg + - multimap + - multipart + - murmur-hash + - murmur3 + - murmur-hash + - murmur3 + - mwc-probability + - mwc-random + - mwc-random-monad + - mysql + - n2o + - nagios-check + - names-th + - nano-erl + - nanospec + - nats + - natural-induction + - natural-sort + - netcode-io + - netlib-carray + - netlib-comfort-array + - netlib-ffi + - network-info + - newtype-generics + - nicify-lib + - nix-paths + - no-value + - non-empty + - non-empty-sequence + - non-negative + - nondeterminism + - nowdoc + - numbers + - numeric-extras + - numeric-prelude + - numtype-dk + - ofx + - old-locale + - old-time + - oo-prototypes + - open-browser + - openexr-write + - optics-core + - optional-args + - options + - optparse-applicative + - optparse-generic + - optparse-simple + - optparse-text + - ordered-containers + - overhang + - packcheck + - pagination + - parallel + - parallel-io + - parameterized + - parallel-io + - parameterized + - paripari + - parseargs + - parsec-class + - parsec-numbers + - parsec-numeric + - parser-combinators + - partial-handler + - path-pieces + - pathtype + - pathwalk + - pattern-arrows + - pcre-light + - peano + - percent-format + - persist + - phantom-state + - pid1 + - pipes + - pipes-parse + - pipes-random + - pipes-safe + - placeholders + - pointedlist + - pointless-fun + - poll + - polynomials-bernstein + - polyparse + - pooled-io + - possibly + - post-mess-age + - postgresql-libpq + - prefix-units + - prelude-compat + - prelude-safeenum + - pretty-class + - pretty-diff + - pretty-hex + - pretty-show + - pretty-terminal + - prettyclass + - primes + - primitive + - primitive-addr + - primitive-unaligned + - print-console-colors + - probability + - projectroot + - promises + - prompt + - proxied + - prompt + - proxied + - pulse-simple + - quickcheck-assertions + - quickcheck-classes-base + - quickcheck-higherorder + - quickcheck-io + - quickcheck-simple + - quickcheck-text + - quickcheck-transformer + - quickcheck-unicode + - quiet + - quote-quot + - ramus + - rando + - random + - random-shuffle + - rank1dynamic + - rate-limit + - raw-strings-qq + - rawstring-qm + - rdtsc + - re2 + - read-editor + - readable + - record-hasfield + - record-wrangler + - ref-fd + - ref-tf + - refact + - reflection + - reform + - reform-blaze + - regex-applicative + - regex-base + - regex-compat + - regex-compat-tdfa + - regex-pcre + - regex-posix + - regex-tdfa + - reinterpret-cast + - reliable-io + - repline + - resourcet + - rev-state + - rfc1751 + - rfc5051 + - rocksdb-haskell + - roles + - rope-utf16-splay + - rosezipper + - rot13 + - rosezipper + - rot13 + - runmemo + - safe + - safe-coloured-text + - safe-exceptions + - safe-foldable + - salve + - sample-frame + - sample-frame-np + - say + - scalpel-core + - scanf + - scanner + - selections + - semigroups + - semiring-simple + - seqalign + - seqid + - setenv + - shared-memory + - shell-escape + - shell-utility + - shelltestrunner + - should-not-typecheck + - show-combinators + - siggy-chardust + - signal + - silently + - simple-affine-space + - simple-cabal + - simple-cmd-args + - simple-reflect + - simplistic-generics + - since + - singleton-bool + - siphash + - sitemap-gen + - skip-var + - snowflake + - some + - sop-core + - sort + - sorted-list + - sox + - soxlib + - speculate + - split + - splitmix + - spoon + - spreadsheet + - sql-words + - spreadsheet + - sql-words + - srcloc + - stack-templatizer + - stateref + - static-text + - stb-image-redux + - step-function + - stm-chans + - stm-delay + - stm-extras + - stm-lifted + - stm-split + - stopwatch + - storable-complex + - storable-endian + - storable-record + - storable-tuple + - storablevector + - store-core + - streaming + - streaming-bytestring + - strict-concurrency + - string-class + - string-combinators + - string-conv + - string-qq + - string-transform + - stringbuilder + - stringsearch + - structs + - structured-cli + - sum-type-boilerplate + - sundown + - superbuffer + - syb + - symbol + - symengine + - sysinfo + - system-argv0 + - system-fileio + - system-filepath + - system-info + - tabular + - tagchup + - tagged + - tagged-identity + - tagshare + - tagsoup + - tao + - tao-example + - tar + - tao-example + - tar + - tardis + - tce-conf + - template-haskell-compat-v0208 + - temporary + - temporary-rc + - temporary-resourcet + - tensorflow-test + - terminal-size + - test-framework + - test-framework-hunit + - test-framework-leancheck + - test-framework-quickcheck2 + - test-fun + - testing-type-modifiers + - text-binary + - text-icu + - text-manipulate + - text-metrics + - text-postgresql + - text-zipper + - tf-random + - tfp + - th-abstraction + - th-bang-compat + - th-compat + - th-constraint-compat + - th-env + - th-lift + - th-lift-instances + - th-nowq + - th-reify-compat + - th-strict-compat + - thread-hierarchy + - threads + - tile + - time-compat + - time-locale-compat + - time-locale-vietnamese + - time-units + - timeit + - timezone-olson + - timezone-series + - titlecase + - topograph + - torsor + - transformers-base + - transformers-bifunctors + - transformers-compat + - transformers-fix + - tree-fun + - transformers-fix + - tree-fun + - tree-view + - tsv2csv + - tuple + - tuple-th + - tuples-homogenous-h98 + - type-equality + - type-hint + - type-level-integers + - type-level-natural-number + - type-level-numbers + - type-map + - type-of-html + - type-of-html-static + - type-operators + - type-spec + - tzdata + - uglymemo + - unbounded-delays + - uncaught-exception + - unconstrained + - unexceptionalio + - unexceptionalio-trans + - unicode + - unicode-show + - union-find + - unipatterns + - unique-logic + - unique-logic-tf + - universe-base + - universe-instances-base + - universe-instances-trans + - universe-reverse-instances + - universe-some + - unix-bytestring + - unix-compat + - unliftio-core + - unlit + - unsafe + - url + - utf8-light + - utf8-string + - util + - utility-ht + - validity + - validity-bytestring + - validity-containers + - validity-primitive + - validity-text + - validity-time + - valor + - validity-time + - valor + - vector + - vector-algorithms + - vector-buffer + - vector-builder + - vector-mmap + - vector-rotcev + - vector-space + - vector-split + - vector-th-unbox + - vformat + - vformat-time + - void + - wave + - webrtc-vad + - wide-word + - witch + - with-location + - wizards + - wl-pprint-annotated + - wl-pprint-console + - wl-pprint-text + - word-trie + - word8 + - wrap + - writer-cps-exceptions + - writer-cps-mtl + - writer-cps-transformers + - x11-xim + - xdg-basedir + - xdg-userdirs + - xml + - xml-basic + - xml-helpers + - xml-picklers + - xml-to-json-fast + - xml-types + - xmlgen + - xxhash-ffi + - yes-precure5-command + - yjtools + - yoga + - youtube + - zenacy-unicode + - zero + - zio + - zip-archive + - zlib + - zlib-bindings + - zot # Requires build before haddock, which doesn't always happen in incremental # builds. Could consider special-casing this requirement. From 817e09e8a75705a8c14c52723c50c8c74c8174de Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 7 Mar 2021 16:48:30 -0800 Subject: [PATCH 2485/2682] Bump to GHC 9.0.1 --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index cbaa1ff0..b4311b99 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -7848,7 +7848,8 @@ expected-benchmark-failures: # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: - # Compilation with GHC 9.0.1 crashes with `Prelude.chr: bad argument` + + # Compilation with GHC 9.0.1 crashes with Prelude.chr: bad argument - AC-Angle - ALUT - ANum From 79d5518c7bbb62dae4191649d46c6a326a009ff5 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 7 Mar 2021 16:51:58 -0800 Subject: [PATCH 2486/2682] Bump to GHC 9.0.1 --- build-constraints.yaml | 364 ----------------------------------------- 1 file changed, 364 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b4311b99..56e76429 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -8505,370 +8505,6 @@ expected-haddock-failures: - pagination - parallel - parallel-io - - parameterized - - parallel-io - - parameterized - - paripari - - parseargs - - parsec-class - - parsec-numbers - - parsec-numeric - - parser-combinators - - partial-handler - - path-pieces - - pathtype - - pathwalk - - pattern-arrows - - pcre-light - - peano - - percent-format - - persist - - phantom-state - - pid1 - - pipes - - pipes-parse - - pipes-random - - pipes-safe - - placeholders - - pointedlist - - pointless-fun - - poll - - polynomials-bernstein - - polyparse - - pooled-io - - possibly - - post-mess-age - - postgresql-libpq - - prefix-units - - prelude-compat - - prelude-safeenum - - pretty-class - - pretty-diff - - pretty-hex - - pretty-show - - pretty-terminal - - prettyclass - - primes - - primitive - - primitive-addr - - primitive-unaligned - - print-console-colors - - probability - - projectroot - - promises - - prompt - - proxied - - prompt - - proxied - - pulse-simple - - quickcheck-assertions - - quickcheck-classes-base - - quickcheck-higherorder - - quickcheck-io - - quickcheck-simple - - quickcheck-text - - quickcheck-transformer - - quickcheck-unicode - - quiet - - quote-quot - - ramus - - rando - - random - - random-shuffle - - rank1dynamic - - rate-limit - - raw-strings-qq - - rawstring-qm - - rdtsc - - re2 - - read-editor - - readable - - record-hasfield - - record-wrangler - - ref-fd - - ref-tf - - refact - - reflection - - reform - - reform-blaze - - regex-applicative - - regex-base - - regex-compat - - regex-compat-tdfa - - regex-pcre - - regex-posix - - regex-tdfa - - reinterpret-cast - - reliable-io - - repline - - resourcet - - rev-state - - rfc1751 - - rfc5051 - - rocksdb-haskell - - roles - - rope-utf16-splay - - rosezipper - - rot13 - - rosezipper - - rot13 - - runmemo - - safe - - safe-coloured-text - - safe-exceptions - - safe-foldable - - salve - - sample-frame - - sample-frame-np - - say - - scalpel-core - - scanf - - scanner - - selections - - semigroups - - semiring-simple - - seqalign - - seqid - - setenv - - shared-memory - - shell-escape - - shell-utility - - shelltestrunner - - should-not-typecheck - - show-combinators - - siggy-chardust - - signal - - silently - - simple-affine-space - - simple-cabal - - simple-cmd-args - - simple-reflect - - simplistic-generics - - since - - singleton-bool - - siphash - - sitemap-gen - - skip-var - - snowflake - - some - - sop-core - - sort - - sorted-list - - sox - - soxlib - - speculate - - split - - splitmix - - spoon - - spreadsheet - - sql-words - - spreadsheet - - sql-words - - srcloc - - stack-templatizer - - stateref - - static-text - - stb-image-redux - - step-function - - stm-chans - - stm-delay - - stm-extras - - stm-lifted - - stm-split - - stopwatch - - storable-complex - - storable-endian - - storable-record - - storable-tuple - - storablevector - - store-core - - streaming - - streaming-bytestring - - strict-concurrency - - string-class - - string-combinators - - string-conv - - string-qq - - string-transform - - stringbuilder - - stringsearch - - structs - - structured-cli - - sum-type-boilerplate - - sundown - - superbuffer - - syb - - symbol - - symengine - - sysinfo - - system-argv0 - - system-fileio - - system-filepath - - system-info - - tabular - - tagchup - - tagged - - tagged-identity - - tagshare - - tagsoup - - tao - - tao-example - - tar - - tao-example - - tar - - tardis - - tce-conf - - template-haskell-compat-v0208 - - temporary - - temporary-rc - - temporary-resourcet - - tensorflow-test - - terminal-size - - test-framework - - test-framework-hunit - - test-framework-leancheck - - test-framework-quickcheck2 - - test-fun - - testing-type-modifiers - - text-binary - - text-icu - - text-manipulate - - text-metrics - - text-postgresql - - text-zipper - - tf-random - - tfp - - th-abstraction - - th-bang-compat - - th-compat - - th-constraint-compat - - th-env - - th-lift - - th-lift-instances - - th-nowq - - th-reify-compat - - th-strict-compat - - thread-hierarchy - - threads - - tile - - time-compat - - time-locale-compat - - time-locale-vietnamese - - time-units - - timeit - - timezone-olson - - timezone-series - - titlecase - - topograph - - torsor - - transformers-base - - transformers-bifunctors - - transformers-compat - - transformers-fix - - tree-fun - - transformers-fix - - tree-fun - - tree-view - - tsv2csv - - tuple - - tuple-th - - tuples-homogenous-h98 - - type-equality - - type-hint - - type-level-integers - - type-level-natural-number - - type-level-numbers - - type-map - - type-of-html - - type-of-html-static - - type-operators - - type-spec - - tzdata - - uglymemo - - unbounded-delays - - uncaught-exception - - unconstrained - - unexceptionalio - - unexceptionalio-trans - - unicode - - unicode-show - - union-find - - unipatterns - - unique-logic - - unique-logic-tf - - universe-base - - universe-instances-base - - universe-instances-trans - - universe-reverse-instances - - universe-some - - unix-bytestring - - unix-compat - - unliftio-core - - unlit - - unsafe - - url - - utf8-light - - utf8-string - - util - - utility-ht - - validity - - validity-bytestring - - validity-containers - - validity-primitive - - validity-text - - validity-time - - valor - - validity-time - - valor - - vector - - vector-algorithms - - vector-buffer - - vector-builder - - vector-mmap - - vector-rotcev - - vector-space - - vector-split - - vector-th-unbox - - vformat - - vformat-time - - void - - wave - - webrtc-vad - - wide-word - - witch - - with-location - - wizards - - wl-pprint-annotated - - wl-pprint-console - - wl-pprint-text - - word-trie - - word8 - - wrap - - writer-cps-exceptions - - writer-cps-mtl - - writer-cps-transformers - - x11-xim - - xdg-basedir - - xdg-userdirs - - xml - - xml-basic - - xml-helpers - - xml-picklers - - xml-to-json-fast - - xml-types - - xmlgen - - xxhash-ffi - - yes-precure5-command - - yjtools - - yoga - - youtube - - zenacy-unicode - - zero - - zio - - zip-archive - - zlib - - zlib-bindings - - zot # Requires build before haddock, which doesn't always happen in incremental # builds. Could consider special-casing this requirement. From ee7603174e315c6be9cd29d7f894b61c42a545ca Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 7 Mar 2021 16:52:33 -0800 Subject: [PATCH 2487/2682] Bump to GHC 9.0.1 --- build-constraints.yaml | 657 ----------------------------------------- 1 file changed, 657 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 56e76429..6ab8df7f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -7849,663 +7849,6 @@ expected-benchmark-failures: # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: - # Compilation with GHC 9.0.1 crashes with Prelude.chr: bad argument - - AC-Angle - - ALUT - - ANum - - Boolean - - BoundedChan - - ChasingBottoms - - Clipboard - - ClustalParser - - Diff - - Ebnf2ps - - FenwickTree - - FindBin - - FloatingHex - - FontyFruity - - GLFW-b - - GLURaw - - GLUT - - GenericPretty - - Glob - - HCodecs - - HDBC - - HDBC-session - - HSlippyMap - - HSvm - - HUnit - - HUnit-approx - - HasBigDecimal - - Imlib - - IntervalMap - - JuicyPixels - - LibZip - - List - - LibZip - - List - - ListLike - - ListTree - - MemoTrie - - MonadPrompt - - MonadRandom - - NineP - - NumInstances - - ObjectName - - OneTuple - - Only - - OpenAL - - OpenGL - - OpenGLRaw - - ParsecTools - - QuickCheck - - Ranged-sets - - SHA - - STMonadTrans - - SafeSemaphore - - StateVar - - TypeCompose - - ViennaRNAParser - - X11 - - X11-xft - - Xauth - - abstract-deque - - abstract-par - - action-permutations - - adler32 - - agda2lagda - - al - - alerts - - alex - - alg - - algebraic-graphs - - almost-fix - - alsa-core - - alsa-mixer - - alsa-pcm - - alsa-seq - - alternative-vector - - annotated-wl-pprint - - ansi-terminal - - ansi-wl-pprint - - app-settings - - appar - - appendmap - - apportionment - - approximate-equality - - array-memoize - - approximate-equality - - array-memoize - - arrow-extras - - assert-failure - - assoc - - astro - - atomic-primops - - atomic-write - - audacity - - autoexporter - - bank-holidays-england - - base-compat - - base-compat-batteries - - base-orphans - - base-prelude - - base-unicode-symbols - - base16-bytestring - - base64-string - - bazel-runfiles - - bbdb - - between - - bibtex - - bifunctors - - bimap - - binary-ieee754 - - binary-list - - binary-orphans - - binary-parser - - binary-search - - binary-shared - - bindings-DSL - - bindings-GLFW - - bindings-libzip - - bindings-uname - - bitarray - - bitset-word8 - - blake2 - - blas-carray - - blas-comfort-array - - blas-ffi - - blaze-bootstrap - - blaze-builder - - blaze-html - - blaze-markup - - blaze-svg - - blaze-textual - - bmp - - boolsimplifier - - boots - - bordacount - - both - - bounded-queue - - both - - bounded-queue - - boxes - - buffer-pipe - - burrito - - bv - - byte-order - - byteable - - bytedump - - byteorder - - byteset - - bytestring-builder - - bytestring-lexing - - bytestring-mmap - - bytestring-to-vector - - bytestring-tree-builder - - c14n - - c2hs - - cabal-appimage - - cabal-doctest - - cabal2spec - - calendar-recycling - - call-stack - - can-i-haz - - carray - - cased - - casing - - cast - - category - - cereal - - cereal-text - - cereal-vector - - charsetdetect-ae - - chaselev-deque - - checksum - - choice - - chunked-data - - circle-packing - - clay - - climb - - clock - - clock-extras - - clumpiness - - cmark - - cmdargs - - code-page - - codec-beam - - colorful-monoids - - colorize-haskell - - colour - - combinatorial - - comfort-array - - combinatorial - - comfort-array - - comfort-graph - - comonad - - compactmap - - compiler-warnings - - composition - - composition-extra - - concurrency - - concurrent-extra - - concurrent-split - - cond - - conduit-combinators - - conferer - - conferer-hspec - - console-style - - constraint - - constraint-tuples - - contravariant - - contravariant-extras - - control-bool - - control-monad-free - - control-monad-omega - - convertible - - cookie - - countable - - cpphs - - cpu - - crackNum - - crc32c - - csp - - csv - - cubicbezier - - curl - - currencies - - cursor - - cutter - - data-accessor - - data-accessor-mtl - - data-accessor-transformers - - data-binary-ieee754 - - data-bword - - data-checked - - data-clist - - data-default - - data-default-class - - data-default-instances-containers - - data-default-instances-dlist - - data-default-instances-old-locale - - data-diverse - - data-endian - - data-has - - data-endian - - data-has - - data-hash - - data-inttrie - - data-memocombinators - - data-or - - data-ordlist - - data-ref - - debian-build - - debug-trace-var - - dec - - deriving-compat - - derulo - - di-core - - di-monad - - diagrams-solve - - dictionary-sharing - - digest - - digits - - direct-sqlite - - directory-tree - - discount - - disk-free-space - - distributive - - dlist - - dlist-instances - - do-list - - do-notation - - dockerfile - - doctest-exitcode-stdio - - doctest-lib - - doldol - - dot - - dotgen - - dotnet-timespan - - double-conversion - - dsp - - dual - - dunai - - dvorak - - dyre - - easy-file - - echo - - edit-distance - - either-both - - either-unwrap - - elerea - - elf - - elm-core-sources - - emojis - - enummapset - - enumset - - enummapset - - enumset - - envparse - - equal-files - - equivalence - - erf - - error-or - - error-or-utils - - errors - - event-list - - exact-combinatorics - - exact-pi - - exception-mtl - - exception-transformers - - exception-via - - executable-path - - exit-codes - - exomizer - - explicit-exception - - express - - extensible-effects - - extensible-exceptions - - extractable-singleton - - extrapolate - - fail - - failable - - fakefs - - fakepull - - fast-digits - - fast-math - - feature-flags - - fedora-dists - - fft - - fgl - - file-embed - - file-path-th - - filemanip - - fileplow - - filtrable - - fingertree - - finite-typelits - - first-class-patterns - - fitspec - - fixed - - fixed-length - - flac - - flac-picture - - floatshow - - flow - - fmlist - - focus - - fold-debounce - - [focus - - fold-debounce - - foldable1 - - foreign-store - - forkable-monad - - format-numbers - - free-categories - - free-vl - - freenect - - freetype2 - - friendly-time - - funcmp - - function-builder - - fusion-plugin-types - - fuzzcheck - - gd - - gdp - - general-games - - generic-arbitrary - - generic-constraints - - genvalidity - - ghc-byteorder - - ghc-core - - ghc-events - - ghc-paths - - ghc-trace-events - - ghcjs-codemirror - - ghost-buster - - githash - - gitrev - - gl - - gloss - - gloss-rendering - - gnuplot - - gpolyline - - graph-wrapper - - graphs - - graphviz - - groom - - group-by-date - - groups - - guarded-allocation - - half - - happy - - hashids - - haskeline - - haskell-gi-overloading - - haskell-lexer - - haskell-src - - haskell-src-exts - - hdaemonize - - heap - - hdaemonize - - heap - - heaps - - hebrew-time - - hedgehog-corpus - - heredoc - - hexpat - - hformat - - hlibcpuid - - hlibgit2 - - hlibsass - - hnock - - hopenssl - - hopfli - - hostname - - hourglass - - hs-GeoIP - - hs-bibutils - - hs-php-session - - hsass - - hscolour - - hsemail - - hsini - - hsinstall - - hsp - - hspec - - hspec-contrib - - hspec-core - - hspec-discover - - hspec-expectations - - hspec-expectations-lifted - - hspec-golden - - hspec-leancheck - - hspec-meta - - hspec-need-env - - hspec-parsec - - hsshellscript - - hsyslog - - htaglib - - html - - hvect - - hw-int - - hw-kafka-client - - hw-string-parse - - hxt-charproperties - - hxt-regex-xmlschema - - hxt-unicode - - hybrid-vectors - - iconv - - identicon - - ieee754 - - if - - ieee754 - - if - - iff - - ihs - - immortal - - include-file - - indents - - indexed - - indexed-containers - - indexed-list-literals - - indexed-profunctors - - indexed-traversable - - infer-license - - inj - - instance-control - - integer-logarithms - - integer-roots - - integration - - interpolation - - intervals - - io-machine - - io-manager - - io-region - - io-storage - - irc-ctcp - - isbn - - iso3166-country-codes - - iso639 - - iso8601-time - - iterable - - ix-shapable - - jack - - jailbreak-cabal - - jalaali - - jira-wiki-markup - - js-chart - - js-dgtable - - js-flot - - js-jquery - - justified-containers - - keycode - - kind-apply - - kind-generics - - kmeans - - l10n - - labels - - lame - - language-c - - language-java - - language-javascript - - language-python - - lapack-carray - - language-python - - lapack-carray - - lapack-comfort-array - - lapack-ffi - - largeword - - latex - - lawful - - lazy-csv - - lazyio - - lca - - leancheck - - leancheck-instances - - leapseconds-announced - - lens-family-core - - lens-family-th - - libffi - - libgit - - libgraph - - lifted-base - - linenoise - - linux-file-extents - - linux-namespaces - - list-predicate - - list-singleton - - listsafe - - little-rio - - lmdb - - loch-th - - lockfree-queue - - logfloat - - logging-facade - - logging-facade-syslog - - loop - - lrucache - - magic - - mainland-pretty - - managed - - markdown-unlit - - markov-chain - - math-functions - - mathexpr - - matrices - - matrix - - maximal-cliques - - mbox - - mbox-utility - - mcmc-types - - med-module - - median-stream - - mersenne-random-pure64 - - messagepack - - microlens - - messagepack - - microlens - - microlens-contra - - microlens-ghc - - microlens-mtl - - microlens-th - - microspec - - midair - - midi - - mime-types - - minimal-configuration - - minimorph - - miniutter - - mintty - - missing-foreign - - mmap - - mmorph - - mnist-idx - - mockery - - monad-control - - monad-control-aligned - - monad-coroutine - - monad-extras - - monad-journal - - monad-loops - - monad-memo - - monad-par - - monad-par-extras - - monad-parallel - - monad-peel - - monad-primitive - - monad-resumption - - monad-skeleton - - monad-st - - monad-time - - monadic-arrays - - monadlist - - monads-tf - - monoid-transformer - - more-containers - - mountpoints - - mpi-hs - - mpi-hs-binary - - mpi-hs-cereal - - mtl-compat - - mtl-prelude - - multi-containers - - multiarg - - multimap - - multipart - - murmur-hash - - murmur3 - - murmur-hash - - murmur3 - - mwc-probability - - mwc-random - - mwc-random-monad - - mysql - - n2o - - nagios-check - - names-th - - nano-erl - - nanospec - - nats - - natural-induction - - natural-sort - - netcode-io - - netlib-carray - - netlib-comfort-array - - netlib-ffi - - network-info - - newtype-generics - - nicify-lib - - nix-paths - - no-value - - non-empty - - non-empty-sequence - - non-negative - - nondeterminism - - nowdoc - - numbers - - numeric-extras - - numeric-prelude - - numtype-dk - - ofx - - old-locale - - old-time - - oo-prototypes - - open-browser - - openexr-write - - optics-core - - optional-args - - options - - optparse-applicative - - optparse-generic - - optparse-simple - - optparse-text - - ordered-containers - - overhang - - packcheck - - pagination - - parallel - - parallel-io - # Requires build before haddock, which doesn't always happen in incremental # builds. Could consider special-casing this requirement. - gtk3 From ec4958508d4c88c70b4f7323c17c867e028e8f97 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 7 Mar 2021 16:54:50 -0800 Subject: [PATCH 2488/2682] Bump to GHC 9.0.1 --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6ab8df7f..4bd4b56b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -7849,6 +7849,8 @@ expected-benchmark-failures: # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: + # Compilation with GHC 9.0.1 crashes with Prelude.chr: bad argument + # Requires build before haddock, which doesn't always happen in incremental # builds. Could consider special-casing this requirement. - gtk3 From edc4e6c296e301e5313436bc3b70117192ce47af Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 7 Mar 2021 16:57:08 -0800 Subject: [PATCH 2489/2682] Bump to GHC 9.0.1 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4bd4b56b..0da3c786 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -7850,6 +7850,7 @@ expected-benchmark-failures: expected-haddock-failures: # Compilation with GHC 9.0.1 crashes with Prelude.chr: bad argument + - AC-Angle # Requires build before haddock, which doesn't always happen in incremental # builds. Could consider special-casing this requirement. From 44fe8df6a805dc754721cda6e986bbaff7daabeb Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 7 Mar 2021 17:02:21 -0800 Subject: [PATCH 2490/2682] Bump to GHC 9.0.1 --- build-constraints.yaml | 87 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 87 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0da3c786..b4d7a161 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -7851,6 +7851,93 @@ expected-haddock-failures: # Compilation with GHC 9.0.1 crashes with Prelude.chr: bad argument - AC-Angle + - ALUT + - ANum + - Boolean + - BoundedChan + - ChasingBottoms + - Clipboard + - ClustalParser + - Diff + - Ebnf2ps + - FenwickTree + - FindBin + - FloatingHex + - FontyFruity + - GLFW-b + - GLURaw + - GLUT + - GenericPretty + - Glob + - HCodecs + - HDBC + - HDBC-session + - HSlippyMap + - HSvm + - HUnit + - HUnit-approx + - HasBigDecimal + - Imlib + - IntervalMap + - JuicyPixels + - LibZip + - List + - LibZip + - List + - ListLike + - ListTree + - MemoTrie + - MonadPrompt + - MonadRandom + - NineP + - NumInstances + - ObjectName + - OneTuple + - Only + - OpenAL + - OpenGL + - OpenGLRaw + - ParsecTools + - QuickCheck + - Ranged-sets + - SHA + - STMonadTrans + - SafeSemaphore + - StateVar + - TypeCompose + - ViennaRNAParser + - X11 + - X11-xft + - Xauth + - abstract-deque + - abstract-par + - action-permutations + - adler32 + - agda2lagda + - al + - alerts + - alex + - alg + - algebraic-graphs + - almost-fix + - alsa-core + - alsa-mixer + - alsa-pcm + - alsa-seq + - alternative-vector + - annotated-wl-pprint + - ansi-terminal + - ansi-wl-pprint + - app-settings + - appar + - appendmap + - apportionment + - approximate-equality + - array-memoize + - approximate-equality + - array-memoize + - arrow-extras + - assert-failure # Requires build before haddock, which doesn't always happen in incremental # builds. Could consider special-casing this requirement. From 1e102e2da6725e335a308a41c04698ab08f7711f Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 7 Mar 2021 17:06:06 -0800 Subject: [PATCH 2491/2682] Bump to GHC 9.0.1 --- build-constraints.yaml | 931 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 931 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index b4d7a161..912b1c5c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -7938,6 +7938,937 @@ expected-haddock-failures: - array-memoize - arrow-extras - assert-failure + - assoc + - astro + - atomic-primops + - atomic-write + - audacity + - autoexporter + - bank-holidays-england + - base-compat + - base-compat-batteries + - base-orphans + - base-prelude + - base-unicode-symbols + - base16-bytestring + - base64-string + - bazel-runfiles + - bbdb + - between + - bibtex + - bifunctors + - bimap + - binary-ieee754 + - binary-list + - binary-orphans + - binary-parser + - binary-search + - binary-shared + - bindings-DSL + - bindings-GLFW + - bindings-libzip + - bindings-uname + - bitarray + - bitset-word8 + - blake2 + - blas-carray + - blas-comfort-array + - blas-ffi + - blaze-bootstrap + - blaze-builder + - blaze-html + - blaze-markup + - blaze-svg + - blaze-textual + - bmp + - boolsimplifier + - boots + - bordacount + - both + - bounded-queue + - both + - bounded-queue + - boxes + - buffer-pipe + - burrito + - bv + - byte-order + - byteable + - bytedump + - byteorder + - byteset + - bytestring-builder + - bytestring-lexing + - bytestring-mmap + - bytestring-to-vector + - bytestring-tree-builder + - c14n + - c2hs + - cabal-appimage + - cabal-doctest + - cabal2spec + - calendar-recycling + - call-stack + - can-i-haz + - carray + - cased + - casing + - cast + - category + - cereal + - cereal-text + - cereal-vector + - charsetdetect-ae + - chaselev-deque + - checksum + - choice + - chunked-data + - circle-packing + - clay + - climb + - clock + - clock-extras + - clumpiness + - cmark + - cmdargs + - code-page + - codec-beam + - colorful-monoids + - colorize-haskell + - colour + - combinatorial + - comfort-array + - combinatorial + - comfort-array + - comfort-graph + - comonad + - compactmap + - compiler-warnings + - composition + - composition-extra + - concurrency + - concurrent-extra + - concurrent-split + - cond + - conduit-combinators + - conferer + - conferer-hspec + - console-style + - constraint + - constraint-tuples + - contravariant + - contravariant-extras + - control-bool + - control-monad-free + - control-monad-omega + - convertible + - cookie + - countable + - cpphs + - cpu + - crackNum + - crc32c + - csp + - csv + - cubicbezier + - curl + - currencies + - cursor + - cutter + - data-accessor + - data-accessor-mtl + - data-accessor-transformers + - data-binary-ieee754 + - data-bword + - data-checked + - data-clist + - data-default + - data-default-class + - data-default-instances-containers + - data-default-instances-dlist + - data-default-instances-old-locale + - data-diverse + - data-endian + - data-has + - data-endian + - data-has + - data-hash + - data-inttrie + - data-memocombinators + - data-or + - data-ordlist + - data-ref + - debian-build + - debug-trace-var + - dec + - deriving-compat + - derulo + - di-core + - di-monad + - diagrams-solve + - dictionary-sharing + - digest + - digits + - direct-sqlite + - directory-tree + - discount + - disk-free-space + - distributive + - dlist + - dlist-instances + - do-list + - do-notation + - dockerfile + - doctest-exitcode-stdio + - doctest-lib + - doldol + - dot + - dotgen + - dotnet-timespan + - double-conversion + - dsp + - dual + - dunai + - dvorak + - dyre + - easy-file + - echo + - edit-distance + - either-both + - either-unwrap + - elerea + - elf + - elm-core-sources + - emojis + - enummapset + - enumset + - enummapset + - enumset + - envparse + - equal-files + - equivalence + - erf + - error-or + - error-or-utils + - errors + - event-list + - exact-combinatorics + - exact-pi + - exception-mtl + - exception-transformers + - exception-via + - executable-path + - exit-codes + - exomizer + - explicit-exception + - express + - extensible-effects + - extensible-exceptions + - extractable-singleton + - extrapolate + - fail + - failable + - fakefs + - fakepull + - fast-digits + - fast-math + - feature-flags + - fedora-dists + - fft + - fgl + - file-embed + - file-path-th + - filemanip + - fileplow + - filtrable + - fingertree + - finite-typelits + - first-class-patterns + - fitspec + - fixed + - fixed-length + - flac + - flac-picture + - floatshow + - flow + - fmlist + - focus + - fold-debounce + - focus + - fold-debounce + - foldable1 + - foreign-store + - forkable-monad + - format-numbers + - free-categories + - free-vl + - freenect + - freetype2 + - friendly-time + - funcmp + - function-builder + - fusion-plugin-types + - fuzzcheck + - gd + - gdp + - general-games + - generic-arbitrary + - generic-constraints + - genvalidity + - ghc-byteorder + - ghc-core + - ghc-events + - ghc-paths + - ghc-trace-events + - ghcjs-codemirror + - ghost-buster + - githash + - gitrev + - gl + - gloss + - gloss-rendering + - gnuplot + - gpolyline + - graph-wrapper + - graphs + - graphviz + - groom + - group-by-date + - groups + - guarded-allocation + - half + - happy + - hashids + - haskeline + - haskell-gi-overloading + - haskell-lexer + - haskell-src + - haskell-src-exts + - hdaemonize + - heap + - hdaemonize + - heap + - heaps + - hebrew-time + - hedgehog-corpus + - heredoc + - hexpat + - hformat + - hlibcpuid + - hlibgit2 + - hlibsass + - hnock + - hopenssl + - hopfli + - hostname + - hourglass + - hs-GeoIP + - hs-bibutils + - hs-php-session + - hsass + - hscolour + - hsemail + - hsini + - hsinstall + - hsp + - hspec + - hspec-contrib + - hspec-core + - hspec-discover + - hspec-expectations + - hspec-expectations-lifted + - hspec-golden + - hspec-leancheck + - hspec-meta + - hspec-need-env + - hspec-parsec + - hsshellscript + - hsyslog + - htaglib + - html + - hvect + - hw-int + - hw-kafka-client + - hw-string-parse + - hxt-charproperties + - hxt-regex-xmlschema + - hxt-unicode + - hybrid-vectors + - iconv + - identicon + - ieee754 + - if + - ieee754 + - if + - iff + - ihs + - immortal + - include-file + - indents + - indexed + - indexed-containers + - indexed-list-literals + - indexed-profunctors + - indexed-traversable + - infer-license + - inj + - instance-control + - integer-logarithms + - integer-roots + - integration + - interpolation + - intervals + - io-machine + - io-manager + - io-region + - io-storage + - irc-ctcp + - isbn + - iso3166-country-codes + - iso639 + - iso8601-time + - iterable + - ix-shapable + - jack + - jailbreak-cabal + - jalaali + - jira-wiki-markup + - js-chart + - js-dgtable + - js-flot + - js-jquery + - justified-containers + - keycode + - kind-apply + - kind-generics + - kmeans + - l10n + - labels + - lame + - language-c + - language-java + - language-javascript + - language-python + - lapack-carray + - language-python + - lapack-carray + - lapack-comfort-array + - lapack-ffi + - largeword + - latex + - lawful + - lazy-csv + - lazyio + - lca + - leancheck + - leancheck-instances + - leapseconds-announced + - lens-family-core + - lens-family-th + - libffi + - libgit + - libgraph + - lifted-base + - linenoise + - linux-file-extents + - linux-namespaces + - list-predicate + - list-singleton + - listsafe + - little-rio + - lmdb + - loch-th + - lockfree-queue + - logfloat + - logging-facade + - logging-facade-syslog + - loop + - lrucache + - magic + - mainland-pretty + - managed + - markdown-unlit + - markov-chain + - math-functions + - mathexpr + - matrices + - matrix + - maximal-cliques + - mbox + - mbox-utility + - mcmc-types + - med-module + - median-stream + - mersenne-random-pure64 + - messagepack + - microlens + - messagepack + - microlens + - microlens-contra + - microlens-ghc + - microlens-mtl + - microlens-th + - microspec + - midair + - midi + - mime-types + - minimal-configuration + - minimorph + - miniutter + - mintty + - missing-foreign + - mmap + - mmorph + - mnist-idx + - mockery + - monad-control + - monad-control-aligned + - monad-coroutine + - monad-extras + - monad-journal + - monad-loops + - monad-memo + - monad-par + - monad-par-extras + - monad-parallel + - monad-peel + - monad-primitive + - monad-resumption + - monad-skeleton + - monad-st + - monad-time + - monadic-arrays + - monadlist + - monads-tf + - monoid-transformer + - more-containers + - mountpoints + - mpi-hs + - mpi-hs-binary + - mpi-hs-cereal + - mtl-compat + - mtl-prelude + - multi-containers + - multiarg + - multimap + - multipart + - murmur-hash + - murmur3 + - murmur-hash + - murmur3 + - mwc-probability + - mwc-random + - mwc-random-monad + - mysql + - n2o + - nagios-check + - names-th + - nano-erl + - nanospec + - nats + - natural-induction + - natural-sort + - netcode-io + - netlib-carray + - netlib-comfort-array + - netlib-ffi + - network-info + - newtype-generics + - nicify-lib + - nix-paths + - no-value + - non-empty + - non-empty-sequence + - non-negative + - nondeterminism + - nowdoc + - numbers + - numeric-extras + - numeric-prelude + - numtype-dk + - ofx + - old-locale + - old-time + - oo-prototypes + - open-browser + - openexr-write + - optics-core + - optional-args + - options + - optparse-applicative + - optparse-generic + - optparse-simple + - optparse-text + - ordered-containers + - overhang + - packcheck + - pagination + - parallel + - parallel-io + - parameterized + - parallel-io + - parameterized + - paripari + - parseargs + - parsec-class + - parsec-numbers + - parsec-numeric + - parser-combinators + - partial-handler + - path-pieces + - pathtype + - pathwalk + - pattern-arrows + - pcre-light + - peano + - percent-format + - persist + - phantom-state + - pid1 + - pipes + - pipes-parse + - pipes-random + - pipes-safe + - placeholders + - pointedlist + - pointless-fun + - poll + - polynomials-bernstein + - polyparse + - pooled-io + - possibly + - post-mess-age + - postgresql-libpq + - prefix-units + - prelude-compat + - prelude-safeenum + - pretty-class + - pretty-diff + - pretty-hex + - pretty-show + - pretty-terminal + - prettyclass + - primes + - primitive + - primitive-addr + - primitive-unaligned + - print-console-colors + - probability + - projectroot + - promises + - prompt + - proxied + - prompt + - proxied + - pulse-simple + - quickcheck-assertions + - quickcheck-classes-base + - quickcheck-higherorder + - quickcheck-io + - quickcheck-simple + - quickcheck-text + - quickcheck-transformer + - quickcheck-unicode + - quiet + - quote-quot + - ramus + - rando + - random + - random-shuffle + - rank1dynamic + - rate-limit + - raw-strings-qq + - rawstring-qm + - rdtsc + - re2 + - read-editor + - readable + - record-hasfield + - record-wrangler + - ref-fd + - ref-tf + - refact + - reflection + - reform + - reform-blaze + - regex-applicative + - regex-base + - regex-compat + - regex-compat-tdfa + - regex-pcre + - regex-posix + - regex-tdfa + - reinterpret-cast + - reliable-io + - repline + - resourcet + - rev-state + - rfc1751 + - rfc5051 + - rocksdb-haskell + - roles + - rope-utf16-splay + - rosezipper + - rot13 + - rosezipper + - rot13 + - runmemo + - safe + - safe-coloured-text + - safe-exceptions + - safe-foldable + - salve + - sample-frame + - sample-frame-np + - say + - scalpel-core + - scanf + - scanner + - selections + - semigroups + - semiring-simple + - seqalign + - seqid + - setenv + - shared-memory + - shell-escape + - shell-utility + - shelltestrunner + - should-not-typecheck + - show-combinators + - siggy-chardust + - signal + - silently + - simple-affine-space + - simple-cabal + - simple-cmd-args + - simple-reflect + - simplistic-generics + - since + - singleton-bool + - siphash + - sitemap-gen + - skip-var + - snowflake + - some + - sop-core + - sort + - sorted-list + - sox + - soxlib + - speculate + - split + - splitmix + - spoon + - spreadsheet + - sql-words + - spreadsheet + - sql-words + - srcloc + - stack-templatizer + - stateref + - static-text + - stb-image-redux + - step-function + - stm-chans + - stm-delay + - stm-extras + - stm-lifted + - stm-split + - stopwatch + - storable-complex + - storable-endian + - storable-record + - storable-tuple + - storablevector + - store-core + - streaming + - streaming-bytestring + - strict-concurrency + - string-class + - string-combinators + - string-conv + - string-qq + - string-transform + - stringbuilder + - stringsearch + - structs + - structured-cli + - sum-type-boilerplate + - sundown + - superbuffer + - syb + - symbol + - symengine + - sysinfo + - system-argv0 + - system-fileio + - system-filepath + - system-info + - tabular + - tagchup + - tagged + - tagged-identity + - tagshare + - tagsoup + - tao + - tao-example + - tar + - tao-example + - tar + - tardis + - tce-conf + - template-haskell-compat-v0208 + - temporary + - temporary-rc + - temporary-resourcet + - tensorflow-test + - terminal-size + - test-framework + - test-framework-hunit + - test-framework-leancheck + - test-framework-quickcheck2 + - test-fun + - testing-type-modifiers + - text-binary + - text-icu + - text-manipulate + - text-metrics + - text-postgresql + - text-zipper + - tf-random + - tfp + - th-abstraction + - th-bang-compat + - th-compat + - th-constraint-compat + - th-env + - th-lift + - th-lift-instances + - th-nowq + - th-reify-compat + - th-strict-compat + - thread-hierarchy + - threads + - tile + - time-compat + - time-locale-compat + - time-locale-vietnamese + - time-units + - timeit + - timezone-olson + - timezone-series + - titlecase + - topograph + - torsor + - transformers-base + - transformers-bifunctors + - transformers-compat + - transformers-fix + - tree-fun + - transformers-fix + - tree-fun + - tree-view + - tsv2csv + - tuple + - tuple-th + - tuples-homogenous-h98 + - type-equality + - type-hint + - type-level-integers + - type-level-natural-number + - type-level-numbers + - type-map + - type-of-html + - type-of-html-static + - type-operators + - type-spec + - tzdata + - uglymemo + - unbounded-delays + - uncaught-exception + - unconstrained + - unexceptionalio + - unexceptionalio-trans + - unicode + - unicode-show + - union-find + - unipatterns + - unique-logic + - unique-logic-tf + - universe-base + - universe-instances-base + - universe-instances-trans + - universe-reverse-instances + - universe-some + - unix-bytestring + - unix-compat + - unliftio-core + - unlit + - unsafe + - url + - utf8-light + - utf8-string + - util + - utility-ht + - validity + - validity-bytestring + - validity-containers + - validity-primitive + - validity-text + - validity-time + - valor + - validity-time + - valor + - vector + - vector-algorithms + - vector-buffer + - vector-builder + - vector-mmap + - vector-rotcev + - vector-space + - vector-split + - vector-th-unbox + - vformat + - vformat-time + - void + - wave + - webrtc-vad + - wide-word + - witch + - with-location + - wizards + - wl-pprint-annotated + - wl-pprint-console + - wl-pprint-text + - word-trie + - word8 + - wrap + - writer-cps-exceptions + - writer-cps-mtl + - writer-cps-transformers + - x11-xim + - xdg-basedir + - xdg-userdirs + - xml + - xml-basic + - xml-helpers + - xml-picklers + - xml-to-json-fast + - xml-types + - xmlgen + - xxhash-ffi + - yes-precure5-command + - yjtools + - yoga + - youtube + - zenacy-unicode + - zero + - zio + - zip-archive + - zlib + - zlib-bindings + - zot # Requires build before haddock, which doesn't always happen in incremental # builds. Could consider special-casing this requirement. From c03ab1502fd5959caf2e710c374eb81fca695355 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 7 Mar 2021 17:13:44 -0800 Subject: [PATCH 2492/2682] Bump to GHC 9.0.1 --- build-constraints.yaml | 1021 ---------------------------------------- 1 file changed, 1021 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 912b1c5c..6ab8df7f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -7849,1027 +7849,6 @@ expected-benchmark-failures: # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: - # Compilation with GHC 9.0.1 crashes with Prelude.chr: bad argument - - AC-Angle - - ALUT - - ANum - - Boolean - - BoundedChan - - ChasingBottoms - - Clipboard - - ClustalParser - - Diff - - Ebnf2ps - - FenwickTree - - FindBin - - FloatingHex - - FontyFruity - - GLFW-b - - GLURaw - - GLUT - - GenericPretty - - Glob - - HCodecs - - HDBC - - HDBC-session - - HSlippyMap - - HSvm - - HUnit - - HUnit-approx - - HasBigDecimal - - Imlib - - IntervalMap - - JuicyPixels - - LibZip - - List - - LibZip - - List - - ListLike - - ListTree - - MemoTrie - - MonadPrompt - - MonadRandom - - NineP - - NumInstances - - ObjectName - - OneTuple - - Only - - OpenAL - - OpenGL - - OpenGLRaw - - ParsecTools - - QuickCheck - - Ranged-sets - - SHA - - STMonadTrans - - SafeSemaphore - - StateVar - - TypeCompose - - ViennaRNAParser - - X11 - - X11-xft - - Xauth - - abstract-deque - - abstract-par - - action-permutations - - adler32 - - agda2lagda - - al - - alerts - - alex - - alg - - algebraic-graphs - - almost-fix - - alsa-core - - alsa-mixer - - alsa-pcm - - alsa-seq - - alternative-vector - - annotated-wl-pprint - - ansi-terminal - - ansi-wl-pprint - - app-settings - - appar - - appendmap - - apportionment - - approximate-equality - - array-memoize - - approximate-equality - - array-memoize - - arrow-extras - - assert-failure - - assoc - - astro - - atomic-primops - - atomic-write - - audacity - - autoexporter - - bank-holidays-england - - base-compat - - base-compat-batteries - - base-orphans - - base-prelude - - base-unicode-symbols - - base16-bytestring - - base64-string - - bazel-runfiles - - bbdb - - between - - bibtex - - bifunctors - - bimap - - binary-ieee754 - - binary-list - - binary-orphans - - binary-parser - - binary-search - - binary-shared - - bindings-DSL - - bindings-GLFW - - bindings-libzip - - bindings-uname - - bitarray - - bitset-word8 - - blake2 - - blas-carray - - blas-comfort-array - - blas-ffi - - blaze-bootstrap - - blaze-builder - - blaze-html - - blaze-markup - - blaze-svg - - blaze-textual - - bmp - - boolsimplifier - - boots - - bordacount - - both - - bounded-queue - - both - - bounded-queue - - boxes - - buffer-pipe - - burrito - - bv - - byte-order - - byteable - - bytedump - - byteorder - - byteset - - bytestring-builder - - bytestring-lexing - - bytestring-mmap - - bytestring-to-vector - - bytestring-tree-builder - - c14n - - c2hs - - cabal-appimage - - cabal-doctest - - cabal2spec - - calendar-recycling - - call-stack - - can-i-haz - - carray - - cased - - casing - - cast - - category - - cereal - - cereal-text - - cereal-vector - - charsetdetect-ae - - chaselev-deque - - checksum - - choice - - chunked-data - - circle-packing - - clay - - climb - - clock - - clock-extras - - clumpiness - - cmark - - cmdargs - - code-page - - codec-beam - - colorful-monoids - - colorize-haskell - - colour - - combinatorial - - comfort-array - - combinatorial - - comfort-array - - comfort-graph - - comonad - - compactmap - - compiler-warnings - - composition - - composition-extra - - concurrency - - concurrent-extra - - concurrent-split - - cond - - conduit-combinators - - conferer - - conferer-hspec - - console-style - - constraint - - constraint-tuples - - contravariant - - contravariant-extras - - control-bool - - control-monad-free - - control-monad-omega - - convertible - - cookie - - countable - - cpphs - - cpu - - crackNum - - crc32c - - csp - - csv - - cubicbezier - - curl - - currencies - - cursor - - cutter - - data-accessor - - data-accessor-mtl - - data-accessor-transformers - - data-binary-ieee754 - - data-bword - - data-checked - - data-clist - - data-default - - data-default-class - - data-default-instances-containers - - data-default-instances-dlist - - data-default-instances-old-locale - - data-diverse - - data-endian - - data-has - - data-endian - - data-has - - data-hash - - data-inttrie - - data-memocombinators - - data-or - - data-ordlist - - data-ref - - debian-build - - debug-trace-var - - dec - - deriving-compat - - derulo - - di-core - - di-monad - - diagrams-solve - - dictionary-sharing - - digest - - digits - - direct-sqlite - - directory-tree - - discount - - disk-free-space - - distributive - - dlist - - dlist-instances - - do-list - - do-notation - - dockerfile - - doctest-exitcode-stdio - - doctest-lib - - doldol - - dot - - dotgen - - dotnet-timespan - - double-conversion - - dsp - - dual - - dunai - - dvorak - - dyre - - easy-file - - echo - - edit-distance - - either-both - - either-unwrap - - elerea - - elf - - elm-core-sources - - emojis - - enummapset - - enumset - - enummapset - - enumset - - envparse - - equal-files - - equivalence - - erf - - error-or - - error-or-utils - - errors - - event-list - - exact-combinatorics - - exact-pi - - exception-mtl - - exception-transformers - - exception-via - - executable-path - - exit-codes - - exomizer - - explicit-exception - - express - - extensible-effects - - extensible-exceptions - - extractable-singleton - - extrapolate - - fail - - failable - - fakefs - - fakepull - - fast-digits - - fast-math - - feature-flags - - fedora-dists - - fft - - fgl - - file-embed - - file-path-th - - filemanip - - fileplow - - filtrable - - fingertree - - finite-typelits - - first-class-patterns - - fitspec - - fixed - - fixed-length - - flac - - flac-picture - - floatshow - - flow - - fmlist - - focus - - fold-debounce - - focus - - fold-debounce - - foldable1 - - foreign-store - - forkable-monad - - format-numbers - - free-categories - - free-vl - - freenect - - freetype2 - - friendly-time - - funcmp - - function-builder - - fusion-plugin-types - - fuzzcheck - - gd - - gdp - - general-games - - generic-arbitrary - - generic-constraints - - genvalidity - - ghc-byteorder - - ghc-core - - ghc-events - - ghc-paths - - ghc-trace-events - - ghcjs-codemirror - - ghost-buster - - githash - - gitrev - - gl - - gloss - - gloss-rendering - - gnuplot - - gpolyline - - graph-wrapper - - graphs - - graphviz - - groom - - group-by-date - - groups - - guarded-allocation - - half - - happy - - hashids - - haskeline - - haskell-gi-overloading - - haskell-lexer - - haskell-src - - haskell-src-exts - - hdaemonize - - heap - - hdaemonize - - heap - - heaps - - hebrew-time - - hedgehog-corpus - - heredoc - - hexpat - - hformat - - hlibcpuid - - hlibgit2 - - hlibsass - - hnock - - hopenssl - - hopfli - - hostname - - hourglass - - hs-GeoIP - - hs-bibutils - - hs-php-session - - hsass - - hscolour - - hsemail - - hsini - - hsinstall - - hsp - - hspec - - hspec-contrib - - hspec-core - - hspec-discover - - hspec-expectations - - hspec-expectations-lifted - - hspec-golden - - hspec-leancheck - - hspec-meta - - hspec-need-env - - hspec-parsec - - hsshellscript - - hsyslog - - htaglib - - html - - hvect - - hw-int - - hw-kafka-client - - hw-string-parse - - hxt-charproperties - - hxt-regex-xmlschema - - hxt-unicode - - hybrid-vectors - - iconv - - identicon - - ieee754 - - if - - ieee754 - - if - - iff - - ihs - - immortal - - include-file - - indents - - indexed - - indexed-containers - - indexed-list-literals - - indexed-profunctors - - indexed-traversable - - infer-license - - inj - - instance-control - - integer-logarithms - - integer-roots - - integration - - interpolation - - intervals - - io-machine - - io-manager - - io-region - - io-storage - - irc-ctcp - - isbn - - iso3166-country-codes - - iso639 - - iso8601-time - - iterable - - ix-shapable - - jack - - jailbreak-cabal - - jalaali - - jira-wiki-markup - - js-chart - - js-dgtable - - js-flot - - js-jquery - - justified-containers - - keycode - - kind-apply - - kind-generics - - kmeans - - l10n - - labels - - lame - - language-c - - language-java - - language-javascript - - language-python - - lapack-carray - - language-python - - lapack-carray - - lapack-comfort-array - - lapack-ffi - - largeword - - latex - - lawful - - lazy-csv - - lazyio - - lca - - leancheck - - leancheck-instances - - leapseconds-announced - - lens-family-core - - lens-family-th - - libffi - - libgit - - libgraph - - lifted-base - - linenoise - - linux-file-extents - - linux-namespaces - - list-predicate - - list-singleton - - listsafe - - little-rio - - lmdb - - loch-th - - lockfree-queue - - logfloat - - logging-facade - - logging-facade-syslog - - loop - - lrucache - - magic - - mainland-pretty - - managed - - markdown-unlit - - markov-chain - - math-functions - - mathexpr - - matrices - - matrix - - maximal-cliques - - mbox - - mbox-utility - - mcmc-types - - med-module - - median-stream - - mersenne-random-pure64 - - messagepack - - microlens - - messagepack - - microlens - - microlens-contra - - microlens-ghc - - microlens-mtl - - microlens-th - - microspec - - midair - - midi - - mime-types - - minimal-configuration - - minimorph - - miniutter - - mintty - - missing-foreign - - mmap - - mmorph - - mnist-idx - - mockery - - monad-control - - monad-control-aligned - - monad-coroutine - - monad-extras - - monad-journal - - monad-loops - - monad-memo - - monad-par - - monad-par-extras - - monad-parallel - - monad-peel - - monad-primitive - - monad-resumption - - monad-skeleton - - monad-st - - monad-time - - monadic-arrays - - monadlist - - monads-tf - - monoid-transformer - - more-containers - - mountpoints - - mpi-hs - - mpi-hs-binary - - mpi-hs-cereal - - mtl-compat - - mtl-prelude - - multi-containers - - multiarg - - multimap - - multipart - - murmur-hash - - murmur3 - - murmur-hash - - murmur3 - - mwc-probability - - mwc-random - - mwc-random-monad - - mysql - - n2o - - nagios-check - - names-th - - nano-erl - - nanospec - - nats - - natural-induction - - natural-sort - - netcode-io - - netlib-carray - - netlib-comfort-array - - netlib-ffi - - network-info - - newtype-generics - - nicify-lib - - nix-paths - - no-value - - non-empty - - non-empty-sequence - - non-negative - - nondeterminism - - nowdoc - - numbers - - numeric-extras - - numeric-prelude - - numtype-dk - - ofx - - old-locale - - old-time - - oo-prototypes - - open-browser - - openexr-write - - optics-core - - optional-args - - options - - optparse-applicative - - optparse-generic - - optparse-simple - - optparse-text - - ordered-containers - - overhang - - packcheck - - pagination - - parallel - - parallel-io - - parameterized - - parallel-io - - parameterized - - paripari - - parseargs - - parsec-class - - parsec-numbers - - parsec-numeric - - parser-combinators - - partial-handler - - path-pieces - - pathtype - - pathwalk - - pattern-arrows - - pcre-light - - peano - - percent-format - - persist - - phantom-state - - pid1 - - pipes - - pipes-parse - - pipes-random - - pipes-safe - - placeholders - - pointedlist - - pointless-fun - - poll - - polynomials-bernstein - - polyparse - - pooled-io - - possibly - - post-mess-age - - postgresql-libpq - - prefix-units - - prelude-compat - - prelude-safeenum - - pretty-class - - pretty-diff - - pretty-hex - - pretty-show - - pretty-terminal - - prettyclass - - primes - - primitive - - primitive-addr - - primitive-unaligned - - print-console-colors - - probability - - projectroot - - promises - - prompt - - proxied - - prompt - - proxied - - pulse-simple - - quickcheck-assertions - - quickcheck-classes-base - - quickcheck-higherorder - - quickcheck-io - - quickcheck-simple - - quickcheck-text - - quickcheck-transformer - - quickcheck-unicode - - quiet - - quote-quot - - ramus - - rando - - random - - random-shuffle - - rank1dynamic - - rate-limit - - raw-strings-qq - - rawstring-qm - - rdtsc - - re2 - - read-editor - - readable - - record-hasfield - - record-wrangler - - ref-fd - - ref-tf - - refact - - reflection - - reform - - reform-blaze - - regex-applicative - - regex-base - - regex-compat - - regex-compat-tdfa - - regex-pcre - - regex-posix - - regex-tdfa - - reinterpret-cast - - reliable-io - - repline - - resourcet - - rev-state - - rfc1751 - - rfc5051 - - rocksdb-haskell - - roles - - rope-utf16-splay - - rosezipper - - rot13 - - rosezipper - - rot13 - - runmemo - - safe - - safe-coloured-text - - safe-exceptions - - safe-foldable - - salve - - sample-frame - - sample-frame-np - - say - - scalpel-core - - scanf - - scanner - - selections - - semigroups - - semiring-simple - - seqalign - - seqid - - setenv - - shared-memory - - shell-escape - - shell-utility - - shelltestrunner - - should-not-typecheck - - show-combinators - - siggy-chardust - - signal - - silently - - simple-affine-space - - simple-cabal - - simple-cmd-args - - simple-reflect - - simplistic-generics - - since - - singleton-bool - - siphash - - sitemap-gen - - skip-var - - snowflake - - some - - sop-core - - sort - - sorted-list - - sox - - soxlib - - speculate - - split - - splitmix - - spoon - - spreadsheet - - sql-words - - spreadsheet - - sql-words - - srcloc - - stack-templatizer - - stateref - - static-text - - stb-image-redux - - step-function - - stm-chans - - stm-delay - - stm-extras - - stm-lifted - - stm-split - - stopwatch - - storable-complex - - storable-endian - - storable-record - - storable-tuple - - storablevector - - store-core - - streaming - - streaming-bytestring - - strict-concurrency - - string-class - - string-combinators - - string-conv - - string-qq - - string-transform - - stringbuilder - - stringsearch - - structs - - structured-cli - - sum-type-boilerplate - - sundown - - superbuffer - - syb - - symbol - - symengine - - sysinfo - - system-argv0 - - system-fileio - - system-filepath - - system-info - - tabular - - tagchup - - tagged - - tagged-identity - - tagshare - - tagsoup - - tao - - tao-example - - tar - - tao-example - - tar - - tardis - - tce-conf - - template-haskell-compat-v0208 - - temporary - - temporary-rc - - temporary-resourcet - - tensorflow-test - - terminal-size - - test-framework - - test-framework-hunit - - test-framework-leancheck - - test-framework-quickcheck2 - - test-fun - - testing-type-modifiers - - text-binary - - text-icu - - text-manipulate - - text-metrics - - text-postgresql - - text-zipper - - tf-random - - tfp - - th-abstraction - - th-bang-compat - - th-compat - - th-constraint-compat - - th-env - - th-lift - - th-lift-instances - - th-nowq - - th-reify-compat - - th-strict-compat - - thread-hierarchy - - threads - - tile - - time-compat - - time-locale-compat - - time-locale-vietnamese - - time-units - - timeit - - timezone-olson - - timezone-series - - titlecase - - topograph - - torsor - - transformers-base - - transformers-bifunctors - - transformers-compat - - transformers-fix - - tree-fun - - transformers-fix - - tree-fun - - tree-view - - tsv2csv - - tuple - - tuple-th - - tuples-homogenous-h98 - - type-equality - - type-hint - - type-level-integers - - type-level-natural-number - - type-level-numbers - - type-map - - type-of-html - - type-of-html-static - - type-operators - - type-spec - - tzdata - - uglymemo - - unbounded-delays - - uncaught-exception - - unconstrained - - unexceptionalio - - unexceptionalio-trans - - unicode - - unicode-show - - union-find - - unipatterns - - unique-logic - - unique-logic-tf - - universe-base - - universe-instances-base - - universe-instances-trans - - universe-reverse-instances - - universe-some - - unix-bytestring - - unix-compat - - unliftio-core - - unlit - - unsafe - - url - - utf8-light - - utf8-string - - util - - utility-ht - - validity - - validity-bytestring - - validity-containers - - validity-primitive - - validity-text - - validity-time - - valor - - validity-time - - valor - - vector - - vector-algorithms - - vector-buffer - - vector-builder - - vector-mmap - - vector-rotcev - - vector-space - - vector-split - - vector-th-unbox - - vformat - - vformat-time - - void - - wave - - webrtc-vad - - wide-word - - witch - - with-location - - wizards - - wl-pprint-annotated - - wl-pprint-console - - wl-pprint-text - - word-trie - - word8 - - wrap - - writer-cps-exceptions - - writer-cps-mtl - - writer-cps-transformers - - x11-xim - - xdg-basedir - - xdg-userdirs - - xml - - xml-basic - - xml-helpers - - xml-picklers - - xml-to-json-fast - - xml-types - - xmlgen - - xxhash-ffi - - yes-precure5-command - - yjtools - - yoga - - youtube - - zenacy-unicode - - zero - - zio - - zip-archive - - zlib - - zlib-bindings - - zot - # Requires build before haddock, which doesn't always happen in incremental # builds. Could consider special-casing this requirement. - gtk3 From 35c02cd3940f2f16b6b087126a468acd1b912d9c Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Mon, 8 Mar 2021 07:41:48 -0800 Subject: [PATCH 2493/2682] Revert to GHC 8.10.4 --- build-constraints.yaml | 3580 ++++++++++++++++++++-------------------- 1 file changed, 1790 insertions(+), 1790 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6ab8df7f..87ebb022 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1,6 +1,6 @@ -ghc-major-version: "9.0" +ghc-major-version: "8.10" # new curator is supposed to use exact GHC version -ghc-version: "9.0.1" +ghc-version: "8.10.4" # This affects which version of the Cabal file format we allow. We # should ensure that this is always no greater than the version @@ -5037,1714 +5037,1714 @@ packages: # Need to always match the version shipped with GHC - Win32 == 2.6.1.0 - "Broken with GHC 9.0.1": - - Agda < 0 - - HTTP < 0 - - HaXml < 0 - - HsYAML < 0 - - HsYAML-aeson < 0 - - JuicyPixels-scale-dct < 0 - - MapWith < 0 - - MissingH < 0 - - Rattus < 0 - - aeson-diff < 0 - - aeson-schemas < 0 - - apply-refact < 0 - - arithmoi < 0 - - avers < 0 - - aws-cloudfront-signed-cookies < 0 - - bech32 < 0 - - bech32-th < 0 - - benchpress < 0 - - binary-tagged < 0 - - bits-extra < 0 - - brick < 0 - - broadcast-chan < 0 - - bugzilla-redhat < 0 - - butcher < 0 - - bzlib < 0 - - cabal-plan < 0 - - cabal-rpm < 0 - - cborg < 0 - - cborg-json < 0 - - circular < 0 - - clash-ghc < 0 - - clash-lib < 0 - - clash-prelude < 0 - - co-log < 0 - - co-log-core < 0 - - colourista < 0 - - composite-aeson < 0 - - composite-base < 0 - - configurator-pg < 0 - - country < 0 - - crypto-enigma < 0 - - cryptohash-md5 < 0 - - cryptohash-sha1 < 0 - - cryptohash-sha256 < 0 - - cryptohash-sha512 < 0 - - css-syntax < 0 - - czipwith < 0 - - d10 < 0 - - data-accessor-template < 0 - - data-compat < 0 - - data-forest < 0 - - dbus < 0 - - deepseq-generics < 0 - - deepseq-instances < 0 - - dhall < 0 - - dialogflow-fulfillment < 0 - - dirichlet < 0 - - doctest < 0 - - doctest-driver-gen < 0 - - earcut < 0 - - ed25519 < 0 - - egison < 0 - - egison-pattern-src-th-mode < 0 - - ekg < 0 - - ekg-core < 0 - - ekg-json < 0 - - ekg-statsd < 0 - - eliminators < 0 - - email-validate < 0 - - entropy < 0 - - equational-reasoning < 0 - - exception-hierarchy < 0 - - exceptions < 0 - - fclabels < 0 - - feed < 0 - - file-embed-lzma < 0 - - first-class-families < 0 - - fixed-vector-hetero < 0 - - freer-simple < 0 - - fusion-plugin < 0 - - generic-aeson < 0 - - generic-deriving < 0 - - generic-functor < 0 - - generic-monoid < 0 - - geniplate-mirror < 0 - - ghc-check < 0 - - ghc-exactprint < 0 - - ghc-lib < 0 - - ghc-lib-parser < 0 - - ghc-parser < 0 - - ghc-source-gen < 0 - - ghc-tcplugins-extra < 0 - - ghc-typelits-extra < 0 - - ghc-typelits-knownnat < 0 - - ghc-typelits-natnormalise < 0 - - ghc-typelits-presburger < 0 - - github < 0 - - greskell < 0 - - greskell-core < 0 - - greskell-websocket < 0 - - hackage-security < 0 - - haddock-library < 0 - - hashable < 0 - - haskell-import-graph < 0 - - haskell-lsp < 0 - - haskell-lsp-types < 0 - - haxr < 0 - - hedgehog < 0 - - hgrev < 0 - - hie-bios < 0 - - hint < 0 - - hledger < 0 - - hledger-lib < 0 - - hledger-ui < 0 - - hledger-web < 0 - - hmatrix < 0 - - hmpfr < 0 - - hslogger < 0 - - hspec-expectations-json < 0 - - hspec-tables < 0 - - http-api-data < 0 - - http-media < 0 - - hw-dsv < 0 - - hw-prim < 0 - - hw-streams < 0 - - hw-xml < 0 - - hyper < 0 - - ihaskell < 0 - - ilist < 0 - - influxdb < 0 - - inspection-testing < 0 - - invertible-grammar < 0 - - io-streams-haproxy < 0 - - ixset-typed < 0 - - ki < 0 - - kind-generics-th < 0 - - lens < 0 - - libjwt-typed < 0 - - life-sync < 0 - - loc < 0 - - lzma < 0 - - membrain < 0 - - multistate < 0 - - newtype < 0 - - nri-env-parser < 0 - - nri-observability < 0 - - nri-prelude < 0 - - o-clock < 0 - - openapi3 < 0 - - optics-extra < 0 - - optics-th < 0 - - packdeps < 0 - - pantry < 0 - - partial-semigroup < 0 - - path-text-utf8 < 0 - - pava < 0 - - perfect-vector-shuffle < 0 - - postgrest < 0 - - pqueue < 0 - - prairie < 0 - - profunctors < 0 - - proto-lens < 0 - - proto-lens-optparse < 0 - - proto-lens-protobuf-types < 0 - - proto-lens-protoc < 0 - - proto-lens-runtime < 0 - - proto-lens-setup < 0 - - protolude < 0 - - publicsuffix < 0 - - pusher-http-haskell < 0 - - range-set-list < 0 - - rank2classes < 0 - - record-dot-preprocessor < 0 - - records-sop < 0 - - refined < 0 - - regex-applicative-text < 0 - - regex-pcre-builtin < 0 - - relude < 0 - - req < 0 - - resolv < 0 - - rethinkdb-client-driver < 0 - - semialign < 0 - - semialign-indexed < 0 - - semialign-optics < 0 - - serialise < 0 - - servant < 0 - - servant-client < 0 - - servant-client-core < 0 - - servant-docs < 0 - - servant-errors < 0 - - servant-foreign < 0 - - servant-http-streams < 0 - - servant-openapi3 < 0 - - servant-server < 0 - - servant-swagger < 0 - - servant-swagger-ui < 0 - - servant-swagger-ui-core < 0 - - setlocale < 0 - - shellmet < 0 - - shortcut-links < 0 - - singletons < 0 - - singletons-presburger < 0 - - slist < 0 - - snap-server < 0 - - splint < 0 - - stackcollapse-ghc < 0 - - strict-tuple < 0 - - strict-tuple-lens < 0 - - string-interpolate < 0 - - stripe-concepts < 0 - - structured < 0 - - swagger2 < 0 - - swish < 0 - - tasty-hedgehog < 0 - - tasty-hspec < 0 - - tasty-wai < 0 - - tdigest < 0 - - termbox < 0 - - text-ansi < 0 - - text-format < 0 - - text-show-instances < 0 - - th-desugar < 0 - - th-expand-syns < 0 - - th-test-utils < 0 - - these-skinny < 0 - - threepenny-gui < 0 - - through-text < 0 - - timer-wheel < 0 - - tomland < 0 - - tonalude < 0 - - ttc < 0 - - type-errors-pretty < 0 - - type-natural < 0 - - typecheck-plugin-nat-simple < 0 - - typerep-map < 0 - - unicode-transforms < 0 - - validation-selective < 0 - - vector-binary-instances < 0 - - vector-circular < 0 - - weigh < 0 - - wild-bind < 0 - - wild-bind-x11 < 0 - - with-utf8 < 0 - - zydiskell < 0 - # next set of packages broken by packages above this line - - BNFC < 0 - - Chart < 0 - - ConfigFile < 0 - - DAV < 0 - - DBFunctor < 0 - - ENIG < 0 - - ForestStructures < 0 - - HaTeX < 0 - - HandsomeSoup < 0 - - JuicyPixels-blurhash < 0 - - LambdaHack < 0 - - MusicBrainz < 0 - - PyF < 0 - - accuerr < 0 - - ad < 0 - - adjunctions < 0 - - aeson < 0 - - aeson-combinators < 0 - - aeson-commit < 0 - - aeson-compat < 0 - - aeson-lens < 0 - - aeson-optics < 0 - - aeson-picker < 0 - - aeson-with < 0 - - amazonka-core < 0 - - amazonka-s3 < 0 - - ap-normalize < 0 - - api-field-json-th < 0 - - api-maker < 0 - - approximate < 0 - - arbor-lru-cache < 0 - - arbor-postgres < 0 - - ascii-case < 0 - - ascii-char < 0 - - ascii-group < 0 - - ascii-superset < 0 - - asciidiagram < 0 - - asif < 0 - - async < 0 - - aur < 0 - - aura < 0 - - auto < 0 - - avro < 0 - - backprop < 0 - - base16-lens < 0 - - base32-lens < 0 - - base64-bytestring-type < 0 - - base64-lens < 0 - - basic-prelude < 0 - - bcp47 < 0 - - bcp47-orphans < 0 - - bcrypt < 0 - - bimaps < 0 - - bin < 0 - - binary-instances < 0 - - bins < 0 - - boltzmann-samplers < 0 - - bound < 0 - - boundingboxes < 0 - - bsb-http-chunked < 0 - - bson < 0 - - bugsnag-hs < 0 - - bv-little < 0 - - bytes < 0 - - cabal-debian < 0 - - cabal-file < 0 - - cabal-flatpak < 0 - - cabal2nix < 0 - - cache < 0 - - cacophony < 0 - - casa-types < 0 - - case-insensitive < 0 - - cassava < 0 - - cayley-client < 0 - - character-cases < 0 - - chiphunk < 0 - - chronos < 0 - - classy-prelude < 0 - - clientsession < 0 - - closed < 0 - - co-log-concurrent < 0 - - compdata < 0 - - compensated < 0 - - composable-associations < 0 - - composable-associations-aeson < 0 - - composite-aeson-path < 0 - - composite-aeson-refined < 0 - - composite-binary < 0 - - composite-ekg < 0 - - composite-hashable < 0 - - composite-tuple < 0 - - composite-xstep < 0 - - concise < 0 - - concurrent-supply < 0 - - conduit-algorithms < 0 - - configurator < 0 - - constraints < 0 - - construct < 0 - - control-dsl < 0 - - core-data < 0 - - core-program < 0 - - core-text < 0 - - credential-store < 0 - - crypto-api < 0 - - crypto-random-api < 0 - - cryptocompare < 0 - - ctrie < 0 - - cubicspline < 0 - - cuckoo-filter < 0 - - currency < 0 - - cursor-brick < 0 - - cyclotomic < 0 - - data-ascii < 0 - - data-dword < 0 - - data-fix < 0 - - data-interval < 0 - - data-msgpack < 0 - - data-msgpack-types < 0 - - data-reify < 0 - - datadog < 0 - - dbus-hslogger < 0 - - debian < 0 - - declarative < 0 - - deferred-folds < 0 - - dejafu < 0 - - dense-linear-algebra < 0 - - deque < 0 - - derive-topdown < 0 - - dhall-bash < 0 - - dhall-json < 0 - - dhall-lsp-server < 0 - - dhall-yaml < 0 - - dimensional < 0 - - distribution-nixpkgs < 0 - - distribution-opensuse < 0 - - dns < 0 - - doctemplates < 0 - - doctest-discover < 0 - - download < 0 - - duration < 0 - - dynamic-state < 0 - - either < 0 - - elm2nix < 0 - - elynx-markov < 0 - - elynx-tools < 0 - - envelope < 0 - - ersatz < 0 - - eve < 0 - - eventful-core < 0 - - eventstore < 0 - - experimenter < 0 - - expiring-cache-map < 0 - - extended-reals < 0 - - fakedata < 0 - - fedora-haskell-tools < 0 - - file-modules < 0 - - fin < 0 - - fixed-vector < 0 - - flat < 0 - - fmt < 0 - - focuslist < 0 - - foldl < 0 - - folds < 0 - - free < 0 - - from-sum < 0 - - ftp-client < 0 - - functor-classes-compat < 0 - - fuzzy-dates < 0 - - generic-data < 0 - - generic-data-surgery < 0 - - generic-lens < 0 - - generic-optics < 0 - - generic-random < 0 - - generics-sop-lens < 0 - - genvalidity-hspec-hashable < 0 - - genvalidity-property < 0 - - genvalidity-sydtest-hashable < 0 - - genvalidity-unordered-containers < 0 - - geojson < 0 - - ghc-syntax-highlighter < 0 - - ghci-hexcalc < 0 - - github-webhooks < 0 - - gothic < 0 - - graph-core < 0 - - graphite < 0 - - graphql-client < 0 - - gravatar < 0 - - gtk-sni-tray < 0 - - hOpenPGP < 0 - - hadolint < 0 - - hakyll-convert < 0 - - hall-symbols < 0 - - happstack-server < 0 - - hashable-time < 0 - - hashmap < 0 - - hashtables < 0 - - haskell-gi < 0 - - haskey-btree < 0 - - hasql < 0 - - hasql-queue < 0 - - hasty-hamiltonian < 0 - - headroom < 0 - - hedgehog-fakedata < 0 - - hedgehog-fn < 0 - - hedgehog-quickcheck < 0 - - hedis < 0 - - hedn < 0 - - heterocephalus < 0 - - hexml-lens < 0 - - hidapi < 0 - - highlighting-kate < 0 - - hledger-iadd < 0 - - hledger-interest < 0 - - hledger-stockquotes < 0 - - hlint < 0 - - hmatrix-backprop < 0 - - hmatrix-gsl < 0 - - hmatrix-gsl-stats < 0 - - hmatrix-morpheus < 0 - - hmatrix-vector-sized < 0 - - hoauth2 < 0 - - hocon < 0 - - hoogle < 0 - - hopenpgp-tools < 0 - - hpack-dhall < 0 - - hsc2hs < 0 - - hslua-aeson < 0 - - hspec-hedgehog < 0 - - htoml < 0 - - http-date < 0 - - http-link-header < 0 - - http-types < 0 - - http2 < 0 - - human-readable-duration < 0 - - hw-balancedparens < 0 - - hw-bits < 0 - - hw-conduit < 0 - - hw-diagnostics < 0 - - hw-eliasfano < 0 - - hw-excess < 0 - - hw-fingertree < 0 - - hw-fingertree-strict < 0 - - hw-hedgehog < 0 - - hw-hspec-hedgehog < 0 - - hw-ip < 0 - - hw-json < 0 - - hw-json-simd < 0 - - hw-json-simple-cursor < 0 - - hw-json-standard-cursor < 0 - - hw-mquery < 0 - - hw-packed-vector < 0 - - hw-parser < 0 - - hw-rankselect < 0 - - hw-rankselect-base < 0 - - hw-simd < 0 - - hw-succinct < 0 - - hxt-http < 0 - - hyperloglog < 0 - - incremental-parser < 0 - - inline-c < 0 - - inline-r < 0 - - insert-ordered-containers < 0 - - intern < 0 - - interpolator < 0 - - intro < 0 - - invariant < 0 - - invertible < 0 - - iproute < 0 - - ipynb < 0 - - irc-client < 0 - - irc-conduit < 0 - - ixset-typed-binary-instance < 0 - - ixset-typed-conversions < 0 - - ixset-typed-hashable-instance < 0 - - jose < 0 - - json-rpc < 0 - - jwt < 0 - - kan-extensions < 0 - - kanji < 0 - - kazura-queue < 0 - - kdt < 0 - - keys < 0 - - krank < 0 - - language-nix < 0 - - lapack < 0 - - lattices < 0 - - learn-physics < 0 - - lens-action < 0 - - lens-aeson < 0 - - lens-csv < 0 - - lens-datetime < 0 - - lens-misc < 0 - - lens-process < 0 - - lens-properties < 0 - - lens-regex < 0 - - lens-regex-pcre < 0 - - lift-generics < 0 - - line < 0 - - linear < 0 - - liquid-fixpoint < 0 - - little-logger < 0 - - load-env < 0 - - log-domain < 0 - - lrucaching < 0 - - lsp-test < 0 - - lucid < 0 - - lzma-conduit < 0 - - machines < 0 - - main-tester < 0 - - massiv < 0 - - massiv-io < 0 - - massiv-persist < 0 - - massiv-serialise < 0 - - math-extras < 0 - - matrix-as-xyz < 0 - - matrix-static < 0 - - mcmc < 0 - - medea < 0 - - mercury-api < 0 - - metrics < 0 - - mfsolve < 0 - - microlens-aeson < 0 - - microlens-platform < 0 - - microlens-process < 0 - - min-max-pqueue < 0 - - mini-egison < 0 - - minio-hs < 0 - - mltool < 0 - - mmark < 0 - - model < 0 - - modern-uri < 0 - - modular < 0 - - monad-metrics < 0 - - mono-traversable < 0 - - mono-traversable-keys < 0 - - morpheus-graphql < 0 - - morpheus-graphql-client < 0 - - morpheus-graphql-core < 0 - - morpheus-graphql-subscriptions < 0 - - multiset < 0 - - mustache < 0 - - netwire < 0 - - network < 0 - - network-byte-order < 0 - - network-ip < 0 - - network-transport < 0 - - nonce < 0 - - nonempty-containers < 0 - - nonempty-vector < 0 - - not-gloss < 0 - - nqe < 0 - - numhask < 0 - - nvim-hs < 0 - - odbc < 0 - - oeis2 < 0 - - once < 0 - - one-liner < 0 - - opaleye < 0 - - opentelemetry < 0 - - opentelemetry-extra < 0 - - optics < 0 - - optics-vl < 0 - - ormolu < 0 - - pagure-cli < 0 - - pandoc < 0 - - pandoc-plot < 0 - - password < 0 - - password-instances < 0 - - path < 0 - - pcg-random < 0 - - pcre-heavy < 0 - - pcre-utils < 0 - - pcre2 < 0 - - perfect-hash-generator < 0 - - persistent < 0 - - persistent-template < 0 - - persistent-typed-db < 0 - - pg-harness-client < 0 - - pgp-wordlist < 0 - - pinboard < 0 - - pipes-extras < 0 - - pipes-group < 0 - - pointed < 0 - - poly < 0 - - posix-paths < 0 - - postgres-options < 0 - - postgresql-simple < 0 - - pptable < 0 - - pretty-simple < 0 - - prettyprinter < 0 - - prettyprinter-ansi-terminal < 0 - - prettyprinter-convert-ansi-wl-pprint < 0 - - primitive-extras < 0 - - process-extras < 0 - - product-profunctors < 0 - - profiterole < 0 - - prometheus-client < 0 - - prospect < 0 - - proto3-wire < 0 - - psqueues < 0 - - purescript-bridge < 0 - - pushbullet-types < 0 - - qchas < 0 - - quadratic-irrational < 0 - - quickcheck-arbitrary-adt < 0 - - quickcheck-instances < 0 - - radius < 0 - - rainbow < 0 - - rainbox < 0 - - ral < 0 - - random-bytestring < 0 - - random-tree < 0 - - ranged-list < 0 - - rasterific-svg < 0 - - rattle < 0 - - read-env-var < 0 - - rebase < 0 - - reducers < 0 - - regex < 0 - - regex-with-pcre < 0 - - registry < 0 - - relapse < 0 - - renderable < 0 - - req-conduit < 0 - - resource-pool < 0 - - retry < 0 - - rhbzquery < 0 - - rio < 0 - - safe-decimal < 0 - - safe-json < 0 - - safe-money < 0 - - safe-tensor < 0 - - safecopy < 0 - - salak < 0 - - saltine < 0 - - sbp < 0 - - scheduler < 0 - - scientific < 0 - - scotty < 0 - - scrypt < 0 - - sdl2 < 0 - - search-algorithms < 0 - - secp256k1-haskell < 0 - - semigroupoid-extras < 0 - - semigroupoids < 0 - - semirings < 0 - - semver < 0 - - servant-blaze < 0 - - servant-conduit < 0 - - servant-exceptions < 0 - - servant-exceptions-server < 0 - - servant-github-webhook < 0 - - servant-machines < 0 - - servant-multipart < 0 - - servant-pipes < 0 - - servant-rawm < 0 - - serverless-haskell < 0 - - serversession < 0 - - sexp-grammar < 0 - - shake < 0 - - shake-language-c < 0 - - shake-plus-extended < 0 - - singleton-nats < 0 - - sized < 0 - - slack-api < 0 - - slack-progressbar < 0 - - slynx < 0 - - smash < 0 - - smash-lens < 0 - - snap-core < 0 - - sparse-tensor < 0 - - spatial-math < 0 - - speedy-slice < 0 - - squeal-postgresql < 0 - - squeather < 0 - - stack < 0 - - statistics < 0 - - status-notifier-item < 0 - - stm-containers < 0 - - stm-hamt < 0 - - store < 0 - - stratosphere < 0 - - strict < 0 - - strict-list < 0 - - subcategories < 0 - - svg-tree < 0 - - sweet-egison < 0 - - sydtest-servant < 0 - - symmetry-operations-symbols < 0 - - taffybar < 0 - - tar-conduit < 0 - - tasty-ant-xml < 0 - - tasty-discover < 0 - - text-latin1 < 0 - - text-region < 0 - - text-short < 0 - - text-show < 0 - - th-reify-many < 0 - - these < 0 - - these-lens < 0 - - throwable-exceptions < 0 - - thyme < 0 - - tidal < 0 - - timelens < 0 - - tmapchan < 0 - - tmapmvar < 0 - - tmp-postgres < 0 - - transaction < 0 - - tree-diff < 0 - - trifecta < 0 - - triplesec < 0 - - ttl-hashtables < 0 - - ttrie < 0 - - turtle < 0 - - type-errors < 0 - - type-level-kv-list < 0 - - typed-uuid < 0 - - ulid < 0 - - uniplate < 0 - - unique < 0 - - universum < 0 - - unix-time < 0 - - unordered-containers < 0 - - uri-bytestring < 0 - - uuid < 0 - - uuid-types < 0 - - validation < 0 - - validity-unordered-containers < 0 - - validity-vector < 0 - - vault < 0 - - vec < 0 - - vector-instances < 0 - - vector-sized < 0 - - verbosity < 0 - - versions < 0 - - vty < 0 - - wai-logger < 0 - - wai-middleware-auth < 0 - - wai-middleware-clacks < 0 - - wai-rate-limit-redis < 0 - - wai-session < 0 - - wakame < 0 - - warp < 0 - - wcwidth < 0 - - webby < 0 - - webgear-server < 0 - - websockets < 0 - - websockets-snap < 0 - - witherable-class < 0 - - within < 0 - - world-peace < 0 - - wreq < 0 - - xlsx < 0 - - xlsx-tabular < 0 - - xml-conduit < 0 - - xml-html-qq < 0 - - xml-indexed-cursor < 0 - - xml-lens < 0 - - xml-to-json < 0 - - xmonad < 0 - - xmonad-extras < 0 - - yesod-auth < 0 - - yesod-form < 0 - - yesod-paginator < 0 - - yesod-static < 0 - - yjsvg < 0 - - zim-parser < 0 - - zippers < 0 - - zlib-lens < 0 - # next set of packages broken by packages above this line - - Allure < 0 - - ChannelT < 0 - - Earley < 0 - - H < 0 - - HTF < 0 - - HsOpenSSL < 0 - - IPv6Addr < 0 - - RSA < 0 - - Rasterific < 0 - - RefSerialize < 0 - - ShellCheck < 0 - - TCache < 0 - - Taxonomy < 0 - - aeson-attoparsec < 0 - - aeson-better-errors < 0 - - aeson-casing < 0 - - aeson-default < 0 - - aeson-generic-compat < 0 - - aeson-pretty < 0 - - aeson-qq < 0 - - aeson-yak < 0 - - aeson-yaml < 0 - - alarmclock < 0 - - amazonka-apigateway < 0 - - amazonka-application-autoscaling < 0 - - amazonka-appstream < 0 - - amazonka-athena < 0 - - amazonka-autoscaling < 0 - - amazonka-budgets < 0 - - amazonka-certificatemanager < 0 - - amazonka-cloudformation < 0 - - amazonka-cloudfront < 0 - - amazonka-cloudhsm < 0 - - amazonka-cloudsearch < 0 - - amazonka-cloudsearch-domains < 0 - - amazonka-cloudtrail < 0 - - amazonka-cloudwatch < 0 - - amazonka-cloudwatch-events < 0 - - amazonka-cloudwatch-logs < 0 - - amazonka-codebuild < 0 - - amazonka-codecommit < 0 - - amazonka-codedeploy < 0 - - amazonka-codepipeline < 0 - - amazonka-cognito-identity < 0 - - amazonka-cognito-idp < 0 - - amazonka-cognito-sync < 0 - - amazonka-config < 0 - - amazonka-datapipeline < 0 - - amazonka-devicefarm < 0 - - amazonka-directconnect < 0 - - amazonka-discovery < 0 - - amazonka-dms < 0 - - amazonka-ds < 0 - - amazonka-dynamodb < 0 - - amazonka-dynamodb-streams < 0 - - amazonka-ecr < 0 - - amazonka-ecs < 0 - - amazonka-efs < 0 - - amazonka-elasticache < 0 - - amazonka-elasticbeanstalk < 0 - - amazonka-elasticsearch < 0 - - amazonka-elastictranscoder < 0 - - amazonka-elb < 0 - - amazonka-elbv2 < 0 - - amazonka-emr < 0 - - amazonka-gamelift < 0 - - amazonka-glacier < 0 - - amazonka-glue < 0 - - amazonka-health < 0 - - amazonka-iam < 0 - - amazonka-importexport < 0 - - amazonka-inspector < 0 - - amazonka-iot < 0 - - amazonka-iot-dataplane < 0 - - amazonka-kinesis < 0 - - amazonka-kinesis-analytics < 0 - - amazonka-kinesis-firehose < 0 - - amazonka-kms < 0 - - amazonka-lambda < 0 - - amazonka-lightsail < 0 - - amazonka-marketplace-analytics < 0 - - amazonka-marketplace-metering < 0 - - amazonka-ml < 0 - - amazonka-opsworks < 0 - - amazonka-opsworks-cm < 0 - - amazonka-pinpoint < 0 - - amazonka-polly < 0 - - amazonka-rds < 0 - - amazonka-redshift < 0 - - amazonka-rekognition < 0 - - amazonka-route53 < 0 - - amazonka-route53-domains < 0 - - amazonka-sdb < 0 - - amazonka-servicecatalog < 0 - - amazonka-ses < 0 - - amazonka-shield < 0 - - amazonka-sms < 0 - - amazonka-snowball < 0 - - amazonka-sns < 0 - - amazonka-sqs < 0 - - amazonka-ssm < 0 - - amazonka-stepfunctions < 0 - - amazonka-storagegateway < 0 - - amazonka-sts < 0 - - amazonka-support < 0 - - amazonka-swf < 0 - - amazonka-test < 0 - - amazonka-waf < 0 - - amazonka-workspaces < 0 - - amazonka-xray < 0 - - amqp < 0 - - amqp-utils < 0 - - apecs < 0 - - apecs-gloss < 0 - - apecs-physics < 0 - - ascii < 0 - - ascii-predicates < 0 - - ascii-progress < 0 - - ascii-th < 0 - - async-extra < 0 - - async-pool < 0 - - atom-basic < 0 - - attoparsec < 0 - - attoparsec-path < 0 - - authenticate < 0 - - authenticate-oauth < 0 - - auto-update < 0 - - backtracking < 0 - - base16 < 0 - - base32 < 0 - - base32string < 0 - - base58-bytestring < 0 - - base58string < 0 - - base64 < 0 - - bench < 0 - - bimap-server < 0 - - binary-ext < 0 - - binary-parsers < 0 - - bits < 0 - - bitwise-enum < 0 - - blanks < 0 - - boring < 0 - - bower-json < 0 - - buffer-builder < 0 - - bugsnag-haskell < 0 - - bytestring-conversion < 0 - - ca-province-codes < 0 - - cardano-coin-selection < 0 - - casa-client < 0 - - cassava-conduit < 0 - - cassava-megaparsec < 0 - - cfenv < 0 - - chan < 0 - - charset < 0 - - cheapskate < 0 - - cheapskate-highlight < 0 - - cheapskate-lucid < 0 - - checkers < 0 - - chimera < 0 - - chronologique < 0 - - chronos-bench < 0 - - citeproc < 0 - - classy-prelude-conduit < 0 - - cmark-lucid < 0 - - codec-rpm < 0 - - commutative < 0 - - comonad-extras < 0 - - concurrent-output < 0 - - conduit < 0 - - conduit-extra < 0 - - conferer-aeson < 0 - - conferer-warp < 0 - - config-ini < 0 - - configurator-export < 0 - - connection < 0 - - connection-pool < 0 - - criterion < 0 - - criterion-measurement < 0 - - cryptohash-cryptoapi < 0 - - data-textual < 0 - - depq < 0 - - deriveJsonNoPrefix < 0 - - deriving-aeson < 0 - - distributed-closure < 0 - - dl-fedora < 0 - - dlist-nonempty < 0 - - dublincore-xml-conduit < 0 - - ecstasy < 0 - - edit-distance-vector < 0 - - egison-pattern-src < 0 - - elm-bridge < 0 - - elm-export < 0 - - elynx < 0 - - elynx-seq < 0 - - elynx-tree < 0 - - enclosed-exceptions < 0 - - envy < 0 - - eq < 0 - - esqueleto < 0 - - essence-of-live-coding < 0 - - essence-of-live-coding-quickcheck < 0 - - etc < 0 - - eventful-test-helpers < 0 - - every < 0 - - exp-pairs < 0 - - extra < 0 - - faktory < 0 - - fast-logger < 0 - - fb < 0 - - filelock < 0 - - flags-applicative < 0 - - flush-queue < 0 - - fn < 0 - - follow-file < 0 - - forma < 0 - - formatting < 0 - - fsnotify < 0 - - ftp-client-conduit < 0 - - fuzzyset < 0 - - genvalidity-aeson < 0 - - genvalidity-containers < 0 - - genvalidity-hspec < 0 - - genvalidity-hspec-aeson < 0 - - genvalidity-hspec-binary < 0 - - genvalidity-hspec-cereal < 0 - - genvalidity-hspec-optics < 0 - - genvalidity-hspec-persistent < 0 - - genvalidity-mergeful < 0 - - genvalidity-mergeless < 0 - - genvalidity-path < 0 - - genvalidity-persistent < 0 - - genvalidity-scientific < 0 - - genvalidity-sydtest-aeson < 0 - - genvalidity-sydtest-persistent < 0 - - genvalidity-typed-uuid < 0 - - genvalidity-uuid < 0 - - genvalidity-vector < 0 - - ghc-lib-parser-ex < 0 - - ghc-prof < 0 - - gi-atk < 0 - - gi-cairo < 0 - - gi-dbusmenu < 0 - - gi-dbusmenugtk3 < 0 - - gi-gdk < 0 - - gi-gdkpixbuf < 0 - - gi-gdkx11 < 0 - - gi-gio < 0 - - gi-glib < 0 - - gi-gobject < 0 - - gi-graphene < 0 - - gi-gtk < 0 - - gi-harfbuzz < 0 - - gi-pango < 0 - - gi-xlib < 0 - - ginger < 0 - - gingersnap < 0 - - github-release < 0 - - github-rest < 0 - - github-types < 0 - - gitlab-haskell < 0 - - glabrous < 0 - - gluturtle < 0 - - google-isbn < 0 - - hackage-db < 0 - - hamtsolo < 0 - - hapistrano < 0 - - hasbolt < 0 - - haskell-gi-base < 0 - - haskell-names < 0 - - haskell-src-exts-util < 0 - - hasql-notifications < 0 - - hasql-optparse-applicative < 0 - - hasql-pool < 0 - - hasql-transaction < 0 - - hexstring < 0 - - hi-file-parser < 0 - - hinfo < 0 - - hinotify < 0 - - hkd-default < 0 - - hmm-lapack < 0 - - hosc < 0 - - hourglass-orphans < 0 - - hpack < 0 - - hpc-lcov < 0 - - hruby < 0 - - hsdns < 0 - - hsebaysdk < 0 - - hslua < 0 - - hspec-expectations-pretty-diff < 0 - - hspec-golden-aeson < 0 - - hspec-wai < 0 - - hspec-wai-json < 0 - - html-conduit < 0 - - html-entities < 0 - - html-entity-map < 0 - - http-client < 0 - - http-client-openssl < 0 - - http-client-overrides < 0 - - http-client-tls < 0 - - http-common < 0 - - http-conduit < 0 - - http-directory < 0 - - http-download < 0 - - http-query < 0 - - http-reverse-proxy < 0 - - http-streams < 0 - - httpd-shed < 0 - - hunit-dejafu < 0 - - hvega < 0 - - hyphenation < 0 - - immortal-queue < 0 - - inbox < 0 - - inflections < 0 - - ini < 0 - - inline-c-cpp < 0 - - inliterate < 0 - - interpolate < 0 - - intset-imperative < 0 - - io-memoize < 0 - - io-streams < 0 - - ipython-kernel < 0 - - islink < 0 - - it-has < 0 - - jose-jwt < 0 - - json-feed < 0 - - json-rpc-generic < 0 - - jsonpath < 0 - - junit-xml < 0 - - katip < 0 - - katip-logstash < 0 - - kawhi < 0 - - koofr-client < 0 - - kubernetes-webhook-haskell < 0 - - language-avro < 0 - - language-bash < 0 - - language-docker < 0 - - language-thrift < 0 - - lapack-ffi-tools < 0 - - leveldb-haskell < 0 - - libmpd < 0 - - liboath-hs < 0 - - lifted-async < 0 - - linear-circuit < 0 - - list-t < 0 - - llvm-hs-pure < 0 - - logict < 0 - - logstash < 0 - - lucid-cdn < 0 - - lucid-extras < 0 - - lukko < 0 - - lz4-frame-conduit < 0 - - magico < 0 - - markdown < 0 - - massiv-test < 0 - - matplotlib < 0 - - matrix-market-attoparsec < 0 - - megaparsec < 0 - - megaparsec-tests < 0 - - mergeful < 0 - - mergeless < 0 - - microstache < 0 - - mighty-metropolis < 0 - - mime-mail-ses < 0 - - mmark-cli < 0 - - mmark-ext < 0 - - mod < 0 - - monad-chronicle < 0 - - monad-logger-json < 0 - - monad-logger-logstash < 0 - - monad-products < 0 - - monad-unlift < 0 - - monad-unlift-ref < 0 - - mongoDB < 0 - - mono-traversable-instances < 0 - - monoid-subclasses < 0 - - moss < 0 - - mutable-containers < 0 - - mx-state-codes < 0 - - natural-transformation < 0 - - ndjson-conduit < 0 - - netpbm < 0 - - netwire-input < 0 - - netwire-input-glfw < 0 - - network-bsd < 0 - - network-conduit-tls < 0 - - network-messagepack-rpc < 0 - - network-messagepack-rpc-websocket < 0 - - network-simple < 0 - - network-simple-tls < 0 - - network-transport-composed < 0 - - nonemptymap < 0 - - nsis < 0 - - nuxeo < 0 - - nvim-hs-contrib < 0 - - nvim-hs-ghcid < 0 - - oauthenticated < 0 - - one-liner-instances < 0 - - opensource < 0 - - openssl-streams < 0 - - opentelemetry-lightstep < 0 - - opentelemetry-wai < 0 - - pandoc-types < 0 - - parsers < 0 - - path-binary-instance < 0 - - path-extensions < 0 - - path-extra < 0 - - path-io < 0 - - path-like < 0 - - pdfinfo < 0 - - peregrin < 0 - - persistent-documentation < 0 - - persistent-mtl < 0 - - persistent-mysql < 0 - - persistent-pagination < 0 - - persistent-postgresql < 0 - - persistent-qq < 0 - - persistent-sqlite < 0 - - persistent-test < 0 - - pg-transact < 0 - - pipes-aeson < 0 - - pipes-bytestring < 0 - - pipes-concurrency < 0 - - pipes-csv < 0 - - pipes-network < 0 - - pipes-network-tls < 0 - - pipes-ordered-zip < 0 - - pipes-wai < 0 - - pkgtreediff < 0 - - plaid < 0 - - plotlyhs < 0 - - poly-arity < 0 - - port-utils < 0 - - postgresql-binary < 0 - - postgresql-libpq-notify < 0 - - postgresql-orm < 0 - - postgresql-typed < 0 - - prettyprinter-compat-annotated-wl-pprint < 0 - - prettyprinter-compat-ansi-wl-pprint < 0 - - prettyprinter-compat-wl-pprint < 0 - - primitive-unlifted < 0 - - prometheus < 0 - - prometheus-wai-middleware < 0 - - protobuf < 0 - - protobuf-simple < 0 - - protocol-buffers < 0 - - pureMD5 < 0 - - pvar < 0 - - qrcode-core < 0 - - quickcheck-classes < 0 - - range < 0 - - ratel < 0 - - ratel-wai < 0 - - recursion-schemes < 0 - - reform-happstack < 0 - - rerebase < 0 - - resistor-cube < 0 - - resourcet-pool < 0 - - result < 0 - - rhine < 0 - - rigel-viz < 0 - - rio-orphans < 0 - - rio-prettyprint < 0 - - roc-id < 0 - - rpmbuild-order < 0 - - salak-yaml < 0 - - sampling < 0 - - scalpel < 0 - - sdl2-gfx < 0 - - sdl2-image < 0 - - sdl2-mixer < 0 - - sdl2-ttf < 0 - - selda < 0 - - selda-json < 0 - - selda-postgresql < 0 - - selda-sqlite < 0 - - sendfile < 0 - - sequence-formats < 0 - - sequenceTools < 0 - - serversession-frontend-wai < 0 - - set-cover < 0 - - shake-plus < 0 - - shakespeare < 0 - - shell-conduit < 0 - - shelly < 0 - - shikensu < 0 - - simple-log < 0 - - simple-sendfile < 0 - - simple-templates < 0 - - skein < 0 - - skews < 0 - - skylighting-core < 0 - - smash-aeson < 0 - - smash-microlens < 0 - - smoothie < 0 - - smtp-mail < 0 - - snap-blaze < 0 - - soap < 0 - - soap-openssl < 0 - - soap-tls < 0 - - socks < 0 - - sourcemap < 0 - - sparse-linear-algebra < 0 - - special-values < 0 - - splice < 0 - - stache < 0 - - stm-conduit < 0 - - store-streaming < 0 - - streaming-commons < 0 - - streams < 0 - - string-conversions < 0 - - string-random < 0 - - stripe-core < 0 - - stripe-http-client < 0 - - stripe-tests < 0 - - strive < 0 - - swagger < 0 - - sydtest < 0 - - sydtest-discover < 0 - - sydtest-persistent-sqlite < 0 - - sydtest-wai < 0 - - sydtest-yesod < 0 - - systemd < 0 - - tagged-transformer < 0 - - tasty < 0 - - tasty-dejafu < 0 - - tasty-golden < 0 - - tasty-silver < 0 - - text-builder < 0 - - text-printer < 0 - - textlocal < 0 - - th-orphans < 0 - - th-printf < 0 - - these-optics < 0 - - throttle-io-stream < 0 - - tinylog < 0 - - tls < 0 - - tls-debug < 0 - - tls-session-manager < 0 - - tlynx < 0 - - tostring < 0 - - tracing < 0 - - tracing-control < 0 - - typed-process < 0 - - ua-parser < 0 - - unagi-chan < 0 - - unboxed-ref < 0 - - unboxing-vector < 0 - - uncertain < 0 - - uniq-deep < 0 - - unit-constraint < 0 - - universe-instances-extended < 0 - - unliftio < 0 - - unliftio-pool < 0 - - uri-bytestring-aeson < 0 - - users < 0 - - utf8-conversions < 0 - - validity-aeson < 0 - - validity-path < 0 - - validity-persistent < 0 - - validity-scientific < 0 - - validity-uuid < 0 - - vector-bytes-instances < 0 - - vformat-aeson < 0 - - wai < 0 - - wai-app-static < 0 - - wai-conduit < 0 - - wai-cors < 0 - - wai-enforce-https < 0 - - wai-extra < 0 - - wai-feature-flags < 0 - - wai-handler-launch < 0 - - wai-middleware-caching < 0 - - wai-middleware-static < 0 - - wai-rate-limit < 0 - - wai-saml2 < 0 - - wai-slack-middleware < 0 - - wai-websockets < 0 - - warp-tls < 0 - - warp-tls-uid < 0 - - webdriver < 0 - - webex-teams-api < 0 - - webex-teams-conduit < 0 - - webex-teams-pipes < 0 - - wss-client < 0 - - wuss < 0 - - xdg-desktop-entry < 0 - - xml-conduit-writer < 0 - - xml-hamlet < 0 - - xmonad-contrib < 0 - - yaml < 0 - - yamlparse-applicative < 0 - - yesod < 0 - - yesod-auth-hashdb < 0 - - yesod-auth-oauth2 < 0 - - yesod-bin < 0 - - yesod-core < 0 - - yesod-fb < 0 - - yesod-gitrev < 0 - - yesod-markdown < 0 - - yesod-newsfeed < 0 - - yesod-page-cursor < 0 - - yesod-persistent < 0 - - yesod-sitemap < 0 - - yesod-test < 0 - - yesod-websockets < 0 - - yi-rope < 0 - - zeromq4-haskell < 0 - - zeromq4-patterns < 0 - - zip < 0 - - ztail < 0 - # next set of packages broken by packages above this line - - Color < 0 - - HsOpenSSL-x509-system < 0 - - JuicyPixels-extra < 0 - - QuasiText < 0 - - Spintax < 0 - - ace < 0 - - async-refresh < 0 - - async-refresh-tokens < 0 - - attoparsec-base64 < 0 - - attoparsec-binary < 0 - - attoparsec-expr < 0 - - attoparsec-iso8601 < 0 - - base64-bytestring < 0 - - binary-conduit < 0 - - bitvec < 0 - - board-games < 0 - - boolean-like < 0 - - byte-count-reader < 0 - - bz2 < 0 - - bzlib-conduit < 0 - - cases < 0 - - cereal-conduit < 0 - - cmark-gfm < 0 - - commonmark < 0 - - commonmark-extensions < 0 - - commonmark-pandoc < 0 - - conduit-concurrent-map < 0 - - conduit-parse < 0 - - conduit-zstd < 0 - - cpio-conduit < 0 - - cpuinfo < 0 - - cron < 0 - - crypto-numbers < 0 - - crypto-pubkey < 0 - - cryptohash < 0 - - cryptonite-conduit < 0 - - css-text < 0 - - cue-sheet < 0 - - cursor-fuzzy-time < 0 - - cursor-gen < 0 - - data-serializer < 0 - - dataurl < 0 - - doclayout < 0 - - dotenv < 0 - - editor-open < 0 - - elynx-nexus < 0 - - errors-ext < 0 - - essence-of-live-coding-gloss < 0 - - essence-of-live-coding-pulse < 0 - - fakedata-parser < 0 - - filepattern < 0 - - flat-mcmc < 0 - - fold-debounce-conduit < 0 - - frontmatter < 0 - - fsnotify-conduit < 0 - - fuzzy < 0 - - fuzzy-time < 0 - - generics-sop < 0 - - genvalidity-bytestring < 0 - - genvalidity-criterion < 0 - - genvalidity-sydtest < 0 - - genvalidity-sydtest-lens < 0 - - genvalidity-text < 0 - - genvalidity-time < 0 - - ghcid < 0 - - gi-cairo-connector < 0 - - gi-cairo-render < 0 - - gi-gtk-hs < 0 - - gtk-strut < 0 - - hadoop-streaming < 0 - - haskell-src-meta < 0 - - hexml < 0 - - higher-leveldb < 0 - - hjsmin < 0 - - hkgr < 0 - - hostname-validate < 0 - - hp2pretty < 0 - - hprotoc < 0 - - hslua-module-doclayout < 0 - - hslua-module-system < 0 - - hslua-module-text < 0 - - hspec-attoparsec < 0 - - hspec-checkers < 0 - - hspec-megaparsec < 0 - - hw-conduit-merges < 0 - - hweblib < 0 - - imagesize-conduit < 0 - - input-parsers < 0 - - ip6addr < 0 - - irc < 0 - - language-protobuf < 0 - - libyaml < 0 - - llvm-hs < 0 - - logging < 0 - - makefile < 0 - - mock-time < 0 - - monad-logger < 0 - - mysql-simple < 0 - - neat-interpolation < 0 - - network-uri < 0 - - nix-derivation < 0 - - openpgp-asciiarmor < 0 - - pager < 0 - - parser-combinators-tests < 0 - - pipes-attoparsec < 0 - - pipes-binary < 0 - - pipes-fastx < 0 - - pipes-http < 0 - - pretty-relative-time < 0 - - project-template < 0 - - protocol-buffers-descriptor < 0 - - qrcode-juicypixels < 0 - - quickcheck-special < 0 - - rampart < 0 - - rcu < 0 - - rdf < 0 - - reform-hamlet < 0 - - replace-attoparsec < 0 - - replace-megaparsec < 0 - - rhine-gloss < 0 - - rocksdb-haskell-jprupp < 0 - - rocksdb-query < 0 - - safeio < 0 - - seqid-streams < 0 - - serf < 0 - - ses-html < 0 - - simple-cmd < 0 - - simple-vec3 < 0 - - skylighting < 0 - - smallcheck < 0 - - sqlite-simple < 0 - - streaming-attoparsec < 0 - - stripe-haskell < 0 - - tagged-binary < 0 - - tasty-bench < 0 - - tasty-expected-failure < 0 - - tasty-focus < 0 - - tasty-hunit < 0 - - tasty-hunit-compat < 0 - - tasty-kat < 0 - - tasty-leancheck < 0 - - tasty-lua < 0 - - tasty-program < 0 - - tasty-quickcheck < 0 - - tasty-rerun < 0 - - tasty-smallcheck < 0 - - tasty-test-reporter < 0 - - tasty-th < 0 - - tensors < 0 - - terminal-progress-bar < 0 - - texmath < 0 - - text-ldap < 0 - - text-regex-replace < 0 - - th-utilities < 0 - - thread-local-storage < 0 - - thread-supervisor < 0 - - time-manager < 0 - - time-parsers < 0 - - timerep < 0 - - tldr < 0 - - uniprot-kb < 0 - - universe < 0 - - unliftio-streams < 0 - - urbit-hob < 0 - - wai-eventsource < 0 - - wikicfp-scraper < 0 - - word-wrap < 0 - - xeno < 0 - - xss-sanitize < 0 - - zenacy-html < 0 - - zip-stream < 0 - - zipper-extra < 0 - - zstd < 0 - # next set of packages broken by packages above this line - - cgi < 0 - - dotenv < 0 - - frontmatter < 0 - - getopt-generics < 0 - - here < 0 - - hspec-smallcheck < 0 - - hxt < 0 - - interpolatedstring-perl6 < 0 - - language-c-quote < 0 - - mixed-types-num < 0 - - monad-logger-prefix < 0 - - pretty-sop < 0 - - qm-interpolated-string < 0 - - sqlcli < 0 - - sqlcli-odbc < 0 - - test-framework-smallcheck < 0 - - tuple-sop < 0 - - uri-encode < 0 - # next set of packages broken by packages above this line - - epub-metadata < 0 - - hxt-css < 0 - - hxt-curl < 0 - - hxt-expat < 0 - - hxt-tagsoup < 0 - - mime-mail < 0 - - text-conversions < 0 - # Following pass the constraint checks but fail at compile time - - Decimal < 0 - - HStringTemplate < 0 - - barbies < 0 - - basement < 0 - - btrfs < 0 - - bytestring-strict-builder < 0 - - data-lens-light < 0 - - drinkery < 0 - - enum-subset-generate < 0 - - generic-lens-core < 0 - - hpc-codecov < 0 - - hs-functors < 0 - - lens-family < 0 - - operational < 0 - - partial-isomorphisms < 0 - - rawfilepath < 0 - - selective < 0 - - th-data-compat < 0 - - th-extras < 0 - - traverse-with-class < 0 - - vinyl < 0 - - word24 < 0 - # Blocked by packages in the above set - - cryptonite < 0 - - cryptonite-openssl < 0 - - flexible-defaults < 0 - - foundation < 0 - - gauge < 0 - - lenz < 0 - - memory < 0 - - operational-class < 0 - - pem < 0 - - persistable-record < 0 - - product-isomorphic < 0 - - random-source < 0 - - relational-query-HDBC < 0 - - time-lens < 0 - # Blocked by packages in the above set - - asn1-types < 0 - - eap < 0 - - hashing < 0 - - locators < 0 - - persistable-types-HDBC-pg < 0 - - pkcs10 < 0 - - protocol-radius < 0 - - random-fu < 0 - - relational-query < 0 - - relational-record < 0 - - rvar < 0 - - securemem < 0 - - x509 < 0 - - x509-store < 0 - - x509-system < 0 - - x509-validation < 0 - # Blocked by packages in the above set - - asn1-encoding < 0 - - asn1-parse < 0 - - cipher-aes < 0 - - cipher-camellia < 0 - - cipher-des < 0 - - crypto-cipher-types < 0 - - crypto-pubkey-types < 0 - - crypto-random < 0 - - nettle < 0 - - protocol-radius-test < 0 - - relational-schemas < 0 - # Blocked by packages in the above set - - asn1-encoding < 0 - - asn1-parse < 0 - - cipher-aes < 0 - - cipher-camellia < 0 - - cipher-des < 0 - - cipher-rc4 < 0 - - cprng-aes < 0 - - crypto-cipher-types < 0 - - crypto-pubkey-types < 0 - - crypto-random < 0 - - nettle < 0 - - protocol-radius-test < 0 - - relational-schemas < 0 + #"Broken with GHC 9.0.1": + # - Agda < 0 + # - HTTP < 0 + # - HaXml < 0 + # - HsYAML < 0 + # - HsYAML-aeson < 0 + # - JuicyPixels-scale-dct < 0 + # - MapWith < 0 + # - MissingH < 0 + # - Rattus < 0 + # - aeson-diff < 0 + # - aeson-schemas < 0 + # - apply-refact < 0 + # - arithmoi < 0 + # - avers < 0 + # - aws-cloudfront-signed-cookies < 0 + # - bech32 < 0 + # - bech32-th < 0 + # - benchpress < 0 + # - binary-tagged < 0 + # - bits-extra < 0 + # - brick < 0 + # - broadcast-chan < 0 + # - bugzilla-redhat < 0 + # - butcher < 0 + # - bzlib < 0 + # - cabal-plan < 0 + # - cabal-rpm < 0 + # - cborg < 0 + # - cborg-json < 0 + # - circular < 0 + # - clash-ghc < 0 + # - clash-lib < 0 + # - clash-prelude < 0 + # - co-log < 0 + # - co-log-core < 0 + # - colourista < 0 + # - composite-aeson < 0 + # - composite-base < 0 + # - configurator-pg < 0 + # - country < 0 + # - crypto-enigma < 0 + # - cryptohash-md5 < 0 + # - cryptohash-sha1 < 0 + # - cryptohash-sha256 < 0 + # - cryptohash-sha512 < 0 + # - css-syntax < 0 + # - czipwith < 0 + # - d10 < 0 + # - data-accessor-template < 0 + # - data-compat < 0 + # - data-forest < 0 + # - dbus < 0 + # - deepseq-generics < 0 + # - deepseq-instances < 0 + # - dhall < 0 + # - dialogflow-fulfillment < 0 + # - dirichlet < 0 + # - doctest < 0 + # - doctest-driver-gen < 0 + # - earcut < 0 + # - ed25519 < 0 + # - egison < 0 + # - egison-pattern-src-th-mode < 0 + # - ekg < 0 + # - ekg-core < 0 + # - ekg-json < 0 + # - ekg-statsd < 0 + # - eliminators < 0 + # - email-validate < 0 + # - entropy < 0 + # - equational-reasoning < 0 + # - exception-hierarchy < 0 + # - exceptions < 0 + # - fclabels < 0 + # - feed < 0 + # - file-embed-lzma < 0 + # - first-class-families < 0 + # - fixed-vector-hetero < 0 + # - freer-simple < 0 + # - fusion-plugin < 0 + # - generic-aeson < 0 + # - generic-deriving < 0 + # - generic-functor < 0 + # - generic-monoid < 0 + # - geniplate-mirror < 0 + # - ghc-check < 0 + # - ghc-exactprint < 0 + # - ghc-lib < 0 + # - ghc-lib-parser < 0 + # - ghc-parser < 0 + # - ghc-source-gen < 0 + # - ghc-tcplugins-extra < 0 + # - ghc-typelits-extra < 0 + # - ghc-typelits-knownnat < 0 + # - ghc-typelits-natnormalise < 0 + # - ghc-typelits-presburger < 0 + # - github < 0 + # - greskell < 0 + # - greskell-core < 0 + # - greskell-websocket < 0 + # - hackage-security < 0 + # - haddock-library < 0 + # - hashable < 0 + # - haskell-import-graph < 0 + # - haskell-lsp < 0 + # - haskell-lsp-types < 0 + # - haxr < 0 + # - hedgehog < 0 + # - hgrev < 0 + # - hie-bios < 0 + # - hint < 0 + # - hledger < 0 + # - hledger-lib < 0 + # - hledger-ui < 0 + # - hledger-web < 0 + # - hmatrix < 0 + # - hmpfr < 0 + # - hslogger < 0 + # - hspec-expectations-json < 0 + # - hspec-tables < 0 + # - http-api-data < 0 + # - http-media < 0 + # - hw-dsv < 0 + # - hw-prim < 0 + # - hw-streams < 0 + # - hw-xml < 0 + # - hyper < 0 + # - ihaskell < 0 + # - ilist < 0 + # - influxdb < 0 + # - inspection-testing < 0 + # - invertible-grammar < 0 + # - io-streams-haproxy < 0 + # - ixset-typed < 0 + # - ki < 0 + # - kind-generics-th < 0 + # - lens < 0 + # - libjwt-typed < 0 + # - life-sync < 0 + # - loc < 0 + # - lzma < 0 + # - membrain < 0 + # - multistate < 0 + # - newtype < 0 + # - nri-env-parser < 0 + # - nri-observability < 0 + # - nri-prelude < 0 + # - o-clock < 0 + # - openapi3 < 0 + # - optics-extra < 0 + # - optics-th < 0 + # - packdeps < 0 + # - pantry < 0 + # - partial-semigroup < 0 + # - path-text-utf8 < 0 + # - pava < 0 + # - perfect-vector-shuffle < 0 + # - postgrest < 0 + # - pqueue < 0 + # - prairie < 0 + # - profunctors < 0 + # - proto-lens < 0 + # - proto-lens-optparse < 0 + # - proto-lens-protobuf-types < 0 + # - proto-lens-protoc < 0 + # - proto-lens-runtime < 0 + # - proto-lens-setup < 0 + # - protolude < 0 + # - publicsuffix < 0 + # - pusher-http-haskell < 0 + # - range-set-list < 0 + # - rank2classes < 0 + # - record-dot-preprocessor < 0 + # - records-sop < 0 + # - refined < 0 + # - regex-applicative-text < 0 + # - regex-pcre-builtin < 0 + # - relude < 0 + # - req < 0 + # - resolv < 0 + # - rethinkdb-client-driver < 0 + # - semialign < 0 + # - semialign-indexed < 0 + # - semialign-optics < 0 + # - serialise < 0 + # - servant < 0 + # - servant-client < 0 + # - servant-client-core < 0 + # - servant-docs < 0 + # - servant-errors < 0 + # - servant-foreign < 0 + # - servant-http-streams < 0 + # - servant-openapi3 < 0 + # - servant-server < 0 + # - servant-swagger < 0 + # - servant-swagger-ui < 0 + # - servant-swagger-ui-core < 0 + # - setlocale < 0 + # - shellmet < 0 + # - shortcut-links < 0 + # - singletons < 0 + # - singletons-presburger < 0 + # - slist < 0 + # - snap-server < 0 + # - splint < 0 + # - stackcollapse-ghc < 0 + # - strict-tuple < 0 + # - strict-tuple-lens < 0 + # - string-interpolate < 0 + # - stripe-concepts < 0 + # - structured < 0 + # - swagger2 < 0 + # - swish < 0 + # - tasty-hedgehog < 0 + # - tasty-hspec < 0 + # - tasty-wai < 0 + # - tdigest < 0 + # - termbox < 0 + # - text-ansi < 0 + # - text-format < 0 + # - text-show-instances < 0 + # - th-desugar < 0 + # - th-expand-syns < 0 + # - th-test-utils < 0 + # - these-skinny < 0 + # - threepenny-gui < 0 + # - through-text < 0 + # - timer-wheel < 0 + # - tomland < 0 + # - tonalude < 0 + # - ttc < 0 + # - type-errors-pretty < 0 + # - type-natural < 0 + # - typecheck-plugin-nat-simple < 0 + # - typerep-map < 0 + # - unicode-transforms < 0 + # - validation-selective < 0 + # - vector-binary-instances < 0 + # - vector-circular < 0 + # - weigh < 0 + # - wild-bind < 0 + # - wild-bind-x11 < 0 + # - with-utf8 < 0 + # - zydiskell < 0 + # # next set of packages broken by packages above this line + # - BNFC < 0 + # - Chart < 0 + # - ConfigFile < 0 + # - DAV < 0 + # - DBFunctor < 0 + # - ENIG < 0 + # - ForestStructures < 0 + # - HaTeX < 0 + # - HandsomeSoup < 0 + # - JuicyPixels-blurhash < 0 + # - LambdaHack < 0 + # - MusicBrainz < 0 + # - PyF < 0 + # - accuerr < 0 + # - ad < 0 + # - adjunctions < 0 + # - aeson < 0 + # - aeson-combinators < 0 + # - aeson-commit < 0 + # - aeson-compat < 0 + # - aeson-lens < 0 + # - aeson-optics < 0 + # - aeson-picker < 0 + # - aeson-with < 0 + # - amazonka-core < 0 + # - amazonka-s3 < 0 + # - ap-normalize < 0 + # - api-field-json-th < 0 + # - api-maker < 0 + # - approximate < 0 + # - arbor-lru-cache < 0 + # - arbor-postgres < 0 + # - ascii-case < 0 + # - ascii-char < 0 + # - ascii-group < 0 + # - ascii-superset < 0 + # - asciidiagram < 0 + # - asif < 0 + # - async < 0 + # - aur < 0 + # - aura < 0 + # - auto < 0 + # - avro < 0 + # - backprop < 0 + # - base16-lens < 0 + # - base32-lens < 0 + # - base64-bytestring-type < 0 + # - base64-lens < 0 + # - basic-prelude < 0 + # - bcp47 < 0 + # - bcp47-orphans < 0 + # - bcrypt < 0 + # - bimaps < 0 + # - bin < 0 + # - binary-instances < 0 + # - bins < 0 + # - boltzmann-samplers < 0 + # - bound < 0 + # - boundingboxes < 0 + # - bsb-http-chunked < 0 + # - bson < 0 + # - bugsnag-hs < 0 + # - bv-little < 0 + # - bytes < 0 + # - cabal-debian < 0 + # - cabal-file < 0 + # - cabal-flatpak < 0 + # - cabal2nix < 0 + # - cache < 0 + # - cacophony < 0 + # - casa-types < 0 + # - case-insensitive < 0 + # - cassava < 0 + # - cayley-client < 0 + # - character-cases < 0 + # - chiphunk < 0 + # - chronos < 0 + # - classy-prelude < 0 + # - clientsession < 0 + # - closed < 0 + # - co-log-concurrent < 0 + # - compdata < 0 + # - compensated < 0 + # - composable-associations < 0 + # - composable-associations-aeson < 0 + # - composite-aeson-path < 0 + # - composite-aeson-refined < 0 + # - composite-binary < 0 + # - composite-ekg < 0 + # - composite-hashable < 0 + # - composite-tuple < 0 + # - composite-xstep < 0 + # - concise < 0 + # - concurrent-supply < 0 + # - conduit-algorithms < 0 + # - configurator < 0 + # - constraints < 0 + # - construct < 0 + # - control-dsl < 0 + # - core-data < 0 + # - core-program < 0 + # - core-text < 0 + # - credential-store < 0 + # - crypto-api < 0 + # - crypto-random-api < 0 + # - cryptocompare < 0 + # - ctrie < 0 + # - cubicspline < 0 + # - cuckoo-filter < 0 + # - currency < 0 + # - cursor-brick < 0 + # - cyclotomic < 0 + # - data-ascii < 0 + # - data-dword < 0 + # - data-fix < 0 + # - data-interval < 0 + # - data-msgpack < 0 + # - data-msgpack-types < 0 + # - data-reify < 0 + # - datadog < 0 + # - dbus-hslogger < 0 + # - debian < 0 + # - declarative < 0 + # - deferred-folds < 0 + # - dejafu < 0 + # - dense-linear-algebra < 0 + # - deque < 0 + # - derive-topdown < 0 + # - dhall-bash < 0 + # - dhall-json < 0 + # - dhall-lsp-server < 0 + # - dhall-yaml < 0 + # - dimensional < 0 + # - distribution-nixpkgs < 0 + # - distribution-opensuse < 0 + # - dns < 0 + # - doctemplates < 0 + # - doctest-discover < 0 + # - download < 0 + # - duration < 0 + # - dynamic-state < 0 + # - either < 0 + # - elm2nix < 0 + # - elynx-markov < 0 + # - elynx-tools < 0 + # - envelope < 0 + # - ersatz < 0 + # - eve < 0 + # - eventful-core < 0 + # - eventstore < 0 + # - experimenter < 0 + # - expiring-cache-map < 0 + # - extended-reals < 0 + # - fakedata < 0 + # - fedora-haskell-tools < 0 + # - file-modules < 0 + # - fin < 0 + # - fixed-vector < 0 + # - flat < 0 + # - fmt < 0 + # - focuslist < 0 + # - foldl < 0 + # - folds < 0 + # - free < 0 + # - from-sum < 0 + # - ftp-client < 0 + # - functor-classes-compat < 0 + # - fuzzy-dates < 0 + # - generic-data < 0 + # - generic-data-surgery < 0 + # - generic-lens < 0 + # - generic-optics < 0 + # - generic-random < 0 + # - generics-sop-lens < 0 + # - genvalidity-hspec-hashable < 0 + # - genvalidity-property < 0 + # - genvalidity-sydtest-hashable < 0 + # - genvalidity-unordered-containers < 0 + # - geojson < 0 + # - ghc-syntax-highlighter < 0 + # - ghci-hexcalc < 0 + # - github-webhooks < 0 + # - gothic < 0 + # - graph-core < 0 + # - graphite < 0 + # - graphql-client < 0 + # - gravatar < 0 + # - gtk-sni-tray < 0 + # - hOpenPGP < 0 + # - hadolint < 0 + # - hakyll-convert < 0 + # - hall-symbols < 0 + # - happstack-server < 0 + # - hashable-time < 0 + # - hashmap < 0 + # - hashtables < 0 + # - haskell-gi < 0 + # - haskey-btree < 0 + # - hasql < 0 + # - hasql-queue < 0 + # - hasty-hamiltonian < 0 + # - headroom < 0 + # - hedgehog-fakedata < 0 + # - hedgehog-fn < 0 + # - hedgehog-quickcheck < 0 + # - hedis < 0 + # - hedn < 0 + # - heterocephalus < 0 + # - hexml-lens < 0 + # - hidapi < 0 + # - highlighting-kate < 0 + # - hledger-iadd < 0 + # - hledger-interest < 0 + # - hledger-stockquotes < 0 + # - hlint < 0 + # - hmatrix-backprop < 0 + # - hmatrix-gsl < 0 + # - hmatrix-gsl-stats < 0 + # - hmatrix-morpheus < 0 + # - hmatrix-vector-sized < 0 + # - hoauth2 < 0 + # - hocon < 0 + # - hoogle < 0 + # - hopenpgp-tools < 0 + # - hpack-dhall < 0 + # - hsc2hs < 0 + # - hslua-aeson < 0 + # - hspec-hedgehog < 0 + # - htoml < 0 + # - http-date < 0 + # - http-link-header < 0 + # - http-types < 0 + # - http2 < 0 + # - human-readable-duration < 0 + # - hw-balancedparens < 0 + # - hw-bits < 0 + # - hw-conduit < 0 + # - hw-diagnostics < 0 + # - hw-eliasfano < 0 + # - hw-excess < 0 + # - hw-fingertree < 0 + # - hw-fingertree-strict < 0 + # - hw-hedgehog < 0 + # - hw-hspec-hedgehog < 0 + # - hw-ip < 0 + # - hw-json < 0 + # - hw-json-simd < 0 + # - hw-json-simple-cursor < 0 + # - hw-json-standard-cursor < 0 + # - hw-mquery < 0 + # - hw-packed-vector < 0 + # - hw-parser < 0 + # - hw-rankselect < 0 + # - hw-rankselect-base < 0 + # - hw-simd < 0 + # - hw-succinct < 0 + # - hxt-http < 0 + # - hyperloglog < 0 + # - incremental-parser < 0 + # - inline-c < 0 + # - inline-r < 0 + # - insert-ordered-containers < 0 + # - intern < 0 + # - interpolator < 0 + # - intro < 0 + # - invariant < 0 + # - invertible < 0 + # - iproute < 0 + # - ipynb < 0 + # - irc-client < 0 + # - irc-conduit < 0 + # - ixset-typed-binary-instance < 0 + # - ixset-typed-conversions < 0 + # - ixset-typed-hashable-instance < 0 + # - jose < 0 + # - json-rpc < 0 + # - jwt < 0 + # - kan-extensions < 0 + # - kanji < 0 + # - kazura-queue < 0 + # - kdt < 0 + # - keys < 0 + # - krank < 0 + # - language-nix < 0 + # - lapack < 0 + # - lattices < 0 + # - learn-physics < 0 + # - lens-action < 0 + # - lens-aeson < 0 + # - lens-csv < 0 + # - lens-datetime < 0 + # - lens-misc < 0 + # - lens-process < 0 + # - lens-properties < 0 + # - lens-regex < 0 + # - lens-regex-pcre < 0 + # - lift-generics < 0 + # - line < 0 + # - linear < 0 + # - liquid-fixpoint < 0 + # - little-logger < 0 + # - load-env < 0 + # - log-domain < 0 + # - lrucaching < 0 + # - lsp-test < 0 + # - lucid < 0 + # - lzma-conduit < 0 + # - machines < 0 + # - main-tester < 0 + # - massiv < 0 + # - massiv-io < 0 + # - massiv-persist < 0 + # - massiv-serialise < 0 + # - math-extras < 0 + # - matrix-as-xyz < 0 + # - matrix-static < 0 + # - mcmc < 0 + # - medea < 0 + # - mercury-api < 0 + # - metrics < 0 + # - mfsolve < 0 + # - microlens-aeson < 0 + # - microlens-platform < 0 + # - microlens-process < 0 + # - min-max-pqueue < 0 + # - mini-egison < 0 + # - minio-hs < 0 + # - mltool < 0 + # - mmark < 0 + # - model < 0 + # - modern-uri < 0 + # - modular < 0 + # - monad-metrics < 0 + # - mono-traversable < 0 + # - mono-traversable-keys < 0 + # - morpheus-graphql < 0 + # - morpheus-graphql-client < 0 + # - morpheus-graphql-core < 0 + # - morpheus-graphql-subscriptions < 0 + # - multiset < 0 + # - mustache < 0 + # - netwire < 0 + # - network < 0 + # - network-byte-order < 0 + # - network-ip < 0 + # - network-transport < 0 + # - nonce < 0 + # - nonempty-containers < 0 + # - nonempty-vector < 0 + # - not-gloss < 0 + # - nqe < 0 + # - numhask < 0 + # - nvim-hs < 0 + # - odbc < 0 + # - oeis2 < 0 + # - once < 0 + # - one-liner < 0 + # - opaleye < 0 + # - opentelemetry < 0 + # - opentelemetry-extra < 0 + # - optics < 0 + # - optics-vl < 0 + # - ormolu < 0 + # - pagure-cli < 0 + # - pandoc < 0 + # - pandoc-plot < 0 + # - password < 0 + # - password-instances < 0 + # - path < 0 + # - pcg-random < 0 + # - pcre-heavy < 0 + # - pcre-utils < 0 + # - pcre2 < 0 + # - perfect-hash-generator < 0 + # - persistent < 0 + # - persistent-template < 0 + # - persistent-typed-db < 0 + # - pg-harness-client < 0 + # - pgp-wordlist < 0 + # - pinboard < 0 + # - pipes-extras < 0 + # - pipes-group < 0 + # - pointed < 0 + # - poly < 0 + # - posix-paths < 0 + # - postgres-options < 0 + # - postgresql-simple < 0 + # - pptable < 0 + # - pretty-simple < 0 + # - prettyprinter < 0 + # - prettyprinter-ansi-terminal < 0 + # - prettyprinter-convert-ansi-wl-pprint < 0 + # - primitive-extras < 0 + # - process-extras < 0 + # - product-profunctors < 0 + # - profiterole < 0 + # - prometheus-client < 0 + # - prospect < 0 + # - proto3-wire < 0 + # - psqueues < 0 + # - purescript-bridge < 0 + # - pushbullet-types < 0 + # - qchas < 0 + # - quadratic-irrational < 0 + # - quickcheck-arbitrary-adt < 0 + # - quickcheck-instances < 0 + # - radius < 0 + # - rainbow < 0 + # - rainbox < 0 + # - ral < 0 + # - random-bytestring < 0 + # - random-tree < 0 + # - ranged-list < 0 + # - rasterific-svg < 0 + # - rattle < 0 + # - read-env-var < 0 + # - rebase < 0 + # - reducers < 0 + # - regex < 0 + # - regex-with-pcre < 0 + # - registry < 0 + # - relapse < 0 + # - renderable < 0 + # - req-conduit < 0 + # - resource-pool < 0 + # - retry < 0 + # - rhbzquery < 0 + # - rio < 0 + # - safe-decimal < 0 + # - safe-json < 0 + # - safe-money < 0 + # - safe-tensor < 0 + # - safecopy < 0 + # - salak < 0 + # - saltine < 0 + # - sbp < 0 + # - scheduler < 0 + # - scientific < 0 + # - scotty < 0 + # - scrypt < 0 + # - sdl2 < 0 + # - search-algorithms < 0 + # - secp256k1-haskell < 0 + # - semigroupoid-extras < 0 + # - semigroupoids < 0 + # - semirings < 0 + # - semver < 0 + # - servant-blaze < 0 + # - servant-conduit < 0 + # - servant-exceptions < 0 + # - servant-exceptions-server < 0 + # - servant-github-webhook < 0 + # - servant-machines < 0 + # - servant-multipart < 0 + # - servant-pipes < 0 + # - servant-rawm < 0 + # - serverless-haskell < 0 + # - serversession < 0 + # - sexp-grammar < 0 + # - shake < 0 + # - shake-language-c < 0 + # - shake-plus-extended < 0 + # - singleton-nats < 0 + # - sized < 0 + # - slack-api < 0 + # - slack-progressbar < 0 + # - slynx < 0 + # - smash < 0 + # - smash-lens < 0 + # - snap-core < 0 + # - sparse-tensor < 0 + # - spatial-math < 0 + # - speedy-slice < 0 + # - squeal-postgresql < 0 + # - squeather < 0 + # - stack < 0 + # - statistics < 0 + # - status-notifier-item < 0 + # - stm-containers < 0 + # - stm-hamt < 0 + # - store < 0 + # - stratosphere < 0 + # - strict < 0 + # - strict-list < 0 + # - subcategories < 0 + # - svg-tree < 0 + # - sweet-egison < 0 + # - sydtest-servant < 0 + # - symmetry-operations-symbols < 0 + # - taffybar < 0 + # - tar-conduit < 0 + # - tasty-ant-xml < 0 + # - tasty-discover < 0 + # - text-latin1 < 0 + # - text-region < 0 + # - text-short < 0 + # - text-show < 0 + # - th-reify-many < 0 + # - these < 0 + # - these-lens < 0 + # - throwable-exceptions < 0 + # - thyme < 0 + # - tidal < 0 + # - timelens < 0 + # - tmapchan < 0 + # - tmapmvar < 0 + # - tmp-postgres < 0 + # - transaction < 0 + # - tree-diff < 0 + # - trifecta < 0 + # - triplesec < 0 + # - ttl-hashtables < 0 + # - ttrie < 0 + # - turtle < 0 + # - type-errors < 0 + # - type-level-kv-list < 0 + # - typed-uuid < 0 + # - ulid < 0 + # - uniplate < 0 + # - unique < 0 + # - universum < 0 + # - unix-time < 0 + # - unordered-containers < 0 + # - uri-bytestring < 0 + # - uuid < 0 + # - uuid-types < 0 + # - validation < 0 + # - validity-unordered-containers < 0 + # - validity-vector < 0 + # - vault < 0 + # - vec < 0 + # - vector-instances < 0 + # - vector-sized < 0 + # - verbosity < 0 + # - versions < 0 + # - vty < 0 + # - wai-logger < 0 + # - wai-middleware-auth < 0 + # - wai-middleware-clacks < 0 + # - wai-rate-limit-redis < 0 + # - wai-session < 0 + # - wakame < 0 + # - warp < 0 + # - wcwidth < 0 + # - webby < 0 + # - webgear-server < 0 + # - websockets < 0 + # - websockets-snap < 0 + # - witherable-class < 0 + # - within < 0 + # - world-peace < 0 + # - wreq < 0 + # - xlsx < 0 + # - xlsx-tabular < 0 + # - xml-conduit < 0 + # - xml-html-qq < 0 + # - xml-indexed-cursor < 0 + # - xml-lens < 0 + # - xml-to-json < 0 + # - xmonad < 0 + # - xmonad-extras < 0 + # - yesod-auth < 0 + # - yesod-form < 0 + # - yesod-paginator < 0 + # - yesod-static < 0 + # - yjsvg < 0 + # - zim-parser < 0 + # - zippers < 0 + # - zlib-lens < 0 + # # next set of packages broken by packages above this line + # - Allure < 0 + # - ChannelT < 0 + # - Earley < 0 + # - H < 0 + # - HTF < 0 + # - HsOpenSSL < 0 + # - IPv6Addr < 0 + # - RSA < 0 + # - Rasterific < 0 + # - RefSerialize < 0 + # - ShellCheck < 0 + # - TCache < 0 + # - Taxonomy < 0 + # - aeson-attoparsec < 0 + # - aeson-better-errors < 0 + # - aeson-casing < 0 + # - aeson-default < 0 + # - aeson-generic-compat < 0 + # - aeson-pretty < 0 + # - aeson-qq < 0 + # - aeson-yak < 0 + # - aeson-yaml < 0 + # - alarmclock < 0 + # - amazonka-apigateway < 0 + # - amazonka-application-autoscaling < 0 + # - amazonka-appstream < 0 + # - amazonka-athena < 0 + # - amazonka-autoscaling < 0 + # - amazonka-budgets < 0 + # - amazonka-certificatemanager < 0 + # - amazonka-cloudformation < 0 + # - amazonka-cloudfront < 0 + # - amazonka-cloudhsm < 0 + # - amazonka-cloudsearch < 0 + # - amazonka-cloudsearch-domains < 0 + # - amazonka-cloudtrail < 0 + # - amazonka-cloudwatch < 0 + # - amazonka-cloudwatch-events < 0 + # - amazonka-cloudwatch-logs < 0 + # - amazonka-codebuild < 0 + # - amazonka-codecommit < 0 + # - amazonka-codedeploy < 0 + # - amazonka-codepipeline < 0 + # - amazonka-cognito-identity < 0 + # - amazonka-cognito-idp < 0 + # - amazonka-cognito-sync < 0 + # - amazonka-config < 0 + # - amazonka-datapipeline < 0 + # - amazonka-devicefarm < 0 + # - amazonka-directconnect < 0 + # - amazonka-discovery < 0 + # - amazonka-dms < 0 + # - amazonka-ds < 0 + # - amazonka-dynamodb < 0 + # - amazonka-dynamodb-streams < 0 + # - amazonka-ecr < 0 + # - amazonka-ecs < 0 + # - amazonka-efs < 0 + # - amazonka-elasticache < 0 + # - amazonka-elasticbeanstalk < 0 + # - amazonka-elasticsearch < 0 + # - amazonka-elastictranscoder < 0 + # - amazonka-elb < 0 + # - amazonka-elbv2 < 0 + # - amazonka-emr < 0 + # - amazonka-gamelift < 0 + # - amazonka-glacier < 0 + # - amazonka-glue < 0 + # - amazonka-health < 0 + # - amazonka-iam < 0 + # - amazonka-importexport < 0 + # - amazonka-inspector < 0 + # - amazonka-iot < 0 + # - amazonka-iot-dataplane < 0 + # - amazonka-kinesis < 0 + # - amazonka-kinesis-analytics < 0 + # - amazonka-kinesis-firehose < 0 + # - amazonka-kms < 0 + # - amazonka-lambda < 0 + # - amazonka-lightsail < 0 + # - amazonka-marketplace-analytics < 0 + # - amazonka-marketplace-metering < 0 + # - amazonka-ml < 0 + # - amazonka-opsworks < 0 + # - amazonka-opsworks-cm < 0 + # - amazonka-pinpoint < 0 + # - amazonka-polly < 0 + # - amazonka-rds < 0 + # - amazonka-redshift < 0 + # - amazonka-rekognition < 0 + # - amazonka-route53 < 0 + # - amazonka-route53-domains < 0 + # - amazonka-sdb < 0 + # - amazonka-servicecatalog < 0 + # - amazonka-ses < 0 + # - amazonka-shield < 0 + # - amazonka-sms < 0 + # - amazonka-snowball < 0 + # - amazonka-sns < 0 + # - amazonka-sqs < 0 + # - amazonka-ssm < 0 + # - amazonka-stepfunctions < 0 + # - amazonka-storagegateway < 0 + # - amazonka-sts < 0 + # - amazonka-support < 0 + # - amazonka-swf < 0 + # - amazonka-test < 0 + # - amazonka-waf < 0 + # - amazonka-workspaces < 0 + # - amazonka-xray < 0 + # - amqp < 0 + # - amqp-utils < 0 + # - apecs < 0 + # - apecs-gloss < 0 + # - apecs-physics < 0 + # - ascii < 0 + # - ascii-predicates < 0 + # - ascii-progress < 0 + # - ascii-th < 0 + # - async-extra < 0 + # - async-pool < 0 + # - atom-basic < 0 + # - attoparsec < 0 + # - attoparsec-path < 0 + # - authenticate < 0 + # - authenticate-oauth < 0 + # - auto-update < 0 + # - backtracking < 0 + # - base16 < 0 + # - base32 < 0 + # - base32string < 0 + # - base58-bytestring < 0 + # - base58string < 0 + # - base64 < 0 + # - bench < 0 + # - bimap-server < 0 + # - binary-ext < 0 + # - binary-parsers < 0 + # - bits < 0 + # - bitwise-enum < 0 + # - blanks < 0 + # - boring < 0 + # - bower-json < 0 + # - buffer-builder < 0 + # - bugsnag-haskell < 0 + # - bytestring-conversion < 0 + # - ca-province-codes < 0 + # - cardano-coin-selection < 0 + # - casa-client < 0 + # - cassava-conduit < 0 + # - cassava-megaparsec < 0 + # - cfenv < 0 + # - chan < 0 + # - charset < 0 + # - cheapskate < 0 + # - cheapskate-highlight < 0 + # - cheapskate-lucid < 0 + # - checkers < 0 + # - chimera < 0 + # - chronologique < 0 + # - chronos-bench < 0 + # - citeproc < 0 + # - classy-prelude-conduit < 0 + # - cmark-lucid < 0 + # - codec-rpm < 0 + # - commutative < 0 + # - comonad-extras < 0 + # - concurrent-output < 0 + # - conduit < 0 + # - conduit-extra < 0 + # - conferer-aeson < 0 + # - conferer-warp < 0 + # - config-ini < 0 + # - configurator-export < 0 + # - connection < 0 + # - connection-pool < 0 + # - criterion < 0 + # - criterion-measurement < 0 + # - cryptohash-cryptoapi < 0 + # - data-textual < 0 + # - depq < 0 + # - deriveJsonNoPrefix < 0 + # - deriving-aeson < 0 + # - distributed-closure < 0 + # - dl-fedora < 0 + # - dlist-nonempty < 0 + # - dublincore-xml-conduit < 0 + # - ecstasy < 0 + # - edit-distance-vector < 0 + # - egison-pattern-src < 0 + # - elm-bridge < 0 + # - elm-export < 0 + # - elynx < 0 + # - elynx-seq < 0 + # - elynx-tree < 0 + # - enclosed-exceptions < 0 + # - envy < 0 + # - eq < 0 + # - esqueleto < 0 + # - essence-of-live-coding < 0 + # - essence-of-live-coding-quickcheck < 0 + # - etc < 0 + # - eventful-test-helpers < 0 + # - every < 0 + # - exp-pairs < 0 + # - extra < 0 + # - faktory < 0 + # - fast-logger < 0 + # - fb < 0 + # - filelock < 0 + # - flags-applicative < 0 + # - flush-queue < 0 + # - fn < 0 + # - follow-file < 0 + # - forma < 0 + # - formatting < 0 + # - fsnotify < 0 + # - ftp-client-conduit < 0 + # - fuzzyset < 0 + # - genvalidity-aeson < 0 + # - genvalidity-containers < 0 + # - genvalidity-hspec < 0 + # - genvalidity-hspec-aeson < 0 + # - genvalidity-hspec-binary < 0 + # - genvalidity-hspec-cereal < 0 + # - genvalidity-hspec-optics < 0 + # - genvalidity-hspec-persistent < 0 + # - genvalidity-mergeful < 0 + # - genvalidity-mergeless < 0 + # - genvalidity-path < 0 + # - genvalidity-persistent < 0 + # - genvalidity-scientific < 0 + # - genvalidity-sydtest-aeson < 0 + # - genvalidity-sydtest-persistent < 0 + # - genvalidity-typed-uuid < 0 + # - genvalidity-uuid < 0 + # - genvalidity-vector < 0 + # - ghc-lib-parser-ex < 0 + # - ghc-prof < 0 + # - gi-atk < 0 + # - gi-cairo < 0 + # - gi-dbusmenu < 0 + # - gi-dbusmenugtk3 < 0 + # - gi-gdk < 0 + # - gi-gdkpixbuf < 0 + # - gi-gdkx11 < 0 + # - gi-gio < 0 + # - gi-glib < 0 + # - gi-gobject < 0 + # - gi-graphene < 0 + # - gi-gtk < 0 + # - gi-harfbuzz < 0 + # - gi-pango < 0 + # - gi-xlib < 0 + # - ginger < 0 + # - gingersnap < 0 + # - github-release < 0 + # - github-rest < 0 + # - github-types < 0 + # - gitlab-haskell < 0 + # - glabrous < 0 + # - gluturtle < 0 + # - google-isbn < 0 + # - hackage-db < 0 + # - hamtsolo < 0 + # - hapistrano < 0 + # - hasbolt < 0 + # - haskell-gi-base < 0 + # - haskell-names < 0 + # - haskell-src-exts-util < 0 + # - hasql-notifications < 0 + # - hasql-optparse-applicative < 0 + # - hasql-pool < 0 + # - hasql-transaction < 0 + # - hexstring < 0 + # - hi-file-parser < 0 + # - hinfo < 0 + # - hinotify < 0 + # - hkd-default < 0 + # - hmm-lapack < 0 + # - hosc < 0 + # - hourglass-orphans < 0 + # - hpack < 0 + # - hpc-lcov < 0 + # - hruby < 0 + # - hsdns < 0 + # - hsebaysdk < 0 + # - hslua < 0 + # - hspec-expectations-pretty-diff < 0 + # - hspec-golden-aeson < 0 + # - hspec-wai < 0 + # - hspec-wai-json < 0 + # - html-conduit < 0 + # - html-entities < 0 + # - html-entity-map < 0 + # - http-client < 0 + # - http-client-openssl < 0 + # - http-client-overrides < 0 + # - http-client-tls < 0 + # - http-common < 0 + # - http-conduit < 0 + # - http-directory < 0 + # - http-download < 0 + # - http-query < 0 + # - http-reverse-proxy < 0 + # - http-streams < 0 + # - httpd-shed < 0 + # - hunit-dejafu < 0 + # - hvega < 0 + # - hyphenation < 0 + # - immortal-queue < 0 + # - inbox < 0 + # - inflections < 0 + # - ini < 0 + # - inline-c-cpp < 0 + # - inliterate < 0 + # - interpolate < 0 + # - intset-imperative < 0 + # - io-memoize < 0 + # - io-streams < 0 + # - ipython-kernel < 0 + # - islink < 0 + # - it-has < 0 + # - jose-jwt < 0 + # - json-feed < 0 + # - json-rpc-generic < 0 + # - jsonpath < 0 + # - junit-xml < 0 + # - katip < 0 + # - katip-logstash < 0 + # - kawhi < 0 + # - koofr-client < 0 + # - kubernetes-webhook-haskell < 0 + # - language-avro < 0 + # - language-bash < 0 + # - language-docker < 0 + # - language-thrift < 0 + # - lapack-ffi-tools < 0 + # - leveldb-haskell < 0 + # - libmpd < 0 + # - liboath-hs < 0 + # - lifted-async < 0 + # - linear-circuit < 0 + # - list-t < 0 + # - llvm-hs-pure < 0 + # - logict < 0 + # - logstash < 0 + # - lucid-cdn < 0 + # - lucid-extras < 0 + # - lukko < 0 + # - lz4-frame-conduit < 0 + # - magico < 0 + # - markdown < 0 + # - massiv-test < 0 + # - matplotlib < 0 + # - matrix-market-attoparsec < 0 + # - megaparsec < 0 + # - megaparsec-tests < 0 + # - mergeful < 0 + # - mergeless < 0 + # - microstache < 0 + # - mighty-metropolis < 0 + # - mime-mail-ses < 0 + # - mmark-cli < 0 + # - mmark-ext < 0 + # - mod < 0 + # - monad-chronicle < 0 + # - monad-logger-json < 0 + # - monad-logger-logstash < 0 + # - monad-products < 0 + # - monad-unlift < 0 + # - monad-unlift-ref < 0 + # - mongoDB < 0 + # - mono-traversable-instances < 0 + # - monoid-subclasses < 0 + # - moss < 0 + # - mutable-containers < 0 + # - mx-state-codes < 0 + # - natural-transformation < 0 + # - ndjson-conduit < 0 + # - netpbm < 0 + # - netwire-input < 0 + # - netwire-input-glfw < 0 + # - network-bsd < 0 + # - network-conduit-tls < 0 + # - network-messagepack-rpc < 0 + # - network-messagepack-rpc-websocket < 0 + # - network-simple < 0 + # - network-simple-tls < 0 + # - network-transport-composed < 0 + # - nonemptymap < 0 + # - nsis < 0 + # - nuxeo < 0 + # - nvim-hs-contrib < 0 + # - nvim-hs-ghcid < 0 + # - oauthenticated < 0 + # - one-liner-instances < 0 + # - opensource < 0 + # - openssl-streams < 0 + # - opentelemetry-lightstep < 0 + # - opentelemetry-wai < 0 + # - pandoc-types < 0 + # - parsers < 0 + # - path-binary-instance < 0 + # - path-extensions < 0 + # - path-extra < 0 + # - path-io < 0 + # - path-like < 0 + # - pdfinfo < 0 + # - peregrin < 0 + # - persistent-documentation < 0 + # - persistent-mtl < 0 + # - persistent-mysql < 0 + # - persistent-pagination < 0 + # - persistent-postgresql < 0 + # - persistent-qq < 0 + # - persistent-sqlite < 0 + # - persistent-test < 0 + # - pg-transact < 0 + # - pipes-aeson < 0 + # - pipes-bytestring < 0 + # - pipes-concurrency < 0 + # - pipes-csv < 0 + # - pipes-network < 0 + # - pipes-network-tls < 0 + # - pipes-ordered-zip < 0 + # - pipes-wai < 0 + # - pkgtreediff < 0 + # - plaid < 0 + # - plotlyhs < 0 + # - poly-arity < 0 + # - port-utils < 0 + # - postgresql-binary < 0 + # - postgresql-libpq-notify < 0 + # - postgresql-orm < 0 + # - postgresql-typed < 0 + # - prettyprinter-compat-annotated-wl-pprint < 0 + # - prettyprinter-compat-ansi-wl-pprint < 0 + # - prettyprinter-compat-wl-pprint < 0 + # - primitive-unlifted < 0 + # - prometheus < 0 + # - prometheus-wai-middleware < 0 + # - protobuf < 0 + # - protobuf-simple < 0 + # - protocol-buffers < 0 + # - pureMD5 < 0 + # - pvar < 0 + # - qrcode-core < 0 + # - quickcheck-classes < 0 + # - range < 0 + # - ratel < 0 + # - ratel-wai < 0 + # - recursion-schemes < 0 + # - reform-happstack < 0 + # - rerebase < 0 + # - resistor-cube < 0 + # - resourcet-pool < 0 + # - result < 0 + # - rhine < 0 + # - rigel-viz < 0 + # - rio-orphans < 0 + # - rio-prettyprint < 0 + # - roc-id < 0 + # - rpmbuild-order < 0 + # - salak-yaml < 0 + # - sampling < 0 + # - scalpel < 0 + # - sdl2-gfx < 0 + # - sdl2-image < 0 + # - sdl2-mixer < 0 + # - sdl2-ttf < 0 + # - selda < 0 + # - selda-json < 0 + # - selda-postgresql < 0 + # - selda-sqlite < 0 + # - sendfile < 0 + # - sequence-formats < 0 + # - sequenceTools < 0 + # - serversession-frontend-wai < 0 + # - set-cover < 0 + # - shake-plus < 0 + # - shakespeare < 0 + # - shell-conduit < 0 + # - shelly < 0 + # - shikensu < 0 + # - simple-log < 0 + # - simple-sendfile < 0 + # - simple-templates < 0 + # - skein < 0 + # - skews < 0 + # - skylighting-core < 0 + # - smash-aeson < 0 + # - smash-microlens < 0 + # - smoothie < 0 + # - smtp-mail < 0 + # - snap-blaze < 0 + # - soap < 0 + # - soap-openssl < 0 + # - soap-tls < 0 + # - socks < 0 + # - sourcemap < 0 + # - sparse-linear-algebra < 0 + # - special-values < 0 + # - splice < 0 + # - stache < 0 + # - stm-conduit < 0 + # - store-streaming < 0 + # - streaming-commons < 0 + # - streams < 0 + # - string-conversions < 0 + # - string-random < 0 + # - stripe-core < 0 + # - stripe-http-client < 0 + # - stripe-tests < 0 + # - strive < 0 + # - swagger < 0 + # - sydtest < 0 + # - sydtest-discover < 0 + # - sydtest-persistent-sqlite < 0 + # - sydtest-wai < 0 + # - sydtest-yesod < 0 + # - systemd < 0 + # - tagged-transformer < 0 + # - tasty < 0 + # - tasty-dejafu < 0 + # - tasty-golden < 0 + # - tasty-silver < 0 + # - text-builder < 0 + # - text-printer < 0 + # - textlocal < 0 + # - th-orphans < 0 + # - th-printf < 0 + # - these-optics < 0 + # - throttle-io-stream < 0 + # - tinylog < 0 + # - tls < 0 + # - tls-debug < 0 + # - tls-session-manager < 0 + # - tlynx < 0 + # - tostring < 0 + # - tracing < 0 + # - tracing-control < 0 + # - typed-process < 0 + # - ua-parser < 0 + # - unagi-chan < 0 + # - unboxed-ref < 0 + # - unboxing-vector < 0 + # - uncertain < 0 + # - uniq-deep < 0 + # - unit-constraint < 0 + # - universe-instances-extended < 0 + # - unliftio < 0 + # - unliftio-pool < 0 + # - uri-bytestring-aeson < 0 + # - users < 0 + # - utf8-conversions < 0 + # - validity-aeson < 0 + # - validity-path < 0 + # - validity-persistent < 0 + # - validity-scientific < 0 + # - validity-uuid < 0 + # - vector-bytes-instances < 0 + # - vformat-aeson < 0 + # - wai < 0 + # - wai-app-static < 0 + # - wai-conduit < 0 + # - wai-cors < 0 + # - wai-enforce-https < 0 + # - wai-extra < 0 + # - wai-feature-flags < 0 + # - wai-handler-launch < 0 + # - wai-middleware-caching < 0 + # - wai-middleware-static < 0 + # - wai-rate-limit < 0 + # - wai-saml2 < 0 + # - wai-slack-middleware < 0 + # - wai-websockets < 0 + # - warp-tls < 0 + # - warp-tls-uid < 0 + # - webdriver < 0 + # - webex-teams-api < 0 + # - webex-teams-conduit < 0 + # - webex-teams-pipes < 0 + # - wss-client < 0 + # - wuss < 0 + # - xdg-desktop-entry < 0 + # - xml-conduit-writer < 0 + # - xml-hamlet < 0 + # - xmonad-contrib < 0 + # - yaml < 0 + # - yamlparse-applicative < 0 + # - yesod < 0 + # - yesod-auth-hashdb < 0 + # - yesod-auth-oauth2 < 0 + # - yesod-bin < 0 + # - yesod-core < 0 + # - yesod-fb < 0 + # - yesod-gitrev < 0 + # - yesod-markdown < 0 + # - yesod-newsfeed < 0 + # - yesod-page-cursor < 0 + # - yesod-persistent < 0 + # - yesod-sitemap < 0 + # - yesod-test < 0 + # - yesod-websockets < 0 + # - yi-rope < 0 + # - zeromq4-haskell < 0 + # - zeromq4-patterns < 0 + # - zip < 0 + # - ztail < 0 + # # next set of packages broken by packages above this line + # - Color < 0 + # - HsOpenSSL-x509-system < 0 + # - JuicyPixels-extra < 0 + # - QuasiText < 0 + # - Spintax < 0 + # - ace < 0 + # - async-refresh < 0 + # - async-refresh-tokens < 0 + # - attoparsec-base64 < 0 + # - attoparsec-binary < 0 + # - attoparsec-expr < 0 + # - attoparsec-iso8601 < 0 + # - base64-bytestring < 0 + # - binary-conduit < 0 + # - bitvec < 0 + # - board-games < 0 + # - boolean-like < 0 + # - byte-count-reader < 0 + # - bz2 < 0 + # - bzlib-conduit < 0 + # - cases < 0 + # - cereal-conduit < 0 + # - cmark-gfm < 0 + # - commonmark < 0 + # - commonmark-extensions < 0 + # - commonmark-pandoc < 0 + # - conduit-concurrent-map < 0 + # - conduit-parse < 0 + # - conduit-zstd < 0 + # - cpio-conduit < 0 + # - cpuinfo < 0 + # - cron < 0 + # - crypto-numbers < 0 + # - crypto-pubkey < 0 + # - cryptohash < 0 + # - cryptonite-conduit < 0 + # - css-text < 0 + # - cue-sheet < 0 + # - cursor-fuzzy-time < 0 + # - cursor-gen < 0 + # - data-serializer < 0 + # - dataurl < 0 + # - doclayout < 0 + # - dotenv < 0 + # - editor-open < 0 + # - elynx-nexus < 0 + # - errors-ext < 0 + # - essence-of-live-coding-gloss < 0 + # - essence-of-live-coding-pulse < 0 + # - fakedata-parser < 0 + # - filepattern < 0 + # - flat-mcmc < 0 + # - fold-debounce-conduit < 0 + # - frontmatter < 0 + # - fsnotify-conduit < 0 + # - fuzzy < 0 + # - fuzzy-time < 0 + # - generics-sop < 0 + # - genvalidity-bytestring < 0 + # - genvalidity-criterion < 0 + # - genvalidity-sydtest < 0 + # - genvalidity-sydtest-lens < 0 + # - genvalidity-text < 0 + # - genvalidity-time < 0 + # - ghcid < 0 + # - gi-cairo-connector < 0 + # - gi-cairo-render < 0 + # - gi-gtk-hs < 0 + # - gtk-strut < 0 + # - hadoop-streaming < 0 + # - haskell-src-meta < 0 + # - hexml < 0 + # - higher-leveldb < 0 + # - hjsmin < 0 + # - hkgr < 0 + # - hostname-validate < 0 + # - hp2pretty < 0 + # - hprotoc < 0 + # - hslua-module-doclayout < 0 + # - hslua-module-system < 0 + # - hslua-module-text < 0 + # - hspec-attoparsec < 0 + # - hspec-checkers < 0 + # - hspec-megaparsec < 0 + # - hw-conduit-merges < 0 + # - hweblib < 0 + # - imagesize-conduit < 0 + # - input-parsers < 0 + # - ip6addr < 0 + # - irc < 0 + # - language-protobuf < 0 + # - libyaml < 0 + # - llvm-hs < 0 + # - logging < 0 + # - makefile < 0 + # - mock-time < 0 + # - monad-logger < 0 + # - mysql-simple < 0 + # - neat-interpolation < 0 + # - network-uri < 0 + # - nix-derivation < 0 + # - openpgp-asciiarmor < 0 + # - pager < 0 + # - parser-combinators-tests < 0 + # - pipes-attoparsec < 0 + # - pipes-binary < 0 + # - pipes-fastx < 0 + # - pipes-http < 0 + # - pretty-relative-time < 0 + # - project-template < 0 + # - protocol-buffers-descriptor < 0 + # - qrcode-juicypixels < 0 + # - quickcheck-special < 0 + # - rampart < 0 + # - rcu < 0 + # - rdf < 0 + # - reform-hamlet < 0 + # - replace-attoparsec < 0 + # - replace-megaparsec < 0 + # - rhine-gloss < 0 + # - rocksdb-haskell-jprupp < 0 + # - rocksdb-query < 0 + # - safeio < 0 + # - seqid-streams < 0 + # - serf < 0 + # - ses-html < 0 + # - simple-cmd < 0 + # - simple-vec3 < 0 + # - skylighting < 0 + # - smallcheck < 0 + # - sqlite-simple < 0 + # - streaming-attoparsec < 0 + # - stripe-haskell < 0 + # - tagged-binary < 0 + # - tasty-bench < 0 + # - tasty-expected-failure < 0 + # - tasty-focus < 0 + # - tasty-hunit < 0 + # - tasty-hunit-compat < 0 + # - tasty-kat < 0 + # - tasty-leancheck < 0 + # - tasty-lua < 0 + # - tasty-program < 0 + # - tasty-quickcheck < 0 + # - tasty-rerun < 0 + # - tasty-smallcheck < 0 + # - tasty-test-reporter < 0 + # - tasty-th < 0 + # - tensors < 0 + # - terminal-progress-bar < 0 + # - texmath < 0 + # - text-ldap < 0 + # - text-regex-replace < 0 + # - th-utilities < 0 + # - thread-local-storage < 0 + # - thread-supervisor < 0 + # - time-manager < 0 + # - time-parsers < 0 + # - timerep < 0 + # - tldr < 0 + # - uniprot-kb < 0 + # - universe < 0 + # - unliftio-streams < 0 + # - urbit-hob < 0 + # - wai-eventsource < 0 + # - wikicfp-scraper < 0 + # - word-wrap < 0 + # - xeno < 0 + # - xss-sanitize < 0 + # - zenacy-html < 0 + # - zip-stream < 0 + # - zipper-extra < 0 + # - zstd < 0 + # # next set of packages broken by packages above this line + # - cgi < 0 + # - dotenv < 0 + # - frontmatter < 0 + # - getopt-generics < 0 + # - here < 0 + # - hspec-smallcheck < 0 + # - hxt < 0 + # - interpolatedstring-perl6 < 0 + # - language-c-quote < 0 + # - mixed-types-num < 0 + # - monad-logger-prefix < 0 + # - pretty-sop < 0 + # - qm-interpolated-string < 0 + # - sqlcli < 0 + # - sqlcli-odbc < 0 + # - test-framework-smallcheck < 0 + # - tuple-sop < 0 + # - uri-encode < 0 + # # next set of packages broken by packages above this line + # - epub-metadata < 0 + # - hxt-css < 0 + # - hxt-curl < 0 + # - hxt-expat < 0 + # - hxt-tagsoup < 0 + # - mime-mail < 0 + # - text-conversions < 0 + # # Following pass the constraint checks but fail at compile time + # - Decimal < 0 + # - HStringTemplate < 0 + # - barbies < 0 + # - basement < 0 + # - btrfs < 0 + # - bytestring-strict-builder < 0 + # - data-lens-light < 0 + # - drinkery < 0 + # - enum-subset-generate < 0 + # - generic-lens-core < 0 + # - hpc-codecov < 0 + # - hs-functors < 0 + # - lens-family < 0 + # - operational < 0 + # - partial-isomorphisms < 0 + # - rawfilepath < 0 + # - selective < 0 + # - th-data-compat < 0 + # - th-extras < 0 + # - traverse-with-class < 0 + # - vinyl < 0 + # - word24 < 0 + # # Blocked by packages in the above set + # - cryptonite < 0 + # - cryptonite-openssl < 0 + # - flexible-defaults < 0 + # - foundation < 0 + # - gauge < 0 + # - lenz < 0 + # - memory < 0 + # - operational-class < 0 + # - pem < 0 + # - persistable-record < 0 + # - product-isomorphic < 0 + # - random-source < 0 + # - relational-query-HDBC < 0 + # - time-lens < 0 + # # Blocked by packages in the above set + # - asn1-types < 0 + # - eap < 0 + # - hashing < 0 + # - locators < 0 + # - persistable-types-HDBC-pg < 0 + # - pkcs10 < 0 + # - protocol-radius < 0 + # - random-fu < 0 + # - relational-query < 0 + # - relational-record < 0 + # - rvar < 0 + # - securemem < 0 + # - x509 < 0 + # - x509-store < 0 + # - x509-system < 0 + # - x509-validation < 0 + # # Blocked by packages in the above set + # - asn1-encoding < 0 + # - asn1-parse < 0 + # - cipher-aes < 0 + # - cipher-camellia < 0 + # - cipher-des < 0 + # - crypto-cipher-types < 0 + # - crypto-pubkey-types < 0 + # - crypto-random < 0 + # - nettle < 0 + # - protocol-radius-test < 0 + # - relational-schemas < 0 + # # Blocked by packages in the above set + # - asn1-encoding < 0 + # - asn1-parse < 0 + # - cipher-aes < 0 + # - cipher-camellia < 0 + # - cipher-des < 0 + # - cipher-rc4 < 0 + # - cprng-aes < 0 + # - crypto-cipher-types < 0 + # - crypto-pubkey-types < 0 + # - crypto-random < 0 + # - nettle < 0 + # - protocol-radius-test < 0 + # - relational-schemas < 0 "Stackage upper bounds": # https://github.com/commercialhaskell/stackage/issues/5570 1.3 @@ -7111,73 +7111,73 @@ skipped-tests: - safeio # via test-framework-th - tzdata # via test-framework-th - # GHC 9.0.1 (mostly tasty or related) - - STMonadTrans - - asn1-encoding - - barbies - - blaze-markup - - bounded-queue - - cabal2spec - - casing - - compiler-warnings - - cookie - - countable - - cryptonite - - cryptonite-openssl - - csp - - cubicbezier - - data-bword - - di-core - - diagrams-solve - - dunai - - either-both - - fast-digits - - free-vl - - githash - - haskell-src-exts - - hourglass - - hpc-codecov - - hsini - - immortal - - jira-wiki-markup - - language-java - - math-functions - - matrices - - matrix - - monad-loops - - nondeterminism - - paripari - - parsec-numeric - - pkcs10 - - pretty-diff - - primitive - - quickcheck-higherorder - - quote-quot - - regex-applicative - - rope-utf16-splay - - say - - selective - - sitemap-gen - - streaming-bytestring - - string-transform - - structs - - syb - - temporary - - test-fun - - text-manipulate - - titlecase - - traverse-with-class - - vector-rotcev - - vector-split - - wl-pprint-annotated - - x509 - - x509-store - - x509-validation - - xml-picklers - - xmlgen - # These fail to compile, despite passing bounds checks - - do-notation - - record-wrangler + ## GHC 9.0.1 (mostly tasty or related) + #- STMonadTrans + #- asn1-encoding + #- barbies + #- blaze-markup + #- bounded-queue + #- cabal2spec + #- casing + #- compiler-warnings + #- cookie + #- countable + #- cryptonite + #- cryptonite-openssl + #- csp + #- cubicbezier + #- data-bword + #- di-core + #- diagrams-solve + #- dunai + #- either-both + #- fast-digits + #- free-vl + #- githash + #- haskell-src-exts + #- hourglass + #- hpc-codecov + #- hsini + #- immortal + #- jira-wiki-markup + #- language-java + #- math-functions + #- matrices + #- matrix + #- monad-loops + #- nondeterminism + #- paripari + #- parsec-numeric + #- pkcs10 + #- pretty-diff + #- primitive + #- quickcheck-higherorder + #- quote-quot + #- regex-applicative + #- rope-utf16-splay + #- say + #- selective + #- sitemap-gen + #- streaming-bytestring + #- string-transform + #- structs + #- syb + #- temporary + #- test-fun + #- text-manipulate + #- titlecase + #- traverse-with-class + #- vector-rotcev + #- vector-split + #- wl-pprint-annotated + #- x509 + #- x509-store + #- x509-validation + #- xml-picklers + #- xmlgen + ## These fail to compile, despite passing bounds checks + #- do-notation + #- record-wrangler # other dep issues - Cabal # GHC 8.4 via base-orphans-0.7, base-orphans-0.7 @@ -7322,12 +7322,12 @@ skipped-tests: - xml-conduit-parse - yesod-test - # Fails to build with GHC 9.0.1 - - sydtest-servant # https://github.com/commercialhaskell/stackage/issues/5901 - - sydtest-persistent-sqlite # https://github.com/commercialhaskell/stackage/issues/5902 - - genvalidity-persistent # https://github.com/commercialhaskell/stackage/issues/5903 - - Color # https://github.com/commercialhaskell/stackage/issues/5904 - - sydtest-yesod # https://github.com/commercialhaskell/stackage/issues/5906 + ## Fails to build with GHC 9.0.1 + #- sydtest-servant # https://github.com/commercialhaskell/stackage/issues/5901 + #- sydtest-persistent-sqlite # https://github.com/commercialhaskell/stackage/issues/5902 + #- genvalidity-persistent # https://github.com/commercialhaskell/stackage/issues/5903 + #- Color # https://github.com/commercialhaskell/stackage/issues/5904 + #- sydtest-yesod # https://github.com/commercialhaskell/stackage/issues/5906 # Transitive outdated dependencies # These can also be checked for updates periodically. @@ -8032,13 +8032,13 @@ skipped-benchmarks: - xmlgen - yi-rope - # GHC 9.0.1 - - ghc-trace-events - - hourglass - - math-functions - - newtype-generics - - quote-quot - - say + ## GHC 9.0.1 + #- ghc-trace-events + #- hourglass + #- math-functions + #- newtype-generics + #- quote-quot + #- say # Transitive outdated dependencies # These packages From c6b065deac40d4e22548cfb9c958a7604c0d0039 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Mon, 8 Mar 2021 07:44:18 -0800 Subject: [PATCH 2494/2682] Remove `conferer*` bounds (#5896) --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 87ebb022..780fe0d8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4009,11 +4009,11 @@ packages: - map-syntax < 0 # GHC 8.4 via base-4.11.0.0 - heist < 0 # GHC 8.4 via map-syntax - snap < 0 # GHC 8.4 via base-4.11.0.0 - - conferer < 1.1 # https://github.com/commercialhaskell/stackage/issues/5896 + - conferer #- conferer-snap # Because snap - conferer-warp - - conferer-hspec < 1.1 # https://github.com/commercialhaskell/stackage/issues/5896 - - conferer-aeson < 1.1 # https://github.com/commercialhaskell/stackage/issues/5896 + - conferer-hspec + - conferer-aeson "Tim Humphries @thumphries": - transformers-either < 0 # via exceptions-0.10.0 From 51184c06e5372e014fcb3c5acc6bd4436da08895 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Mon, 8 Mar 2021 07:47:39 -0800 Subject: [PATCH 2495/2682] Add bounds for GHC 9 packages --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 780fe0d8..a9285a16 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -788,10 +788,10 @@ packages: "Digital Asset ": - ghc-lib - - ghc-lib-parser + - ghc-lib-parser < 9.0.1 # TODO(mihaimaruseac): Fix when switching to GHC 9.0.1 "Shayne Fletcher ": - - ghc-lib-parser-ex + - ghc-lib-parser-ex < 9 # TODO(mihaimaruseac): Fix when switching to GHC 9.0.1 "Karl Ostmo @kostmo": - perfect-hash-generator From 85616d3ddd69ed59adb4b43a55bd3fcd94b538e7 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Mon, 8 Mar 2021 07:49:31 -0800 Subject: [PATCH 2496/2682] Add bounds for GHC 9 packages --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a9285a16..bd36c0f1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -787,7 +787,7 @@ packages: - fuzzy "Digital Asset ": - - ghc-lib + - ghc-lib < 9.0.1 # TODO(mihaimaruseac): Fix when switching to GHC 9.0.1 - ghc-lib-parser < 9.0.1 # TODO(mihaimaruseac): Fix when switching to GHC 9.0.1 "Shayne Fletcher ": From dc2acd07c718bf2eb42483bd94f64f851db5fcda Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Mon, 8 Mar 2021 07:52:13 -0800 Subject: [PATCH 2497/2682] Upper bound `password{,-instances}` due to missing `password-types` (#5908) --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index bd36c0f1..ffa985ec 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2520,8 +2520,8 @@ packages: - envelope - from-sum - natural-transformation - - password - - password-instances + - password < 3 # https://github.com/commercialhaskell/stackage/issues/5908 + - password-instances < 3 # https://github.com/commercialhaskell/stackage/issues/5908 - pretty-simple - print-console-colors - read-env-var From 76328057fc5359ddb44eb6c4be06f71f18804fce Mon Sep 17 00:00:00 2001 From: 3kyro Date: Tue, 9 Mar 2021 09:21:18 +0100 Subject: [PATCH 2498/2682] Add keep-alive --- build-constraints.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ffa985ec..942a99f7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4523,7 +4523,10 @@ packages: "Samuel Gélineau @gelisam": - hint - recursion-schemes - + + "Kyriakos Papachrysanthou @3kyro": + - keep-alive + "Grandfathered dependencies": - Boolean - Decimal From 1e760142934a9c7d9dd38a304907fce45943b9bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6nke=20Hahn?= Date: Fri, 5 Mar 2021 20:29:09 -0500 Subject: [PATCH 2499/2682] re-enable generics-eot --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ffa985ec..74ab59cc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1764,7 +1764,7 @@ packages: - language-c-quote "Sönke Hahn @soenkehahn": - - generics-eot < 0 # via interpolate + - generics-eot - getopt-generics - graph-wrapper - string-conversions From d8e28a044b682b35c79530596e1bba76669b6d0e Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 9 Mar 2021 07:56:27 -0800 Subject: [PATCH 2500/2682] Upper bound `pandoc` (#5910) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 74ab59cc..2a6a1f87 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6870,6 +6870,9 @@ packages: - optics-core < 0.4 - optics-extra < 0.4 - optics-th < 0.4 + + # https://github.com/commercialhaskell/stackage/issues/5910 + - pandoc < 2.12 # end of packages # Package flags are applied to individual packages, and override the values of From d147949404831596b17575fa0f32e265d596a932 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 9 Mar 2021 08:08:48 -0800 Subject: [PATCH 2501/2682] Some fialing tests --- build-constraints.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2a6a1f87..463f007c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -7325,10 +7325,11 @@ skipped-tests: - xml-conduit-parse - yesod-test + - sydtest-servant # https://github.com/commercialhaskell/stackage/issues/5901 + - sydtest-persistent-sqlite # https://github.com/commercialhaskell/stackage/issues/5902 + - genvalidity-persistent # https://github.com/commercialhaskell/stackage/issues/5903 + ## Fails to build with GHC 9.0.1 - #- sydtest-servant # https://github.com/commercialhaskell/stackage/issues/5901 - #- sydtest-persistent-sqlite # https://github.com/commercialhaskell/stackage/issues/5902 - #- genvalidity-persistent # https://github.com/commercialhaskell/stackage/issues/5903 #- Color # https://github.com/commercialhaskell/stackage/issues/5904 #- sydtest-yesod # https://github.com/commercialhaskell/stackage/issues/5906 From a7ef53f5e96b74e858390e3e51ccb70e12728c6b Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 9 Mar 2021 08:14:00 -0800 Subject: [PATCH 2502/2682] Some fialing tests --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 463f007c..e2a026b0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -7327,11 +7327,11 @@ skipped-tests: - sydtest-servant # https://github.com/commercialhaskell/stackage/issues/5901 - sydtest-persistent-sqlite # https://github.com/commercialhaskell/stackage/issues/5902 + - sydtest-yesod # https://github.com/commercialhaskell/stackage/issues/5906 - genvalidity-persistent # https://github.com/commercialhaskell/stackage/issues/5903 ## Fails to build with GHC 9.0.1 #- Color # https://github.com/commercialhaskell/stackage/issues/5904 - #- sydtest-yesod # https://github.com/commercialhaskell/stackage/issues/5906 # Transitive outdated dependencies # These can also be checked for updates periodically. From 875c5a213350882233fe20e34d0ad877678e8dc2 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 9 Mar 2021 17:50:09 -0800 Subject: [PATCH 2503/2682] Another GHC 9.0.1 bound --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e2a026b0..b91e20c0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2670,7 +2670,7 @@ packages: - flac - flac-picture - forma - - ghc-syntax-highlighter + - ghc-syntax-highlighter < 9 - hspec-megaparsec - htaglib - html-entity-map From ed98c2a1201755cd79d2ab9d123209e16ae2974f Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 9 Mar 2021 17:55:26 -0800 Subject: [PATCH 2504/2682] Another GHC 9.0.1 bound --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b91e20c0..101dbd1a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2670,7 +2670,7 @@ packages: - flac - flac-picture - forma - - ghc-syntax-highlighter < 9 + - ghc-syntax-highlighter < 0.0.7 # GHC 9.0.1 bound - hspec-megaparsec - htaglib - html-entity-map From 1bf00e729255c87c0a49bb68b405290a9ab6fb25 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 9 Mar 2021 18:21:12 -0800 Subject: [PATCH 2505/2682] Switch to GHC 9.0.1 --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 101dbd1a..8ccb4940 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1,6 +1,6 @@ -ghc-major-version: "8.10" +ghc-major-version: "9.0" # new curator is supposed to use exact GHC version -ghc-version: "8.10.4" +ghc-version: "9.0.1" # This affects which version of the Cabal file format we allow. We # should ensure that this is always no greater than the version From dc014526ce3406cfbeebf6965441e606a0ee7076 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 9 Mar 2021 18:28:38 -0800 Subject: [PATCH 2506/2682] Try removing upper bound on `lens` as it is required for GHC 9.0.1 (#5874) --- build-constraints.yaml | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8ccb4940..aeb11d3a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1,6 +1,6 @@ -ghc-major-version: "9.0" +ghc-major-version: "8.10" # new curator is supposed to use exact GHC version -ghc-version: "9.0.1" +ghc-version: "8.10.4" # This affects which version of the Cabal file format we allow. We # should ensure that this is always no greater than the version @@ -5038,6 +5038,19 @@ packages: - Win32 == 2.6.1.0 #"Broken with GHC 9.0.1": + # # Cabal-3.4.0.0 but upper bounded to <3.3 + # - Agda < 0 + # - cabal-rpm < 0 + # - entropy < 0 + # - fixed-vector-hetero < 0 + # - lens < 0 + # - packdeps < 0 + # - pantry < 0 + # - proto-lens-setup < 0 + # - servant-openapi3 < 0 + # - servant-swagger < 0 + # - singletons < 0 + ##### old # - Agda < 0 # - HTTP < 0 # - HaXml < 0 @@ -6857,7 +6870,7 @@ packages: - constraints < 0.13 # https://github.com/commercialhaskell/stackage/issues/5874 - - lens < 5 + # lens < 5 # https://github.com/commercialhaskell/stackage/issues/5875 - heaps < 0.4 From e430047b540b270e22f6a0379e6cbf317203f2c2 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 9 Mar 2021 18:31:23 -0800 Subject: [PATCH 2507/2682] Try `pandoc` --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index aeb11d3a..20a21d3b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6869,8 +6869,8 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5873 - constraints < 0.13 - # https://github.com/commercialhaskell/stackage/issues/5874 - # lens < 5 + # https://github.com/commercialhaskell/stackage/issues/5911 + - lens < 5 # https://github.com/commercialhaskell/stackage/issues/5875 - heaps < 0.4 @@ -6885,7 +6885,7 @@ packages: - optics-th < 0.4 # https://github.com/commercialhaskell/stackage/issues/5910 - - pandoc < 2.12 + # pandoc < 2.12 # end of packages # Package flags are applied to individual packages, and override the values of From b26f1639e9cf0d66d07e277c3ed8192d723a73f3 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 9 Mar 2021 18:36:03 -0800 Subject: [PATCH 2508/2682] Try `optics` --- build-constraints.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 20a21d3b..8651584e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6879,13 +6879,13 @@ packages: - hashable < 1.3.1.0 # https://github.com/commercialhaskell/stackage/issues/5881 - - optics < 0.4 - - optics-core < 0.4 - - optics-extra < 0.4 - - optics-th < 0.4 + # optics < 0.4 + # optics-core < 0.4 + # optics-extra < 0.4 + # optics-th < 0.4 # https://github.com/commercialhaskell/stackage/issues/5910 - # pandoc < 2.12 + - pandoc < 2.12 # end of packages # Package flags are applied to individual packages, and override the values of From 41fbb4a16d9760b0f00844ef626887bca7726e59 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 9 Mar 2021 18:37:43 -0800 Subject: [PATCH 2509/2682] Try `hashable` --- build-constraints.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8651584e..edea5905 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6876,13 +6876,13 @@ packages: - heaps < 0.4 # https://github.com/commercialhaskell/stackage/issues/5878 - - hashable < 1.3.1.0 + # hashable < 1.3.1.0 # https://github.com/commercialhaskell/stackage/issues/5881 - # optics < 0.4 - # optics-core < 0.4 - # optics-extra < 0.4 - # optics-th < 0.4 + - optics < 0.4 + - optics-core < 0.4 + - optics-extra < 0.4 + - optics-th < 0.4 # https://github.com/commercialhaskell/stackage/issues/5910 - pandoc < 2.12 From 97b2551914cb4f1ffeb90195a1a8d036bc9e5392 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Tue, 9 Mar 2021 18:38:43 -0800 Subject: [PATCH 2510/2682] Add back `hashable` bound --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index edea5905..89f8bbe7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6876,7 +6876,7 @@ packages: - heaps < 0.4 # https://github.com/commercialhaskell/stackage/issues/5878 - # hashable < 1.3.1.0 + - hashable < 1.3.1.0 # https://github.com/commercialhaskell/stackage/issues/5881 - optics < 0.4 From 387f25ac93f61c3cfd6c99cda565e8aaa700083e Mon Sep 17 00:00:00 2001 From: 3kyro Date: Wed, 10 Mar 2021 12:43:50 +0100 Subject: [PATCH 2511/2682] Update build-constraints.yaml --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 942a99f7..6f663c7a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4523,6 +4523,7 @@ packages: "Samuel Gélineau @gelisam": - hint - recursion-schemes + "Kyriakos Papachrysanthou @3kyro": - keep-alive From b34618be8a7774d43c4aadc2747e31a08b5e9a4c Mon Sep 17 00:00:00 2001 From: 3kyro Date: Wed, 10 Mar 2021 12:52:29 +0100 Subject: [PATCH 2512/2682] Update build-constraints.yaml --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6f663c7a..8c9e6832 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4524,7 +4524,6 @@ packages: - hint - recursion-schemes - "Kyriakos Papachrysanthou @3kyro": - keep-alive From b6dc2f9804efb36591bff5243d5cae414ff71332 Mon Sep 17 00:00:00 2001 From: Ryan Scott Date: Wed, 10 Mar 2021 07:32:29 -0500 Subject: [PATCH 2513/2682] Add myself as a maintainer of indexed-traversable-instances Addresses one bullet point of #5881 and #5911. --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 89f8bbe7..dfeb00eb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2394,6 +2394,7 @@ packages: - eliminators - generic-deriving - hashmap + - indexed-traversable-instances - invariant - keycode - lift-generics From d409d3544deeaae6a75e9b4fb185705587685fd5 Mon Sep 17 00:00:00 2001 From: Andreas Abel Date: Wed, 10 Mar 2021 20:00:01 +0100 Subject: [PATCH 2514/2682] Add new package fix-whitespace --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 89f8bbe7..162ff42c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -29,6 +29,7 @@ packages: - agda2lagda - ListLike - haskell-src + - fix-whitespace "Diogo Biazus ": - hasql-notifications From 36fa1b1cbd2e6474af7342c08de1559be5aaa362 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 10 Mar 2021 19:06:08 -0800 Subject: [PATCH 2515/2682] Disable `hledge-interest` (#5915) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 89f8bbe7..d2105364 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2611,7 +2611,7 @@ packages: - flexible-defaults - funcmp - hackage-db - - hledger-interest + - hledger-interest < 0 # https://github.com/commercialhaskell/stackage/issues/5915, see node on hledger - hopenssl - hsdns - hsemail From bdf109a366448eb19069f76581e007b99e6f4c03 Mon Sep 17 00:00:00 2001 From: patrick brisbin Date: Thu, 11 Mar 2021 06:29:06 -0500 Subject: [PATCH 2516/2682] Re-enable graphula This was waiting on generics-eot, recently re-enabled. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d2105364..61073eb0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1076,7 +1076,7 @@ packages: - bcp47 - bcp47-orphans - faktory - - graphula < 0 # generics-eot + - graphula - hspec-expectations-json - yesod-page-cursor From d017cf232a2bf9cce420339dcaafa8fb46a9e2b7 Mon Sep 17 00:00:00 2001 From: Mark Karpov Date: Thu, 11 Mar 2021 16:15:38 +0100 Subject: [PATCH 2517/2682] Re-enable testing of mmark and mmark-ext I believe I have fixed the test suites. New versions of the packages have been released. --- build-constraints.yaml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d2105364..c3bc96ad 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -7830,12 +7830,6 @@ expected-test-failures: # https://github.com/commercialhaskell/stackage/issues/5841 - dbus - # https://github.com/mmark-md/mmark-ext/issues/20 - - mmark-ext - - # https://github.com/mmark-md/mmark/issues/76 - - mmark - # https://github.com/unrelentingtech/hspec-expectations-pretty-diff/issues/7 - hspec-expectations-pretty-diff From 98a89a2e385a114d726af2de09cc0b4865ffd7af Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 11 Mar 2021 07:47:31 -0800 Subject: [PATCH 2518/2682] Expect test failures (#5918, #5919) --- build-constraints.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d2105364..a3c6f2b4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -7839,6 +7839,12 @@ expected-test-failures: # https://github.com/unrelentingtech/hspec-expectations-pretty-diff/issues/7 - hspec-expectations-pretty-diff + # https://github.com/commercialhaskell/stackage/issues/5918 + - hakyll-convert + + # https://github.com/commercialhaskell/stackage/issues/5919 + - hledger-iadd + # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From a5b4dc3d5fc40ef725404b0b681dcb039470e6c2 Mon Sep 17 00:00:00 2001 From: Michael Gilliland Date: Thu, 11 Mar 2021 23:05:48 -0500 Subject: [PATCH 2519/2682] add nonempty-zipper --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index a3c6f2b4..2f08ee25 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1079,6 +1079,10 @@ packages: - graphula < 0 # generics-eot - hspec-expectations-json - yesod-page-cursor + + "Michael Gilliland @mjgpy3": + # Freckle packages I'm maintaining for us + - nonempty-zipper "Felipe Lessa @meteficha": - fb From dea86b2d610fe801338eb1bc2aaf7d678c071602 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 12 Mar 2021 18:46:50 -0800 Subject: [PATCH 2520/2682] Try upper bounding relude (#5921) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a3c6f2b4..7cf1235c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3753,7 +3753,7 @@ packages: - ilist - life-sync - membrain - - relude + - relude < 1 - shellmet - shortcut-links - summoner < 0 # neat-interpolation-0.4 From 14bcf780f1e70f8535b5c38f9adfd8693683ebd7 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 12 Mar 2021 18:52:15 -0800 Subject: [PATCH 2521/2682] Upper bound `eliminators` (#5922) --- build-constraints.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7cf1235c..5a324405 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3753,7 +3753,7 @@ packages: - ilist - life-sync - membrain - - relude < 1 + - relude < 1 # cabal version/parsing issue: https://github.com/commercialhaskell/stackage/issues/5921 - shellmet - shortcut-links - summoner < 0 # neat-interpolation-0.4 @@ -6886,6 +6886,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5910 - pandoc < 2.12 + + # https://github.com/commercialhaskell/stackage/issues/5922 + - eliminators < 0.8 # end of packages # Package flags are applied to individual packages, and override the values of From ecd8a856627b72a74ce4591502141bebcf46cf70 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 12 Mar 2021 18:54:36 -0800 Subject: [PATCH 2522/2682] Upper bound `singleton-nats` (#5923) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5a324405..9897b729 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6889,6 +6889,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5922 - eliminators < 0.8 + + # https://github.com/commercialhaskell/stackage/issues/5923 + - singleton-nats < 0.4.6 # end of packages # Package flags are applied to individual packages, and override the values of From f2c4321d95428a5567f989d1e8974564e71877d5 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 12 Mar 2021 18:59:26 -0800 Subject: [PATCH 2523/2682] Upper bound `singletons` (#5924) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9897b729..c7c72c51 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6892,6 +6892,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5923 - singleton-nats < 0.4.6 + + # https://github.com/commercialhaskell/stackage/issues/5924 + - singletons # end of packages # Package flags are applied to individual packages, and override the values of From dbafc9cf1d4bf2a488cf1468179daab39094ea64 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 12 Mar 2021 19:01:52 -0800 Subject: [PATCH 2524/2682] Actually add the upper bound --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c7c72c51..c8755938 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6894,7 +6894,7 @@ packages: - singleton-nats < 0.4.6 # https://github.com/commercialhaskell/stackage/issues/5924 - - singletons + - singletons < 3 # end of packages # Package flags are applied to individual packages, and override the values of From aae03809f7d5e21302451ed0817523a33cd36659 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 12 Mar 2021 19:04:48 -0800 Subject: [PATCH 2525/2682] Upper bound `th-desugar` (#5925) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index c8755938..ce47022d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6895,6 +6895,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5924 - singletons < 3 + + # https://github.com/commercialhaskell/stackage/issues/5925 + - th-desugar < 1.12 # end of packages # Package flags are applied to individual packages, and override the values of From 0b909c7ac6046544ae83f6bf67b6e457775405e7 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 12 Mar 2021 19:07:47 -0800 Subject: [PATCH 2526/2682] Upper bound `clash-prelude` (#5926) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ce47022d..09ff2ae5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6898,6 +6898,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5925 - th-desugar < 1.12 + + # https://github.com/commercialhaskell/stackage/issues/5926 + - clash-prelude < 1.4 # end of packages # Package flags are applied to individual packages, and override the values of From b50370f5500c1f7cab72d3c89d876ed15c9735bc Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 12 Mar 2021 19:08:59 -0800 Subject: [PATCH 2527/2682] Upper bound `hedgehog` (#5927) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 09ff2ae5..e1ad8c85 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6901,6 +6901,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5926 - clash-prelude < 1.4 + + # https://github.com/commercialhaskell/stackage/issues/5927 + - hedgehog < 1.0.5 # end of packages # Package flags are applied to individual packages, and override the values of From 76927c094f53ae9dce6d4d014b46b77aecd1d360 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Fri, 12 Mar 2021 19:12:31 -0800 Subject: [PATCH 2528/2682] More bounds for #5926 --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index e1ad8c85..3a80ec60 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6901,6 +6901,8 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5926 - clash-prelude < 1.4 + - clash-ghc < 1.4 + - clash-lib < 1.4 # https://github.com/commercialhaskell/stackage/issues/5927 - hedgehog < 1.0.5 From 093cc693e60ce77daed806e1894539ed5b4d25cd Mon Sep 17 00:00:00 2001 From: James Sully Date: Sat, 13 Mar 2021 20:38:47 +1100 Subject: [PATCH 2529/2682] Add buttplug-hs-core --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3a80ec60..434bea38 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -9,6 +9,9 @@ cabal-format-version: "3.0" # Constraints for brand new builds packages: + "James Sully @sullyj3": + - buttplug-hs-core + "Manuel Schneckenreither @schnecki": - experimenter - api-maker From cf77995b0987fb537f264a9b0fef9ed2ebeadb4e Mon Sep 17 00:00:00 2001 From: Ryan Scott Date: Sat, 13 Mar 2021 07:48:27 -0500 Subject: [PATCH 2530/2682] Add myself as the maintainer of singletons-{base,th} In addition, constrain both of these packages to `< 0` due to #5923. --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3a80ec60..c33cd36e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2405,6 +2405,8 @@ packages: - proxied - rdtsc - singleton-nats + - singletons-base + - singletons-th - text-show - text-show-instances - th-abstraction @@ -6892,6 +6894,8 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5923 - singleton-nats < 0.4.6 + - singletons-base < 0 + - singletons-th < 0 # https://github.com/commercialhaskell/stackage/issues/5924 - singletons < 3 From eb4f7ace24f8a07c0110594eab5ceb87af9c763d Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sat, 13 Mar 2021 14:38:29 +0100 Subject: [PATCH 2531/2682] verify-package: Don't include subdirs --- verify-package | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/verify-package b/verify-package index 10ebb7bd..4d3734c7 100755 --- a/verify-package +++ b/verify-package @@ -34,7 +34,7 @@ cd "$dir" stack unpack "$package" cd "$(ls | head -n 1)" rm -f stack.yaml -stack init --resolver nightly +stack init --resolver nightly --ignore-subdirs stack build --resolver nightly --haddock --test --bench --no-run-benchmarks From a74e2c0ccb37ed767d25ce887ca94321f9822ce5 Mon Sep 17 00:00:00 2001 From: Brandon Chinn Date: Sat, 13 Mar 2021 11:41:22 -0800 Subject: [PATCH 2532/2682] Add fourmolu --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3a80ec60..b33591c5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4341,6 +4341,7 @@ packages: "Brandon Chinn @brandonchinn178": - resourcet-pool - persistent-mtl + - fourmolu "Akshay Mankar @akshaymankar": - jsonpath From 1d818cad147f5d97f7f4be301ac5bb036a45b2ab Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 13 Mar 2021 16:45:32 -0800 Subject: [PATCH 2533/2682] Upper bound `mmark` (#5878) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3a80ec60..823522a1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6877,6 +6877,7 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5878 - hashable < 1.3.1.0 + - mmark < 0.0.7.3 # https://github.com/commercialhaskell/stackage/issues/5881 - optics < 0.4 From e5d800a9ab65e702faf0ce80fd3ca6a674192c4a Mon Sep 17 00:00:00 2001 From: Brooklyn Zelenka Date: Sat, 13 Mar 2021 23:54:42 -0800 Subject: [PATCH 2534/2682] Add rescue --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 89f8bbe7..1acc5b15 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4524,6 +4524,9 @@ packages: - hint - recursion-schemes + "Brooklyn Zelenka @expede": + - rescue + "Grandfathered dependencies": - Boolean - Decimal From 939eb7fd4391d4baffc1c8a386ab4a78988b648e Mon Sep 17 00:00:00 2001 From: Alexander Batischev Date: Sun, 14 Mar 2021 17:10:24 +0300 Subject: [PATCH 2535/2682] Re-enable hakyll The incompatibility has been fixed in https://github.com/jaspervdj/hakyll/pull/826 which is released as part of hakyll-4.14.0.0. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 823522a1..1e9f40e1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -821,7 +821,7 @@ packages: - psqueues - websockets - websockets-snap - - hakyll < 0 # via pandoc-citeproc + - hakyll "Sibi Prabakaran @psibi": - download From 7a53c34090b203c4ba180421e8e0949910a1e707 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 14 Mar 2021 09:19:39 -0700 Subject: [PATCH 2536/2682] Test hashable --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 823522a1..f46721ab 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6876,8 +6876,8 @@ packages: - heaps < 0.4 # https://github.com/commercialhaskell/stackage/issues/5878 - - hashable < 1.3.1.0 - - mmark < 0.0.7.3 + # hashable < 1.3.1.0 + # mmark < 0.0.7.3 # https://github.com/commercialhaskell/stackage/issues/5881 - optics < 0.4 From 07891f32388abf50f02da9b7f35362f7a9431e2d Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sun, 14 Mar 2021 09:28:04 -0700 Subject: [PATCH 2537/2682] Restore bounds for `hashable` (#5878) --- build-constraints.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f46721ab..eaf8cc38 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6876,8 +6876,9 @@ packages: - heaps < 0.4 # https://github.com/commercialhaskell/stackage/issues/5878 - # hashable < 1.3.1.0 - # mmark < 0.0.7.3 + - hashable < 1.3.1.0 + - mmark < 0.0.7.3 + - tomland < 1.3.3 # https://github.com/commercialhaskell/stackage/issues/5881 - optics < 0.4 From b48ecb5d166ecd69c5340e9b2f71437aa135e63b Mon Sep 17 00:00:00 2001 From: Harendra Kumar Date: Sat, 13 Mar 2021 15:08:35 +0530 Subject: [PATCH 2538/2682] Enable streamly --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index eaf8cc38..1182e1fb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -603,7 +603,7 @@ packages: - bench-show < 0 # via optparse-applicative-0.15.1.0 - monad-recorder < 0 # compilation failure - packcheck - - streamly < 0 # primitive 0.7.1.0 + - streamly - unicode-transforms - xls < 0 # https://github.com/harendra-kumar/xls/issues/7 From a96f486634ff45c3338ed59819efc9d73536e2d6 Mon Sep 17 00:00:00 2001 From: Henning Thielemann Date: Mon, 15 Mar 2021 10:14:02 +0100 Subject: [PATCH 2539/2682] add doctest-extract --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index eaf8cc38..16783403 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -426,6 +426,7 @@ packages: - data-accessor-transformers - data-ref - doctest-exitcode-stdio + - doctest-extract - doctest-lib - dsp - enumset From 2eec0457b6444f9cc212f5ab6645aad338a523a3 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 15 Mar 2021 13:30:38 +0100 Subject: [PATCH 2540/2682] hlint < 3.3 until we switch to GHC 9 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index eaf8cc38..0984dfc2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -764,7 +764,7 @@ packages: - squeather "Neil Mitchell @ndmitchell": - - hlint + - hlint < 3.3 # TODO(mihaimaruseac): Fix when switching to GHC 9.0.1 - hoogle - shake - tagsoup From 99a10c9bf2cbf5148bbc28ca4e0d979d07b9faaf Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 15 Mar 2021 13:32:22 +0100 Subject: [PATCH 2541/2682] dyre < 0.9.0 for #5937 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0984dfc2..3f94afc5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6908,6 +6908,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5927 - hedgehog < 1.0.5 + + # https://github.com/commercialhaskell/stackage/issues/5937 + - dyre < 0.9.0 # end of packages # Package flags are applied to individual packages, and override the values of From 79ce528b82964c09bf1a9edeb2dbd86015581faa Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 15 Mar 2021 16:39:30 +0100 Subject: [PATCH 2542/2682] Upgrade to tasty 1.4.1, closes #5570, closes #5795 --- build-constraints.yaml | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 86f2564a..a474a6ee 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4108,9 +4108,7 @@ packages: "Sergey Vinokurov @sergv": - bencoding < 0 # via bencode - emacs-module < 0 # ghc 8.10.1 #5436/closed - # https://github.com/commercialhaskell/stackage/issues/5820 - # via https://github.com/commercialhaskell/stackage/issues/5795 1.4 - - tasty-ant-xml < 1.1.8 + - tasty-ant-xml "Eugene Smolanka @esmolanka": - sexp-grammar @@ -6778,11 +6776,6 @@ packages: # - relational-schemas < 0 "Stackage upper bounds": - # https://github.com/commercialhaskell/stackage/issues/5570 1.3 - # https://github.com/commercialhaskell/stackage/issues/5795 1.4 - - tasty < 1.3 - - tasty-golden < 2.3.3.3 - - tasty-silver < 3.2 # https://github.com/commercialhaskell/stackage/issues/5587 - network < 3.1.2.0 @@ -7082,6 +7075,13 @@ skipped-tests: - static-text # ghc 8.10 - monad-par # ghc 8.10 - avers # via base16-bytestring https://github.com/commercialhaskell/stackage/issues/5649 + - binary-instances # tasty 1.4 + - ftp-client # tasty 1.4 + - ginger # tasty 1.4 + - hakyll # tasty 1.4 + - pandoc # tasty 1.4 + - primitive # tasty 1.4 + - proto3-wire # tasty 1.4 # test-framework per ghc 8.8 - extensible-effects # via test-framework @@ -7533,9 +7533,6 @@ skipped-tests: # https://github.com/commercialhaskell/stackage/issues/5746 - parameterized - # via tasty-1.4 https://github.com/commercialhaskell/stackage/issues/5795 - - lukko - # via vector-0.12.2 https://github.com/commercialhaskell/stackage/issues/5851 - lens From df2e19033d5bddb9195ad56d844d004f94e68658 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 15 Mar 2021 16:49:42 +0100 Subject: [PATCH 2543/2682] Remove hedgehog upper bound and close #5927 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a474a6ee..d16aee2f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6919,9 +6919,6 @@ packages: - clash-ghc < 1.4 - clash-lib < 1.4 - # https://github.com/commercialhaskell/stackage/issues/5927 - - hedgehog < 1.0.5 - # https://github.com/commercialhaskell/stackage/issues/5937 - dyre < 0.9.0 # end of packages From 3ba05df2e97c346dff9004965585b787636ccd85 Mon Sep 17 00:00:00 2001 From: Martijn Bastiaan Date: Mon, 15 Mar 2021 17:06:27 +0100 Subject: [PATCH 2544/2682] Add GitHub handle to QBayLogic B.V. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d16aee2f..5b128b93 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2116,7 +2116,7 @@ packages: - text-ansi - timer-wheel - "QBayLogic B.V. ": + "QBayLogic B.V. @martijnbastiaan": - ghc-tcplugins-extra - ghc-typelits-extra - ghc-typelits-knownnat From db6f9a9c87d03eb537625f83dc2b9562edfe06f9 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 15 Mar 2021 17:07:57 +0100 Subject: [PATCH 2545/2682] hspec-golden-aeson upper bound for #5878 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d16aee2f..d4f5e965 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6890,6 +6890,7 @@ packages: - hashable < 1.3.1.0 - mmark < 0.0.7.3 - tomland < 1.3.3 + - hspec-golden-aeson < 0.9.0.0 # https://github.com/commercialhaskell/stackage/issues/5881 - optics < 0.4 From 8e3c7d2f86ab853f082e554a8934e66ee8464d13 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 15 Mar 2021 17:51:43 +0100 Subject: [PATCH 2546/2682] Re-enable hledger-iadd tests and close #5919 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 062963f5..746b4270 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -7876,9 +7876,6 @@ expected-test-failures: # https://github.com/commercialhaskell/stackage/issues/5918 - hakyll-convert - # https://github.com/commercialhaskell/stackage/issues/5919 - - hledger-iadd - # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From ff559f2ec2faec0ed74b038c19cde3ff06db7dca Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 15 Mar 2021 17:52:31 +0100 Subject: [PATCH 2547/2682] Re-enable hakyll-convert tests and close #5918 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 746b4270..d75b8d99 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -7873,9 +7873,6 @@ expected-test-failures: # https://github.com/unrelentingtech/hspec-expectations-pretty-diff/issues/7 - hspec-expectations-pretty-diff - # https://github.com/commercialhaskell/stackage/issues/5918 - - hakyll-convert - # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 50a69c54d8c0e99ada608243a00cdfa7efed8129 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 15 Mar 2021 17:53:58 +0100 Subject: [PATCH 2548/2682] Re-enable hledger-interest and close #5915 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d75b8d99..f85e63fb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2623,7 +2623,7 @@ packages: - flexible-defaults - funcmp - hackage-db - - hledger-interest < 0 # https://github.com/commercialhaskell/stackage/issues/5915, see node on hledger + - hledger-interest - hopenssl - hsdns - hsemail From 0532c1e16c62ba9a44a0ad74f42eae2a8268aba0 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 15 Mar 2021 18:01:45 +0100 Subject: [PATCH 2549/2682] Update mysql and close #5891 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f85e63fb..e20a1a03 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1433,7 +1433,7 @@ packages: - wai-middleware-caching-redis < 0 # GHC 8.4 via hedis "Paul Rouse @paul-rouse": - - mysql < 0.2 # https://github.com/commercialhaskell/stackage/issues/5891 + - mysql - mysql-simple - sphinx < 0 # Could not find module Network - xmlhtml < 0 # GHC 8.4 via hspec-2.5.0 From f4b5cf28a486e7fdf62f0c24704a96c389d80712 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 15 Mar 2021 18:21:44 +0100 Subject: [PATCH 2550/2682] Move dbus upper bound to #5587, closes #5846 --- build-constraints.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e20a1a03..8a7e3f59 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6779,6 +6779,7 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5587 - network < 3.1.2.0 + - dbus < 1.2.18 # https://github.com/commercialhaskell/stackage/issues/5349 - typed-uuid < 0.1.0.0 @@ -6859,9 +6860,6 @@ packages: - generic-lens-core < 2.1.0.0 - generic-optics < 2.1.0.0 - # https://github.com/commercialhaskell/stackage/issues/5846 - - dbus < 1.2.18 - # https://github.com/commercialhaskell/stackage/issues/5849 - cryptonite < 0.28 From 5f70e38d0f74186cd0476215d7f239f9226cfa06 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 15 Mar 2021 18:34:36 +0100 Subject: [PATCH 2551/2682] Move dbus test to #5587, closes #5841 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8a7e3f59..4b096f25 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -7865,7 +7865,7 @@ expected-test-failures: # https://github.com/commercialhaskell/stackage/issues/5833 - duration - # https://github.com/commercialhaskell/stackage/issues/5841 + # https://github.com/commercialhaskell/stackage/issues/5587 - dbus # https://github.com/unrelentingtech/hspec-expectations-pretty-diff/issues/7 From d513a83e633686925c763bee8d1780a277e45988 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 15 Mar 2021 18:41:00 +0100 Subject: [PATCH 2552/2682] Add hslua-module-path, upgrade pandoc, disable haskyll. Closes #5910. Reverts #5933 --- build-constraints.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4b096f25..37e10fa9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -826,7 +826,7 @@ packages: - psqueues - websockets - websockets-snap - - hakyll + - hakyll < 0 # outdated dependencies "Sibi Prabakaran @psibi": - download @@ -3657,6 +3657,7 @@ packages: - hslua < 1.3.0 # https://github.com/commercialhaskell/stackage/issues/5700 - hslua-aeson - hslua-module-doclayout + - hslua-module-path - hslua-module-system - hslua-module-text - jira-wiki-markup @@ -6896,9 +6897,6 @@ packages: - optics-extra < 0.4 - optics-th < 0.4 - # https://github.com/commercialhaskell/stackage/issues/5910 - - pandoc < 2.12 - # https://github.com/commercialhaskell/stackage/issues/5922 - eliminators < 0.8 From e4a91574624a4cd2d6e2f03c55342884191c0339 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 15 Mar 2021 18:50:27 +0100 Subject: [PATCH 2553/2682] Un-expect duration test failure, closing #5833 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 37e10fa9..36e9c6aa 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -7860,9 +7860,6 @@ expected-test-failures: # https://github.com/commercialhaskell/stackage/issues/5832 - jose-jwt - # https://github.com/commercialhaskell/stackage/issues/5833 - - duration - # https://github.com/commercialhaskell/stackage/issues/5587 - dbus From ed2aa50e091c6f0f9e8c386696dd513d58cd8df5 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 15 Mar 2021 18:51:24 +0100 Subject: [PATCH 2554/2682] Re-enable jose-jewt tests, closes #5832 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 36e9c6aa..93aa8cdf 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -7857,9 +7857,6 @@ expected-test-failures: - xml-indexed-cursor - yesod-paginator - # https://github.com/commercialhaskell/stackage/issues/5832 - - jose-jwt - # https://github.com/commercialhaskell/stackage/issues/5587 - dbus From 14829c8739815226f04a3789aaf3a9c4456c4866 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 15 Mar 2021 18:54:01 +0100 Subject: [PATCH 2555/2682] Re-enable unification-fd, closes #5827 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 93aa8cdf..4c414bb5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2033,7 +2033,7 @@ packages: - hxt-tagsoup - hexpat - digits - - unification-fd < 0 # https://github.com/commercialhaskell/stackage/issues/5827 + - unification-fd - logict - leveldb-haskell - system-argv0 From 6202a82064b17c2c918881ae3da08689630c47ad Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 15 Mar 2021 18:54:48 +0100 Subject: [PATCH 2556/2682] Remove unification-fd from @sinelaw --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4c414bb5..c40a1cba 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2033,7 +2033,6 @@ packages: - hxt-tagsoup - hexpat - digits - - unification-fd - logict - leveldb-haskell - system-argv0 From 1fc628756e6b4cf81f78184e6d9ea06a3ccc7d95 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 15 Mar 2021 19:17:19 +0100 Subject: [PATCH 2557/2682] Upgrade hsshellscript and close #5817 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c40a1cba..932f0f1f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -501,7 +501,7 @@ packages: - cabal-plan - topograph - ix-shapable - - hsshellscript < 3.5.0 # https://github.com/commercialhaskell/stackage/issues/5817 + - hsshellscript - hyper - storable-endian From 07c9ba985ccf63cb39fc2d20d8817cf2bbc2a97c Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 15 Mar 2021 19:21:10 +0100 Subject: [PATCH 2558/2682] Re-enable yesod-page-cursor tests, closes #5813 --- build-constraints.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 932f0f1f..b97595f8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -7324,7 +7324,6 @@ skipped-tests: - persistent-postgresql # https://github.com/commercialhaskell/stackage/issues/5641 - persistent-sqlite # https://github.com/commercialhaskell/stackage/issues/5641 - vector-circular # (verified requires missing hedgehog-classes) https://github.com/commercialhaskell/stackage/pull/5853#issuecomment-770394206 - - yesod-page-cursor # https://github.com/commercialhaskell/stackage/issues/5813 # Blocked due to tests failing to compile for GHC 8.6 - async-refresh @@ -7739,7 +7738,6 @@ expected-test-failures: - massiv - http-conduit # https://github.com/commercialhaskell/stackage/issues/5771 - hgeometry # https://github.com/commercialhaskell/stackage/issues/5777 - - yesod-page-cursor # https://github.com/freckle/yesod-page-cursor/issues/20 - string-random # https://github.com/hiratara/hs-string-random/issues/16 - email-validate # https://github.com/Porges/email-validate-hs/issues/55 - heterocephalus # doctest requires hidden shakespeare and blaze-markup From 66cfe7ff20900f935270d18aa115308aff2bc072 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 15 Mar 2021 19:23:13 +0100 Subject: [PATCH 2559/2682] Close #5802 --- build-constraints.yaml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b97595f8..5c3d251b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2196,14 +2196,14 @@ packages: - backprop - bins - configurator-export - - decidable + - decidable < 0 # https://github.com/commercialhaskell/stackage/issues/5802 - emd < 0 # via typelits-witnesses - functor-products < 0 # https://github.com/mstksg/functor-products/issues/1 - hamilton < 0 # via vty - hmatrix-backprop - hmatrix-vector-sized - lens-typelevel < 0 # GHC 8.8 via ghc-typelits-presburger (konn/equational-reasoning-in-haskell#4) - - list-witnesses + - list-witnesses < 0 # https://github.com/commercialhaskell/stackage/issues/5817 - nonempty-containers - one-liner-instances - prompt @@ -6843,11 +6843,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5780 - structured-cli < 2.7 - # https://github.com/commercialhaskell/stackage/issues/5802 - - functor-products < 0 # https://github.com/mstksg/functor-products/issues/1 - - decidable < 0 - - list-witnesses < 0 - # https://github.com/commercialhaskell/stackage/issues/5834 - call-stack < 0.3.0 - HUnit < 1.6.2.0 From 84417c2125790747da21afc9ebad72cf29929b32 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 15 Mar 2021 19:25:02 +0100 Subject: [PATCH 2560/2682] Upgrade structured-cli, closes #5780 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5c3d251b..e346be10 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6840,9 +6840,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5765 - text-manipulate < 0.3 - # https://github.com/commercialhaskell/stackage/issues/5780 - - structured-cli < 2.7 - # https://github.com/commercialhaskell/stackage/issues/5834 - call-stack < 0.3.0 - HUnit < 1.6.2.0 From 8345698cc87dc4ef6d716fb2d6d631d3bc5b2134 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 15 Mar 2021 19:34:53 +0100 Subject: [PATCH 2561/2682] Re-enable http-conduit tests, closes #5771 --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e346be10..0aa92d02 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -7728,7 +7728,6 @@ expected-test-failures: - yesod-gitrev # https://github.com/DanBurton/yesod-gitrev/issues/5 - chronos # #5443/closed - massiv - - http-conduit # https://github.com/commercialhaskell/stackage/issues/5771 - hgeometry # https://github.com/commercialhaskell/stackage/issues/5777 - string-random # https://github.com/hiratara/hs-string-random/issues/16 - email-validate # https://github.com/Porges/email-validate-hs/issues/55 From 316e52c6957e410f1bcd18fb1a0b006558eacc81 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 15 Mar 2021 19:37:52 +0100 Subject: [PATCH 2562/2682] Upgrade text-manipulate, closes #5765 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0aa92d02..096a538c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6837,9 +6837,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5686 - formatting < 7 - # https://github.com/commercialhaskell/stackage/issues/5765 - - text-manipulate < 0.3 - # https://github.com/commercialhaskell/stackage/issues/5834 - call-stack < 0.3.0 - HUnit < 1.6.2.0 From 6dcbe645514765ad67ca6b8bb47ba14f178af0e5 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 15 Mar 2021 19:40:34 +0100 Subject: [PATCH 2563/2682] Upgrade microlens-*, closes #5749 --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 096a538c..36f82fc8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2465,11 +2465,11 @@ packages: - servant-JuicyPixels < 0 # ghc 8.10 via servant "Artyom Kazak @neongreen": - - microlens < 0.4.12 # https://github.com/commercialhaskell/stackage/issues/5749 - - microlens-platform < 0.4.2 # https://github.com/commercialhaskell/stackage/issues/5749 + - microlens + - microlens-platform - microlens-mtl - microlens-th - - microlens-ghc < 0.4.13 # https://github.com/commercialhaskell/stackage/issues/5749 + - microlens-ghc - microlens-contra - cheapskate-highlight - cheapskate-lucid From 7421339b31a8bc62fdfad1ad71878159cbef5efa Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 15 Mar 2021 19:47:33 +0100 Subject: [PATCH 2564/2682] Move http-client-openssl to #5747, closes #5748 --- build-constraints.yaml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 36f82fc8..44ea1a46 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -742,7 +742,7 @@ packages: - windns - mono-traversable - - http-client < 0.7 # https://github.com/commercialhaskell/stackage/issues/5747 + - http-client - http-conduit - githash @@ -3721,7 +3721,7 @@ packages: "Alex Biehl @alexbiehl": - haddock-library < 1.10 # https://github.com/commercialhaskell/stackage/issues/5890 - - http-client-openssl < 0.3.3 # https://github.com/commercialhaskell/stackage/issues/5748 + - http-client-openssl "Steven Vandevelde @icidasset": - shikensu @@ -6906,6 +6906,11 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5937 - dyre < 0.9.0 + + # https://github.com/commercialhaskell/stackage/issues/5747 + - http-client < 0.7 + - http-client-openssl < 0.3.3 + # end of packages # Package flags are applied to individual packages, and override the values of From a882baf4f82eec8e0939b7b778a19dfa1ab590f1 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 15 Mar 2021 20:04:07 +0100 Subject: [PATCH 2565/2682] Upgrade hslua, closes #5700 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 44ea1a46..cc41aa68 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3653,7 +3653,7 @@ packages: - algebraic-graphs "Albert Krewinkel @tarleb": - - hslua < 1.3.0 # https://github.com/commercialhaskell/stackage/issues/5700 + - hslua - hslua-aeson - hslua-module-doclayout - hslua-module-path From 90a13df2b9a651a35aad9e08085ca18c4735c307 Mon Sep 17 00:00:00 2001 From: Henning Thielemann Date: Mon, 15 Mar 2021 20:05:08 +0100 Subject: [PATCH 2566/2682] unrestrict hsshellscript version from 3.5.0 again (#5817) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 86f2564a..4efd8caa 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -501,7 +501,7 @@ packages: - cabal-plan - topograph - ix-shapable - - hsshellscript < 3.5.0 # https://github.com/commercialhaskell/stackage/issues/5817 + - hsshellscript - hyper - storable-endian From 6094c2c44864feb530b7b453dfc2903632934f21 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 15 Mar 2021 20:15:30 +0100 Subject: [PATCH 2567/2682] Reorder --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index cc41aa68..bdc24ba8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6822,13 +6822,13 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5633 - language-c < 0.9 + # https://github.com/commercialhaskell/stackage/issues/5666 + - generic-deriving < 1.14 + # https://github.com/commercialhaskell/stackage/issues/5667 - profunctors < 5.6 - free < 5.1.6 - # https://github.com/commercialhaskell/stackage/issues/5666 - - generic-deriving < 1.14 - # https://github.com/commercialhaskell/stackage/issues/5676 - haskell-lsp < 0.23 - haskell-lsp-types < 0.23 From 5e58343562f73d0bbb80e4890d7deb832cb543ae Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 15 Mar 2021 22:46:49 +0100 Subject: [PATCH 2568/2682] Remove hspec-wai-json upper bound, move and bump hspec-wai upper bound for #5940. Closes #5662 --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index bdc24ba8..e4b2b515 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1024,8 +1024,8 @@ packages: - hspec - hspec-core - hspec-discover - - hspec-wai < 0.11 # https://github.com/commercialhaskell/stackage/issues/5662 - - hspec-wai-json < 0.11 # https://github.com/commercialhaskell/stackage/issues/5662 + - hspec-wai < 0.11.1 # https://github.com/commercialhaskell/stackage/issues/5940 + - hspec-wai-json - aeson-qq - interpolate - doctest < 0.17 # https://github.com/commercialhaskell/stackage/issues/5574 From 929b2f0ad119305ce8fc91929514583986e2e277 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 15 Mar 2021 23:03:55 +0100 Subject: [PATCH 2569/2682] update network-uri bound to include later non-deprecated releases --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e4b2b515..7f595e53 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4793,7 +4793,7 @@ packages: - network-byte-order - network-info - network-ip - - network-uri < 2.7.0.0 # https://github.com/commercialhaskell/stackage/issues/5116 + - network-uri < 2.7.0.0 || > 2.7.0.0 # 2.7.0.0 was deprecated, don't remove bound until >2.7.0.0 is released. - newtype - nicify-lib - old-locale From 2228d992d155ee3554a6b827ab54289b327408c7 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 15 Mar 2021 23:13:07 +0100 Subject: [PATCH 2570/2682] Upgrade base16-bytestring, closes #5649 --- build-constraints.yaml | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7f595e53..3e85bfa9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -142,7 +142,7 @@ packages: "Matthieu Monsch @mtth": - flags-applicative - more-containers - - tracing + - tracing < 0 # base16-bytestring 1.0.0.0 "Robert Vollmert @robx": - configurator-pg @@ -313,7 +313,7 @@ packages: # - sessiontypes-distributed # lens 4.16 via diagrams "Jacob Thomas Errington @tsani": - - servant-github-webhook + - servant-github-webhook < 0 # base16-bytestring via github - pushbullet-types "Theodore Lief Gannon @tejon": @@ -4700,8 +4700,7 @@ packages: - ghc-compact < 0 # ghc 8.10 - ghc-paths - ghc-prof - - github - - github + - github < 0 # base16-bytestring 1.0.0.0 - groom - groups - hackage-security @@ -6859,11 +6858,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5867 - chronos < 1.1.2 - # https://github.com/commercialhaskell/stackage/issues/5649 - - base16-bytestring < 1 - - http2 < 2.0.6 - - casa-types < 0.0.2 - # https://github.com/commercialhaskell/stackage/issues/5873 - constraints < 0.13 From b143405b56f59cdb75bc8bf395b6a896217b8e6c Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 15 Mar 2021 23:25:20 +0100 Subject: [PATCH 2571/2682] Upgrade http-api-data but open #5941. Closes #5623 --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3e85bfa9..090ceafe 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6815,9 +6815,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5619 - http-link-header < 1.1 - # https://github.com/commercialhaskell/stackage/issues/5623 - - http-api-data < 0.4.2 - # https://github.com/commercialhaskell/stackage/issues/5633 - language-c < 0.9 @@ -6905,6 +6902,9 @@ packages: - http-client < 0.7 - http-client-openssl < 0.3.3 + # https://github.com/commercialhaskell/stackage/issues/5941 + - http-api-data < 0.4.3 + # end of packages # Package flags are applied to individual packages, and override the values of From 30984860bcdda86b227609576891395e84ad3ff8 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 15 Mar 2021 23:27:25 +0100 Subject: [PATCH 2572/2682] Order upper bound issue --- build-constraints.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 090ceafe..47692c1b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6833,6 +6833,10 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5686 - formatting < 7 + # https://github.com/commercialhaskell/stackage/issues/5747 + - http-client < 0.7 + - http-client-openssl < 0.3.3 + # https://github.com/commercialhaskell/stackage/issues/5834 - call-stack < 0.3.0 - HUnit < 1.6.2.0 @@ -6898,10 +6902,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5937 - dyre < 0.9.0 - # https://github.com/commercialhaskell/stackage/issues/5747 - - http-client < 0.7 - - http-client-openssl < 0.3.3 - # https://github.com/commercialhaskell/stackage/issues/5941 - http-api-data < 0.4.3 From 0a098f32b3691256002fae17f8c6bb5249849243 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 15 Mar 2021 23:30:17 +0100 Subject: [PATCH 2573/2682] Upgrade http-link-headry by disabling test suite. Closes #5619 --- build-constraints.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 47692c1b..cb5e2455 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6812,9 +6812,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5598 - base64-bytestring < 1.2 - # https://github.com/commercialhaskell/stackage/issues/5619 - - http-link-header < 1.1 - # https://github.com/commercialhaskell/stackage/issues/5633 - language-c < 0.9 @@ -7063,6 +7060,7 @@ skipped-tests: - pandoc # tasty 1.4 - primitive # tasty 1.4 - proto3-wire # tasty 1.4 + - http-link-header # QuickCheck 2.14.2 # test-framework per ghc 8.8 - extensible-effects # via test-framework From f9500a116c521e58e57f5dc858259b7f374fda0d Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 15 Mar 2021 23:39:20 +0100 Subject: [PATCH 2574/2682] MAINTAINERS.md: Deduplicate verify-package steps --- MAINTAINERS.md | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/MAINTAINERS.md b/MAINTAINERS.md index f4f6fd4f..748abf34 100644 --- a/MAINTAINERS.md +++ b/MAINTAINERS.md @@ -33,16 +33,8 @@ After doing that commit with a message like "add foo-bar" and send a pull reques The continuous integration job will do some checks to see if your package's dependencies are up-to-date. The CI job notably doesn't compile packages, run tests, build documentation, or find missing C libraries. -If you want to be proactive or if CI fails, you can make sure that your package builds against the latest nightly: - -``` -# Build from the tarball on Hackage to check for missing files -$ stack unpack yourpackage && cd yourpackage-* -# Generate a pristine stack.yaml, adding any missing extra-deps -$ rm -f stack.yaml && stack init --resolver nightly -# Build, generate docs, test, and build benchmarks -$ stack build --resolver nightly --haddock --test --bench --no-run-benchmarks -``` +If you want to be proactive or if CI fails, you can make sure that your package builds against the latest nightly. +See the [verify-package](https://github.com/commercialhaskell/stackage/blob/master/verify-package) script in this repository. This approach works well, but has two limitations you should be aware of: @@ -173,7 +165,7 @@ ending in `.0`), the package set is taken from Stackage Nightly. Therefore, by following the above steps, you can get your package into the next major LTS Haskell release. -If you would like to get your package added to the current LTS Haskell +If you would like to get your package added to the current LTS Haskell major release, please do the following in addition to the steps for Nightly described earlier: * Check that your package can be built with the current LTS version (e.g. `stack build --test --bench --haddock --resolver lts`) From 93f2d1f238f45b8da1157949622779228fceb017 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 15 Mar 2021 23:41:27 +0100 Subject: [PATCH 2575/2682] Note that pull request template needs to be updated to match verify-package --- .github/PULL_REQUEST_TEMPLATE.md | 4 ++-- verify-package | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 9a4c078e..91956a5f 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -7,7 +7,7 @@ Checklist: The script runs virtually the following commands in a clean directory: - stack unpack $package-$version # $version is optional + stack unpack $package-$version # `-$version` is optional cd $package-$version - rm -f stack.yaml && stack init --resolver nightly + rm -f stack.yaml && stack init --resolver nightly --ignore-subdirs stack build --resolver nightly --haddock --test --bench --no-run-benchmarks diff --git a/verify-package b/verify-package index 4d3734c7..f559cec0 100755 --- a/verify-package +++ b/verify-package @@ -30,6 +30,7 @@ exit() { } trap exit EXIT +# When updating these commands, make sure to update .github/PULL_REQUEST_TEMPLATE.md as well. cd "$dir" stack unpack "$package" cd "$(ls | head -n 1)" From 2d7cc6b9f436727feb06ae55ba6994b780bdcb97 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 15 Mar 2021 23:43:01 +0100 Subject: [PATCH 2576/2682] Try adding link in PR template --- .github/PULL_REQUEST_TEMPLATE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 91956a5f..812e4574 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -3,7 +3,7 @@ Checklist: - [ ] At least 30 minutes have passed since uploading to Hackage - [ ] On your own machine, you have successfully run the following command (replace `$package` with the name of the package that is submitted, and `$version` with the version of the package you want to get into Stackage): - ./verify-package $package # or $package-$version + ./[verify-package](https://github.com/commercialhaskell/stackage/blob/master/verify-package) $package # or $package-$version The script runs virtually the following commands in a clean directory: From 4f652d81490cec91c3f9547e6d00d476c6893119 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 15 Mar 2021 23:43:50 +0100 Subject: [PATCH 2577/2682] Revert "Try adding link in PR template" This reverts commit 2d7cc6b9f436727feb06ae55ba6994b780bdcb97. --- .github/PULL_REQUEST_TEMPLATE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 812e4574..91956a5f 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -3,7 +3,7 @@ Checklist: - [ ] At least 30 minutes have passed since uploading to Hackage - [ ] On your own machine, you have successfully run the following command (replace `$package` with the name of the package that is submitted, and `$version` with the version of the package you want to get into Stackage): - ./[verify-package](https://github.com/commercialhaskell/stackage/blob/master/verify-package) $package # or $package-$version + ./verify-package $package # or $package-$version The script runs virtually the following commands in a clean directory: From bfcd7c5d319c785e97e5d819338ed3fa54dfffd2 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 15 Mar 2021 23:44:54 +0100 Subject: [PATCH 2578/2682] Note location of verify-package, closes #5605 --- .github/PULL_REQUEST_TEMPLATE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 91956a5f..bc6667e5 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,7 +1,7 @@ Checklist: - [ ] Meaningful commit message, eg `add my-cool-package` (please not mention `build-constraints.yml`) - [ ] At least 30 minutes have passed since uploading to Hackage -- [ ] On your own machine, you have successfully run the following command (replace `$package` with the name of the package that is submitted, and `$version` with the version of the package you want to get into Stackage): +- [ ] On your own machine, you have successfully run the following command (find verify-package in the root of this repo): ./verify-package $package # or $package-$version From 2e64b46f9127f01bad7d9eb8888b8d6a7a080803 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 15 Mar 2021 23:52:05 +0100 Subject: [PATCH 2579/2682] Upgrade opetparse-applicative. Closes #5597 --- build-constraints.yaml | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index cb5e2455..5455634c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2049,7 +2049,7 @@ packages: - burrito - derulo - flow - - github-release + - github-release < 0 # optparse-applicative 0.16.1 - json-feed # - lackey # servant - list-singleton @@ -3082,7 +3082,7 @@ packages: - antiope-sns < 0 # ghc 8.10 via amazonka - antiope-sqs < 0 # ghc 8.10 via amazonka - arbor-lru-cache - - arbor-postgres + - arbor-postgres < 0 # optparse-applicative 0.16.1 - asif - avro - bits-extra @@ -3670,7 +3670,7 @@ packages: - proto-lens # disabled due to QuickCheck < 2.14 # - proto-lens-arbitrary - - proto-lens-optparse + - proto-lens-optparse < 0 # optparse-applicative 0.16.1 - tensorflow-test - pier-core < 0 - pier < 0 @@ -3763,7 +3763,7 @@ packages: - colourista - first-class-patterns - ilist - - life-sync + - life-sync < 0 # optparse-applicative 0.16.1 - membrain - relude < 1 # cabal version/parsing issue: https://github.com/commercialhaskell/stackage/issues/5921 - shellmet @@ -4344,7 +4344,7 @@ packages: "Brandon Chinn @brandon-leapyear": - aeson-schemas - github-rest - - graphql-client + - graphql-client < 0 # optparse-applicative 0.16.1 - hpc-lcov - th-test-utils @@ -6804,11 +6804,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5593 - proto3-wire < 1.2 - # https://github.com/commercialhaskell/stackage/issues/5597 - - optparse-applicative < 0.16 - - optparse-generic < 1.4 - - turtle < 1.5.21 - # https://github.com/commercialhaskell/stackage/issues/5598 - base64-bytestring < 1.2 From 39ce683cfdd5ce2a8a27447ac0aa5d5428d60c91 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 15 Mar 2021 23:56:43 +0100 Subject: [PATCH 2580/2682] Upgrade proto3-wire, closes #5593 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5455634c..8bbe08df 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6801,9 +6801,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5592 - ansi-terminal < 0.11 - # https://github.com/commercialhaskell/stackage/issues/5593 - - proto3-wire < 1.2 - # https://github.com/commercialhaskell/stackage/issues/5598 - base64-bytestring < 1.2 From 24324314fc5b488c1a02aff65b8ea793e1ee911b Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Tue, 16 Mar 2021 00:01:51 +0100 Subject: [PATCH 2581/2682] Upgrade ansi-terminal, closes #5592 --- build-constraints.yaml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8bbe08df..85423974 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3758,9 +3758,9 @@ packages: "Kowainik @chshersh @vrom911": - co-log-core - - co-log + - co-log < 0 # ansi-terminal 0.11 - co-log-polysemy < 0 - - colourista + - colourista < 0 # ansi-terminal 0.11 - first-class-patterns - ilist - life-sync < 0 # optparse-applicative 0.16.1 @@ -3800,7 +3800,7 @@ packages: - language-docker - docker-build-cacher < 0 # GHC 8.4 via turtle - mysql-haskell-nem < 0 # via io-streams - - hadolint + - hadolint < 0 # ansi-terminal 0.11 via colourista "Phil Ruffwind @Rufflewind": - blas-hs < 0 # MonadFail @@ -4397,7 +4397,7 @@ packages: - climb - linenoise - little-rio - - little-logger + - little-logger < 0 # ansi-terminal 0.11 via co-log # Maintainership with @23Skidoo - ekg - ekg-core @@ -6798,9 +6798,6 @@ packages: - rebase < 1.7 - rerebase < 1.7 - # https://github.com/commercialhaskell/stackage/issues/5592 - - ansi-terminal < 0.11 - # https://github.com/commercialhaskell/stackage/issues/5598 - base64-bytestring < 1.2 From 8afda4df950ce7ebf3fea748535e340845441148 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Tue, 16 Mar 2021 00:03:13 +0100 Subject: [PATCH 2582/2682] re-enable xlsx tests, closes #5576 --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 85423974..cac7738a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -7292,7 +7292,6 @@ skipped-tests: - comfort-array # ChasingBottoms - hw-int - integer-roots # smallcheck, https://github.com/commercialhaskell/stackage/issues/5424 - - xlsx # smallcheck, https://github.com/commercialhaskell/stackage/issues/5576 - registry # #5302/closed - hashtables - persistent-mysql # https://github.com/commercialhaskell/stackage/issues/5641 From 034c9e3c0abc777f6587e79ad04ab0c1dbaff97f Mon Sep 17 00:00:00 2001 From: Brandon Chinn Date: Mon, 15 Mar 2021 16:04:40 -0700 Subject: [PATCH 2583/2682] Reenable graphql-client --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index cac7738a..e9f3c672 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4344,7 +4344,7 @@ packages: "Brandon Chinn @brandon-leapyear": - aeson-schemas - github-rest - - graphql-client < 0 # optparse-applicative 0.16.1 + - graphql-client - hpc-lcov - th-test-utils From dff04d190100c80e81f75020cdd121baf4f52366 Mon Sep 17 00:00:00 2001 From: Taylor Fausak Date: Mon, 15 Mar 2021 19:40:44 -0400 Subject: [PATCH 2584/2682] Re-add github-release --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e9f3c672..7298a578 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2049,7 +2049,7 @@ packages: - burrito - derulo - flow - - github-release < 0 # optparse-applicative 0.16.1 + - github-release - json-feed # - lackey # servant - list-singleton From 60a50692f72acf9aee3021e7c26a8d9e77d32891 Mon Sep 17 00:00:00 2001 From: Taylor Fausak Date: Mon, 15 Mar 2021 19:41:31 -0400 Subject: [PATCH 2585/2682] Re-add lackey --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7298a578..c417c155 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2051,7 +2051,7 @@ packages: - flow - github-release - json-feed - # - lackey # servant + - lackey - list-singleton - rampart - ratel From 0d7b1628045bf73ac8e0498b1d387a2c06f56070 Mon Sep 17 00:00:00 2001 From: Taylor Fausak Date: Mon, 15 Mar 2021 19:43:24 -0400 Subject: [PATCH 2586/2682] Re-add rattletrap --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c417c155..c0f6f024 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2056,7 +2056,7 @@ packages: - rampart - ratel - ratel-wai - # - rattletrap # binary-bits + - rattletrap - salve - splint - strive From d586a67d8f6724c2bcc7b17be41da877e9eda3ba Mon Sep 17 00:00:00 2001 From: Fraser Tweedale Date: Mon, 15 Mar 2021 19:43:51 -0500 Subject: [PATCH 2587/2682] update dyre maintainer --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c0f6f024..5b986448 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2553,7 +2553,6 @@ packages: - compiler-warnings - docopt - dynamic-state - - dyre - io-storage - oo-prototypes - opentelemetry @@ -3045,6 +3044,7 @@ packages: "Fraser Tweedale @frasertweedale": - concise + - dyre - jose "Yoshikuni Jujo @YoshikuniJujo": From c41acaaa1f33c69de47559d5bfda6da07e82c606 Mon Sep 17 00:00:00 2001 From: Fumiaki Kinoshita Date: Tue, 16 Mar 2021 14:06:05 +0900 Subject: [PATCH 2588/2682] add witherable back (#5821) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c0f6f024..47acda1c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2171,7 +2171,7 @@ packages: - drinkery - monad-skeleton - xml-lens - - witherable-class < 0.0.1 # https://github.com/commercialhaskell/stackage/issues/5821 + - witherable - deriving-aeson "Peter Harpending @pharpend": From 72694a23bd32f320e63f8586f48c5fdfd446e76a Mon Sep 17 00:00:00 2001 From: Andreas Abel Date: Tue, 16 Mar 2021 09:49:59 +0100 Subject: [PATCH 2589/2682] Add new executable hs-tags --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index c0f6f024..b0d9835a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -33,6 +33,7 @@ packages: - ListLike - haskell-src - fix-whitespace + - hs-tags "Diogo Biazus ": - hasql-notifications From ef9f9b473812d1b064906ff67c98681206f1bbde Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Tue, 16 Mar 2021 10:29:40 +0100 Subject: [PATCH 2590/2682] Remove Travis CI config --- .travis.yml | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index e2b2284c..00000000 --- a/.travis.yml +++ /dev/null @@ -1,21 +0,0 @@ -# Disable Docker stuff to try to make it faster -sudo: true -dist: bionic - -# Choose a lightweight base image; we provide our own build tools. -language: generic - -# GHC depends on GMP. You can add other dependencies here as well. -addons: - apt: - packages: - - libgmp-dev - -# Edit etc/ci-script.sh to change GHC version -script: -- ./etc/check.sh - -cache: - directories: - - $HOME/.stack - - $HOME/.stackage/curator/cache From 8b6e7dea49e9a04cab08355e169bc45d5ac220ea Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Tue, 16 Mar 2021 10:38:37 +0100 Subject: [PATCH 2591/2682] Bump cryptonite, password, password-instances. Add password-types. Closes #5908 & Closes #5849 --- build-constraints.yaml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 03738b07..bb28ba51 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2532,8 +2532,9 @@ packages: - envelope - from-sum - natural-transformation - - password < 3 # https://github.com/commercialhaskell/stackage/issues/5908 - - password-instances < 3 # https://github.com/commercialhaskell/stackage/issues/5908 + - password + - password-instances + - password-types - pretty-simple - print-console-colors - read-env-var @@ -6836,9 +6837,6 @@ packages: - generic-lens-core < 2.1.0.0 - generic-optics < 2.1.0.0 - # https://github.com/commercialhaskell/stackage/issues/5849 - - cryptonite < 0.28 - # https://github.com/commercialhaskell/stackage/issues/5864 - parser-combinators < 1.3.0 - parser-combinators-tests < 1.3.0 From d62864be99747ad5f74d70a49ea9c7043f2bd16a Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Tue, 16 Mar 2021 20:25:21 +0100 Subject: [PATCH 2592/2682] Disabling packages & tests for #5948 --- build-constraints.yaml | 23 ++++++++++++++++++----- 1 file changed, 18 insertions(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index bb28ba51..80c51557 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1084,7 +1084,7 @@ packages: - faktory - graphula - hspec-expectations-json - - yesod-page-cursor + - yesod-page-cursor < 0 # https://github.com/commercialhaskell/stackage/issues/5948 "Michael Gilliland @mjgpy3": # Freckle packages I'm maintaining for us @@ -1465,7 +1465,7 @@ packages: - language-protobuf - generic-aeson - parameterized - - tracing-control + - tracing-control < 0 # https://github.com/commercialhaskell/stackage/issues/5948 - primitive-extras - primitive-unlifted < 0.2 - stm-hamt @@ -1688,8 +1688,8 @@ packages: - binary-shared - xdg-userdirs - - codec-rpm - - cpio-conduit + - codec-rpm < 0 # via cpio-conduit + - cpio-conduit < 0 # https://github.com/commercialhaskell/stackage/issues/5948 # please take these - cryptohash-md5 @@ -1754,7 +1754,7 @@ packages: - bitcoin-script < 0 # MonadFail - bitcoin-tx < 0 # via hexstring - bitcoin-types < 0 # via base58string & hexstring - - hexstring + - hexstring < 0 # https://github.com/commercialhaskell/stackage/issues/5948 - network-attoparsec < 0 # MonadFail - network-anonymous-i2p < 0 # via network-attoparsec - network-anonymous-tor < 0 # build failure w/ socks 0.6, see https://github.com/solatis/haskell-network-anonymous-tor/issues/14 @@ -7714,6 +7714,14 @@ expected-test-failures: - email-validate # https://github.com/Porges/email-validate-hs/issues/55 - heterocephalus # doctest requires hidden shakespeare and blaze-markup - iproute # doctest with hidden containers and other errors + - http-conduit # https://github.com/commercialhaskell/stackage/issues/5948 + - hw-dsv # https://github.com/commercialhaskell/stackage/issues/5948 + - relapse # https://github.com/commercialhaskell/stackage/issues/5948 + - liquid-fixpoint # https://github.com/commercialhaskell/stackage/issues/5948 + - secp256k1-haskell # https://github.com/commercialhaskell/stackage/issues/5948 + - base16 # https://github.com/commercialhaskell/stackage/issues/5948 + - prometheus-client # https://github.com/commercialhaskell/stackage/issues/5948 + # Recursive deps https://github.com/fpco/stackage/issues/1818 - options @@ -7832,6 +7840,11 @@ expected-test-failures: # https://github.com/unrelentingtech/hspec-expectations-pretty-diff/issues/7 - hspec-expectations-pretty-diff + # https://github.com/commercialhaskell/stackage/issues/5878 + # ordering because of hashable + - mmark + - mmark-ext + # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 81320b4b1dff165291d7347ffbde083a968a7680 Mon Sep 17 00:00:00 2001 From: sternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org> Date: Wed, 17 Mar 2021 00:05:18 +0100 Subject: [PATCH 2593/2682] readd socket socket should build again (at least it does so with stackage-lts in nixpkgs) and I can look after it in the future. --- build-constraints.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 80c51557..696b47f6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -9,6 +9,9 @@ cabal-format-version: "3.0" # Constraints for brand new builds packages: + "Lukas Epple @sternenseemann": + - socket + "James Sully @sullyj3": - buttplug-hs-core @@ -1270,7 +1273,6 @@ packages: - immortal - regex-applicative - lexer-applicative < 0 # DependencyFailed (PackageName "srcloc") - - socket < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build - tasty - tasty-golden - tasty-hunit From a8befcdbaf6e9371a8b794af352ac0841db3f1c2 Mon Sep 17 00:00:00 2001 From: sternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org> Date: Wed, 17 Mar 2021 00:06:42 +0100 Subject: [PATCH 2594/2682] add spacecookie, gopher-proxy, filepath-bytestring and download-curl These packages are maintained by me: - spacecookie - gopher-proxy Dependencies of those packages which are missing: - filepath-bytestring - download-curl --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 696b47f6..b3bca613 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -11,6 +11,10 @@ cabal-format-version: "3.0" packages: "Lukas Epple @sternenseemann": - socket + - spacecookie + - gopher-proxy + - filepath-bytestring + - download-curl "James Sully @sullyj3": - buttplug-hs-core From c2728143f436357b1c7386c2cf3e6f08f7b0826d Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Wed, 17 Mar 2021 18:11:44 +0100 Subject: [PATCH 2595/2682] Disable wai-middleware-auth fpco/wai-middleware-auth#23 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 80c51557..0cd52fc5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3500,7 +3500,7 @@ packages: # - printcess # lens 4.16 "Alexey Kuleshevich @lehins": - - wai-middleware-auth + - wai-middleware-auth < 0 # https://github.com/fpco/wai-middleware-auth/issues/23 # - hip # lens 4.16 via diagrams/chart - massiv - massiv-io From e9889fe7cd4bc3af37de96050ba3beedcc561226 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Wed, 17 Mar 2021 18:37:40 +0100 Subject: [PATCH 2596/2682] Upgrade heaps, closes #5875 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5f43f853..37d7e5f1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6856,9 +6856,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5911 - lens < 5 - # https://github.com/commercialhaskell/stackage/issues/5875 - - heaps < 0.4 - # https://github.com/commercialhaskell/stackage/issues/5878 - hashable < 1.3.1.0 - mmark < 0.0.7.3 From 17e7a8ec89a998a22dcc41bdede0246f6326e497 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Thu, 18 Mar 2021 12:02:18 +0100 Subject: [PATCH 2597/2682] Exclude broken(?) persistent release --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 37d7e5f1..df346b28 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -678,7 +678,7 @@ packages: - mime-mail-ses - mime-types - network-conduit-tls - - persistent + - persistent < 2.12.0.0 || > 2.12.0.0 - persistent-mysql - persistent-postgresql - persistent-sqlite From 8103865b706c0015d64d905b75fbaced563ec9a2 Mon Sep 17 00:00:00 2001 From: Michael Gilliland Date: Thu, 18 Mar 2021 11:09:16 -0400 Subject: [PATCH 2598/2682] Add freckle engineering stanza and include sendgrid-v3 package. This is probably a little unconventional in a few ways. This attempts to add packages maintained by the freckle engineering team to its own stanza. It also takes "stackage ownership" of `sendgrid-v3`, originally requested here https://github.com/marcelbuesing/sendgrid-v3/issues/13 Ping @pbrisbin since I moved your Freckle packages and @marcelbuesing since `sendgrid-v3` is your package. --- build-constraints.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index df346b28..81251ecf 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1085,17 +1085,15 @@ packages: - yesod-markdown - yesod-paginator - # Freckle packages I'm maintaining for us + "Freckle Engineering github.com/freckle": - bcp47 - bcp47-orphans - faktory - graphula - hspec-expectations-json - yesod-page-cursor < 0 # https://github.com/commercialhaskell/stackage/issues/5948 - - "Michael Gilliland @mjgpy3": - # Freckle packages I'm maintaining for us - nonempty-zipper + - sendgrid-v3 "Felipe Lessa @meteficha": - fb From 327e70c4e93e4de8a35bd576a6ca149ba6fa645d Mon Sep 17 00:00:00 2001 From: Michael Gilliland Date: Thu, 18 Mar 2021 11:24:31 -0400 Subject: [PATCH 2599/2682] Use freckle github user rather than path --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 81251ecf..e3e31eee 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1085,7 +1085,7 @@ packages: - yesod-markdown - yesod-paginator - "Freckle Engineering github.com/freckle": + "Freckle Engineering @freckle": - bcp47 - bcp47-orphans - faktory From 30db02f3d0a2abfbd4e110c355617bc7f2a6ae8b Mon Sep 17 00:00:00 2001 From: Michael Gilliland Date: Thu, 18 Mar 2021 11:36:58 -0400 Subject: [PATCH 2600/2682] Add package yesod-auth-oauth2 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index e3e31eee..2f19bd51 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1094,6 +1094,7 @@ packages: - yesod-page-cursor < 0 # https://github.com/commercialhaskell/stackage/issues/5948 - nonempty-zipper - sendgrid-v3 + - yesod-auth-oauth2 "Felipe Lessa @meteficha": - fb From c63570b1ad6d4ab1f46d93e634bc1d2aabdfa811 Mon Sep 17 00:00:00 2001 From: Alexey Kuleshevich Date: Thu, 18 Mar 2021 23:39:22 +0300 Subject: [PATCH 2601/2682] Reinstate wai-middleware-auth --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index df346b28..ce607cda 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3506,7 +3506,7 @@ packages: # - printcess # lens 4.16 "Alexey Kuleshevich @lehins": - - wai-middleware-auth < 0 # https://github.com/fpco/wai-middleware-auth/issues/23 + - wai-middleware-auth # - hip # lens 4.16 via diagrams/chart - massiv - massiv-io From 4fe718f3a38055c98b57d6af7a610d1990d29e05 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Fri, 19 Mar 2021 11:06:54 +0100 Subject: [PATCH 2602/2682] Upgrade call-stack, closes #5834 --- build-constraints.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ce607cda..be5ce8a0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6831,10 +6831,6 @@ packages: - http-client < 0.7 - http-client-openssl < 0.3.3 - # https://github.com/commercialhaskell/stackage/issues/5834 - - call-stack < 0.3.0 - - HUnit < 1.6.2.0 - # https://github.com/commercialhaskell/stackage/issues/5836 - clock < 0.8.2 From 23d45e505aaa2653ce586277b5830e9ee794afdd Mon Sep 17 00:00:00 2001 From: Iris Ward Date: Fri, 19 Mar 2021 14:47:52 +0000 Subject: [PATCH 2603/2682] Re-enable typenums --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index be5ce8a0..f36b7873 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -263,7 +263,7 @@ packages: - butter < 0 # MonadFail "Iris Ward @AdituV": - - typenums < 0 # ghc 8.10.1 #5450/closed + - typenums "Jude Taylor @pikajude": - th-printf From ecfd0003884559da72ab8d885042d482112f84aa Mon Sep 17 00:00:00 2001 From: Michael Gilliland Date: Fri, 19 Mar 2021 11:43:05 -0400 Subject: [PATCH 2604/2682] Add some freckle handles to freckle eng packages --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2f19bd51..d2d79ef2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1085,7 +1085,7 @@ packages: - yesod-markdown - yesod-paginator - "Freckle Engineering @freckle": + "Freckle Engineering @pbrisbin @halogenandtoast @mjgpy3": - bcp47 - bcp47-orphans - faktory From 8a1bc55d5a9d59f397dc97e42b2ff417eab764d7 Mon Sep 17 00:00:00 2001 From: Artem Pelenitsyn Date: Fri, 19 Mar 2021 12:21:18 -0400 Subject: [PATCH 2605/2682] add BNFC-meta, alex-meta, happy-meta --- build-constraints.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index be5ce8a0..002e8e9e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4548,6 +4548,11 @@ packages: "Brooklyn Zelenka @expede": - rescue + "Artem Pelenitsyn @ulysses4ever": + - alex-meta + - happy-meta + - BNFC-meta + "Grandfathered dependencies": - Boolean - Decimal From 7008ebc18c61dc42993c3a278a43d230dcc21eb8 Mon Sep 17 00:00:00 2001 From: patrick brisbin Date: Fri, 19 Mar 2021 17:06:15 -0400 Subject: [PATCH 2606/2682] Re-enable yesod-page-cursor Issue should be resolved in v2.0.0.5 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index be5ce8a0..e0bc88fc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1091,7 +1091,7 @@ packages: - faktory - graphula - hspec-expectations-json - - yesod-page-cursor < 0 # https://github.com/commercialhaskell/stackage/issues/5948 + - yesod-page-cursor "Michael Gilliland @mjgpy3": # Freckle packages I'm maintaining for us From 3142c5ba2d04f18acfbc32d51fb419afe2a2cd77 Mon Sep 17 00:00:00 2001 From: Michael Gilliland Date: Fri, 19 Mar 2021 19:45:25 -0400 Subject: [PATCH 2607/2682] Add `hspec-junit-formatter` package --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d2d79ef2..2e4996ff 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1095,6 +1095,7 @@ packages: - nonempty-zipper - sendgrid-v3 - yesod-auth-oauth2 + - hspec-junit-formatter "Felipe Lessa @meteficha": - fb From 28cbcc58a2d7ed09a6790960fed91373f9d3fde2 Mon Sep 17 00:00:00 2001 From: Viacheslav Lotsmanov Date: Sat, 20 Mar 2021 07:46:49 +0200 Subject: [PATCH 2608/2682] Add place-cursor-at This package is maintained by me, Viacheslav Lotsmanov --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index be5ce8a0..bba21941 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3877,6 +3877,7 @@ packages: - stripe-wreq < 0 # via wreq "Viacheslav Lotsmanov @unclechu": + - place-cursor-at - qm-interpolated-string "Douglas Burke @DougBurke": From cd34a4c1983b692661abe3cfa351e98933cf1f40 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sat, 20 Mar 2021 14:00:09 +0100 Subject: [PATCH 2609/2682] Expect sendgrid-v3 tests to fail #5951 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 82f93e5c..5a4eac69 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -7652,6 +7652,7 @@ expected-test-failures: - http-client # httpbin issues, https://github.com/snoyberg/http-client/issues/439 - http-directory # httpbin issues, https://github.com/juhp/http-directory/issues/1 - faktory # connection refused, https://github.com/commercialhaskell/stackage/issues/5905 + - sendgrid-v3 # Requires sendgrid API key in env #5951/closed # Missing test files in sdist # Hopefully gets fixed in the next release... From 504ab57c1a747c6273aaa5e54d32753c9a97de15 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sat, 20 Mar 2021 23:53:15 +0100 Subject: [PATCH 2610/2682] Move clash-prelude to skipped-tests #5926 --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8a3e3d85..16e1159c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -7506,6 +7506,9 @@ skipped-tests: # via vector-0.12.2 https://github.com/commercialhaskell/stackage/issues/5851 - lens + # was in expected test failures, but seems we may have to skip entirely for unknown reasons, previously: https://github.com/clash-lang/clash-compiler/issues/1622 + - clash-prelude + # end of skipped-tests # Tests listed in expected-test-failures configure correctly but may fail to run @@ -7832,9 +7835,6 @@ expected-test-failures: # https://github.com/input-output-hk/bech32/issues/31 - bech32 - # https://github.com/clash-lang/clash-compiler/issues/1622 - - clash-prelude - # doctest - headroom - xml-indexed-cursor From 5c0aa93473acf82be76f85bb2e458f934041d7b1 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sun, 21 Mar 2021 14:06:39 +0100 Subject: [PATCH 2611/2682] MAINTAINERS.md: s/library/package --- MAINTAINERS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MAINTAINERS.md b/MAINTAINERS.md index 748abf34..4f98c831 100644 --- a/MAINTAINERS.md +++ b/MAINTAINERS.md @@ -26,7 +26,7 @@ don't maintain this package yourself it is preferable that the actual maintainer is also the stackage maintainer, but you are allowed to add it under your own name. -If your library depends on a C library, please add it to the `debian-bootstrap.sh` script. +If your package depends on a C library, please add it to the `debian-bootstrap.sh` script. After doing that commit with a message like "add foo-bar" and send a pull request. From 43fc7c2e88d156c9a33e606f1f0f77abbac4b404 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sun, 21 Mar 2021 14:12:03 +0100 Subject: [PATCH 2612/2682] MAINTAINERS.md: Remove outdated cabal instructions, I'm not sure how to do this now --- MAINTAINERS.md | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/MAINTAINERS.md b/MAINTAINERS.md index 4f98c831..b1bb2c96 100644 --- a/MAINTAINERS.md +++ b/MAINTAINERS.md @@ -42,26 +42,11 @@ of: * It won't notify you of restrictive upper bounds in your package if Stackage has the same upper bounds. For that reason, we recommend using [Packdeps](http://packdeps.haskellers.com/) (see "Following - dependency upgrades" below). + dependency upgrades" below). You can also run `cabal outdated`. * If the latest Stackage Nightly is missing some of the latest packages, your build above may succeed whereas the Travis job may fail. Again: Packdeps will help you detect this situation. -Alternatively, you can build with `cabal`. Note that this may end up -using older dependency versions: - -``` -$ ghc --version # Should be the same as the latest nightly, it's in the title of https://www.stackage.org/nightly -$ cabal update -$ cabal get PACKAGE -$ cd PACKAGE-* -$ cabal sandbox init # Should give "Creating a new sandbox" and not "Using an existing sandbox". -$ cabal install --enable-tests --enable-benchmarks --dry-run | grep latest # Should give no results -$ cabal install --enable-tests --enable-benchmarks --allow-newer -$ cabal test -$ cabal haddock -``` - ## Github and Notifications Stackage uses Github notifications to reduce overhead of contacting individual From b56abe0583753f9f00e368e926c8a0f4d8895014 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sun, 21 Mar 2021 14:15:59 +0100 Subject: [PATCH 2613/2682] pandoc upper bound for #5956 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 16e1159c..37905983 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6895,6 +6895,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5941 - http-api-data < 0.4.3 + # https://github.com/commercialhaskell/stackage/issues/5956 + - pandoc < 2.13 + # end of packages # Package flags are applied to individual packages, and override the values of From 9d5a47ab15683ce0217bc027f72af0c2eaa2561d Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sun, 21 Mar 2021 14:29:39 +0100 Subject: [PATCH 2614/2682] MAINTAINERS.md: comma --- MAINTAINERS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MAINTAINERS.md b/MAINTAINERS.md index b1bb2c96..c559231c 100644 --- a/MAINTAINERS.md +++ b/MAINTAINERS.md @@ -28,7 +28,7 @@ it under your own name. If your package depends on a C library, please add it to the `debian-bootstrap.sh` script. -After doing that commit with a message like "add foo-bar" and send a pull request. +After doing that, commit with a message like "add foo-bar" and send a pull request. The continuous integration job will do some checks to see if your package's dependencies are up-to-date. From 4a0f1e9cdeff1e09386f5309cb250e7e238069a3 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Mon, 22 Mar 2021 19:44:27 -0500 Subject: [PATCH 2615/2682] Add upper bound for attoparsec, #5959 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 37905983..d708fac5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6898,6 +6898,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5956 - pandoc < 2.13 + # https://github.com/commercialhaskell/stackage/issues/5959 + - attoparsec < 0.14.1 + # end of packages # Package flags are applied to individual packages, and override the values of From 7f0816732d8585702a010eb29ccbf64fbd3b0ebd Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Mon, 22 Mar 2021 19:46:15 -0500 Subject: [PATCH 2616/2682] Add upper bound for IPv6Addr, #5960 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d708fac5..e9d16b05 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6901,6 +6901,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5959 - attoparsec < 0.14.1 + # https://github.com/commercialhaskell/stackage/issues/5960 + - IPv6Addr < 2 + # end of packages # Package flags are applied to individual packages, and override the values of From 207b8b765c785018963da6e45e53eb49119dc4a1 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Mon, 22 Mar 2021 19:49:16 -0500 Subject: [PATCH 2617/2682] Remove upper bound for pandoc, closes #5956 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e9d16b05..17a6a7a8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6895,9 +6895,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5941 - http-api-data < 0.4.3 - # https://github.com/commercialhaskell/stackage/issues/5956 - - pandoc < 2.13 - # https://github.com/commercialhaskell/stackage/issues/5959 - attoparsec < 0.14.1 From 55f01f1a6c003e64ae5ad9eb7a034c0555ac91b6 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Mon, 22 Mar 2021 19:54:33 -0500 Subject: [PATCH 2618/2682] Don't expect a test failure for gitlab-haskell, #5957 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 17a6a7a8..b8fa9aa9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -7826,9 +7826,6 @@ expected-test-failures: # https://github.com/takenobu-hs/ghci-hexcalc/issues/2 - ghci-hexcalc - # https://gitlab.com/robstewart57/gitlab-haskell/-/issues/7 - - gitlab-haskell - # https://github.com/kazu-yamamoto/dns/issues/153 - dns From 4b423e23184414eda79fcf873ca9604cbe132817 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Tue, 23 Mar 2021 17:04:32 -0500 Subject: [PATCH 2619/2682] Remove upper bound for IPv6Addr, closes #5960 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b9d8eb25..d2756630 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6898,9 +6898,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5959 - attoparsec < 0.14.1 - # https://github.com/commercialhaskell/stackage/issues/5960 - - IPv6Addr < 2 - # end of packages # Package flags are applied to individual packages, and override the values of From 70deaed7b9db4db228e118f599cbf6839b207ed9 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Tue, 23 Mar 2021 17:09:42 -0500 Subject: [PATCH 2620/2682] Add upper bound for hasql, #5961 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d2756630..0dcf4678 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6898,6 +6898,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5959 - attoparsec < 0.14.1 + # https://github.com/commercialhaskell/stackage/issues/5961 + - hasql < 1.4.4.3 + # end of packages # Package flags are applied to individual packages, and override the values of From 7c0d15d39d36b2591951f91942ec9521aa7852a0 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Tue, 23 Mar 2021 17:17:10 -0500 Subject: [PATCH 2621/2682] Add upper bounds for haskell-gi and related packages, #5962 --- build-constraints.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0dcf4678..c7e81be2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6901,6 +6901,26 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5961 - hasql < 1.4.4.3 + # https://github.com/commercialhaskell/stackage/issues/5962 + - haskell-gi-base < 0.25 + - haskell-gi < 0.25 + - gi-atk < 2.0.23 + - gi-cairo < 1.0.25 + - gi-dbusmenu < 0.4.9 + - gi-dbusmenugtk3 < 0.4.10 + - gi-gdk < 3.0.24 + - gi-gdkpixbuf < 2.0.25 + - gi-gdkx11 < 3.0.11 + - gi-gio < 2.0.28 + - gi-glib < 2.0.25 + - gi-gobject < 2.0.26 + - gi-graphene < 1.0.3 + - gi-gtk < 3.0.37 + - gi-gtk-hs < 0.3.10 + - gi-harfbuzz < 0.0.4 + - gi-pango < 1.0.24 + - gi-xlib <2.0.10 + # end of packages # Package flags are applied to individual packages, and override the values of From bd9ad61301672ee6d172ed8e4a29b81087a6066e Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Wed, 24 Mar 2021 17:00:44 -0500 Subject: [PATCH 2622/2682] Remove upper bound for hasql, closes #5961 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c7e81be2..4651c7db 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6898,9 +6898,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5959 - attoparsec < 0.14.1 - # https://github.com/commercialhaskell/stackage/issues/5961 - - hasql < 1.4.4.3 - # https://github.com/commercialhaskell/stackage/issues/5962 - haskell-gi-base < 0.25 - haskell-gi < 0.25 From 2cee964575a6c50ea33dae5f049e37968e2bea6c Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Wed, 24 Mar 2021 17:16:46 -0500 Subject: [PATCH 2623/2682] Add upper bound for hasql-transaction, #5964 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4651c7db..bba1cbdb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6918,6 +6918,9 @@ packages: - gi-pango < 1.0.24 - gi-xlib <2.0.10 + # https://github.com/commercialhaskell/stackage/issues/5964 + - hasql-transaction < 1.0.0.2 + # end of packages # Package flags are applied to individual packages, and override the values of From fb96507a24faa472313bc87ecdf6cb9e5cd5ae7b Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Wed, 24 Mar 2021 17:30:17 -0500 Subject: [PATCH 2624/2682] Remove upper bounds for constraints, closes #5873 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index bba1cbdb..74013ecc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6852,9 +6852,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5867 - chronos < 1.1.2 - # https://github.com/commercialhaskell/stackage/issues/5873 - - constraints < 0.13 - # https://github.com/commercialhaskell/stackage/issues/5911 - lens < 5 From b932a4f408115306a652e9cd1b368235f50c2baa Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 26 Mar 2021 13:01:07 +0800 Subject: [PATCH 2625/2682] build.sh: update to latest curator already being used in production --- automated/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automated/build.sh b/automated/build.sh index a5cc0294..d9d02a02 100755 --- a/automated/build.sh +++ b/automated/build.sh @@ -63,7 +63,7 @@ BINDIR=$(cd $ROOT/work/bin ; pwd) cd $BINDIR rm -f curator stack *.bz2 -curl -L "https://download.fpcomplete.com/stackage-curator-2/curator-7c719d6d48839c94a79dc2ad2ace89074e3dd997.bz2" | bunzip2 > curator +curl -L "https://github.com/commercialhaskell/curator/releases/download/commit-8bf6978fc0c3556a2c85b72b48d516ed55834d47/curator.bz2" | bunzip2 > curator chmod +x curator echo -n "curator version: " docker run --rm -v $(pwd)/curator:/exe $IMAGE /exe --version From f916f490cdd2bcb62149b363b00db7ce2c224b70 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Fri, 26 Mar 2021 20:24:16 -0500 Subject: [PATCH 2626/2682] Skip tests for hasql-transaction, closes #5964 --- build-constraints.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 74013ecc..19f6d3c0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6915,9 +6915,6 @@ packages: - gi-pango < 1.0.24 - gi-xlib <2.0.10 - # https://github.com/commercialhaskell/stackage/issues/5964 - - hasql-transaction < 1.0.0.2 - # end of packages # Package flags are applied to individual packages, and override the values of @@ -7391,6 +7388,7 @@ skipped-tests: - system-fileio # ansi-terminal-0.8 via chell - system-filepath # ansi-terminal-0.8 via chell - buffer-builder # per HTF per cpphs per polyparse (ghc 8.6 failure) + - hasql-transaction # via rerebase # Blocked by stackage upper bounds. These can be re-enabled once # the relevant stackage upper bound is lifted. From a53f9f636f006aa96378829ba236202c148ac9ea Mon Sep 17 00:00:00 2001 From: Davit Nalchevanidze Date: Sat, 27 Mar 2021 13:17:25 +0100 Subject: [PATCH 2627/2682] add-morpheus-graphql-app --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 19f6d3c0..88505b6b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4382,6 +4382,7 @@ packages: - morpheus-graphql-core < 0.17 # via `morpheus-graphql-app` https://github.com/commercialhaskell/stackage/issues/5883 - morpheus-graphql-client < 0.17 # via `morpheus-graphql-core` https://github.com/commercialhaskell/stackage/issues/5883 - morpheus-graphql-subscriptions < 0.17 # via `morpheus-graphql-app` & `morpheus-graphql-core` https://github.com/commercialhaskell/stackage/issues/5883 + - morpheus-graphql-app "Satoshi Egi @egisatoshi": - backtracking From de428e174994f7f711ac9ba5ced9045b4411f8d5 Mon Sep 17 00:00:00 2001 From: Davit Nalchevanidze Date: Sat, 27 Mar 2021 13:25:30 +0100 Subject: [PATCH 2628/2682] remove constraints --- build-constraints.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 88505b6b..68c50c65 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4378,10 +4378,10 @@ packages: - minimal-configuration "Davit Nalchevanidze @nalchevanidze": - - morpheus-graphql < 0.17 # via `morpheus-graphql-app` https://github.com/commercialhaskell/stackage/issues/5883 - - morpheus-graphql-core < 0.17 # via `morpheus-graphql-app` https://github.com/commercialhaskell/stackage/issues/5883 - - morpheus-graphql-client < 0.17 # via `morpheus-graphql-core` https://github.com/commercialhaskell/stackage/issues/5883 - - morpheus-graphql-subscriptions < 0.17 # via `morpheus-graphql-app` & `morpheus-graphql-core` https://github.com/commercialhaskell/stackage/issues/5883 + - morpheus-graphql + - morpheus-graphql-core + - morpheus-graphql-client + - morpheus-graphql-subscriptions - morpheus-graphql-app "Satoshi Egi @egisatoshi": From 179177998baf4e1dc6649782f0b814dd3d232f0c Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Mon, 29 Mar 2021 19:51:49 -0500 Subject: [PATCH 2629/2682] Add an upper bound for persistent, #5968 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 68c50c65..1412bdff 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6916,6 +6916,9 @@ packages: - gi-pango < 1.0.24 - gi-xlib <2.0.10 + # https://github.com/commercialhaskell/stackage/issues/5968 + - persistent < 2.12 + # end of packages # Package flags are applied to individual packages, and override the values of From b979f017c528cb239d7e3167f1e32e38d0250551 Mon Sep 17 00:00:00 2001 From: Alexey Zabelin Date: Mon, 29 Mar 2021 19:54:28 -0500 Subject: [PATCH 2630/2682] Add an upper bound for crackNum, #5969 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1412bdff..c44a9799 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6919,6 +6919,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5968 - persistent < 2.12 + # https://github.com/commercialhaskell/stackage/issues/5969 + - crackNum < 3 + # end of packages # Package flags are applied to individual packages, and override the values of From 443b0e331537ee8da1fb484b09ba79d3faa2b6f0 Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Tue, 30 Mar 2021 19:14:16 +0100 Subject: [PATCH 2631/2682] ongoing 5968 --- build-constraints.yaml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b716e532..61e103b6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4381,7 +4381,7 @@ packages: "Davit Nalchevanidze @nalchevanidze": - morpheus-graphql - morpheus-graphql-core - - morpheus-graphql-client + - morpheus-graphql-client - morpheus-graphql-subscriptions - morpheus-graphql-app @@ -6919,6 +6919,16 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5968 - persistent < 2.12 + - persistent-sqlite < 2.12.0.0 + - persistent-template < 2.12.0.0 + + - esqueleto < 3.4.2.0 + - persistent-mysql < 2.12.0.0 + - persistent-postgresql < 2.12.0.0 + - persistent-qq < 2.12.0.0 + - persistent-test < 2.12.0.0 + - persistent-typed-db < 0.1.0.3 + # https://github.com/commercialhaskell/stackage/issues/5969 - crackNum < 3 From db532b6120c663d94d916dcd5c220eb632d419a4 Mon Sep 17 00:00:00 2001 From: Andreas Herrmann Date: Wed, 31 Mar 2021 17:17:19 +0200 Subject: [PATCH 2632/2682] add capability --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 61e103b6..c35e9c1f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4556,6 +4556,9 @@ packages: - happy-meta - BNFC-meta + "Andreas Herrmann @aherrmann": + - capability + "Grandfathered dependencies": - Boolean - Decimal From 48bfa85f7bd6f4070eaf770ff9267ecd3b9a7340 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 31 Mar 2021 22:47:56 +0300 Subject: [PATCH 2633/2682] Add dockerfiles for lts 17.0 and 17.3 --- automated/dockerfiles/lts-17.0/Dockerfile | 90 +++++++++++++++++++++++ automated/dockerfiles/lts-17.3/Dockerfile | 90 +++++++++++++++++++++++ 2 files changed, 180 insertions(+) create mode 100644 automated/dockerfiles/lts-17.0/Dockerfile create mode 100644 automated/dockerfiles/lts-17.3/Dockerfile diff --git a/automated/dockerfiles/lts-17.0/Dockerfile b/automated/dockerfiles/lts-17.0/Dockerfile new file mode 100644 index 00000000..61c5d09d --- /dev/null +++ b/automated/dockerfiles/lts-17.0/Dockerfile @@ -0,0 +1,90 @@ +FROM ubuntu:18.04 + +LABEL maintainer="manny@fpcomplete.com" + +ARG GHC_VERSION=8.8.3 +ARG LTS_SLUG=lts-17.0 +ARG PID1_VERSION=0.1.2.0 +ARG STACK_VERSION=2.5.1 +ARG CUDA_VERSION=10.0 +ARG JVM_PATH=/usr/lib/jvm/java-8-openjdk-amd64 +ARG LLVM_PATH=/usr/lib/llvm-7 +ARG BOOTSTRAP_COMMIT=1afd08ff0a3c3627f17eb1b928d35f337db40e08 + +ARG DEBIAN_FRONTEND=noninteractive +ARG VARIANT=build +ARG STACK_ROOT=/home/stackage/.stack + +# +# Set encoding to UTF-8 and PATH to find GHC and cabal/stack-installed binaries. +# + +ENV LANG=C.UTF-8 \ + LC_ALL=C.UTF-8 \ + PATH=/root/.local/bin:/usr/local/cuda-$CUDA_VERSION/bin:$STACK_ROOT/programs/x86_64-linux/ghc-$GHC_VERSION/bin:$PATH \ + CUDA_PATH=/usr/local/cuda-$CUDA_VERSION \ + CPATH=$JVM_PATH/include:$JVM_PATH/include/linux:$LLVM_PATH/include + +# +# Install pre-requisites +# + +RUN apt-get update && \ + apt-get install -y --no-install-recommends \ + wget netbase ca-certificates g++ gcc libc6-dev libffi-dev libgmp-dev \ + make xz-utils zlib1g-dev git gnupg libtinfo-dev jq && \ + rm -rf /var/lib/apt/lists/* + +# +# Use Stackage's debian-bootstrap.sh script to install system libraries and +# tools required to build any Stackage package. +# Re-installs 'stack' *after* running debian-bootstrap.sh since that may have +# installed a different version. +# In the case of 'small' image, just install Stack and GHC. +# + +RUN if [ "$VARIANT" != "small" ]; then \ + wget -qO- https://raw.githubusercontent.com/fpco/stackage/$BOOTSTRAP_COMMIT/debian-bootstrap.sh | sed "s/^GHCVER=8.6.5$/GHCVER=$GHC_VERSION/" | GHCVER=$GHC_VERSION bash; \ + fi && \ + wget -qO- https://github.com/commercialhaskell/stack/releases/download/v$STACK_VERSION/stack-$STACK_VERSION-linux-x86_64.tar.gz | tar xz --wildcards --strip-components=1 -C /usr/bin '*/stack' && \ + if [ "$VARIANT" = "small" ]; then \ + stack setup --resolver ghc-$GHC_VERSION; \ + fi && \ + rm -rf /var/lib/apt/lists/* && \ + cd $STACK_ROOT && \ + find . -type f -not -path "./programs/x86_64-linux/ghc-$GHC_VERSION/*" -exec rm '{}' \; && \ + find . -type d -print0 |sort -rz |xargs -0 rmdir 2>/dev/null || true + +# +# Configure Stack to use the GHC installed in the Docker image rather than installing its own +# + +RUN mkdir /etc/stack/ && \ + echo "system-ghc: true" >/etc/stack/config.yaml + +# +# Use 'stack' to install basic Haskell tools like alex, happy, and cpphs. We +# remove most of the STACK_ROOT afterward to save space, but keep the 'share' +# files that some of these tools require. +# + +RUN stack --resolver=$LTS_SLUG --local-bin-path=/usr/bin install \ + happy alex cpphs gtk2hs-buildtools hscolour hlint hindent && \ + cd $STACK_ROOT && \ + find . -type f -not -path './snapshots/*/share/*' -and -not -path "./programs/x86_64-linux/ghc-$GHC_VERSION/*" -exec rm '{}' \; && \ + find . -type d -print0 |sort -rz |xargs -0 rmdir 2>/dev/null || true + +# +# Install 'pid1' init daemon +# + +RUN wget -O- "https://github.com/fpco/pid1/releases/download/v$PID1_VERSION/pid1-$PID1_VERSION-linux-x86_64.tar.gz" | tar xzf - -C /usr/local && \ + chown root:root /usr/local/sbin && \ + chown root:root /usr/local/sbin/pid1 + +# +# Set up pid1 entrypoint and default command +# + +ENTRYPOINT ["/usr/local/sbin/pid1"] +CMD ["bash"] diff --git a/automated/dockerfiles/lts-17.3/Dockerfile b/automated/dockerfiles/lts-17.3/Dockerfile new file mode 100644 index 00000000..0c177b89 --- /dev/null +++ b/automated/dockerfiles/lts-17.3/Dockerfile @@ -0,0 +1,90 @@ +FROM ubuntu:18.04 + +LABEL maintainer="manny@fpcomplete.com" + +ARG GHC_VERSION=8.8.4 +ARG LTS_SLUG=lts-17.3 +ARG PID1_VERSION=0.1.2.0 +ARG STACK_VERSION=2.5.1 +ARG CUDA_VERSION=10.0 +ARG JVM_PATH=/usr/lib/jvm/java-8-openjdk-amd64 +ARG LLVM_PATH=/usr/lib/llvm-7 +ARG BOOTSTRAP_COMMIT=1afd08ff0a3c3627f17eb1b928d35f337db40e08 + +ARG DEBIAN_FRONTEND=noninteractive +ARG VARIANT=build +ARG STACK_ROOT=/home/stackage/.stack + +# +# Set encoding to UTF-8 and PATH to find GHC and cabal/stack-installed binaries. +# + +ENV LANG=C.UTF-8 \ + LC_ALL=C.UTF-8 \ + PATH=/root/.local/bin:/usr/local/cuda-$CUDA_VERSION/bin:$STACK_ROOT/programs/x86_64-linux/ghc-$GHC_VERSION/bin:$PATH \ + CUDA_PATH=/usr/local/cuda-$CUDA_VERSION \ + CPATH=$JVM_PATH/include:$JVM_PATH/include/linux:$LLVM_PATH/include + +# +# Install pre-requisites +# + +RUN apt-get update && \ + apt-get install -y --no-install-recommends \ + wget netbase ca-certificates g++ gcc libc6-dev libffi-dev libgmp-dev \ + make xz-utils zlib1g-dev git gnupg libtinfo-dev jq && \ + rm -rf /var/lib/apt/lists/* + +# +# Use Stackage's debian-bootstrap.sh script to install system libraries and +# tools required to build any Stackage package. +# Re-installs 'stack' *after* running debian-bootstrap.sh since that may have +# installed a different version. +# In the case of 'small' image, just install Stack and GHC. +# + +RUN if [ "$VARIANT" != "small" ]; then \ + wget -qO- https://raw.githubusercontent.com/fpco/stackage/$BOOTSTRAP_COMMIT/debian-bootstrap.sh | sed "s/^GHCVER=8.6.5$/GHCVER=$GHC_VERSION/" | GHCVER=$GHC_VERSION bash; \ + fi && \ + wget -qO- https://github.com/commercialhaskell/stack/releases/download/v$STACK_VERSION/stack-$STACK_VERSION-linux-x86_64.tar.gz | tar xz --wildcards --strip-components=1 -C /usr/bin '*/stack' && \ + if [ "$VARIANT" = "small" ]; then \ + stack setup --resolver ghc-$GHC_VERSION; \ + fi && \ + rm -rf /var/lib/apt/lists/* && \ + cd $STACK_ROOT && \ + find . -type f -not -path "./programs/x86_64-linux/ghc-$GHC_VERSION/*" -exec rm '{}' \; && \ + find . -type d -print0 |sort -rz |xargs -0 rmdir 2>/dev/null || true + +# +# Configure Stack to use the GHC installed in the Docker image rather than installing its own +# + +RUN mkdir /etc/stack/ && \ + echo "system-ghc: true" >/etc/stack/config.yaml + +# +# Use 'stack' to install basic Haskell tools like alex, happy, and cpphs. We +# remove most of the STACK_ROOT afterward to save space, but keep the 'share' +# files that some of these tools require. +# + +RUN stack --resolver=$LTS_SLUG --local-bin-path=/usr/bin install \ + happy alex cpphs gtk2hs-buildtools hscolour hlint hindent && \ + cd $STACK_ROOT && \ + find . -type f -not -path './snapshots/*/share/*' -and -not -path "./programs/x86_64-linux/ghc-$GHC_VERSION/*" -exec rm '{}' \; && \ + find . -type d -print0 |sort -rz |xargs -0 rmdir 2>/dev/null || true + +# +# Install 'pid1' init daemon +# + +RUN wget -O- "https://github.com/fpco/pid1/releases/download/v$PID1_VERSION/pid1-$PID1_VERSION-linux-x86_64.tar.gz" | tar xzf - -C /usr/local && \ + chown root:root /usr/local/sbin && \ + chown root:root /usr/local/sbin/pid1 + +# +# Set up pid1 entrypoint and default command +# + +ENTRYPOINT ["/usr/local/sbin/pid1"] +CMD ["bash"] From 020af0194c4a0ccec5522f5b9739e2136ba08e43 Mon Sep 17 00:00:00 2001 From: Rory Tyler Hayford Date: Thu, 1 Apr 2021 18:47:39 +0700 Subject: [PATCH 2634/2682] Add ipa --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 61e103b6..d632144d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4556,6 +4556,9 @@ packages: - happy-meta - BNFC-meta + "Rory Tyler Hayford @ngua": + - ipa + "Grandfathered dependencies": - Boolean - Decimal From 68669633dc4376cade049b84a904607e88c0a422 Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Sat, 3 Apr 2021 10:16:21 +0100 Subject: [PATCH 2635/2682] tasty-hedgehog<1.1.0.0 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 61e103b6..2c08ccfb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3129,7 +3129,7 @@ packages: - sv < 0 # via base-4.13.0.0 - sv-cassava < 0 # via sv-core - sv-core < 0 # via base-4.13.0.0 - - tasty-hedgehog + - tasty-hedgehog < 1.1.0.0 # https://github.com/commercialhaskell/stackage/issues/5973 "Ismail Mustafa @ismailmustafa": - handwriting < 0 From fb4b35ddadf2e7a4958ecc9f05c0d87d271dfcdc Mon Sep 17 00:00:00 2001 From: Kirill Elagin Date: Mon, 5 Apr 2021 00:12:39 -0400 Subject: [PATCH 2636/2682] Change the contact email for Serokell --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2c08ccfb..20b80b84 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3756,7 +3756,7 @@ packages: "János Tapolczai @jtapolczai": - listsafe - "Serokell @serokell": + "Serokell @serokell": # - importify - log-warper < 0 # GHC 8.4 via lifted-async-0.10.0.1 - o-clock From 2114bf29a77573ea699a298a44b007d2bc29510c Mon Sep 17 00:00:00 2001 From: Chris Dornan Date: Mon, 5 Apr 2021 17:51:23 +0100 Subject: [PATCH 2637/2682] singleton-bool < 0.1.6 --- build-constraints.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2c08ccfb..fc47014a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6929,10 +6929,12 @@ packages: - persistent-test < 2.12.0.0 - persistent-typed-db < 0.1.0.3 - # https://github.com/commercialhaskell/stackage/issues/5969 - crackNum < 3 + # https://github.com/commercialhaskell/stackage/issues/5975 + - singleton-bool < 0.1.6 + # end of packages # Package flags are applied to individual packages, and override the values of From f60406eda6cbdf109279c939840f2625f21f5413 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Tue, 6 Apr 2021 13:41:34 -0400 Subject: [PATCH 2638/2682] skip tests for hpc-codecov per #5976 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index fc47014a..89608b19 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -7439,6 +7439,7 @@ skipped-tests: - binary-parsers # https://github.com/winterland1989/binary-parsers/issues/3 - simple-affine-space # https://github.com/commercialhaskell/stackage/issues/5110 - hw-kafka-client # https://github.com/commercialhaskell/stackage/pull/5542 + - hpc-codecov # timeouts? https://github.com/commercialhaskell/stackage/issues/5976 # Missing foreign library - symengine # symengine From 18c6961b705fca0fce72babd4eabbdc2ff02a20a Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Tue, 6 Apr 2021 13:59:10 -0400 Subject: [PATCH 2639/2682] expect test failure for dl-fedora per #5977 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 89608b19..dcc5551e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -7728,6 +7728,7 @@ expected-test-failures: - character-cases # https://github.com/aiya000/hs-character-cases/issues/3 - lz4-frame-conduit # https://github.com/nh2/lz4-frame-conduit/issues/3 - dhall-yaml # https://github.com/commercialhaskell/stackage/issues/5640 + - dl-fedora # https://github.com/commercialhaskell/stackage/issues/5977 # Assertion failures due to module name ambiguity # (These _should_ be fixed by using the `hide` section of this file) From 527fd1cb1225437921323166e653ddee076d0904 Mon Sep 17 00:00:00 2001 From: locallycompact Date: Sat, 10 Apr 2021 09:42:40 +0100 Subject: [PATCH 2640/2682] Add composite-aeson-throw, pandoc-dhall-decoder, pandoc-throw. --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index dcc5551e..aa397101 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4048,6 +4048,7 @@ packages: - composite-aeson - composite-aeson-path - composite-aeson-refined + - composite-aeson-throw - composite-base - composite-binary - composite-ekg @@ -4058,6 +4059,8 @@ packages: - ixset-typed-conversions - ixset-typed-hashable-instance - lucid-cdn + - pandoc-dhall-decoder + - pandoc-throw - path-binary-instance - path-extensions - path-like From 6fd911ac8c93313d4b0e300c263bf0230d21c6a7 Mon Sep 17 00:00:00 2001 From: t4ccer <64430288+t4ccer@users.noreply.github.com> Date: Sat, 10 Apr 2021 15:58:29 +0200 Subject: [PATCH 2641/2682] Add `wai-session-redis` I am an author and maintainer of `wai-redis-session` package Checklist: - [x] Meaningful commit message, eg `add my-cool-package` (please not mention `build-constraints.yml`) - [x] At least 30 minutes have passed since uploading to Hackage - [x] On your own machine, you have successfully run the following command (find verify-package in the root of this repo): --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index dcc5551e..3140b4e3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4556,6 +4556,9 @@ packages: - happy-meta - BNFC-meta + "Tomasz Maciosowski @t4ccer": + - wai-session-redis + "Grandfathered dependencies": - Boolean - Decimal From 446fcaef6a8204ef36c5ad1f86126f3a3ca03de7 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sun, 11 Apr 2021 14:33:11 -0400 Subject: [PATCH 2642/2682] restore int-cast --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index dcc5551e..280f6667 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4317,7 +4317,7 @@ packages: # - msgpack-rpc # https://github.com/commercialhaskell/stackage/pull/4471 # - msgpack-idl # https://github.com/commercialhaskell/stackage/pull/4471 - msgpack-aeson < 0 # via msgpack - - int-cast < 0 # ghc 8.10 + - int-cast "Akihito Kirisaki @kirisaki": - caster < 0 # via fast-builder From 1cdd84b44d1ce5fbc7400befc3ad01a4fe7a4e26 Mon Sep 17 00:00:00 2001 From: Georgi Lyubenov Date: Mon, 12 Apr 2021 18:05:42 +0300 Subject: [PATCH 2643/2682] Reenable polysemy --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 280f6667..478688a9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -166,7 +166,7 @@ packages: - type-errors "Matej Niznik @TheMatten": - - polysemy < 0 # via Cabal-3.2.0.0 https://github.com/commercialhaskell/stackage/issues/5718 + - polysemy - polysemy-plugin < 0 - polysemy-zoo < 0 # via hedis - loopbreaker < 0 # ghc 8.10 From 453ef0a01b4f19fa5729f682b417a796f0feaf48 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 15 Apr 2021 00:13:58 +0800 Subject: [PATCH 2644/2682] README: first travis to github change lots of urls to fix yet --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index dfd4acf5..2a07a7b7 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ We welcome all packages, provided: Full details on how to add and test a package can be found in the [maintainers agreement](https://github.com/commercialhaskell/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 +to Hackage and being available to the Github workflow action 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. From 02fea20cccc038198bacdd6b583f5ac3571b04cc Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 15 Apr 2021 01:49:42 +0800 Subject: [PATCH 2645/2682] bump generic-lens and -optics and drop it-has (#5842) --- build-constraints.yaml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 280f6667..29cf7f44 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4461,7 +4461,7 @@ packages: - slack-api "Dobromir Nikolov @dnikolovv": - - it-has + - it-has < 0 # generic-lens 2.1 "Gabriele Sales @gbrsales": - cabal-appimage @@ -6842,11 +6842,6 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5836 - clock < 0.8.2 - # https://github.com/commercialhaskell/stackage/issues/5842 - - generic-lens < 2.1.0.0 - - generic-lens-core < 2.1.0.0 - - generic-optics < 2.1.0.0 - # https://github.com/commercialhaskell/stackage/issues/5864 - parser-combinators < 1.3.0 - parser-combinators-tests < 1.3.0 From 01865fb3f5bc8c930d05545d2fdaf134e8699da9 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 15 Apr 2021 02:25:44 +0800 Subject: [PATCH 2646/2682] generic-optics testsuite failing (kcsongor/generic-lens#133) --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 29cf7f44..d781c856 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -7769,7 +7769,6 @@ expected-test-failures: - base16 # https://github.com/commercialhaskell/stackage/issues/5948 - prometheus-client # https://github.com/commercialhaskell/stackage/issues/5948 - # Recursive deps https://github.com/fpco/stackage/issues/1818 - options - text # 1.2.2.1 @@ -7886,6 +7885,8 @@ expected-test-failures: - mmark - mmark-ext + # https://github.com/kcsongor/generic-lens/issues/133 + - generic-optics # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 2dcb7d8e8fc22f106308de89291bb84b1dd93337 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 15 Apr 2021 11:27:29 +0800 Subject: [PATCH 2647/2682] .github: drop the hardcoding of cabal-install --- .github/workflows/check.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 16f9685c..00dd351c 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -9,7 +9,6 @@ jobs: - uses: haskell/actions/setup@v1 with: ghc-version: '8.10' - cabal-version: '3.4' stack-version: '2.5' - uses: actions/cache@v2 with: From 7a33298e6d3be558fd3b1ac7a9f93b4edd9856df Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 15 Apr 2021 13:58:09 +0800 Subject: [PATCH 2648/2682] move Kowainik packages to grandfathered: closes #5965 --- build-constraints.yaml | 37 +++++++++++++------------------------ 1 file changed, 13 insertions(+), 24 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d781c856..2fd01510 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3765,30 +3765,6 @@ packages: - with-utf8 - uncaught-exception - "Kowainik @chshersh @vrom911": - - co-log-core - - co-log < 0 # ansi-terminal 0.11 - - co-log-polysemy < 0 - - colourista < 0 # ansi-terminal 0.11 - - first-class-patterns - - ilist - - life-sync < 0 # optparse-applicative 0.16.1 - - membrain - - relude < 1 # cabal version/parsing issue: https://github.com/commercialhaskell/stackage/issues/5921 - - shellmet - - shortcut-links - - summoner < 0 # neat-interpolation-0.4 - - summoner-tui < 0 # neat-interpolation-0.4 via summoner - - tomland - - typerep-map - - validation-selective - - "Dmitrii Kovanikov @chshersh": - - type-errors-pretty - - "Veronika Romashkina @vrom911": - - slist - "Holmusk @arbus": - elm-street < 0 # via base-4.13.0.0 & warp-3.3.2 @@ -4630,6 +4606,8 @@ packages: - classy-prelude-conduit - clientsession - cmark-gfm + - co-log-core + - co-log-polysemy < 0 - colour - concurrent-extra - conduit @@ -4706,6 +4684,7 @@ packages: - filemanip - fin - fingertree + - first-class-patterns - fmlist - friendly-time - functor-classes-compat @@ -4759,6 +4738,7 @@ packages: - hxt-unicode - iconv - ieee754 + - ilist - indexed - infer-license - insert-ordered-containers @@ -4785,6 +4765,7 @@ packages: - lzma - managed - math-functions + - membrain - mersenne-random-pure64 - mfsolve - microstache @@ -4861,6 +4842,7 @@ packages: - regex-tdfa-text < 0 # via regex-base-0.94.0.0 - relapse - relational-schemas + - relude < 1 # cabal version/parsing issue: https://github.com/commercialhaskell/stackage/issues/5921 - rerebase - resolv - resource-pool @@ -4884,12 +4866,15 @@ packages: - setenv - shakespeare - shell-escape + - shellmet + - shortcut-links - silently - simple-reflect - simple-sendfile - singleton-bool - size-based < 0 # ghc 8.10 - skein + - slist - snap-core - some - special-values @@ -4949,14 +4934,17 @@ packages: - timeit - tls-session-manager - token-bucket < 0 # via base-4.13.0.0 + - tomland - tonatona < 0 # via tonaparser - transformers-base - tree-diff - trivial-constraint < 0 # ghc 8.10.1 #5447/closed - true-name < 0 # MonadFail - tuple-th + - type-errors-pretty - type-fun < 0 # ghc 8.10.1 #5448/closed - type-hint + - typerep-map - uglymemo - unbounded-delays - universe @@ -4972,6 +4960,7 @@ packages: - utf8-light - utf8-string - uuid-types + - validation-selective - vault - vec - vector From 8b99976ed7363c146c1db25a10a1e21e1521a72e Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 15 Apr 2021 14:00:39 +0800 Subject: [PATCH 2649/2682] versions < 5.0 (#5982) --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2fd01510..c1d7748b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6919,6 +6919,8 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5975 - singleton-bool < 0.1.6 + # https://github.com/commercialhaskell/stackage/issues/5982 + - versions < 5.0 # end of packages # Package flags are applied to individual packages, and override the values of From 65909158489e8efee4d3de5c2ea886ba50117a21 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 15 Apr 2021 15:07:00 +0800 Subject: [PATCH 2650/2682] allow wai-session-redis testsuite to fail (#5980) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4fd6b763..08ba23f9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -7689,6 +7689,7 @@ expected-test-failures: - wai-cors # PhantomJS - wai-session-postgresql # PostgreSQL - wai-rate-limit-redis # Redis + - wai-session-redis # https://github.com/commercialhaskell/stackage/pull/5980 - web3 # requires running server - webdriver-angular # webdriver server - websockets From 59605f8eed9821868e09c38f4e3903cccd0f4d62 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 15 Apr 2021 15:18:15 +0800 Subject: [PATCH 2651/2682] yesod-form < 1.7 (#5983) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 08ba23f9..b7da45de 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -6933,6 +6933,9 @@ packages: # https://github.com/commercialhaskell/stackage/issues/5982 - versions < 5.0 + + # https://github.com/commercialhaskell/stackage/issues/5983 + - yesod-form < 1.7 # end of packages # Package flags are applied to individual packages, and override the values of From 7ce5823bbb87ddd4b861c460bd36783a2e0af527 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 15 Apr 2021 15:43:53 +0800 Subject: [PATCH 2652/2682] add koji under juhp --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index b7da45de..696344ab 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1668,6 +1668,7 @@ packages: - hkgr - http-directory - http-query + - koji - pagure-cli - pkgtreediff - rhbzquery From caf890db4493c9ab427e6bd932d7652fe7eacb28 Mon Sep 17 00:00:00 2001 From: Brandon Chinn Date: Thu, 15 Apr 2021 08:47:13 -0700 Subject: [PATCH 2653/2682] Remove deprecated resourcet-pool --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 696344ab..b84dc558 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4339,7 +4339,6 @@ packages: - th-test-utils "Brandon Chinn @brandonchinn178": - - resourcet-pool - persistent-mtl "Akshay Mankar @akshaymankar": From 919af06269c281fb9769761edecee7661315d6d6 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sat, 17 Apr 2021 18:06:45 +0800 Subject: [PATCH 2654/2682] enable warp-3.3.15: needs network-run (#5980, t4ccer/wai-session-redis#1) wai-session-redis has an overtight bound on warp, so temporarily disabling --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5eb43dd5..bcabe3bf 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4537,7 +4537,7 @@ packages: - BNFC-meta "Tomasz Maciosowski @t4ccer": - - wai-session-redis + - wai-session-redis < 0 # https://github.com/t4ccer/wai-session-redis/issues/1 "Rory Tyler Hayford @ngua": - ipa @@ -4802,6 +4802,7 @@ packages: - network-byte-order - network-info - network-ip + - network-run - network-uri < 2.7.0.0 || > 2.7.0.0 # 2.7.0.0 was deprecated, don't remove bound until >2.7.0.0 is released. - newtype - nicify-lib From 6c54de9e5d74253274b8d55506833a84e6703713 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sat, 17 Apr 2021 18:16:03 +0800 Subject: [PATCH 2655/2682] add haskell-awk @gelisam --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index bcabe3bf..0925c193 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4522,6 +4522,7 @@ packages: - tree-view "Samuel Gélineau @gelisam": + - haskell-awk - hint - recursion-schemes From 4042c4c97c15cc31a9573089840191359ae7c504 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 18 Apr 2021 18:28:20 +0800 Subject: [PATCH 2656/2682] haskell-awk missing testsuite files (gelisam/hawk#257) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0925c193..d7bf485f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -7710,6 +7710,7 @@ expected-test-failures: - crypto-pubkey # https://github.com/vincenthz/hs-crypto-pubkey/issues/23 - doctest-discover # 0.1.0.9 https://github.com/karun012/doctest-discover/issues/22 - doctest + - haskell-awk # https://github.com/gelisam/hawk/issues/257 - reanimate-svg # https://github.com/commercialhaskell/stackage/issues/5688 - ghc-events # https://github.com/haskell/ghc-events/issues/70 From badaa71d84d2a8f67e16947e6ae6c6f3106a287c Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 18 Apr 2021 18:34:10 +0800 Subject: [PATCH 2657/2682] reinstate wai-session-redis (t4ccer/wai-session-redis#1, #5980) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d7bf485f..3f144c9d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4538,7 +4538,7 @@ packages: - BNFC-meta "Tomasz Maciosowski @t4ccer": - - wai-session-redis < 0 # https://github.com/t4ccer/wai-session-redis/issues/1 + - wai-session-redis "Rory Tyler Hayford @ngua": - ipa From f4dad0033a1465da74e81c89f6484ed95e550ad7 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 19 Apr 2021 10:48:23 +0800 Subject: [PATCH 2658/2682] http2 testsuite missing 'spec' executable (kazu-yamamoto/http2#22) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3f144c9d..6ae24f2d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -7542,6 +7542,7 @@ skipped-tests: # executable not found - egison # https://github.com/egison/egison/issues/250 + - http2 # https://github.com/kazu-yamamoto/http2/issues/22 # TODO - rpmbuild-order From 6cf1307ce37fc2dbe72247808ee6978f589f1f19 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 19 Apr 2021 19:48:26 +0800 Subject: [PATCH 2659/2682] build.sh: hackage distro upload should work soon again https://github.com/commercialhaskell/curator/issues/8 --- automated/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/automated/build.sh b/automated/build.sh index d9d02a02..aa62c587 100755 --- a/automated/build.sh +++ b/automated/build.sh @@ -141,8 +141,8 @@ docker run $ARGS_UPLOAD $IMAGE /bin/bash -c "exec curator check-target-available # * Upload the new snapshot .yaml file to the appropriate Github repo, also upload its constraints docker run $ARGS_UPLOAD $IMAGE /bin/bash -c "curator upload-docs --target $TARGET && curator upload-github --target $TARGET" -# For some reason, registering on Hackage fails with inscrutable error messages. Disabling. -# docker run $ARGS_UPLOAD $IMAGE /bin/bash -c "exec curator hackage-distro --target $TARGET" +# fixed in https://github.com/commercialhaskell/curator/pull/24 +docker run $ARGS_UPLOAD $IMAGE /bin/bash -c "exec curator hackage-distro --target $TARGET" # Build and push docker image fpco/stack-build & fpco/stack-build-small for current release From cf5a7625b3f499a6228fc9b72893b0e33cf4aefa Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 19 Apr 2021 23:16:44 +0800 Subject: [PATCH 2660/2682] build.sh: update to latest curator build with commercialhaskell/curator#24 --- automated/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automated/build.sh b/automated/build.sh index aa62c587..4e006515 100755 --- a/automated/build.sh +++ b/automated/build.sh @@ -63,7 +63,7 @@ BINDIR=$(cd $ROOT/work/bin ; pwd) cd $BINDIR rm -f curator stack *.bz2 -curl -L "https://github.com/commercialhaskell/curator/releases/download/commit-8bf6978fc0c3556a2c85b72b48d516ed55834d47/curator.bz2" | bunzip2 > curator +curl -L "https://github.com/commercialhaskell/curator/releases/download/commit-1ef870178f6a0544fe5a3fd23a83fc075aabd695/curator.bz2" | bunzip2 > curator chmod +x curator echo -n "curator version: " docker run --rm -v $(pwd)/curator:/exe $IMAGE /exe --version From 51fbd472268e226d77aa430fb6a9a620a8426d05 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 20 Apr 2021 00:01:47 +0800 Subject: [PATCH 2661/2682] enable servant-auth* (commercialhaskell/lts-haskell#317) --- build-constraints.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6ae24f2d..5e2cf8bc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4051,12 +4051,12 @@ packages: - mixpanel-client < 0 # ghc 8.10 via servant - netrc < 0 # ghc 8.10 - pretty-sop - - servant-auth < 0 # ghc 8.10 - - servant-auth-server < 0 # ghc 8.10 via servant - - servant-auth-client < 0 # via warp-3.3.2 - - servant-auth-swagger < 0 # ghc 8.10 via servant - - servant-auth-docs < 0 # ghc 8.10 via servant - - servant-elm < 0 # ghc 8.10 via servant + - servant-auth # ghc 8.10 + - servant-auth-server # ghc 8.10 via servant + - servant-auth-client # via warp-3.3.2 + - servant-auth-swagger # ghc 8.10 via servant + - servant-auth-docs # ghc 8.10 via servant + - servant-elm # ghc 8.10 via servant - systemd From 7c5fed008d9840903c1a05221ba0b45e1832144e Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 20 Apr 2021 00:24:57 +0800 Subject: [PATCH 2662/2682] README: update/refresh various links - CI - embed stack link - update other repos and remove stackage-* tools --- README.md | 24 ++++++------------------ 1 file changed, 6 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index 2a07a7b7..51383a34 100644 --- a/README.md +++ b/README.md @@ -1,16 +1,14 @@ stackage ======== - -[![Build Status](https://travis-ci.org/commercialhaskell/stackage.svg?branch=master)](https://travis-ci.org/commercialhaskell/stackage) +[![check](https://github.com/commercialhaskell/stackage/actions/workflows/check.yml/badge.svg)](https://github.com/commercialhaskell/stackage/actions/workflows/check.yml) [![Join the chat at https://gitter.im/commercialhaskell/stackage](https://badges.gitter.im/commercialhaskell/stackage.svg)](https://gitter.im/commercialhaskell/stackage?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) "Stable Hackage": creating a vetted set of packages from Hackage. This repository is for package authors and maintainers to get their packages into Stackage. If you simply want to use Stackage as an end user, please follow the instructions on [https://www.stackage.org/](https://www.stackage.org). -We strongly recommend using the Haskell tool stack for doing builds, which -includes built-in Stackage support: [stack](https://github.com/commercialhaskell/stack) [![Build Status](https://dev.azure.com/commercialhaskell/stack/_apis/build/status/commercialhaskell.stack?branchName=master)](https://dev.azure.com/commercialhaskell/stack/_build/latest?definitionId=1?branchName=master). - +We strongly recommend using the Haskell [stack](https://github.com/commercialhaskell/stack) tool for doing builds, which +includes built-in Stackage support. Add your package ---------------- @@ -37,23 +35,13 @@ contains the metadata on packages to be included in future builds and some project information. In addition, we have the following repositories: * [stackage-server](https://github.com/fpco/stackage-server) [![Build Status](https://travis-ci.org/fpco/stackage-server.svg?branch=master)](https://travis-ci.org/fpco/stackage-server) -* [stackage-curator](https://github.com/fpco/stackage-curator) [![Build Status](https://travis-ci.org/fpco/stackage-curator.svg?branch=master)](https://travis-ci.org/fpco/stackage-curator) -* [lts-haskell](https://github.com/fpco/lts-haskell) -* [stackage-nightly](https://github.com/fpco/stackage-nightly) - -We also support some add-on tools to cabal-install to make its usage with -Stackage both easier and more secure: - -* [stackage-cli](https://github.com/fpco/stackage-cli) [![Build Status](https://travis-ci.org/fpco/stackage-cli.svg?branch=master)](https://travis-ci.org/fpco/stackage-cli) -* [stackage-update](https://github.com/fpco/stackage-update) [![Build Status](https://travis-ci.org/fpco/stackage-update.svg?branch=master)](https://travis-ci.org/fpco/stackage-update) -* [stackage-upload](https://github.com/fpco/stackage-upload) [![Build Status](https://travis-ci.org/fpco/stackage-upload.svg?branch=master)](https://travis-ci.org/fpco/stackage-upload) -* [stackage-install](https://github.com/fpco/stackage-install) [![Build Status](https://travis-ci.org/fpco/stackage-install.svg?branch=master)](https://travis-ci.org/fpco/stackage-install) -* [stackage-build-plan](https://github.com/fpco/stackage-build-plan) [![Build Status](https://travis-ci.org/fpco/stackage-build-plan.svg?branch=master)](https://travis-ci.org/fpco/stackage-build-plan) +* [curator](https://github.com/commercialhaskell/curator) [![Build Status](https://travis-ci.org/fpco/stackage-curator.svg?branch=master)](https://travis-ci.org/fpco/stackage-curator) +* [lts-haskell](https://github.com/commercialhaskell/lts-haskell) +* [stackage-snapshots](https://github.com/commercialhaskell/stackage-snapshots/) Curious how it all fits together? See the [Stackage data flow](https://github.com/commercialhaskell/stackage/blob/master/DATA-FLOW.md). - Build the package set --------------------- From c743fd4ae8e95a3fc1da3d024f9076eeafa0f45c Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 20 Apr 2021 00:30:00 +0800 Subject: [PATCH 2663/2682] README: also update the stackage-server CI link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 51383a34..92f4150b 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ The Stackage project consists of multiple repositories. This repository contains the metadata on packages to be included in future builds and some project information. In addition, we have the following repositories: -* [stackage-server](https://github.com/fpco/stackage-server) [![Build Status](https://travis-ci.org/fpco/stackage-server.svg?branch=master)](https://travis-ci.org/fpco/stackage-server) +* [stackage-server](https://github.com/fpco/stackage-server) [![Base image](https://github.com/fpco/stackage-server/actions/workflows/base.yml/badge.svg)](https://github.com/fpco/stackage-server/actions/workflows/base.yml) * [curator](https://github.com/commercialhaskell/curator) [![Build Status](https://travis-ci.org/fpco/stackage-curator.svg?branch=master)](https://travis-ci.org/fpco/stackage-curator) * [lts-haskell](https://github.com/commercialhaskell/lts-haskell) * [stackage-snapshots](https://github.com/commercialhaskell/stackage-snapshots/) From 3133052d21b2395c8b3bda21f7b551e8fb16c7a9 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 20 Apr 2021 00:45:45 +0800 Subject: [PATCH 2664/2682] readme: intro tweaks --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 92f4150b..ed1c29ce 100644 --- a/README.md +++ b/README.md @@ -3,8 +3,10 @@ stackage [![check](https://github.com/commercialhaskell/stackage/actions/workflows/check.yml/badge.svg)](https://github.com/commercialhaskell/stackage/actions/workflows/check.yml) [![Join the chat at https://gitter.im/commercialhaskell/stackage](https://badges.gitter.im/commercialhaskell/stackage.svg)](https://gitter.im/commercialhaskell/stackage?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) -"Stable Hackage": creating a vetted set of packages from Hackage. -This repository is for package authors and maintainers to get their packages into Stackage. +Stable sets of Haskell Packages from Hackage + +_This repository is for package authors and maintainers to get their packages into Stackage._ + If you simply want to use Stackage as an end user, please follow the instructions on [https://www.stackage.org/](https://www.stackage.org). We strongly recommend using the Haskell [stack](https://github.com/commercialhaskell/stack) tool for doing builds, which From d3a99d7982e08e65657289fc04238a7a7b046bdb Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 20 Apr 2021 01:09:53 +0800 Subject: [PATCH 2665/2682] CURATORS: clean up old lts building comments --- CURATORS.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/CURATORS.md b/CURATORS.md index 808e4a1f..29ac271a 100644 --- a/CURATORS.md +++ b/CURATORS.md @@ -313,8 +313,6 @@ For an LTS minor bump, you'll typically want to: Then run `NOPLAN=1 build.sh` to build the generate an updated snapshot. -This replaces `CONSTRAINTS=...' /var/stackage/stackage/automated/build.sh lts-x.y` for the old curator-1. - If a build fails for bounds reasons, see all of the advice above. If the code itself doesn't build, or tests fail, open up an issue and then either put in a version bound to avoid that version or something else. It's difficult to give @@ -329,7 +327,7 @@ if one needs to revert one package, say due to a build or test regression, one can edit `current-plan.yaml` and updated the SHA256 hash of the .cabal file, to avoid having to rebuild everything again.) -_Sadly no longer true currently_: ~~Note LTS builds inherit the current Hackage data (stack updated for Nightly) to avoid excess extra rebuilding.~~ +Note LTS builds without NOPLAN will use the latest Hackage data. ### Timing From b9fe72897d3672ead62406e3dd3b487ed44f7b5a Mon Sep 17 00:00:00 2001 From: Jeremy Schlatter Date: Mon, 19 Apr 2021 19:06:39 -0700 Subject: [PATCH 2666/2682] Reenable polysemy-plugin --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5e2cf8bc..9d3755b0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -167,7 +167,7 @@ packages: "Matej Niznik @TheMatten": - polysemy - - polysemy-plugin < 0 + - polysemy-plugin - polysemy-zoo < 0 # via hedis - loopbreaker < 0 # ghc 8.10 From 537bf22a2143cbddfc429c59162d333032323ad4 Mon Sep 17 00:00:00 2001 From: jkachmar Date: Thu, 22 Apr 2021 15:09:32 -0400 Subject: [PATCH 2667/2682] Skips shellcheck haddocks koalaman/shellcheck#2216 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5e2cf8bc..0cb5feaf 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -7960,6 +7960,9 @@ expected-haddock-failures: # https://github.com/egison/egison/issues/251 - egison + + # https://github.com/koalaman/shellcheck/issues/2216 + - shellcheck # end of expected-haddock-failures From 62fd6568ba2181add1e558424e0684fed16a29e1 Mon Sep 17 00:00:00 2001 From: jkachmar Date: Thu, 22 Apr 2021 15:14:16 -0400 Subject: [PATCH 2668/2682] Skips servant-elm tests haskell-servant/servant-elm#62 --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0cb5feaf..9959f3be 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -7899,6 +7899,10 @@ expected-test-failures: # https://github.com/kcsongor/generic-lens/issues/133 - generic-optics + + # https://github.com/haskell-servant/servant-elm/issues/62 + - servant-elm + # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 58635dbf8afc0a467b0693caa1dc2c6d0a8ff724 Mon Sep 17 00:00:00 2001 From: jkachmar Date: Thu, 22 Apr 2021 18:23:23 -0400 Subject: [PATCH 2669/2682] Expects ShellCheck haddock failures The original commit (537bf22a2143cbddfc429c59162d333032323ad4) ignored case-sensitivity in the package name. cf. upstream issue koalaman/shellcheck#2216 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9959f3be..870f82ef 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -7966,7 +7966,7 @@ expected-haddock-failures: - egison # https://github.com/koalaman/shellcheck/issues/2216 - - shellcheck + - ShellCheck # end of expected-haddock-failures From dd85d69dcf9aeb1509f394eb8041daaf2b3c7f9d Mon Sep 17 00:00:00 2001 From: Matt Parsons Date: Fri, 23 Apr 2021 08:25:27 -0600 Subject: [PATCH 2670/2682] Add lift-type --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 481ebe41..b6075465 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2452,6 +2452,7 @@ packages: - hspec-hedgehog - exception-via - record-wrangler + - lift-type "Matthew Pickering @mpickering": - refact From 7857e8b743c50bd2e299620677c023f084f63d59 Mon Sep 17 00:00:00 2001 From: jkachmar Date: Fri, 23 Apr 2021 15:03:45 -0400 Subject: [PATCH 2671/2682] Re-enables servant-elm & ShellCheck stuff --- build-constraints.yaml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 481ebe41..07d4cda0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -7900,9 +7900,6 @@ expected-test-failures: # https://github.com/kcsongor/generic-lens/issues/133 - generic-optics - # https://github.com/haskell-servant/servant-elm/issues/62 - - servant-elm - # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run @@ -7964,9 +7961,6 @@ expected-haddock-failures: # https://github.com/egison/egison/issues/251 - egison - - # https://github.com/koalaman/shellcheck/issues/2216 - - ShellCheck # end of expected-haddock-failures From 38c84fb8c3716fdc51c390cb03d20ff3948ce252 Mon Sep 17 00:00:00 2001 From: jkachmar Date: Fri, 23 Apr 2021 15:32:27 -0400 Subject: [PATCH 2672/2682] Re-disables servant-elm tests This was fixed upstream but is awaiting a formal release. --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f48eed0a..7571577d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -7901,6 +7901,9 @@ expected-test-failures: # https://github.com/kcsongor/generic-lens/issues/133 - generic-optics + # https://github.com/haskell-servant/servant-elm/issues/62 + - servant-elm + # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 0eac64195be2166a45a5ff789982524fb79886dc Mon Sep 17 00:00:00 2001 From: Alexander Vershilov Date: Sat, 24 Apr 2021 11:56:52 +0300 Subject: [PATCH 2673/2682] Add HaskellNet package. HaskellNet is maintained by @qnikst and is buildable in the stackage nighly --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7571577d..f08896c0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1655,7 +1655,7 @@ packages: - snowflake "Leza M. Lutonda @lemol": - - HaskellNet < 0 # mime-mail-0.5 + # - HaskellNet < 0 # mime-mail-0.5 - HaskellNet-SSL < 0 # mime-mail-0.5 via HaskellNet "Jens Petersen @juhp": From ee6be32743981c3db1fa5632952bc94051e52e19 Mon Sep 17 00:00:00 2001 From: Tom McLaughlin Date: Sat, 24 Apr 2021 14:41:30 -0700 Subject: [PATCH 2674/2682] Take ownership of fsnotify --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7571577d..3cc97c0f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -307,6 +307,7 @@ packages: "Tom McLaughlin @thomasjm": - aeson-typescript < 0 # th-abstraction-0.3 + - fsnotify - slack-progressbar "Paulo Tanaka @paulot": @@ -744,7 +745,6 @@ packages: - unliftio-core - unliftio - - fsnotify - hinotify - hfsevents - Win32-notify From 7483bbe970620dc9c02b471e9c8b7dc4be28feca Mon Sep 17 00:00:00 2001 From: Tom McLaughlin Date: Sat, 24 Apr 2021 14:42:23 -0700 Subject: [PATCH 2675/2682] Add sandwich packages --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 27f8431a..d5cb0b79 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -308,6 +308,9 @@ packages: "Tom McLaughlin @thomasjm": - aeson-typescript < 0 # th-abstraction-0.3 - fsnotify + - sandwich + - sandwich-slack + - sandwich-webdriver - slack-progressbar "Paulo Tanaka @paulot": From 2ac9baff085936ace823938b7315f4c51e6ab328 Mon Sep 17 00:00:00 2001 From: jkachmar Date: Sun, 25 Apr 2021 18:47:53 -0400 Subject: [PATCH 2676/2682] Re-expects ShellCheck haddock failures --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d5cb0b79..7652d33c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -7968,6 +7968,9 @@ expected-haddock-failures: # https://github.com/egison/egison/issues/251 - egison + + # https://github.com/koalaman/shellcheck/issues/2216 + - ShellCheck # end of expected-haddock-failures From e6832ccd6f66b60391ca5c9214bb4c2de00212a9 Mon Sep 17 00:00:00 2001 From: Alois Cochard Date: Tue, 27 Apr 2021 22:31:50 +0200 Subject: [PATCH 2677/2682] Re-enable machines-binary --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7652d33c..af7add6c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1648,7 +1648,7 @@ packages: - clang-compilation-database < 0 "Alois Cochard @aloiscochard": - - machines-binary < 0 # via machines-0.7 + - machines-binary # on behalf of Bryan O'Sullivan @bos: - wreq From d423810b74180359fcd536fbca8a1c5daa5d6b17 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 29 Apr 2021 18:20:11 +0300 Subject: [PATCH 2678/2682] Upper bound on fast-logger https://github.com/kazu-yamamoto/logger/issues/194 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index af7add6c..1b357747 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4694,7 +4694,7 @@ packages: - expiring-cache-map - extensible-exceptions - fail - - fast-logger + - fast-logger < 3.0.4 # https://github.com/kazu-yamamoto/logger/issues/194 - fast-math - fib < 0 # via base-noprelude-4.13 - file-embed From 74c19624c00e87975696d3b0b183189c52602918 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 29 Apr 2021 21:43:41 +0300 Subject: [PATCH 2679/2682] Upper bound for srcloc #5995 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1b357747..4c22a100 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -94,7 +94,7 @@ packages: - exception-transformers - mainland-pretty - ref-fd - - srcloc + - srcloc < 0.6 # https://github.com/commercialhaskell/stackage/issues/5995 - symbol "Patrick Bahr ": From 4238daf4b6d5db08a144344396fdc058bd6203a5 Mon Sep 17 00:00:00 2001 From: Tom McLaughlin Date: Thu, 29 Apr 2021 17:18:36 -0700 Subject: [PATCH 2680/2682] Add sandwich-quickcheck --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4c22a100..bb207607 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -309,6 +309,7 @@ packages: - aeson-typescript < 0 # th-abstraction-0.3 - fsnotify - sandwich + - sandwich-quickcheck - sandwich-slack - sandwich-webdriver - slack-progressbar From e60dbfad53e64463cc95fe270e8a95b29227632b Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 30 Apr 2021 05:59:02 +0300 Subject: [PATCH 2681/2682] Revert "Upper bound for srcloc #5995" This reverts commit 74c19624c00e87975696d3b0b183189c52602918. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4c22a100..1b357747 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -94,7 +94,7 @@ packages: - exception-transformers - mainland-pretty - ref-fd - - srcloc < 0.6 # https://github.com/commercialhaskell/stackage/issues/5995 + - srcloc - symbol "Patrick Bahr ": From de0b1faec64ed5a4e53cc1bf0b3d0a5baaa4a5c2 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 30 Apr 2021 10:14:30 +0300 Subject: [PATCH 2682/2682] Revert "Upper bound on fast-logger" This reverts commit d423810b74180359fcd536fbca8a1c5daa5d6b17. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 968f665b..2703abf5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -4695,7 +4695,7 @@ packages: - expiring-cache-map - extensible-exceptions - fail - - fast-logger < 3.0.4 # https://github.com/kazu-yamamoto/logger/issues/194 + - fast-logger - fast-math - fib < 0 # via base-noprelude-4.13 - file-embed