From 590d2d55833b3f18b3bf9c33e99cac45bc1d0a44 Mon Sep 17 00:00:00 2001 From: Athan Clark Date: Sat, 26 Jan 2019 00:47:47 -0700 Subject: [PATCH 001/100] 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 c45ea76fe57fbd3955227f86638c7c01690dda94 Mon Sep 17 00:00:00 2001 From: Jeff Happily Date: Fri, 27 Mar 2020 17:21:06 +0800 Subject: [PATCH 002/100] 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 003/100] 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 82cc9d3f15a8a1ed3f85668e4321cacc388a4ee1 Mon Sep 17 00:00:00 2001 From: Jeff Happily Date: Mon, 30 Mar 2020 21:33:08 +0800 Subject: [PATCH 004/100] 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 e9b16909dcab88f59986bc431183335b8d4c332f Mon Sep 17 00:00:00 2001 From: Albert Krewinkel Date: Tue, 7 Apr 2020 13:42:07 +0200 Subject: [PATCH 005/100] 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 7163f2f48de313897da40e00179ab470d32d1469 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 8 Apr 2020 15:43:33 -0700 Subject: [PATCH 006/100] 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 007/100] 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 008/100] 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 009/100] 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 010/100] 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 011/100] 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 012/100] 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 013/100] 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 014/100] 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 015/100] 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 016/100] 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 017/100] 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 018/100] 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 019/100] 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 020/100] 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 021/100] 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 022/100] 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 023/100] 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 024/100] 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 025/100] 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 026/100] 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 027/100] 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 028/100] 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 029/100] 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 030/100] 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 031/100] 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 032/100] 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 033/100] 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 034/100] 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 035/100] 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 036/100] 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 037/100] 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 038/100] 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 039/100] 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 040/100] 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 041/100] 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 042/100] 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 043/100] 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 044/100] 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 045/100] 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 046/100] 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 047/100] 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 048/100] 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 049/100] 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 050/100] 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 051/100] 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 052/100] 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 053/100] 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 054/100] 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 055/100] 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 056/100] 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 057/100] 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 058/100] 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 059/100] 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 060/100] 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 061/100] 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 062/100] 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 063/100] 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 064/100] 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 065/100] 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 066/100] 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 067/100] 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 068/100] 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 069/100] 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 070/100] 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 071/100] 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 072/100] 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 073/100] 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 074/100] 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 075/100] 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 076/100] #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 077/100] 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 078/100] 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 079/100] 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 080/100] 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 081/100] 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 082/100] 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 083/100] 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 084/100] 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 085/100] 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 086/100] 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 087/100] 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 088/100] 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 089/100] 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 090/100] 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 091/100] 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 092/100] 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 093/100] 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 094/100] 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 095/100] 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 096/100] 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 097/100] 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 098/100] 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 099/100] 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 100/100] 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