From 46f95d8ddbf10babb8242bc81543f97d27a83e79 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 24 Dec 2014 12:13:36 +0200 Subject: [PATCH 001/933] GHC 7.10 testing changes DO NOT MERGE --- Stackage/PerformBuild.hs | 19 +++++++++++-------- build-constraints.yaml | 22 +++------------------- 2 files changed, 14 insertions(+), 27 deletions(-) diff --git a/Stackage/PerformBuild.hs b/Stackage/PerformBuild.hs index c74b449a..b1682e4e 100644 --- a/Stackage/PerformBuild.hs +++ b/Stackage/PerformBuild.hs @@ -168,6 +168,7 @@ performBuild' pb@PerformBuild {..} = withBuildDir $ \builddir -> do $ \ClosedStream Inherited Inherited -> return () pbLog $ encodeUtf8 "Copying built-in Haddocks\n" copyBuiltInHaddocks (pbDocDir pb) + pbLog $ encodeUtf8 "Finished copying built-in Haddocks\n" sem <- atomically $ newTSem pbJobs active <- newTVarIO (0 :: Int) @@ -288,7 +289,7 @@ singleBuild pb@PerformBuild {..} SingleBuild {..} = log' t = do i <- readTVarIO sbActive errs <- readTVarIO sbErrsVar - pbLog $ encodeUtf8 $ concat + when False $ pbLog $ encodeUtf8 $ concat [ t , " (pending: " , tshow i @@ -367,7 +368,6 @@ singleBuild pb@PerformBuild {..} SingleBuild {..} = args = "haddock" : "--hyperlink-source" : "--html" - : "--hoogle" : "--html-location=../$pkg-$version/" : hfsOpts @@ -416,12 +416,15 @@ singleBuild pb@PerformBuild {..} SingleBuild {..} = warn t = atomically $ modifyTVar sbWarningsVar (. (t:)) updateErrs exc = do - log' $ concat - [ display (piName sbPackageInfo) - , ": " - , tshow exc - ] - atomically $ modifyTVar sbErrsVar $ insertMap (piName sbPackageInfo) exc' + case exc' of + DependencyFailed _ -> return () + _ -> do + log' $ concat + [ display (piName sbPackageInfo) + , ": " + , tshow exc + ] + atomically $ modifyTVar sbErrsVar $ insertMap (piName sbPackageInfo) exc' where exc' = case fromException exc of diff --git a/build-constraints.yaml b/build-constraints.yaml index c4de7765..74b60e4b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2,7 +2,7 @@ packages: "Michael Snoyman michael@snoyman.com @snoyberg": - bzlib-conduit - - cabal-install < 1.19 # GHC 7.10 bumpd to 1.22 + - cabal-install - cabal-src - case-insensitive - classy-prelude-yesod @@ -264,7 +264,7 @@ packages: - monad-products - monad-st - monad-st - - mtl < 2.2 # GHC 7.10 bump + - mtl - nats - numeric-extras - parsers @@ -596,7 +596,7 @@ packages: - hasql-backend - hasql-postgres - list-t - - mtl-prelude < 2 # GHC 7.10 bump + - mtl-prelude - neat-interpolation - partial-handler - postgresql-binary @@ -705,10 +705,6 @@ packages: "Stackage upper bounds": - # Force a specific version that's compatible with transformers 0.3 - - transformers-compat == 0.3.3.3 - - mtl-compat < 0.2 # https://github.com/fpco/stackage/issues/446 - # https://github.com/fpco/stackage/issues/291 - random < 1.0.1.3 @@ -769,24 +765,12 @@ package-flags: simplelocalnet: true p2p: true - # GHC 7.10: Remove this - # Note that the flag is lower-cased, because that's what Cabal does - # Perhaps the codebase should automatically lower case flag names? - storable-complex: - instanceinbase: false - logfloat: splitbase: true curl: new-base: true - # GHC 7.10 remove - aeson: - old-locale: true - tttool: - old-locale: true - hxt: network-uri: true hxt-http: From 5aecf6deb7e548e3b33b3c040c3e48fdbee19576 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 18 Mar 2015 15:37:00 +0200 Subject: [PATCH 002/933] Tweak mtl-compat constraints --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ce127ee5..75cfb730 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -831,7 +831,7 @@ package-flags: old-time: false mtl-compat: - two-point-one: true + two-point-one: false two-point-two: false # By skipping a test suite, we do not pull in the build dependencies From b9de1c28cd7cfe3a74bc3a9a70485903a99ac6ce Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 18 Mar 2015 15:47:25 +0200 Subject: [PATCH 003/933] Return code to match master branch --- Stackage/PerformBuild.hs | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/Stackage/PerformBuild.hs b/Stackage/PerformBuild.hs index e64fbd07..06c1edc6 100644 --- a/Stackage/PerformBuild.hs +++ b/Stackage/PerformBuild.hs @@ -180,7 +180,6 @@ performBuild' pb@PerformBuild {..} = withBuildDir $ \builddir -> do $ \ClosedStream Inherited Inherited -> return () pbLog $ encodeUtf8 "Copying built-in Haddocks\n" copyBuiltInHaddocks (pbDocDir pb) - pbLog $ encodeUtf8 "Finished copying built-in Haddocks\n" sem <- atomically $ newTSem pbJobs active <- newTVarIO (0 :: Int) @@ -314,7 +313,7 @@ singleBuild pb@PerformBuild {..} registeredPackages SingleBuild {..} = log' t = do i <- readTVarIO sbActive errs <- readTVarIO sbErrsVar - when False $ pbLog $ encodeUtf8 $ concat + pbLog $ encodeUtf8 $ concat [ t , " (pending: " , tshow i @@ -486,15 +485,12 @@ singleBuild pb@PerformBuild {..} registeredPackages SingleBuild {..} = warn t = atomically $ modifyTVar sbWarningsVar (. (t:)) updateErrs exc = do - case exc' of - DependencyFailed _ -> return () - _ -> do - log' $ concat - [ display (piName sbPackageInfo) - , ": " - , tshow exc - ] - atomically $ modifyTVar sbErrsVar $ insertMap (piName sbPackageInfo) exc' + log' $ concat + [ display (piName sbPackageInfo) + , ": " + , tshow exc + ] + atomically $ modifyTVar sbErrsVar $ insertMap (piName sbPackageInfo) exc' where exc' = case fromException exc of From 697c13727ffcd470ee539c3ad89031784f35def3 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 22 Mar 2015 16:57:26 +0200 Subject: [PATCH 004/933] Update Travis for GHC 7.10 --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index cf90696a..70421914 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,5 @@ env: - - CABALVER=1.20 GHCVER=7.8.4 + - CABALVER=1.22 GHCVER=7.10.1 # Note: the distinction between `before_install` and `install` is not important. before_install: From c7ba37cf496fd6f7b4c51ae0f6df225c8f3108c9 Mon Sep 17 00:00:00 2001 From: Oleg Grenrus Date: Mon, 30 Mar 2015 20:14:06 +0300 Subject: [PATCH 005/933] Add edit-distance and lattice --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 81d05f53..a2010115 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -748,6 +748,8 @@ packages: - string-conversions "Oleg Grenrus oleg.grenrus@iki.fi @phadej": + - edit-distance + - lattices - waitra "Adam C. Foltzer acfoltzer@galois.com @acfoltzer": From 106638d32b705e9ee56e794d6c88baf9fabd7b58 Mon Sep 17 00:00:00 2001 From: Vivian McPhail Date: Tue, 31 Mar 2015 06:29:25 +1300 Subject: [PATCH 006/933] Update build-constraints.yaml Added Vivian McPhail's projects to `build-constraints.yaml`. --- build-constraints.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 81d05f53..7bc74d1d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -831,6 +831,16 @@ packages: "Andres Löh @kosmikus": - generics-sop + "Vivian McPhail ": + - hmatrix-gsl-stats + - hstatistics + - hsignal + - plot + - plot-gtk + - plot-gtk3 + - vector-buffer + - hmatrix-repa + "Stackage upper bounds": # GHC 7.8 uppdate bound - haddock-api < 2.16 From 94a49a22a112dc02118c6513fc65c84b4c5190d0 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 30 Mar 2015 21:15:11 +0300 Subject: [PATCH 007/933] Add extra system dependency (pinging @manny-fp) --- debian-bootstrap.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index 827e8460..2f158306 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -53,6 +53,7 @@ apt-get install -y \ liblzma-dev \ libsdl2-dev \ libxss-dev \ + libgtk-3-dev \ libzmq3-dev mkdir /tmp/nettle-build From 024beb30098e0be18363c477799fbc11462b0d48 Mon Sep 17 00:00:00 2001 From: Noam Lewis Date: Tue, 31 Mar 2015 00:14:26 +0300 Subject: [PATCH 008/933] add xml-to-json and xml-to-json-fast --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 10fd195b..914683f8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -843,6 +843,10 @@ packages: - vector-buffer - hmatrix-repa + "Noam Lewis @sinelaw": + - xml-to-json + - xml-to-json-fast + "Stackage upper bounds": # GHC 7.8 uppdate bound - haddock-api < 2.16 From 03e5c9149a38c81c423283c63443193ae77a8d38 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 31 Mar 2015 10:29:30 +0300 Subject: [PATCH 009/933] Add some new packages (pinging @dysinger) --- build-constraints.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 914683f8..a948e6ea 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -125,6 +125,11 @@ packages: - ide-backend-server - ide-backend-rts + - hackage-mirror + - wai-middleware-consul + - monad-logger-json + - monad-logger-syslog + "Omari Norman ": - rainbow - multiarg From 888dddfd6fc435cdde82bd3aea510608bacc7b8e Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 31 Mar 2015 16:39:37 +0300 Subject: [PATCH 010/933] Upper bound for #514 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index a948e6ea..1b190bb5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -896,6 +896,9 @@ packages: # https://github.com/fpco/stackage/issues/509 - srcloc < 0.5 + # https://github.com/fpco/stackage/issues/514 + - tasty-golden < 2.3 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From c0b2b91dcbf8293427a162c274016fbe2a793d02 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 31 Mar 2015 20:14:04 +0300 Subject: [PATCH 011/933] Remove upper bounds and close #514 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1b190bb5..a948e6ea 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -896,9 +896,6 @@ packages: # https://github.com/fpco/stackage/issues/509 - srcloc < 0.5 - # https://github.com/fpco/stackage/issues/514 - - tasty-golden < 2.3 - # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 70ee24425755d29397adfada07c1f8a83afcf968 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 1 Apr 2015 07:28:53 +0300 Subject: [PATCH 012/933] Temporarily blocking ede due to #487 --- build-constraints.yaml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a948e6ea..afe3ad0d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -811,7 +811,8 @@ packages: - amazonka-sts - amazonka-support - amazonka-swf - - ede + # https://github.com/fpco/stackage/issues/487 + # - ede Temporary block: trifecta uses blaze-markup < 0.7 - pagerduty - semver - text-manipulate @@ -867,10 +868,6 @@ packages: # https://github.com/fpco/stackage/issues/442 - blaze-builder < 0.4 - # https://github.com/fpco/stackage/issues/487 - - blaze-markup < 0.7 - - blaze-html < 0.8 - # https://github.com/fpco/stackage/issues/467 - lens < 4.8 From 4b66f128be1ff786daa2c38de5a946ee901c6981 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 1 Apr 2015 07:42:45 +0300 Subject: [PATCH 013/933] Expected test failure for consul-haskell --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index afe3ad0d..93130166 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1187,6 +1187,9 @@ expected-test-failures: # Just a temporary package with a flimsy, inherited test suite - Cabal-ide-backend + # Requires running server + - consul-haskell + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 3358e498c2acc62350a97ab2863a572cec31aa0e Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 1 Apr 2015 08:05:05 +0300 Subject: [PATCH 014/933] Add back ede and close #487 --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 93130166..8d27343c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -811,8 +811,7 @@ packages: - amazonka-sts - amazonka-support - amazonka-swf - # https://github.com/fpco/stackage/issues/487 - # - ede Temporary block: trifecta uses blaze-markup < 0.7 + - ede - pagerduty - semver - text-manipulate From 7d55a8b9fc9859cf9ce4e3b7eba3dac6e47366e9 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 1 Apr 2015 08:12:57 +0300 Subject: [PATCH 015/933] Remove deprecated process-conduit --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8d27343c..c4c682de 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -19,7 +19,6 @@ packages: - persistent-postgresql - persistent-sqlite - persistent-template - - process-conduit - random-shuffle - sphinx - stm-conduit From 9e67fd7c3b2ff614b9368cbf798445e091bbc2a1 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 1 Apr 2015 11:10:07 +0300 Subject: [PATCH 016/933] Temporarily disable codex #415 --- build-constraints.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c4c682de..17889606 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -693,7 +693,8 @@ packages: - unbound-generics "Alois Cochard alois.cochard@gmail.com @aloiscochard": - - codex + # https://github.com/fpco/stackage/issues/415 + # - codex - machines-directory - machines-io - machines-process @@ -860,9 +861,6 @@ packages: # Force a specific version that's compatible with transformers 0.3 - transformers-compat == 0.4.0.3 - # https://github.com/fpco/stackage/issues/415 - - hackage-db < 1.12 - # https://github.com/fpco/stackage/issues/442 - blaze-builder < 0.4 From f97b52b42189c3bb7c66fd5a679d3107806025c9 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 1 Apr 2015 11:15:49 +0300 Subject: [PATCH 017/933] Block some benchmarks #494 --- build-constraints.yaml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 17889606..e01d2f02 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -877,9 +877,6 @@ packages: # https://github.com/fpco/stackage/issues/483 - rethinkdb-client-driver < 0.0.15 - # https://github.com/fpco/stackage/issues/494 - - criterion < 1.1 - # https://github.com/fpco/stackage/issues/497 - primitive < 0.6 @@ -1230,6 +1227,11 @@ skipped-benchmarks: # https://github.com/fpco/stackage/issues/488 - uuid-types + # https://github.com/fpco/stackage/issues/494 + - case-insensitive + - postgresql-binary + - scientific + skipped-profiling: # https://github.com/nomeata/ghc-heap-view/commit/8d198eb8fbbad2ce0c4527c781659f35b8909c04#diff-8288955e209cfbead5b318a8598be9c0R10 - ghc-heap-view From ffbafa6c9746b3cf8b09da532c6a888fb91e0559 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 1 Apr 2015 20:13:22 +0300 Subject: [PATCH 018/933] Remove upper bounds and close #442 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e01d2f02..946fa3fc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -861,9 +861,6 @@ packages: # Force a specific version that's compatible with transformers 0.3 - transformers-compat == 0.4.0.3 - # https://github.com/fpco/stackage/issues/442 - - blaze-builder < 0.4 - # https://github.com/fpco/stackage/issues/467 - lens < 4.8 From e2f151cffebafafecc7ffb0d5f5540a7a5d5d849 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 1 Apr 2015 22:55:18 +0300 Subject: [PATCH 019/933] Upper bounds for #515 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 946fa3fc..d27bda92 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -883,6 +883,9 @@ packages: # https://github.com/fpco/stackage/issues/509 - srcloc < 0.5 + # https://github.com/fpco/stackage/issues/515 + - exception-transformers < 0.4 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From e92405f5f6121f9910e45430acaa11f08c969a7f Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 1 Apr 2015 23:08:16 +0300 Subject: [PATCH 020/933] Extra upper bound for #515 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d27bda92..59dd99fa 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -885,6 +885,7 @@ packages: # https://github.com/fpco/stackage/issues/515 - exception-transformers < 0.4 + - exception-mtl < 0.4 # Package flags are applied to individual packages, and override the values of # global-flags From 7ab03059d0c3067c9216cd2e7e4846ef00d89231 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 1 Apr 2015 21:15:13 +0300 Subject: [PATCH 021/933] Remove upper bounds and close #497 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 59dd99fa..e2ba76f2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -874,9 +874,6 @@ packages: # https://github.com/fpco/stackage/issues/483 - rethinkdb-client-driver < 0.0.15 - # https://github.com/fpco/stackage/issues/497 - - primitive < 0.6 - # https://github.com/jgm/pandoc/issues/2036 - highlighting-kate < 0.5.13 From 534f27fbf386c865d87a25d6a90685f860d05c0b Mon Sep 17 00:00:00 2001 From: Tim Baumann Date: Wed, 1 Apr 2015 22:56:02 +0200 Subject: [PATCH 022/933] Add 'aeson-schema' --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index e2ba76f2..768dad92 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -851,6 +851,9 @@ packages: "Noam Lewis @sinelaw": - xml-to-json - xml-to-json-fast + + "Tim Baumann @timjb": + - aeson-schema "Stackage upper bounds": # GHC 7.8 uppdate bound From f5aa9ce4176f594dd440918afab10e232c3000ac Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 2 Apr 2015 10:16:32 +0300 Subject: [PATCH 023/933] Remove upper bounds and close #483 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 768dad92..09fba0e1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -874,9 +874,6 @@ packages: - QuickCheck < 2.8 - cabal-test-quickcheck < 0.1.5 - # https://github.com/fpco/stackage/issues/483 - - rethinkdb-client-driver < 0.0.15 - # https://github.com/jgm/pandoc/issues/2036 - highlighting-kate < 0.5.13 From b7e6a300a3e87f21864d053219f709e8b76c9689 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 2 Apr 2015 10:18:58 +0300 Subject: [PATCH 024/933] Expected test failure timjb/aeson-schema#9 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 09fba0e1..b0320850 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1181,6 +1181,9 @@ expected-test-failures: # Requires running server - consul-haskell + # https://github.com/timjb/aeson-schema/issues/9 + - aeson-schema + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From fce37161f3978215492419b79c2479e6aeb2aaed Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 2 Apr 2015 14:14:18 +0300 Subject: [PATCH 025/933] Remove skipped test timjb/aeson-schema#9 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b0320850..09fba0e1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1181,9 +1181,6 @@ expected-test-failures: # Requires running server - consul-haskell - # https://github.com/timjb/aeson-schema/issues/9 - - aeson-schema - # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 5ff22f4ffc5509a61d8178702af682e57ba41e31 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 2 Apr 2015 15:49:52 +0300 Subject: [PATCH 026/933] Properly reference #517 --- build-constraints.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 09fba0e1..268db100 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -298,8 +298,7 @@ packages: - gl - lens-aeson - zlib-lens - # Temporary upper bound for some of the above packages - - generic-deriving < 1.7 + - generic-deriving # hyperloglog "Andrew Farmer ": @@ -884,6 +883,9 @@ packages: - exception-transformers < 0.4 - exception-mtl < 0.4 + # https://github.com/fpco/stackage/issues/517 + - generic-deriving < 1.7 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 48235773915793f4aad78e6f66de4a4fc0d6da6e Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 2 Apr 2015 16:07:38 +0300 Subject: [PATCH 027/933] Add back hyperloglog --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 268db100..5bd3f513 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -299,7 +299,7 @@ packages: - lens-aeson - zlib-lens - generic-deriving - # hyperloglog + - hyperloglog "Andrew Farmer ": - scotty From c56b1b56ad5c3e70fe8cdfe9c3776a097cc54f91 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 2 Apr 2015 19:05:42 +0300 Subject: [PATCH 028/933] Turn on old-locale for arbtt --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5bd3f513..65c05960 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -947,6 +947,9 @@ package-flags: jose-jwt: doctest: false + arbtt: + old-locale: true + # By skipping a test suite, we do not pull in the build dependencies skipped-tests: - ReadArgs # old version of hspec From 7feb2c05651cf6dea2ed202c152ad28c80c368cb Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 2 Apr 2015 20:19:00 +0300 Subject: [PATCH 029/933] Docker: install sudo --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 095bdc4a..59d14682 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ ADD debian-bootstrap.sh /tmp/debian-bootstrap.sh RUN DEBIAN_FRONTEND=noninteractive bash /tmp/debian-bootstrap.sh RUN rm /tmp/debian-bootstrap.sh -RUN DEBIAN_FRONTEND=noninteractive apt-get install -y cabal-install-1.20 ghc-7.8.4 alex-3.1.3 happy-1.19.4 +RUN DEBIAN_FRONTEND=noninteractive apt-get install -y cabal-install-1.20 ghc-7.8.4 alex-3.1.3 happy-1.19.4 sudo ENV PATH /home/stackage/.cabal/bin:/usr/local/sbin:/usr/local/bin:/opt/ghc/7.8.4/bin:/opt/cabal/1.20/bin:/opt/alex/3.1.3/bin:/opt/happy/1.19.4/bin:/usr/sbin:/usr/bin:/sbin:/bin From 24079e50b58fb7cd7157317e14273807aede3c48 Mon Sep 17 00:00:00 2001 From: David Fox Date: Thu, 2 Apr 2015 11:19:51 -0700 Subject: [PATCH 030/933] Add debian and cabal-debian --- build-constraints.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 65c05960..a80627f1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -853,7 +853,11 @@ packages: "Tim Baumann @timjb": - aeson-schema - + + "David Fox @ddssff" + - debian + - cabal-debian + "Stackage upper bounds": # GHC 7.8 uppdate bound - haddock-api < 2.16 From d938e5c9f6f0b4d1e5767097aa4cd55dd6799e82 Mon Sep 17 00:00:00 2001 From: David Fox Date: Thu, 2 Apr 2015 11:30:55 -0700 Subject: [PATCH 031/933] Fix syntax error in debian/cabal-debian entry --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a80627f1..71622a3d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -854,7 +854,7 @@ packages: "Tim Baumann @timjb": - aeson-schema - "David Fox @ddssff" + "David Fox @ddssff": - debian - cabal-debian From 906f14e17627ddff466602cae20abafc6fda8306 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Thu, 2 Apr 2015 16:45:32 -0400 Subject: [PATCH 032/933] add git-annex @nomeata suggested I add it, and this is fine by me. git-annex is a leaf, non-library package, and in the http://hackage.haskell.org/packages/top list, after filtering out the core haskell ecosystem, git-annex is near the top of the list of remaining packages. For whatever that might be worth. --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 65c05960..56f07335 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -490,6 +490,9 @@ packages: - MusicBrainz - DAV - hopenpgp-tools + + "Joey Hess ": + - git-annex # https://github.com/fpco/stackage/issues/160 "Ketil Malde": From 0b597df2b0963aeb311f8a26b857a00856211864 Mon Sep 17 00:00:00 2001 From: David Fox Date: Thu, 2 Apr 2015 14:23:11 -0700 Subject: [PATCH 033/933] Diagnosing why pretty>=1.1.2 dependency is being forced --- build-constraints.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 71622a3d..926da243 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -954,6 +954,11 @@ package-flags: arbtt: old-locale: true + debian: + pretty-new: false + cabal-debian: + pretty-112: false + # By skipping a test suite, we do not pull in the build dependencies skipped-tests: - ReadArgs # old version of hspec From 8541f1c4f260af610231f8505a2aa345cf18b5c5 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 3 Apr 2015 05:28:12 +0300 Subject: [PATCH 034/933] Upper bound for #521 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 65c05960..4613281b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -886,6 +886,9 @@ packages: # https://github.com/fpco/stackage/issues/517 - generic-deriving < 1.7 + # https://github.com/fpco/stackage/issues/521 + - tagged < 0.8 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From b4ac928041745a39c28baf246923b7124bd6dec3 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 3 Apr 2015 09:20:38 +0300 Subject: [PATCH 035/933] Upper bounds for #524 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ea96f239..94644dfb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -893,6 +893,9 @@ packages: # https://github.com/fpco/stackage/issues/521 - tagged < 0.8 + # https://github.com/fpco/stackage/issues/524 + - repa < 3.4 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From dab30803a01af196bad1a5f65b99d5834854365e Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 3 Apr 2015 13:14:42 +0300 Subject: [PATCH 036/933] Extra repa upper bounds --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 94644dfb..2de49e1b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -895,6 +895,8 @@ packages: # https://github.com/fpco/stackage/issues/524 - repa < 3.4 + - repa-algorithms < 3.4 + - repa-io < 3.4 # Package flags are applied to individual packages, and override the values of # global-flags From e1dffa2d88cf3309d5b870ae1fe98055e8c65165 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 3 Apr 2015 13:32:01 +0300 Subject: [PATCH 037/933] Remove upper bound and close #521 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2de49e1b..a5bb0435 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -890,9 +890,6 @@ packages: # https://github.com/fpco/stackage/issues/517 - generic-deriving < 1.7 - # https://github.com/fpco/stackage/issues/521 - - tagged < 0.8 - # https://github.com/fpco/stackage/issues/524 - repa < 3.4 - repa-algorithms < 3.4 From 80f2365c6a9222b0b4043dad8eb6d2005462934b Mon Sep 17 00:00:00 2001 From: Joachim Breitner Date: Fri, 3 Apr 2015 21:36:00 +0200 Subject: [PATCH 038/933] Add list-fusion-probe --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index a5bb0435..5480ed0b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -480,6 +480,7 @@ packages: - ghc-heap-view - tttool - gipeda + - list-fusion-probe "Aditya Bhargava Date: Sat, 4 Apr 2015 23:37:51 +0200 Subject: [PATCH 039/933] Add haskell-spacegoo (minor package, but having it in stackage avoids bitrot.) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5480ed0b..fdebbe0f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -481,6 +481,7 @@ packages: - tttool - gipeda - list-fusion-probe + - haskell-spacegoo "Aditya Bhargava Date: Sun, 5 Apr 2015 10:58:48 +0300 Subject: [PATCH 040/933] Upper bound for Happstack/happstack-server#6 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index fdebbe0f..45ca8cb8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -897,6 +897,9 @@ packages: - repa-algorithms < 3.4 - repa-io < 3.4 + # https://github.com/Happstack/happstack-server/issues/6 + - happstack-server < 7.4.3 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 9136b6ca4df898145a144a31c87128480b2497f3 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 5 Apr 2015 11:29:53 +0300 Subject: [PATCH 041/933] Upper bound for mgajda/json-autotype#5 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 45ca8cb8..70614e34 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -900,6 +900,9 @@ packages: # https://github.com/Happstack/happstack-server/issues/6 - happstack-server < 7.4.3 + # https://github.com/mgajda/json-autotype/issues/5 + - json-autotype < 0.4 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 0217ba42ab2aa247bbd63a1813c303f08b6b3c62 Mon Sep 17 00:00:00 2001 From: Stefan Saasen Date: Sun, 5 Apr 2015 21:21:42 +1000 Subject: [PATCH 042/933] Add 'jwt' --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 70614e34..c7961b0b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -860,6 +860,9 @@ packages: - debian - cabal-debian + "Stefan Saasen ": + - jwt + "Stackage upper bounds": # GHC 7.8 uppdate bound - haddock-api < 2.16 From 0e947550a722d3aef4fe2c020105fe4f158555e1 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 5 Apr 2015 16:03:17 +0300 Subject: [PATCH 043/933] Add monad-unlift --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index c7961b0b..5530a5b0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -49,6 +49,7 @@ packages: - lzma-conduit - mutable-containers - hpc-coveralls + - monad-unlift "FP Complete michael@fpcomplete.com @snoyberg": - alex From 578fcbdc31ddce5f664c50c68f67fbec76a60872 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 5 Apr 2015 21:57:30 +0300 Subject: [PATCH 044/933] Remove skipped benchmark and close #488 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5530a5b0..8177b0b3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1253,9 +1253,6 @@ skipped-benchmarks: # sometimes falls out-of-sync on hasql-postgres - hasql - # https://github.com/fpco/stackage/issues/488 - - uuid-types - # https://github.com/fpco/stackage/issues/494 - case-insensitive - postgresql-binary From b7f9effd7d2c4630a9a338a6d461739d52e65693 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 6 Apr 2015 16:52:59 +0300 Subject: [PATCH 045/933] Upgrade to Ubuntu 14.04 --- Dockerfile | 2 +- debian-bootstrap.sh | 4 ---- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 59d14682..ca916c3e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:12.04 +FROM ubuntu:14.04 ENV HOME /home/stackage ENV LANG en_US.UTF-8 diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index 2f158306..15a1bec7 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -10,9 +10,6 @@ # instructions, see: # http://www.stackage.org/install -add-apt-repository -y ppa:chris-lea/zeromq -add-apt-repository -y ppa:floe/libtisch -add-apt-repository -y ppa:zoogie/sdl2-snapshots apt-get update apt-get install -y \ build-essential \ @@ -21,7 +18,6 @@ apt-get install -y \ wget \ m4 \ texlive-full \ - libgmp3c2 \ libgmp3-dev \ zlib1g-dev \ libedit2 \ From e8a432d97d3361a577761fcc7ff1cdc122d01ff8 Mon Sep 17 00:00:00 2001 From: Kritzefitz Date: Mon, 6 Apr 2015 21:28:07 +0200 Subject: [PATCH 046/933] Add setlocale --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8177b0b3..033798ab 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -863,6 +863,9 @@ packages: "Stefan Saasen ": - jwt + + "Sven Bartscher sven.bartscher@weltraumschlangen.de @kritzefitz": + - setlocale "Stackage upper bounds": # GHC 7.8 uppdate bound From 9be64048ebd060dd2bf79afdd40d2cd4a49a7fc1 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 6 Apr 2015 22:43:46 +0300 Subject: [PATCH 047/933] Upper bound for #529 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 033798ab..da51ffdf 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -910,6 +910,9 @@ packages: # https://github.com/mgajda/json-autotype/issues/5 - json-autotype < 0.4 + # https://github.com/fpco/stackage/issues/529 + - fixed-vector < 0.8 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 46c7bb0710beb142b54cfa921052c5b93704e3d6 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 7 Apr 2015 10:01:51 +0300 Subject: [PATCH 048/933] Remove json-autotype upper bound --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index da51ffdf..50198e2c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -907,9 +907,6 @@ packages: # https://github.com/Happstack/happstack-server/issues/6 - happstack-server < 7.4.3 - # https://github.com/mgajda/json-autotype/issues/5 - - json-autotype < 0.4 - # https://github.com/fpco/stackage/issues/529 - fixed-vector < 0.8 From a078ebab2830297a10d717c6eed6e33e7eb0dd4f Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 7 Apr 2015 10:01:59 +0300 Subject: [PATCH 049/933] Add back sdl2 PPA --- debian-bootstrap.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index 15a1bec7..8064d9b3 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -10,6 +10,8 @@ # instructions, see: # http://www.stackage.org/install +add-apt-repository -y ppa:zoogie/sdl2-snapshots + apt-get update apt-get install -y \ build-essential \ From c5f6a32f40ad3cdc99353f6cae6d518bed0f2f12 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 7 Apr 2015 11:25:23 +0300 Subject: [PATCH 050/933] Expected Haddock failure: Cabal-ide-backend --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 50198e2c..399ad4a1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1230,6 +1230,9 @@ expected-haddock-failures: # builds. Could consider special-casing this requirement. - gtk + # Not sure why, but it's a temporary package anyway + - Cabal-ide-backend + # Benchmarks which should not be built. Note that Stackage does *not* generally # build benchmarks. The difference here will be whether dependencies for these # benchmarks are included or not. From 76030bc4bdd8d0259f2dc04c8f03fec9c4cc88e0 Mon Sep 17 00:00:00 2001 From: John Chee Date: Thu, 2 Apr 2015 21:18:54 -0700 Subject: [PATCH 051/933] Add `cgi` to build-constraints.yml --- build-constraints.yaml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 399ad4a1..397eca7c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -849,11 +849,11 @@ packages: - plot-gtk3 - vector-buffer - hmatrix-repa - + "Noam Lewis @sinelaw": - xml-to-json - xml-to-json-fast - + "Tim Baumann @timjb": - aeson-schema @@ -863,10 +863,13 @@ packages: "Stefan Saasen ": - jwt - + "Sven Bartscher sven.bartscher@weltraumschlangen.de @kritzefitz": - setlocale + "John Chee @chee1bot": + - cgi + "Stackage upper bounds": # GHC 7.8 uppdate bound - haddock-api < 2.16 From 42406702ef1cad9ad7499a6b89b1eecd124623b1 Mon Sep 17 00:00:00 2001 From: John Chee Date: Mon, 6 Apr 2015 15:59:42 -0700 Subject: [PATCH 052/933] force ci --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 397eca7c..35825b28 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -868,6 +868,7 @@ packages: - setlocale "John Chee @chee1bot": + # go - cgi "Stackage upper bounds": From 18500d3685e1a8e7e3d2731894c0de7ebea66173 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 8 Apr 2015 08:22:13 +0300 Subject: [PATCH 053/933] old-locale for hledger --- build-constraints.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 399ad4a1..58652bfc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -979,6 +979,13 @@ package-flags: cabal-debian: pretty-112: false + hledger: + old-locale: true + hledger-lib: + old-locale: true + hledger-web: + old-locale: true + # By skipping a test suite, we do not pull in the build dependencies skipped-tests: - ReadArgs # old version of hspec From 4daee956eeb1428a98957d5fcac55ef823a79af7 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 8 Apr 2015 09:36:28 +0300 Subject: [PATCH 054/933] Expected test failure jaspervdj/hakyll#345 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 58652bfc..40bd4411 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1222,6 +1222,9 @@ expected-test-failures: # Requires running server - consul-haskell + # https://github.com/jaspervdj/hakyll/issues/345 + - hakyll + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 2b715658ab6409300ad5573f4d90b1dfcc939bf1 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 8 Apr 2015 17:08:35 +0300 Subject: [PATCH 055/933] Don't expect test failure jaspervdj/hakyll#345 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 40bd4411..58652bfc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1222,9 +1222,6 @@ expected-test-failures: # Requires running server - consul-haskell - # https://github.com/jaspervdj/hakyll/issues/345 - - hakyll - # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From ac7a7c7a842e1616d1cfd40a9554ca26dfc41b2b Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 8 Apr 2015 17:16:50 +0300 Subject: [PATCH 056/933] Docker: install newest cabal-install Otherwise, old Cabal and Cabal-ide-backend (based on newer Cabal) seem to get completely confused about custom package databases... yay broken software! --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ca916c3e..ca33effa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,7 +19,7 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get install -y cabal-install-1.20 ghc-7.8 ENV PATH /home/stackage/.cabal/bin:/usr/local/sbin:/usr/local/bin:/opt/ghc/7.8.4/bin:/opt/cabal/1.20/bin:/opt/alex/3.1.3/bin:/opt/happy/1.19.4/bin:/usr/sbin:/usr/bin:/sbin:/bin RUN cabal update -RUN cabal install hscolour cabal-install --constraint "Cabal < 1.22" && cp $HOME/.cabal/bin/* /usr/local/bin && rm -rf $HOME/.cabal $HOME/.ghc /tmp/stackage +RUN cabal install hscolour cabal-install && cp $HOME/.cabal/bin/* /usr/local/bin && rm -rf $HOME/.cabal $HOME/.ghc /tmp/stackage RUN wget https://s3.amazonaws.com/stackage-travis/stackage-curator/stackage-curator.bz2 && bunzip2 stackage-curator.bz2 && chmod +x stackage-curator && mv stackage-curator /usr/local/bin RUN cd /home/stackage && cabal update && stackage-curator check From a752fbe75b59b0d60cd9c1a7fa4483d2522ee129 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 12 Apr 2015 12:11:58 +0300 Subject: [PATCH 057/933] Remove upper bounds and close #529 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 58652bfc..3ea76982 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -907,9 +907,6 @@ packages: # https://github.com/Happstack/happstack-server/issues/6 - happstack-server < 7.4.3 - # https://github.com/fpco/stackage/issues/529 - - fixed-vector < 0.8 - # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 54eba2076ec76038619e90860858ea8c72aed42b Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 12 Apr 2015 12:12:54 +0300 Subject: [PATCH 058/933] Upper bound for #531 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3ea76982..18077cf1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -907,6 +907,9 @@ packages: # https://github.com/Happstack/happstack-server/issues/6 - happstack-server < 7.4.3 + # https://github.com/fpco/stackage/issues/531 + - sbv < 4.3 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 406c9bc02a057b81b532001fef8cbe7b27774608 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 12 Apr 2015 12:59:04 +0300 Subject: [PATCH 059/933] Remove lens upper bound --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 97a48751..78fba28b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -868,9 +868,6 @@ packages: - setlocale "Stackage upper bounds": - # https://github.com/fpco/stackage/issues/467 - - lens < 4.8 - # https://github.com/fpco/stackage/issues/476 - vector-space < 0.10 From 576ed0d892cd76fb7c241efea977c3142b30cf82 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 13 Apr 2015 09:05:49 +0300 Subject: [PATCH 060/933] Avoid some broken versions --- build-constraints.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 18077cf1..5f013bcc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -910,6 +910,12 @@ packages: # https://github.com/fpco/stackage/issues/531 - sbv < 4.3 + # https://github.com/chrisdone/pdfinfo/issues/11 + - pdfinfo < 1.5.3 || > 1.5.3 + + # https://github.com/RaphaelJ/repa-devil/issues/7 + - repa-devil == 0.3.2.2 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 49f40b4c46b6e6fb4f4fcefe94afa6ac6bcca3f2 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 13 Apr 2015 13:45:31 +0300 Subject: [PATCH 061/933] Remove repa-devil constraint --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5f013bcc..5ab2b627 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -913,9 +913,6 @@ packages: # https://github.com/chrisdone/pdfinfo/issues/11 - pdfinfo < 1.5.3 || > 1.5.3 - # https://github.com/RaphaelJ/repa-devil/issues/7 - - repa-devil == 0.3.2.2 - # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 5535e761379fa3806da83d3647d29fb6e19a5363 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 13 Apr 2015 13:48:35 +0300 Subject: [PATCH 062/933] Remove pdfinfo bounds chrisdone/pdfinfo#11 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5ab2b627..18077cf1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -910,9 +910,6 @@ packages: # https://github.com/fpco/stackage/issues/531 - sbv < 4.3 - # https://github.com/chrisdone/pdfinfo/issues/11 - - pdfinfo < 1.5.3 || > 1.5.3 - # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 205237cea78d320c9beb13fe2a2380e7d3721564 Mon Sep 17 00:00:00 2001 From: Leon Mergen Date: Mon, 13 Apr 2015 18:48:18 +0700 Subject: [PATCH 063/933] Adds bitcoin-script and bitcoin-tx --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 18077cf1..6fec7981 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -737,6 +737,8 @@ packages: - sdl2 "Leon Mergen leon@solatis.com @solatis": + - bitcoin-script + - bitcoin-tx - network-attoparsec - network-anonymous-i2p From 093485f26d8903c3d7746a6b86d8c2aed2852fe5 Mon Sep 17 00:00:00 2001 From: Taylor Fausak Date: Tue, 14 Apr 2015 09:03:31 -0500 Subject: [PATCH 064/933] Add flow --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6fec7981..82bd73d5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -869,6 +869,9 @@ packages: "Sven Bartscher sven.bartscher@weltraumschlangen.de @kritzefitz": - setlocale + "Taylor Fausak @tfausak": + - flow + "Stackage upper bounds": # GHC 7.8 uppdate bound - haddock-api < 2.16 From a791e9f6ad84c9352afe3e23db49f8ff4e85ad49 Mon Sep 17 00:00:00 2001 From: "Adam C. Foltzer" Date: Tue, 14 Apr 2015 14:06:37 -0700 Subject: [PATCH 065/933] add persistent-refs --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 82bd73d5..e52165c0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -764,6 +764,7 @@ packages: "Adam C. Foltzer acfoltzer@galois.com @acfoltzer": - cryptol - gitrev + - persistent-refs "Luke Taylor tekul.hs@gmail.com @tekul": - jose-jwt From abc01983fb9c9461bee418d674513b21bf763612 Mon Sep 17 00:00:00 2001 From: Brendan Hay Date: Wed, 15 Apr 2015 15:12:01 +0200 Subject: [PATCH 066/933] Adding Amazon Machine Learning SDK --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index e52165c0..939ed8a1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -801,6 +801,7 @@ packages: - amazonka-kinesis - amazonka-kms - amazonka-lambda + - amazonka-ml - amazonka-opsworks - amazonka-rds - amazonka-redshift From 2f9053a2562f8ab099eb076c8efeb407ff5e0269 Mon Sep 17 00:00:00 2001 From: Brendan Hay Date: Wed, 15 Apr 2015 16:17:29 +0200 Subject: [PATCH 067/933] Adding Amazon WorkSpaces SDK --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 939ed8a1..acbb0ef5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -817,6 +817,7 @@ packages: - amazonka-sts - amazonka-support - amazonka-swf + - amazonka-workspaces - ede - pagerduty - semver From a98ce596b9e6dd21fb14415e7dfbfc78d88a8876 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 16 Apr 2015 19:23:01 +0300 Subject: [PATCH 068/933] Upper bound for #537 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index acbb0ef5..6ff2710a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -918,6 +918,9 @@ packages: # https://github.com/fpco/stackage/issues/531 - sbv < 4.3 + # https://github.com/fpco/stackage/issues/537 + - zlib < 0.6 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From c863a3230973b6e34f62ab13955414e2cf5dcea8 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 17 Apr 2015 06:35:06 +0300 Subject: [PATCH 069/933] Add stackage-update --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6ff2710a..b0cc3b54 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -95,6 +95,7 @@ packages: - stackage - stackage-curator - stackage-types + - stackage-update - statistics-linreg - th-expand-syns - thyme From e702d53329313669ee5055526f9e034a6a5e5175 Mon Sep 17 00:00:00 2001 From: Marios Titas Date: Fri, 17 Apr 2015 16:07:40 +0100 Subject: [PATCH 070/933] add github/redneb packages --- build-constraints.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index b0cc3b54..a0947af3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -876,6 +876,14 @@ packages: "Taylor Fausak @tfausak": - flow + "Marios Titas @redneb": + - btrfs + - disk-free-space + - hxt-css + - islink + - linux-file-extents + - linux-namespaces + "Stackage upper bounds": # GHC 7.8 uppdate bound - haddock-api < 2.16 From 6411755ebffaea32ae86f42c2756d0f5e3d7d053 Mon Sep 17 00:00:00 2001 From: Will Coster Date: Sun, 19 Apr 2015 16:49:17 -0700 Subject: [PATCH 071/933] Add scalpel to stackage --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index a0947af3..a06bedb6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -883,6 +883,9 @@ packages: - islink - linux-file-extents - linux-namespaces + + "Will Coster @fimad": + - scalpel "Stackage upper bounds": # GHC 7.8 uppdate bound From c30a504b2e894f47bb2de24632e4d4e9164a1f4c Mon Sep 17 00:00:00 2001 From: Leon Mergen Date: Mon, 20 Apr 2015 10:05:06 +0700 Subject: [PATCH 072/933] Adds hexstring package --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index a0947af3..5bfac0bb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -740,6 +740,7 @@ packages: "Leon Mergen leon@solatis.com @solatis": - bitcoin-script - bitcoin-tx + - hexstring - network-attoparsec - network-anonymous-i2p From b5179dbb9e11beaddd41779bf2f20b22a5c8d523 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 20 Apr 2015 07:26:35 +0300 Subject: [PATCH 073/933] Temporarily block Chart-diagrams #541 --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b0cc3b54..bdbe7f9f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -60,7 +60,8 @@ packages: - cairo - cassava - Chart - - Chart-diagrams + # https://github.com/fpco/stackage/issues/541 + # - Chart-diagrams - compdata - configurator - convertible From 6f629d3809f4719593deadb89621cfa9b195c402 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 20 Apr 2015 10:39:46 +0300 Subject: [PATCH 074/933] Add stackage-cli --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index e38aa71c..785351b4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -97,6 +97,7 @@ packages: - stackage-curator - stackage-types - stackage-update + - stackage-cli - statistics-linreg - th-expand-syns - thyme From 781078b12650bd97095dce3c7351280ee4957997 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 20 Apr 2015 10:48:04 +0300 Subject: [PATCH 075/933] Add subdirectory with stackage package --- stackage/ChangeLog.md | 5 +++++ stackage/LICENSE | 20 ++++++++++++++++++++ stackage/README.md | 2 ++ stackage/Setup.hs | 2 ++ stackage/Stackage/Dummy.hs | 3 +++ stackage/stackage.cabal | 23 +++++++++++++++++++++++ 6 files changed, 55 insertions(+) create mode 100644 stackage/ChangeLog.md create mode 100644 stackage/LICENSE create mode 100644 stackage/README.md create mode 100644 stackage/Setup.hs create mode 100644 stackage/Stackage/Dummy.hs create mode 100644 stackage/stackage.cabal diff --git a/stackage/ChangeLog.md b/stackage/ChangeLog.md new file mode 100644 index 00000000..51676ad3 --- /dev/null +++ b/stackage/ChangeLog.md @@ -0,0 +1,5 @@ +## 0.7.0.0 + +* First release of this incarnation of the stackage package. Previously, this + package provided completely different functionality. That functionality has + since moved to stackage-curator. diff --git a/stackage/LICENSE b/stackage/LICENSE new file mode 100644 index 00000000..b08099d7 --- /dev/null +++ b/stackage/LICENSE @@ -0,0 +1,20 @@ +Copyright (c) 2015 FP Complete + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/stackage/README.md b/stackage/README.md new file mode 100644 index 00000000..941a7319 --- /dev/null +++ b/stackage/README.md @@ -0,0 +1,2 @@ +This is a dummy wrapper package, forcing installation of other packages which +provide real functionality. diff --git a/stackage/Setup.hs b/stackage/Setup.hs new file mode 100644 index 00000000..9a994af6 --- /dev/null +++ b/stackage/Setup.hs @@ -0,0 +1,2 @@ +import Distribution.Simple +main = defaultMain diff --git a/stackage/Stackage/Dummy.hs b/stackage/Stackage/Dummy.hs new file mode 100644 index 00000000..e82e4a47 --- /dev/null +++ b/stackage/Stackage/Dummy.hs @@ -0,0 +1,3 @@ +-- | This module does absolutely nothing. It's present so that cabal can more +-- easily track whether the stackage package is installed. +module Stackage.Dummy () where diff --git a/stackage/stackage.cabal b/stackage/stackage.cabal new file mode 100644 index 00000000..7c002014 --- /dev/null +++ b/stackage/stackage.cabal @@ -0,0 +1,23 @@ +name: stackage +version: 0.7.0.0 +synopsis: Dummy package forcing installation of other Stackage packages +homepage: https://www.stackage.org/ +license: MIT +license-file: LICENSE +author: Michael Snoyman +maintainer: michael@snoyman.com +category: Development +build-type: Simple +extra-source-files: README.md ChangeLog.md +cabal-version: >=1.10 + +library + exposed-modules: Stackage.Dummy + build-depends: base < 10 + , stackage-cli + , stackage-update + default-language: Haskell2010 + +source-repository head + type: git + location: git://github.com/fpco/stackage.git From 2fb2c6fa37400672a1e4506fd7bc57838b3baaed Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 21 Apr 2015 15:00:18 +0300 Subject: [PATCH 076/933] Install htmldocs in Docker --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ca33effa..7fa1033b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ ADD debian-bootstrap.sh /tmp/debian-bootstrap.sh RUN DEBIAN_FRONTEND=noninteractive bash /tmp/debian-bootstrap.sh RUN rm /tmp/debian-bootstrap.sh -RUN DEBIAN_FRONTEND=noninteractive apt-get install -y cabal-install-1.20 ghc-7.8.4 alex-3.1.3 happy-1.19.4 sudo +RUN DEBIAN_FRONTEND=noninteractive apt-get install -y cabal-install-1.20 ghc-7.8.4 ghc-7.8.4-htmldocs alex-3.1.3 happy-1.19.4 sudo ENV PATH /home/stackage/.cabal/bin:/usr/local/sbin:/usr/local/bin:/opt/ghc/7.8.4/bin:/opt/cabal/1.20/bin:/opt/alex/3.1.3/bin:/opt/happy/1.19.4/bin:/usr/sbin:/usr/bin:/sbin:/bin From 020e3e7313d8ddf4a72a82fe848cc55c08a5d8ab Mon Sep 17 00:00:00 2001 From: Alexey Smirnov Date: Tue, 21 Apr 2015 15:16:27 +0300 Subject: [PATCH 077/933] Add snmp and agentx --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 785351b4..b3e6e439 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -889,6 +889,10 @@ packages: "Will Coster @fimad": - scalpel + + "Smirnov Alexey @chemist": + - snmp + - agentx "Stackage upper bounds": # GHC 7.8 uppdate bound From 5ad4e99deeb8403117c7f8850e72cac3ad7bcc0a Mon Sep 17 00:00:00 2001 From: David Christiansen Date: Tue, 21 Apr 2015 16:33:09 +0200 Subject: [PATCH 078/933] Add annotated-wl-pprint Hopefully the syntax is correct this time :-) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index b3e6e439..97f8c1b4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -893,6 +893,9 @@ packages: "Smirnov Alexey @chemist": - snmp - agentx + + "David Raymond Christiansen @david-christiansen": + - annotated-wl-pprint "Stackage upper bounds": # GHC 7.8 uppdate bound From 92c853d1fbd2c4e7c090bba7ee6a91b9a53a58f2 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 22 Apr 2015 08:02:12 +0300 Subject: [PATCH 079/933] Docker: install git --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7fa1033b..8326f435 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ RUN mkdir /home/stackage -p RUN locale-gen en_US.UTF-8 RUN DEBIAN_FRONTEND=noninteractive apt-get update -RUN DEBIAN_FRONTEND=noninteractive apt-get install -y software-properties-common python-software-properties +RUN DEBIAN_FRONTEND=noninteractive apt-get install -y software-properties-common python-software-properties git RUN DEBIAN_FRONTEND=noninteractive add-apt-repository ppa:hvr/ghc -y ADD debian-bootstrap.sh /tmp/debian-bootstrap.sh From d65e54a7773ed170c779f488e0151e5841a0ee3b Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 22 Apr 2015 12:20:28 +0300 Subject: [PATCH 080/933] Add WIP nightly.sh script --- automated/nightly.sh | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100755 automated/nightly.sh diff --git a/automated/nightly.sh b/automated/nightly.sh new file mode 100755 index 00000000..d0406c4d --- /dev/null +++ b/automated/nightly.sh @@ -0,0 +1,34 @@ +#!/bin/bash + +# Work in progress + +set -e +set -x + +TARGET=nightly +WORKDIR=nightly +PLAN_FILE=current-plan.yaml +BUNDLE_FILE=current.bundle + +cd /home/ubuntu + +mkdir -p cabal ghc $WORKDIR .stackage-curator +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 + +cat >gitconfig < Date: Wed, 22 Apr 2015 17:40:32 +0300 Subject: [PATCH 081/933] New build.sh --- automated/.gitignore | 10 ++++++ automated/build.sh | 73 ++++++++++++++++++++++++++++++++++++++++++++ automated/nightly.sh | 34 --------------------- 3 files changed, 83 insertions(+), 34 deletions(-) create mode 100644 automated/.gitignore create mode 100755 automated/build.sh delete mode 100755 automated/nightly.sh diff --git a/automated/.gitignore b/automated/.gitignore new file mode 100644 index 00000000..8285928f --- /dev/null +++ b/automated/.gitignore @@ -0,0 +1,10 @@ +/auth-token +/bin/ +/gitconfig +/hackage-creds +/ssh-nightly/ +/ssh-lts/ +/nighlty/ +/lts-*/ +/stackage-curator/ +/stackage-update/ diff --git a/automated/build.sh b/automated/build.sh new file mode 100755 index 00000000..3d92d45d --- /dev/null +++ b/automated/build.sh @@ -0,0 +1,73 @@ +#!/usr/bin/env bash + +set -eux + +ROOT=$(cd $(dirname $0) ; pwd) +TARGET=$1 +TROOT=$ROOT/$(echo $TARGET | cut -d. -f 1) +PLAN_FILE=current-plan.yaml +BUNDLE_FILE=current.bundle + +CABAL_DIR=$ROOT/cabal +GHC_DIR=$ROOT/ghc +CURATOR_DIR=$ROOT/stackage-curator +UPDATE_DIR=$ROOT/stackage-update +WORKDIR=$TROOT/work +SSH_DIR=$ROOT/ssh-$(echo $TARGET | cut -d- -f 1) + +mkdir -p \ + "$CABAL_DIR" \ + "$GHC_DIR" \ + "$CURATOR_DIR" \ + "$UPDATE_DIR" \ + "$WORKDIR" \ + "$SSH_DIR" + +GITCONFIG=$ROOT/gitconfig +cat >$GITCONFIG <$SSH_DIR/known_hosts <gitconfig < Date: Wed, 22 Apr 2015 17:55:59 +0300 Subject: [PATCH 082/933] Upper bound for simonmichael/hledger#245 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 97f8c1b4..881679f5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -943,6 +943,9 @@ packages: # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 + # https://github.com/simonmichael/hledger/issues/245 + - base-compat < 0.8 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 819e0d388899e11c1b5c2d71626821931d9013fc Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sat, 25 Apr 2015 21:00:10 +0300 Subject: [PATCH 083/933] Temporarily block Chart, allow newer lens --- build-constraints.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 881679f5..68e1ea4b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -59,7 +59,10 @@ packages: - c2hs - cairo - cassava - - Chart + + # https://github.com/fpco/stackage/issues/467 + # - Chart + # https://github.com/fpco/stackage/issues/541 # - Chart-diagrams - compdata @@ -906,9 +909,6 @@ packages: # Force a specific version that's compatible with transformers 0.3 - transformers-compat == 0.4.0.3 - # https://github.com/fpco/stackage/issues/467 - - lens < 4.8 - # https://github.com/fpco/stackage/issues/476 - vector-space < 0.10 From 725dbdeb63aea6ff79101e1021667ae16139de33 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 26 Apr 2015 08:37:02 +0300 Subject: [PATCH 084/933] Remove upper bounds and close #467 --- build-constraints.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 68e1ea4b..878c6d72 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -59,9 +59,7 @@ packages: - c2hs - cairo - cassava - - # https://github.com/fpco/stackage/issues/467 - # - Chart + - Chart # https://github.com/fpco/stackage/issues/541 # - Chart-diagrams From 6c3e6ece90bbf3202ca971c811c3898635d3ea64 Mon Sep 17 00:00:00 2001 From: Leon Mergen Date: Sun, 26 Apr 2015 17:35:46 +0700 Subject: [PATCH 085/933] Adds base58string --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 878c6d72..414a75fa 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -741,6 +741,7 @@ packages: - sdl2 "Leon Mergen leon@solatis.com @solatis": + - base58string - bitcoin-script - bitcoin-tx - hexstring From a9f8db27e42718fbb1a5c324f846e3af9dc9bc92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6nke=20Hahn?= Date: Mon, 27 Apr 2015 11:20:04 +0800 Subject: [PATCH 086/933] add getopt-generics --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 414a75fa..aa71dc3b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -760,6 +760,7 @@ packages: - language-c-quote "Sönke Hahn soenkehahn@gmail.com @soenkehahn": + - getopt-generics - string-conversions "Oleg Grenrus oleg.grenrus@iki.fi @phadej": From a8a59af5a4bba3de5cdf8bbe110a8fd661d06815 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 27 Apr 2015 11:15:38 +0300 Subject: [PATCH 087/933] Skip tests due to #479 --- build-constraints.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 414a75fa..7ddc641e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -912,6 +912,7 @@ packages: - vector-space < 0.10 # https://github.com/fpco/stackage/issues/479 + # Remove skipped tests below as well - QuickCheck < 2.8 - cabal-test-quickcheck < 0.1.5 @@ -1070,6 +1071,10 @@ skipped-tests: # https://github.com/Soostone/retry/issues/18 - retry + # https://github.com/fpco/stackage/issues/479 + - prednote + - rainbow + # Tests which we should build and run, but which are expected to fail. We # should not fail a build based on a test failure for one of these packages. expected-test-failures: From c36fdd4adc153a7d40e72dd89f1313565eb70582 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 27 Apr 2015 12:13:23 +0300 Subject: [PATCH 088/933] Add stackage-upload --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7ddc641e..e323c3f0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -98,6 +98,7 @@ packages: - stackage-curator - stackage-types - stackage-update + - stackage-upload - stackage-cli - statistics-linreg - th-expand-syns From 4711185bfabaa8553e3ae91c0b3d76b5c8e4da3b Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 28 Apr 2015 06:28:43 +0300 Subject: [PATCH 089/933] Remove some #479 skipped tests --- build-constraints.yaml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e323c3f0..78bb987b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -913,7 +913,6 @@ packages: - vector-space < 0.10 # https://github.com/fpco/stackage/issues/479 - # Remove skipped tests below as well - QuickCheck < 2.8 - cabal-test-quickcheck < 0.1.5 @@ -1072,10 +1071,6 @@ skipped-tests: # https://github.com/Soostone/retry/issues/18 - retry - # https://github.com/fpco/stackage/issues/479 - - prednote - - rainbow - # Tests which we should build and run, but which are expected to fail. We # should not fail a build based on a test failure for one of these packages. expected-test-failures: From d4030fb548080697856c42f8e0bcb39ced0f679e Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Mon, 27 Apr 2015 21:46:28 -0700 Subject: [PATCH 090/933] + Dan Burton: yesod-gitrev --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 78bb987b..a9a56f99 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -378,6 +378,7 @@ packages: - accelerate "Dan Burton ": + - yesod-gitrev - basic-prelude - composition - io-memoize From 2edf57c3351edbcb5bc396bb3cbcc980640ca50d Mon Sep 17 00:00:00 2001 From: Toralf Wittner Date: Tue, 28 Apr 2015 11:02:54 +0200 Subject: [PATCH 091/933] Update build-constraints.yaml --- build-constraints.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index a9a56f99..522696c3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -574,6 +574,15 @@ packages: - yesod-auth-hashdb "Toralf Wittner ": + - bytestring-conversion + - cql + - cql-io + - redis-resp + - redis-io + - swagger + - tinylog + - wai-predicates + - wai-routing - zeromq4-haskell "trupill@gmail.com": From 83239fd16451aa38826a58d23ceb7141e7f4dd08 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 29 Apr 2015 08:46:01 +0300 Subject: [PATCH 092/933] Expected test failures --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 522696c3..e09b536b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1267,6 +1267,8 @@ expected-test-failures: # Requires running server - consul-haskell + - hedis + - redis-io # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: From 2e0e4c05ee7f455f84c47f393f796f153d63bbdc Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 29 Apr 2015 10:48:56 +0300 Subject: [PATCH 093/933] Expect test failure twittner/swagger#3 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index e09b536b..959a0b15 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1270,6 +1270,9 @@ expected-test-failures: - hedis - redis-io + # https://github.com/twittner/swagger/issues/3 + - swagger + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From ee33f8ba92f2e3f917367d8c3d343907a28d7e8c Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 29 Apr 2015 11:55:15 +0300 Subject: [PATCH 094/933] Add stackage-install --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 959a0b15..986ada50 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -100,6 +100,7 @@ packages: - stackage-update - stackage-upload - stackage-cli + - stackage-install - statistics-linreg - th-expand-syns - thyme From 2a3c8f9b1fc9761d32994c6a825709aa4b931b35 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 29 Apr 2015 11:55:59 +0300 Subject: [PATCH 095/933] stackage package: include -upload and -install --- stackage/stackage.cabal | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/stackage/stackage.cabal b/stackage/stackage.cabal index 7c002014..ca16cdd8 100644 --- a/stackage/stackage.cabal +++ b/stackage/stackage.cabal @@ -1,5 +1,5 @@ name: stackage -version: 0.7.0.0 +version: 0.7.1.0 synopsis: Dummy package forcing installation of other Stackage packages homepage: https://www.stackage.org/ license: MIT @@ -16,6 +16,8 @@ library build-depends: base < 10 , stackage-cli , stackage-update + , stackage-upload + , stackage-install default-language: Haskell2010 source-repository head From b9116f11efd089594174f1f3491eb27600c874d5 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 29 Apr 2015 12:21:16 +0300 Subject: [PATCH 096/933] Add additional stackage project links --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index f7048506..135b2f07 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,10 @@ project information. In addition, we have the following repositories: * [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) * [stackage-types](https://github.com/fpco/stackage-types) [![Build Status](https://travis-ci.org/fpco/stackage-types.svg?branch=master)](https://travis-ci.org/fpco/stackage-types) * [lts-haskell](https://github.com/fpco/lts-haskell) +* [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) Get your package included ------------------------- From 0d0908d977ea892c64cc3e633526cb3f392bb07d Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 29 Apr 2015 12:22:04 +0300 Subject: [PATCH 097/933] stackage-nightly repo link --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 135b2f07..2cc5a0c4 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,7 @@ project information. In addition, we have the following repositories: * [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) * [stackage-types](https://github.com/fpco/stackage-types) [![Build Status](https://travis-ci.org/fpco/stackage-types.svg?branch=master)](https://travis-ci.org/fpco/stackage-types) * [lts-haskell](https://github.com/fpco/lts-haskell) +* [stackage-nightly](https://github.com/fpco/stackage-nightly) * [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) From 72236ccada7e13d711447c42b05bb98ca7f39f9b Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 29 Apr 2015 17:28:18 +0300 Subject: [PATCH 098/933] Remove upper bound for simonmichael/hledger#245 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 986ada50..20cda6ad 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -954,9 +954,6 @@ packages: # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 - # https://github.com/simonmichael/hledger/issues/245 - - base-compat < 0.8 - # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 3dcbf9e7cc8bec09deef9949d5684582d9126738 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 29 Apr 2015 18:02:44 +0300 Subject: [PATCH 099/933] Revert "Remove upper bound for simonmichael/hledger#245" This reverts commit 72236ccada7e13d711447c42b05bb98ca7f39f9b. --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 20cda6ad..986ada50 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -954,6 +954,9 @@ packages: # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 + # https://github.com/simonmichael/hledger/issues/245 + - base-compat < 0.8 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From e9652caf71f93b25a427677c042403a11e98e335 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 29 Apr 2015 19:24:02 +0300 Subject: [PATCH 100/933] Revert "Revert "Remove upper bound for simonmichael/hledger#245"" This reverts commit 3dcbf9e7cc8bec09deef9949d5684582d9126738. --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 986ada50..20cda6ad 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -954,9 +954,6 @@ packages: # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 - # https://github.com/simonmichael/hledger/issues/245 - - base-compat < 0.8 - # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From bb3396d54599a25c09a2980ae5dbab3c76bf421d Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 30 Apr 2015 06:16:06 +0300 Subject: [PATCH 101/933] Upper bound for #549 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 20cda6ad..8fd5cda6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -954,6 +954,9 @@ packages: # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 + # https://github.com/fpco/stackage/issues/549 + - tttool < 1.4 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From c67909b37a10dad2b687a426e9984db28b428808 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 30 Apr 2015 06:55:42 +0300 Subject: [PATCH 102/933] Block packages without GHC 7.10 support #378 --- build-constraints.yaml | 100 +++++++++++++++++++++++------------------ 1 file changed, 56 insertions(+), 44 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 14b9bca5..60c0e36f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -112,18 +112,19 @@ packages: - th-desugar - quickcheck-assertions - - distributed-process-simplelocalnet + # Cloud Haskell not yet updated to GHC 7.10 + #- distributed-process-simplelocalnet # cloud-haskell - - rank1dynamic - - distributed-static + #- rank1dynamic + #- distributed-static - network-transport - - distributed-process - - distributed-process-extras - - distributed-process-async - - distributed-process-client-server - - distributed-process-supervisor - - distributed-process-task - - distributed-process-execution + #- distributed-process + #- distributed-process-extras + #- distributed-process-async + #- distributed-process-client-server + #- distributed-process-supervisor + #- distributed-process-task + #- distributed-process-execution - kure @@ -188,7 +189,6 @@ packages: "Vincent Hanquez": - bytedump - - certificate - cipher-aes - cipher-rc4 - connection @@ -221,9 +221,10 @@ packages: - lucid - osdkeys - pdfinfo - - present + #- present GHC 7.10, via atto-lisp - pure-io - - scrobble + # https://github.com/jgoerzen/testpack/issues/11 + #- scrobble GHC 7.10, for QuickCheck 2.8 via testpack - shell-conduit - sourcemap - hindent @@ -250,7 +251,8 @@ packages: - comonad - comonads-fd - comonad-transformers - - compensated + # https://github.com/ekmett/compensated/issues/5 + #- compensated GHC 7.10 - compressed - concurrent-supply - constraints @@ -271,7 +273,7 @@ packages: - lca - lens - linear - - linear-accelerate + #- linear-accelerate GHC 7.10 - log-domain - machines - monadic-arrays @@ -376,7 +378,8 @@ packages: - containers-unicode-symbols "Trevor L. McDonell ": - - accelerate + [] + # - accelerate GHC 7.10 "Dan Burton ": - yesod-gitrev @@ -446,14 +449,16 @@ packages: - json-autotype "Dominic Steinitz ": - - yarr + [] + # - yarr GHC 7.10 "Roman Cheplyaka ": - action-permutations - amqp - curl - - haskell-names - - haskell-packages + # GHC 7.10 https://github.com/haskell-suite/haskell-packages/issues/22 + #- haskell-names + #- haskell-packages - heredoc - hse-cpp - immortal @@ -465,8 +470,9 @@ packages: - tasty-quickcheck - tasty-smallcheck - time-lens - - timezone-olson - - timezone-series + # GHC 7.10 + #- timezone-olson + #- timezone-series - traverse-with-class "George Giorgidze ": @@ -485,21 +491,22 @@ packages: "Joachim Breitner ": - circle-packing - arbtt - - ghc-heap-view + # - ghc-heap-view GHC 7.10 - tttool - gipeda - list-fusion-probe - haskell-spacegoo "Aditya Bhargava ": - - hOpenPGP + #- hOpenPGP GHC 7.10, via syb-with-class - openpgp-asciiarmor - MusicBrainz - DAV - - hopenpgp-tools + #- hopenpgp-tools GHC 7.10, via syb-with-class # https://github.com/fpco/stackage/issues/160 "Ketil Malde": @@ -617,7 +624,8 @@ packages: - interpolatedstring-perl6 - iproute - missing-foreign - - MissingH + # https://github.com/jgoerzen/testpack/issues/11 + #- MissingH GHC 7.10, for QuickCheck 2.8 via testpack - multimap - parallel-io - text-binary @@ -636,7 +644,7 @@ packages: - hasql-postgres - list-t - mtl-prelude - - neat-interpolation + #- neat-interpolation GHC 7.10 - partial-handler - postgresql-binary - slave-thread @@ -693,8 +701,10 @@ packages: - type-list "David Turner ": - - alarmclock - - bank-holidays-england + [] + # GHC 7.10 + #- alarmclock + #- bank-holidays-england "Haskell Servant jkarni@gmail.com @jkarni": - servant @@ -713,7 +723,7 @@ packages: "Alois Cochard alois.cochard@gmail.com @aloiscochard": # https://github.com/fpco/stackage/issues/415 # - codex - - machines-directory + #- machines-directory GHC 7.10 - machines-io - machines-process # on behalf of Bryan O'Sullivan @bos @@ -745,7 +755,7 @@ packages: "Jeffrey Rosenbluth jeffrey.rosenbluth@gmail.com": - palette - - diagrams-canvas + #- diagrams-canvas GHC 7.10, via blank-canvas - diagrams-rasterific - lucid-svg @@ -775,7 +785,7 @@ packages: - string-conversions "Oleg Grenrus oleg.grenrus@iki.fi @phadej": - - edit-distance + #- edit-distance GHC 7.10 - lattices - waitra @@ -915,10 +925,6 @@ packages: # https://github.com/fpco/stackage/issues/476 - vector-space < 0.10 - # https://github.com/fpco/stackage/issues/479 - - QuickCheck < 2.8 - - cabal-test-quickcheck < 0.1.5 - # https://github.com/jgm/pandoc/issues/2036 - highlighting-kate < 0.5.13 @@ -932,11 +938,6 @@ packages: # https://github.com/fpco/stackage/issues/517 - generic-deriving < 1.7 - # https://github.com/fpco/stackage/issues/524 - - repa < 3.4 - - repa-algorithms < 3.4 - - repa-io < 3.4 - # https://github.com/Happstack/happstack-server/issues/6 - happstack-server < 7.4.3 @@ -1052,6 +1053,20 @@ skipped-tests: # https://github.com/Soostone/retry/issues/18 - retry + # Just a temporary package with a flimsy, inherited test suite + - Cabal-ide-backend + + # QuickCheck 2.8 + - ChasingBottoms + - bson + - cabal-install + - exceptions + - graphviz + - pandoc + - testpack + - vector + - unordered-containers + # Tests which we should build and run, but which are expected to fail. We # should not fail a build based on a test failure for one of these packages. expected-test-failures: @@ -1233,9 +1248,6 @@ expected-test-failures: # Tests not reliable on non-Windows systems - nsis - # Just a temporary package with a flimsy, inherited test suite - - Cabal-ide-backend - # Requires running server - consul-haskell - hedis From 43cd26629cf4b5556c5527f90b1cbe1081d31598 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 30 Apr 2015 07:16:05 +0300 Subject: [PATCH 103/933] Block some more packages for GHC 7.10 compilation failures --- build-constraints.yaml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 60c0e36f..dd2fbace 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -72,7 +72,8 @@ packages: - executable-hash - executable-path - fgl - - fixed-list + # https://github.com/jvranish/FixedList/issues/1 + #- fixed-list GHC 7.10 - foreign-store - formatting #- fpco-api @@ -738,7 +739,9 @@ packages: - HaskellNet "Jens Petersen juhpetersen@gmail.com @juhp": - - cabal-rpm + [] + # https://github.com/juhp/cabal-rpm/issues/18 + # - cabal-rpm # GHC 7.10 "Renzo Carbonara renzocarbonara@gmail.com @k0001": - network-simple @@ -866,9 +869,11 @@ packages: - maximal-cliques "Alexander Bondarenko @wiz": - - soap - - soap-tls - - soap-openssl + [] + # GHC 7.10, via iconv + #- soap + #- soap-tls + #- soap-openssl "Andres Löh @kosmikus": - generics-sop From 5488c156103ad613bc8449adee24f6071968e4d7 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 30 Apr 2015 07:20:19 +0300 Subject: [PATCH 104/933] Add back HandsomeSoup --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index dd2fbace..e4b0fee6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -499,8 +499,7 @@ packages: - haskell-spacegoo "Aditya Bhargava ": #- hOpenPGP GHC 7.10, via syb-with-class From 99c482895b93ec909a33974c27f2f4a134b7f969 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 30 Apr 2015 07:40:29 +0300 Subject: [PATCH 105/933] Two more GHC 7.10 compilation failures --- build-constraints.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e4b0fee6..54b8d9a7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -201,7 +201,8 @@ packages: - crypto-random-api - hit - language-java - - libgit + # https://github.com/vincenthz/hs-libgit/issues/4 + # - libgit GHC 7.10 - pem - siphash - socks @@ -671,7 +672,8 @@ packages: #- elm-compiler - elm-core-sources #- elm-package - - language-glsl + # https://github.com/noteed/language-glsl/issues/11 + #- language-glsl GHC 7.10 - prettyclass - QuasiText - union-find From e56dc52a47c62872b267a102375d288b11c55151 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 30 Apr 2015 07:41:46 +0300 Subject: [PATCH 106/933] No longer expected failure for twittner/swagger#3 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8fd5cda6..e89cd853 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1271,9 +1271,6 @@ expected-test-failures: - hedis - redis-io - # https://github.com/twittner/swagger/issues/3 - - swagger - # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 76ec5dbb248fae5875577a5b676c67b8d18d0ace Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 30 Apr 2015 08:46:52 +0300 Subject: [PATCH 107/933] Some more GHC 7.10 build failures --- build-constraints.yaml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0ca9052e..38ab16dd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -43,7 +43,7 @@ packages: - repa-io - repa-algorithms - repa-devil - - JuicyPixels-repa + #- JuicyPixels-repa GHC 7.10 - cereal-conduit - binary-conduit - lzma-conduit @@ -209,7 +209,8 @@ packages: - tls - tls-debug - vhd - - udbus + # https://github.com/vincenthz/hs-udbus/issues/4 + # - udbus GHC 7.10 - xenstore "Chris Done": @@ -1259,6 +1260,12 @@ expected-test-failures: - hedis - redis-io + # https://code.google.com/p/scrapyourboilerplate/issues/detail?id=26&thanks=26&ts=1430372304, GHC 7.10 + - syb + + # https://github.com/lymar/hastache/issues/47 GHC 7.10 + - hastache + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 @@ -1277,6 +1284,9 @@ expected-haddock-failures: # Not sure why, but it's a temporary package anyway - Cabal-ide-backend + # https://github.com/goldfirere/singletons/issues/120 + - singletons + # Benchmarks which should not be built. Note that Stackage does *not* generally # build benchmarks. The difference here will be whether dependencies for these # benchmarks are included or not. From 4d43ab3196a335eaf6e3c839bca779aa2bad393a Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 30 Apr 2015 09:48:18 +0300 Subject: [PATCH 108/933] More GHC 7.10 tweaks --- build-constraints.yaml | 28 ++++++++++++++++++---------- 1 file changed, 18 insertions(+), 10 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 38ab16dd..f70b42e3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -84,7 +84,8 @@ packages: - hmatrix-gsl - hxt - hxt-relaxng - - hybrid-vectors + # https://github.com/ekmett/hybrid-vectors/issues/1 + # - hybrid-vectors GHC 7.10 - indents - language-c - lhs2tex @@ -446,7 +447,8 @@ packages: - Octree - FenwickTree - hPDB - - hPDB-examples + # https://github.com/BioHaskell/hPDB-examples/issues/1 + #- hPDB-examples GHC 7.10 - wordpass - json-autotype @@ -693,7 +695,9 @@ packages: - product-profunctors "Samplecount stefan@samplecount.com @kaoskorobase": - - shake-language-c + [] + # https://github.com/samplecount/shake-language-c/issues/25 + # - shake-language-c GHC 7.10 "Marcin Mrotek ": - diagrams-hsqml @@ -860,10 +864,11 @@ packages: - cabal-file-th "Gershom Bazerman @gbaz": - - jmacro - - jmacro-rpc - - jmacro-rpc-happstack - - jmacro-rpc-snap + # http://hub.darcs.net/gershomb/jmacro/issue/1 GHC 7.10 + #- jmacro + #- jmacro-rpc + #- jmacro-rpc-happstack + #- jmacro-rpc-snap - mbox - kmeans - boolsimplifier @@ -945,9 +950,6 @@ packages: # https://github.com/fpco/stackage/issues/517 - generic-deriving < 1.7 - # https://github.com/Happstack/happstack-server/issues/6 - - happstack-server < 7.4.3 - # https://github.com/fpco/stackage/issues/531 - sbv < 4.3 @@ -1266,6 +1268,12 @@ expected-test-failures: # https://github.com/lymar/hastache/issues/47 GHC 7.10 - hastache + # https://github.com/timjb/aeson-schema/issues/13 GHC 7.10 + - aeson-schema + + # https://github.com/simonmar/alex/issues/62 GHC 7.10 + - alex + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From d430deed7cc6c713b32d589c4782aca540004de1 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 30 Apr 2015 10:08:10 +0300 Subject: [PATCH 109/933] Skip Workflow/MFlow for GHC 7.10 agocorona/Workflow#5 --- build-constraints.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f70b42e3..f7197416 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -240,8 +240,9 @@ packages: "Alberto G. Corona ": - RefSerialize - TCache - - Workflow - - MFlow + # https://github.com/agocorona/Workflow/issues/5 GHC 7.10 + # - Workflow + # - MFlow "Edward Kmett ": - ad From 5a21a2827071bb7c5d92fbfaedf75f39adeda598 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 30 Apr 2015 10:49:43 +0300 Subject: [PATCH 110/933] biosff and hspec/nanospec#2 --- build-constraints.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f7197416..e55732ce 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -518,7 +518,7 @@ packages: - biocore - biofasta - biofastq - - biosff + # - biosff GHC 7.10 - blastxml - bioace - biophd < 0.0.6 || > 0.0.6 @@ -1275,6 +1275,9 @@ expected-test-failures: # https://github.com/simonmar/alex/issues/62 GHC 7.10 - alex + # https://github.com/hspec/nanospec/issues/2 GHC 7.10 + - nanospec + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 7d3aaa3546e1c654419162c66546ff181e102dc0 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 30 Apr 2015 11:28:57 +0300 Subject: [PATCH 111/933] More GHC 7.10 stuff (this will continue for a while) --- build-constraints.yaml | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e55732ce..7818f83b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -63,7 +63,9 @@ packages: # https://github.com/fpco/stackage/issues/541 # - Chart-diagrams - - compdata + + # https://github.com/pa-ba/compdata/issues/7 GHC 7.10 + # - compdata - configurator - convertible - csv-conduit @@ -462,9 +464,8 @@ packages: - action-permutations - amqp - curl - # GHC 7.10 https://github.com/haskell-suite/haskell-packages/issues/22 - #- haskell-names - #- haskell-packages + - haskell-names + - haskell-packages - heredoc - hse-cpp - immortal @@ -1278,6 +1279,12 @@ expected-test-failures: # https://github.com/hspec/nanospec/issues/2 GHC 7.10 - nanospec + # https://github.com/mvoidex/hdocs/issues/5 GHC 7.10 + - hdocs + + # https://github.com/kazu-yamamoto/http-date/issues/6 GHC 7.10 + - http-date + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From f6c9f53d10482bd4d7b9d195aebb211f7f25b3ec Mon Sep 17 00:00:00 2001 From: Leon Mergen Date: Thu, 30 Apr 2015 15:52:20 +0700 Subject: [PATCH 112/933] Adds bitcoin-block and bitcoin-types packages --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index e89cd853..bc9614b9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -754,8 +754,10 @@ packages: "Leon Mergen leon@solatis.com @solatis": - base58string + - bitcoin-block - bitcoin-script - bitcoin-tx + - bitcoin-types - hexstring - network-attoparsec - network-anonymous-i2p From abc8ff662dfecf5977bbe74cfdc71f0bb8b309bb Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 30 Apr 2015 12:19:14 +0300 Subject: [PATCH 113/933] More GHC 7.10 --- build-constraints.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7818f83b..009417c7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -108,7 +108,8 @@ packages: - statistics-linreg - th-expand-syns - thyme - - webdriver + # https://github.com/kallisti-dev/hs-webdriver/issues/71 + # - webdriver - web-fpco - criterion - th-lift @@ -303,7 +304,8 @@ packages: - semigroupoids - semigroups - speculation - - streams + # https://github.com/ekmett/streams/issues/11 + # - streams GHC 7.10 - tagged - vector-instances - void @@ -1068,7 +1070,6 @@ skipped-tests: - Cabal-ide-backend # QuickCheck 2.8 - - ChasingBottoms - bson - cabal-install - exceptions @@ -1076,7 +1077,6 @@ skipped-tests: - pandoc - testpack - vector - - unordered-containers # Tests which we should build and run, but which are expected to fail. We # should not fail a build based on a test failure for one of these packages. @@ -1276,15 +1276,15 @@ expected-test-failures: # https://github.com/simonmar/alex/issues/62 GHC 7.10 - alex - # https://github.com/hspec/nanospec/issues/2 GHC 7.10 - - nanospec - # https://github.com/mvoidex/hdocs/issues/5 GHC 7.10 - hdocs # https://github.com/kazu-yamamoto/http-date/issues/6 GHC 7.10 - http-date + # https://github.com/haskell-suite/haskell-names/issues/63 + - haskell-names + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 7e495ddb2df17bc800a9324a9212b1fcaec2ac9b Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 30 Apr 2015 13:00:33 +0300 Subject: [PATCH 114/933] lykahb/grounghog#38 --- build-constraints.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 009417c7..1f36c410 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -439,7 +439,8 @@ packages: "Boris Lykah ": - groundhog - - groundhog-th + # https://github.com/lykahb/groundhog/issues/38 GHC 7.10 + # - groundhog-th - groundhog-sqlite - groundhog-postgresql - groundhog-mysql @@ -1299,6 +1300,7 @@ expected-haddock-failures: # Requires build before haddock, which doesn't always happen in incremental # builds. Could consider special-casing this requirement. - gtk + - gtk3 # Not sure why, but it's a temporary package anyway - Cabal-ide-backend From 6f8c05766c6477b4129618f23751cdfae12d7e4d Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 30 Apr 2015 13:02:20 +0300 Subject: [PATCH 115/933] Use older haskell-packages (Cabal constraint) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index e89cd853..832092d4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -916,6 +916,7 @@ packages: - haddock-api < 2.16 - haddock-library < 1.2 - hdocs < 0.4.2 + - haskell-packages < 0.3 # Force a specific version that's compatible with transformers 0.3 - transformers-compat == 0.4.0.3 From 55050b1dd7554e0c07aa8fd6943676a1fb591ce3 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 30 Apr 2015 13:17:13 +0300 Subject: [PATCH 116/933] Upper bound on compdata --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 832092d4..de198b57 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -917,6 +917,7 @@ packages: - haddock-library < 1.2 - hdocs < 0.4.2 - haskell-packages < 0.3 + - compdata < 0.10 # Force a specific version that's compatible with transformers 0.3 - transformers-compat == 0.4.0.3 From 9df6b583363a169606a62520b55859f1c577f07f Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 30 Apr 2015 13:38:56 +0300 Subject: [PATCH 117/933] More GHC 7.10 issues --- build-constraints.yaml | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0c1a1c20..81b58a17 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -580,7 +580,8 @@ packages: - ghc-syb-utils "Boris Buliga ": - - ghc-mod + # https://github.com/kazu-yamamoto/ghc-mod/issues/437 GHC 7.10 + # - ghc-mod - io-choice - system-canonicalpath @@ -727,7 +728,8 @@ packages: "Alexandr Ruchkin voidex@live.com @mvoidex": - hdocs - - hsdev + # https://github.com/kazu-yamamoto/ghc-mod/issues/437 GHC 7.10 + # - hsdev "Aleksey Kliger aleksey@lambdageek.org @lambdageek": - unbound-generics @@ -1285,9 +1287,15 @@ expected-test-failures: # https://github.com/kazu-yamamoto/http-date/issues/6 GHC 7.10 - http-date - # https://github.com/haskell-suite/haskell-names/issues/63 + # https://github.com/haskell-suite/haskell-names/issues/63 GHC 7.10 - haskell-names + # https://github.com/bos/text/issues/118 GHC 7.10 + - text + + # https://github.com/ekmett/machines/issues/42 GHC 7.10 + - machines + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 140bb479533cd57d93ab8e35b064383cdee7d0df Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 30 Apr 2015 14:20:10 +0300 Subject: [PATCH 118/933] Wash, rinse, repeat (GHC 7.10) --- build-constraints.yaml | 27 ++++++++++++++++++--------- 1 file changed, 18 insertions(+), 9 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 81b58a17..46750a25 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -64,8 +64,7 @@ packages: # https://github.com/fpco/stackage/issues/541 # - Chart-diagrams - # https://github.com/pa-ba/compdata/issues/7 GHC 7.10 - # - compdata + - compdata - configurator - convertible - csv-conduit @@ -169,7 +168,9 @@ packages: - language-javascript "Alfredo Di Napoli ": - - mandrill + [] + # https://github.com/adinapoli/mandrill/issues/14 + # - mandrill GHC 7.10 "Jasper Van der Jeugt": - blaze-html @@ -268,7 +269,8 @@ packages: - distributive - either - eq - - ersatz + # https://github.com/ekmett/ersatz/issues/11 GHC 7.10 + # - ersatz - exceptions - free - graphs @@ -586,7 +588,9 @@ packages: - system-canonicalpath "Yann Esposito ": - - holy-project + [] + # https://github.com/yogsototh/holy-project/issues/5 GHC 7.10 + # - holy-project "Paul Rouse ": - yesod-auth-hashdb @@ -701,9 +705,7 @@ packages: - product-profunctors "Samplecount stefan@samplecount.com @kaoskorobase": - [] - # https://github.com/samplecount/shake-language-c/issues/25 - # - shake-language-c GHC 7.10 + - shake-language-c "Marcin Mrotek ": - diagrams-hsqml @@ -741,7 +743,8 @@ packages: - machines-io - machines-process # on behalf of Bryan O'Sullivan @bos - - wreq + # https://github.com/bos/wreq/issues/61 + # - wreq GHC 7.10 "Andraz Bajt andraz@bajt.me @edofic": - effect-handlers @@ -1296,6 +1299,12 @@ expected-test-failures: # https://github.com/ekmett/machines/issues/42 GHC 7.10 - machines + # https://github.com/ekmett/hyperloglog/issues/10 GHC 7.10 + - hyperloglog + + # https://github.com/acid-state/safecopy/issues/25 GHC 7.10 + - safecopy + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 89216b2a1ce627173e555416d5e9ebbce2a0929d Mon Sep 17 00:00:00 2001 From: ygale Date: Thu, 30 Apr 2015 14:29:45 +0300 Subject: [PATCH 119/933] Add timezone packages --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index eae0649d..d5735882 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -913,6 +913,10 @@ packages: "David Raymond Christiansen @david-christiansen": - annotated-wl-pprint + "Yitz Gale gale@sefer.org @ygale" + - timezone-series + - timezone-olson + "Stackage upper bounds": # GHC 7.8 uppdate bound - haddock-api < 2.16 From 92b6f43d12594ff0b2799289cb1cb2eeb288016a Mon Sep 17 00:00:00 2001 From: ygale Date: Thu, 30 Apr 2015 14:48:50 +0300 Subject: [PATCH 120/933] Missing colon. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d5735882..046285d7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -913,7 +913,7 @@ packages: "David Raymond Christiansen @david-christiansen": - annotated-wl-pprint - "Yitz Gale gale@sefer.org @ygale" + "Yitz Gale gale@sefer.org @ygale": - timezone-series - timezone-olson From a8d6f1d3eca257e3f8427fdb5e760b0fd144e3a9 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 30 Apr 2015 16:17:05 +0300 Subject: [PATCH 121/933] More GHC 7.10 changes --- build-constraints.yaml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 46750a25..77f7e78d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -92,7 +92,8 @@ packages: - lhs2tex - persistent-mongoDB - pretty-class - - quandl-api + # https://github.com/pvdbrand/quandl-api/issues/2 GHC 7.10 + #- quandl-api - random-fu - random-source - shelly @@ -455,8 +456,7 @@ packages: - Octree - FenwickTree - hPDB - # https://github.com/BioHaskell/hPDB-examples/issues/1 - #- hPDB-examples GHC 7.10 + - hPDB-examples - wordpass - json-autotype @@ -482,9 +482,8 @@ packages: - tasty-quickcheck - tasty-smallcheck - time-lens - # GHC 7.10 - #- timezone-olson - #- timezone-series + - timezone-olson + - timezone-series - traverse-with-class "George Giorgidze ": @@ -515,7 +514,7 @@ packages: "Clint Adams ": #- hOpenPGP GHC 7.10, via syb-with-class - openpgp-asciiarmor - - MusicBrainz + # - MusicBrainz GHC 7.10, time 1.5 - DAV #- hopenpgp-tools GHC 7.10, via syb-with-class @@ -1305,6 +1304,9 @@ expected-test-failures: # https://github.com/acid-state/safecopy/issues/25 GHC 7.10 - safecopy + # https://github.com/ekmett/linear/issues/75 GHC 7.10 + - linear + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 597b38479f5a98b0b6491c436180243610cc5a61 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 30 Apr 2015 16:46:15 +0300 Subject: [PATCH 122/933] Ignore .swp files --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 6b60ace9..0f9f8e70 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /logs/ nightly-*.yaml lts-*.yaml +*.swp From af0d59eb48b69322633d18814b429288ee7181ae Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 30 Apr 2015 17:16:24 +0300 Subject: [PATCH 123/933] Workflow and aeson-schema --- build-constraints.yaml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 77f7e78d..c394ba0e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -245,9 +245,8 @@ packages: "Alberto G. Corona ": - RefSerialize - TCache - # https://github.com/agocorona/Workflow/issues/5 GHC 7.10 - # - Workflow - # - MFlow + - Workflow + - MFlow "Edward Kmett ": - ad @@ -1277,9 +1276,6 @@ expected-test-failures: # https://github.com/lymar/hastache/issues/47 GHC 7.10 - hastache - # https://github.com/timjb/aeson-schema/issues/13 GHC 7.10 - - aeson-schema - # https://github.com/simonmar/alex/issues/62 GHC 7.10 - alex From adce4ca6e345b97bfdfd696afc0bfab7bb7a0208 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 30 Apr 2015 17:56:03 +0300 Subject: [PATCH 124/933] Switch groundhog-th and MFlow --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c394ba0e..81418309 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -246,7 +246,8 @@ packages: - RefSerialize - TCache - Workflow - - MFlow + # https://github.com/agocorona/MFlow/issues/60 GHC 7.10 + # - MFlow "Edward Kmett ": - ad @@ -441,8 +442,7 @@ packages: "Boris Lykah ": - groundhog - # https://github.com/lykahb/groundhog/issues/38 GHC 7.10 - # - groundhog-th + - groundhog-th - groundhog-sqlite - groundhog-postgresql - groundhog-mysql From 991c70b9626f02e44b0d1e96b09b5f1c4acb468c Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 30 Apr 2015 18:14:37 +0300 Subject: [PATCH 125/933] Switch to GHC 7.10 in Docker --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8326f435..aa2f781c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,9 +14,9 @@ ADD debian-bootstrap.sh /tmp/debian-bootstrap.sh RUN DEBIAN_FRONTEND=noninteractive bash /tmp/debian-bootstrap.sh RUN rm /tmp/debian-bootstrap.sh -RUN DEBIAN_FRONTEND=noninteractive apt-get install -y cabal-install-1.20 ghc-7.8.4 ghc-7.8.4-htmldocs alex-3.1.3 happy-1.19.4 sudo +RUN DEBIAN_FRONTEND=noninteractive apt-get install -y cabal-install-1.22 ghc-7.10.1 ghc-7.10.1-htmldocs alex-3.1.3 happy-1.19.4 sudo -ENV PATH /home/stackage/.cabal/bin:/usr/local/sbin:/usr/local/bin:/opt/ghc/7.8.4/bin:/opt/cabal/1.20/bin:/opt/alex/3.1.3/bin:/opt/happy/1.19.4/bin:/usr/sbin:/usr/bin:/sbin:/bin +ENV PATH /home/stackage/.cabal/bin:/usr/local/sbin:/usr/local/bin:/opt/ghc/7.10.1/bin:/opt/cabal/1.22/bin:/opt/alex/3.1.3/bin:/opt/happy/1.19.4/bin:/usr/sbin:/usr/bin:/sbin:/bin RUN cabal update RUN cabal install hscolour cabal-install && cp $HOME/.cabal/bin/* /usr/local/bin && rm -rf $HOME/.cabal $HOME/.ghc /tmp/stackage From 91d7b1e7ac5915d2c9adad2bb6b9ea4e9f683567 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 30 Apr 2015 18:36:06 +0300 Subject: [PATCH 126/933] Allow mandrill again adinapoli/mandrill#14 --- build-constraints.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 81418309..c6745d17 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -169,9 +169,7 @@ packages: - language-javascript "Alfredo Di Napoli ": - [] - # https://github.com/adinapoli/mandrill/issues/14 - # - mandrill GHC 7.10 + - mandrill "Jasper Van der Jeugt": - blaze-html From 26baa8559123ddbdf4859e350bc3bd54f81fbbec Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 30 Apr 2015 20:48:06 +0300 Subject: [PATCH 127/933] Docker: don't check --- Dockerfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 59d14682..3809dd6d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,5 +21,3 @@ ENV PATH /home/stackage/.cabal/bin:/usr/local/sbin:/usr/local/bin:/opt/ghc/7.8.4 RUN cabal update RUN cabal install hscolour cabal-install --constraint "Cabal < 1.22" && cp $HOME/.cabal/bin/* /usr/local/bin && rm -rf $HOME/.cabal $HOME/.ghc /tmp/stackage RUN wget https://s3.amazonaws.com/stackage-travis/stackage-curator/stackage-curator.bz2 && bunzip2 stackage-curator.bz2 && chmod +x stackage-curator && mv stackage-curator /usr/local/bin - -RUN cd /home/stackage && cabal update && stackage-curator check From 2a114737d7a67b29891fa847596fb25a5de0a259 Mon Sep 17 00:00:00 2001 From: David Turner Date: Fri, 1 May 2015 05:47:16 +0100 Subject: [PATCH 128/933] Reinstate alarmclock and bank-holidays-england New versions with relaxed dependency constraints have been uploaded. --- build-constraints.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c6745d17..a9cdc621 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -712,10 +712,8 @@ packages: - type-list "David Turner ": - [] - # GHC 7.10 - #- alarmclock - #- bank-holidays-england + - alarmclock + - bank-holidays-england "Haskell Servant jkarni@gmail.com @jkarni": - servant From 5602aeb5c2a4bf8c6c295ab20874e0f09f20eedc Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 1 May 2015 07:47:42 +0300 Subject: [PATCH 129/933] Remove upper bounds and close #531 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index eae0649d..58f86f05 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -952,9 +952,6 @@ packages: # https://github.com/Happstack/happstack-server/issues/6 - happstack-server < 7.4.3 - # https://github.com/fpco/stackage/issues/531 - - sbv < 4.3 - # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 From af49d1faa5d1acdc62c4bfbae33dc18a4af9b6be Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 1 May 2015 07:54:00 +0300 Subject: [PATCH 130/933] Use image tags --- automated/build.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/automated/build.sh b/automated/build.sh index 3d92d45d..3f730091 100755 --- a/automated/build.sh +++ b/automated/build.sh @@ -4,6 +4,7 @@ set -eux ROOT=$(cd $(dirname $0) ; pwd) TARGET=$1 +IMAGE=snoyberg/stackage:$(echo $TARGET | cut -d- -f 1) TROOT=$ROOT/$(echo $TARGET | cut -d. -f 1) PLAN_FILE=current-plan.yaml BUNDLE_FILE=current.bundle @@ -68,6 +69,6 @@ ARGS_BUILD="$ARGS_COMMON -v $CABAL_DIR:/home/stackage/.cabal:ro -v $GHC_DIR:/hom ARGS_UPLOAD="$ARGS_COMMON -v $AUTH_TOKEN:/auth-token:ro -v $HACKAGE_CREDS:/hackage-creds:ro -v $CURATOR_DIR:/home/stackage/.stackage-curator -v $SSH_DIR:/home/ubuntu/.ssh:ro -v $GITCONFIG:/home/stackage/.gitconfig:ro" # Use cabal update first to initialize ~/.cabal.config, then use stackage-curator update to get it securely -docker run $ARGS_PREBUILD snoyberg/stackage /bin/bash -c "cabal update && stackage-curator update && stackage-curator create-plan --plan-file $PLAN_FILE --target $TARGET && stackage-curator check --plan-file $PLAN_FILE && stackage-curator fetch --plan-file $PLAN_FILE && cabal install random cabal-install" -docker run $ARGS_BUILD snoyberg/stackage stackage-curator make-bundle --plan-file $PLAN_FILE --bundle-file $BUNDLE_FILE --target $TARGET -docker run $ARGS_UPLOAD snoyberg/stackage /bin/bash -c "stackage-curator upload --bundle-file $BUNDLE_FILE && stackage-curator hackage-distro --plan-file $PLAN_FILE --target $TARGET && stackage-curator upload-github --plan-file $PLAN_FILE --target $TARGET" +docker run $ARGS_PREBUILD $IMAgE /bin/bash -c "cabal update && stackage-curator update && stackage-curator create-plan --plan-file $PLAN_FILE --target $TARGET && stackage-curator check --plan-file $PLAN_FILE && stackage-curator fetch --plan-file $PLAN_FILE && cabal install random cabal-install" +docker run $ARGS_BUILD $IMAGE stackage-curator make-bundle --plan-file $PLAN_FILE --bundle-file $BUNDLE_FILE --target $TARGET +docker run $ARGS_UPLOAD $IMAGE /bin/bash -c "stackage-curator upload --bundle-file $BUNDLE_FILE && stackage-curator hackage-distro --plan-file $PLAN_FILE --target $TARGET && stackage-curator upload-github --plan-file $PLAN_FILE --target $TARGET" From c168eb4399baef40d7e6b02faeca4fbd9fcebe34 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 1 May 2015 08:04:38 +0300 Subject: [PATCH 131/933] Apply fix for mvoidex/hdocs#5 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0408ed34..26628534 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1272,9 +1272,6 @@ expected-test-failures: # https://github.com/simonmar/alex/issues/62 GHC 7.10 - alex - # https://github.com/mvoidex/hdocs/issues/5 GHC 7.10 - - hdocs - # https://github.com/kazu-yamamoto/http-date/issues/6 GHC 7.10 - http-date From b13dd6a21d7e44e1921be52393095e5089e77cfc Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 1 May 2015 08:26:21 +0300 Subject: [PATCH 132/933] Remove expected Haddock failure goldfirere/singletons#120 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 26628534..0cb852b8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1312,9 +1312,6 @@ expected-haddock-failures: # Not sure why, but it's a temporary package anyway - Cabal-ide-backend - # https://github.com/goldfirere/singletons/issues/120 - - singletons - # Benchmarks which should not be built. Note that Stackage does *not* generally # build benchmarks. The difference here will be whether dependencies for these # benchmarks are included or not. From c1088228f93e3b682945b4a0964ffa4a795d02e9 Mon Sep 17 00:00:00 2001 From: David Turner Date: Fri, 1 May 2015 08:31:20 +0100 Subject: [PATCH 133/933] Add @davecturner github username --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 58f86f05..f10dff45 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -692,7 +692,7 @@ packages: "Marcin Mrotek ": - type-list - "David Turner ": + "David Turner @davecturner": - alarmclock - bank-holidays-england From ab0e030ce961831903a5bf2298305e274507caad Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 1 May 2015 11:20:39 +0300 Subject: [PATCH 134/933] Add accelerate back, expect alex tests to pass --- build-constraints.yaml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0cb852b8..65e2a8b2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -282,7 +282,7 @@ packages: - lca - lens - linear - #- linear-accelerate GHC 7.10 + - linear-accelerate - log-domain - machines - monadic-arrays @@ -388,8 +388,7 @@ packages: - containers-unicode-symbols "Trevor L. McDonell ": - [] - # - accelerate GHC 7.10 + - accelerate "Dan Burton ": - yesod-gitrev @@ -1269,9 +1268,6 @@ expected-test-failures: # https://github.com/lymar/hastache/issues/47 GHC 7.10 - hastache - # https://github.com/simonmar/alex/issues/62 GHC 7.10 - - alex - # https://github.com/kazu-yamamoto/http-date/issues/6 GHC 7.10 - http-date From 5ac2788a460ebc6f1a9d53ca32ff4977d763cfeb Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 1 May 2015 11:32:11 +0300 Subject: [PATCH 135/933] Actually, alex is not on Hackage yet --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 65e2a8b2..ac76a63f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1268,6 +1268,9 @@ expected-test-failures: # https://github.com/lymar/hastache/issues/47 GHC 7.10 - hastache + # https://github.com/simonmar/alex/issues/62 GHC 7.10 + - alex + # https://github.com/kazu-yamamoto/http-date/issues/6 GHC 7.10 - http-date From e649b0d63dd11a6aa7e0413b1b715e29993f7023 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 1 May 2015 13:31:00 +0300 Subject: [PATCH 136/933] Add cabal-rpm back juhp/cabal-rpm#18 --- build-constraints.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ac76a63f..4220930a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -748,9 +748,7 @@ packages: - HaskellNet "Jens Petersen juhpetersen@gmail.com @juhp": - [] - # https://github.com/juhp/cabal-rpm/issues/18 - # - cabal-rpm # GHC 7.10 + - cabal-rpm "Renzo Carbonara renzocarbonara@gmail.com @k0001": - network-simple @@ -1015,6 +1013,9 @@ package-flags: HsOpenSSL: fast-bignum: false + cabal-rpm: + old-locale: false + # By skipping a test suite, we do not pull in the build dependencies skipped-tests: - ReadArgs # old version of hspec From b35f189c68dae490e5169ae9669e10bbea1f1549 Mon Sep 17 00:00:00 2001 From: Yann Esposito Date: Fri, 1 May 2015 18:55:38 +0200 Subject: [PATCH 137/933] Fixed an "holy-project" build issue The latest version 0.2.0.0 of holy-project should compile now. --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4220930a..79eeaff6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -584,8 +584,8 @@ packages: "Yann Esposito ": [] - # https://github.com/yogsototh/holy-project/issues/5 GHC 7.10 - # - holy-project + # Should have fixed: https://github.com/yogsototh/holy-project/issues/5 GHC 7.10 + - holy-project "Paul Rouse ": - yesod-auth-hashdb From f35f993530d3b1d636b4875c33105f93e01ef9c4 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sat, 2 May 2015 21:10:43 +0300 Subject: [PATCH 138/933] Add Cabal to skipped tests (QuickCheck 2.8) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4220930a..4826831b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1076,6 +1076,7 @@ skipped-tests: - pandoc - testpack - vector + - Cabal # Tests which we should build and run, but which are expected to fail. We # should not fail a build based on a test failure for one of these packages. From 0d1f62abb8c3977bfd5aab83c662f7ffc915d917 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sat, 2 May 2015 21:14:05 +0300 Subject: [PATCH 139/933] Patch up PR for yogsototh/holy-project#5 --- build-constraints.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2d632fbd..4a7540bc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -583,8 +583,6 @@ packages: - system-canonicalpath "Yann Esposito ": - [] - # Should have fixed: https://github.com/yogsototh/holy-project/issues/5 GHC 7.10 - holy-project "Paul Rouse ": From 7a3f8b0658a54e2fc8f63ca46adcd8ca93d2ad47 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 3 May 2015 07:56:32 +0300 Subject: [PATCH 140/933] stackage-build-plan --- README.md | 1 + build-constraints.yaml | 1 + stackage/stackage.cabal | 3 ++- 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 2cc5a0c4..5b15fd98 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,7 @@ project information. In addition, we have the following repositories: * [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) Get your package included ------------------------- diff --git a/build-constraints.yaml b/build-constraints.yaml index f10dff45..0b5500d2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -101,6 +101,7 @@ packages: - stackage-upload - stackage-cli - stackage-install + - stackage-build-plan - statistics-linreg - th-expand-syns - thyme diff --git a/stackage/stackage.cabal b/stackage/stackage.cabal index ca16cdd8..d9a004d1 100644 --- a/stackage/stackage.cabal +++ b/stackage/stackage.cabal @@ -1,5 +1,5 @@ name: stackage -version: 0.7.1.0 +version: 0.7.2.0 synopsis: Dummy package forcing installation of other Stackage packages homepage: https://www.stackage.org/ license: MIT @@ -18,6 +18,7 @@ library , stackage-update , stackage-upload , stackage-install + , stackage-build-plan default-language: Haskell2010 source-repository head From 53376ff60d0d7881419fec85044aec560c81acb0 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 3 May 2015 08:19:23 +0300 Subject: [PATCH 141/933] Skip tests for yesodweb/Shelly.hs#98 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0b5500d2..4636859b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1084,6 +1084,9 @@ skipped-tests: # https://github.com/Soostone/retry/issues/18 - retry + # https://github.com/yesodweb/Shelly.hs/pull/98 + - shelly + # Tests which we should build and run, but which are expected to fail. We # should not fail a build based on a test failure for one of these packages. expected-test-failures: From 241dbca1f1373c392ff67709afee9aa4d76efdeb Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 3 May 2015 08:31:04 +0300 Subject: [PATCH 142/933] Allow setting constraints on create-plan --- automated/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automated/build.sh b/automated/build.sh index 3d92d45d..08a344a8 100755 --- a/automated/build.sh +++ b/automated/build.sh @@ -68,6 +68,6 @@ ARGS_BUILD="$ARGS_COMMON -v $CABAL_DIR:/home/stackage/.cabal:ro -v $GHC_DIR:/hom ARGS_UPLOAD="$ARGS_COMMON -v $AUTH_TOKEN:/auth-token:ro -v $HACKAGE_CREDS:/hackage-creds:ro -v $CURATOR_DIR:/home/stackage/.stackage-curator -v $SSH_DIR:/home/ubuntu/.ssh:ro -v $GITCONFIG:/home/stackage/.gitconfig:ro" # Use cabal update first to initialize ~/.cabal.config, then use stackage-curator update to get it securely -docker run $ARGS_PREBUILD snoyberg/stackage /bin/bash -c "cabal update && stackage-curator update && stackage-curator create-plan --plan-file $PLAN_FILE --target $TARGET && stackage-curator check --plan-file $PLAN_FILE && stackage-curator fetch --plan-file $PLAN_FILE && cabal install random cabal-install" +docker run $ARGS_PREBUILD snoyberg/stackage /bin/bash -c "cabal update && stackage-curator update && stackage-curator create-plan --plan-file $PLAN_FILE --target $TARGET ${CONSTRAINTS:-} && stackage-curator check --plan-file $PLAN_FILE && stackage-curator fetch --plan-file $PLAN_FILE && cabal install random cabal-install" docker run $ARGS_BUILD snoyberg/stackage stackage-curator make-bundle --plan-file $PLAN_FILE --bundle-file $BUNDLE_FILE --target $TARGET docker run $ARGS_UPLOAD snoyberg/stackage /bin/bash -c "stackage-curator upload --bundle-file $BUNDLE_FILE && stackage-curator hackage-distro --plan-file $PLAN_FILE --target $TARGET && stackage-curator upload-github --plan-file $PLAN_FILE --target $TARGET" From 26936be15c42e4db4691f72519d63b76fc10808c Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 3 May 2015 09:49:55 +0300 Subject: [PATCH 143/933] Don't skip tests yesodweb/Shelly.hs#98 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4636859b..0b5500d2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1084,9 +1084,6 @@ skipped-tests: # https://github.com/Soostone/retry/issues/18 - retry - # https://github.com/yesodweb/Shelly.hs/pull/98 - - shelly - # Tests which we should build and run, but which are expected to fail. We # should not fail a build based on a test failure for one of these packages. expected-test-failures: From 98799db672ceeeed70cbe39d8afd00c95ba7ce9d Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 3 May 2015 13:31:39 +0300 Subject: [PATCH 144/933] Expected test failure yesodweb/Shelly.hs#99 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0b5500d2..70cab47c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1273,6 +1273,9 @@ expected-test-failures: - hedis - redis-io + # https://github.com/yesodweb/Shelly.hs/issues/99 + - shelly + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 13ec252971064c1fb6289f1789034bb67c4a8fb0 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 3 May 2015 17:49:52 +0300 Subject: [PATCH 145/933] Remove expected test failure ekmett/machines#42 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f9062e2c..d8aa12b4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1281,9 +1281,6 @@ expected-test-failures: # https://github.com/bos/text/issues/118 GHC 7.10 - text - # https://github.com/ekmett/machines/issues/42 GHC 7.10 - - machines - # https://github.com/ekmett/hyperloglog/issues/10 GHC 7.10 - hyperloglog From 4d9c77c64e2ec66dc104c132193bb4455b6b82a4 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 3 May 2015 18:36:27 +0300 Subject: [PATCH 146/933] Remove expected test failure yesodweb/Shelly.hs#99 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 70cab47c..0b5500d2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1273,9 +1273,6 @@ expected-test-failures: - hedis - redis-io - # https://github.com/yesodweb/Shelly.hs/issues/99 - - shelly - # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From acb7078df83d68c58abc7581c8f33866e05e93eb Mon Sep 17 00:00:00 2001 From: Leon Mergen Date: Mon, 4 May 2015 11:36:47 +0700 Subject: [PATCH 147/933] Adds bitcoin-api --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0b5500d2..9d9fa682 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -755,6 +755,7 @@ packages: "Leon Mergen leon@solatis.com @solatis": - base58string + - bitcoin-api - bitcoin-block - bitcoin-script - bitcoin-tx From 0717bb83e0df6fcd69014460561366a473b8e5b7 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 4 May 2015 08:48:51 +0300 Subject: [PATCH 148/933] Use mtl-compat compatible by default with transformers 0.3 #522 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ddbdc7b7..01935e8c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -930,6 +930,7 @@ packages: # Force a specific version that's compatible with transformers 0.3 - transformers-compat == 0.4.0.3 + - mtl-compat == 0.2.1.1 # https://github.com/fpco/stackage/issues/476 - vector-space < 0.10 From 4a80873347bc2cd4d294bf6619a6803ebbafdc8b Mon Sep 17 00:00:00 2001 From: Josh Holland Date: Mon, 4 May 2015 12:14:22 +0100 Subject: [PATCH 149/933] Remove trailing whitespace --- build-constraints.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 01935e8c..ea8b8687 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -877,11 +877,11 @@ packages: - plot-gtk3 - vector-buffer - hmatrix-repa - + "Noam Lewis @sinelaw": - xml-to-json - xml-to-json-fast - + "Tim Baumann @timjb": - aeson-schema @@ -891,7 +891,7 @@ packages: "Stefan Saasen ": - jwt - + "Sven Bartscher sven.bartscher@weltraumschlangen.de @kritzefitz": - setlocale @@ -905,21 +905,21 @@ packages: - islink - linux-file-extents - linux-namespaces - + "Will Coster @fimad": - scalpel - + "Smirnov Alexey @chemist": - snmp - agentx - + "David Raymond Christiansen @david-christiansen": - annotated-wl-pprint "Yitz Gale gale@sefer.org @ygale": - timezone-series - timezone-olson - + "Stackage upper bounds": # GHC 7.8 uppdate bound - haddock-api < 2.16 From f26de0493774a131df57a57fa1377d6a0024be5e Mon Sep 17 00:00:00 2001 From: Josh Holland Date: Mon, 4 May 2015 12:14:48 +0100 Subject: [PATCH 150/933] Add sandi --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ea8b8687..3218ee61 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -920,6 +920,9 @@ packages: - timezone-series - timezone-olson + "Josh Holland josh@inv.alid.pw @jshholland": + - sandi + "Stackage upper bounds": # GHC 7.8 uppdate bound - haddock-api < 2.16 From c8e8a52e2f69731f56413008abc3aaec3f77fca2 Mon Sep 17 00:00:00 2001 From: Josh Holland Date: Mon, 4 May 2015 15:05:30 +0100 Subject: [PATCH 151/933] Add data-ordlist --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3218ee61..d25ac637 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -922,6 +922,7 @@ packages: "Josh Holland josh@inv.alid.pw @jshholland": - sandi + - data-ordlist "Stackage upper bounds": # GHC 7.8 uppdate bound From afa791c8437a454de73054a443572194f7e320db Mon Sep 17 00:00:00 2001 From: Harry Garrood Date: Mon, 4 May 2015 16:54:12 +0100 Subject: [PATCH 152/933] Add aeson-better-errors --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d25ac637..266a0e8f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -923,6 +923,9 @@ packages: "Josh Holland josh@inv.alid.pw @jshholland": - sandi - data-ordlist + + "Harry Garrood @hdgarrood": + - aeson-better-errors "Stackage upper bounds": # GHC 7.8 uppdate bound From 4d6305626a97003b5408a832935978fc4f3767f8 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Mon, 4 May 2015 13:00:37 -0700 Subject: [PATCH 153/933] Add stackage-cabal, stackage-sandbox, stackage-setup to the family --- stackage/stackage.cabal | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/stackage/stackage.cabal b/stackage/stackage.cabal index d9a004d1..8dc126ad 100644 --- a/stackage/stackage.cabal +++ b/stackage/stackage.cabal @@ -1,5 +1,5 @@ name: stackage -version: 0.7.2.0 +version: 0.7.3.0 synopsis: Dummy package forcing installation of other Stackage packages homepage: https://www.stackage.org/ license: MIT @@ -19,6 +19,9 @@ library , stackage-upload , stackage-install , stackage-build-plan + , stackage-cabal + , stackage-sandbox + , stackage-setup default-language: Haskell2010 source-repository head From ab30e81f1535ff1b380f74b8699ed02bff3bdd88 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Mon, 4 May 2015 13:36:21 -0700 Subject: [PATCH 154/933] ChangeLog 0.7.3.0 --- stackage/ChangeLog.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/stackage/ChangeLog.md b/stackage/ChangeLog.md index 51676ad3..ab298b5d 100644 --- a/stackage/ChangeLog.md +++ b/stackage/ChangeLog.md @@ -1,3 +1,7 @@ +## 0.7.3.0 + +* Added the executables split off from stackage-cli. + ## 0.7.0.0 * First release of this incarnation of the stackage package. Previously, this From 67c0f06164326136b807f1ec12b8823a7d7e3850 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 5 May 2015 09:08:49 +0300 Subject: [PATCH 155/933] Temporarily block sandi #560 --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2befe859..38e181f1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -942,7 +942,8 @@ packages: - timezone-olson "Josh Holland josh@inv.alid.pw @jshholland": - - sandi + # https://github.com/fpco/stackage/issues/560 + # - sandi GHC 7.10 - data-ordlist "Harry Garrood @hdgarrood": From 5d0e52d01c7a4f0569f8ed23c01cb26aeb7fdac7 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 5 May 2015 09:08:58 +0300 Subject: [PATCH 156/933] Upper bound for #559 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 38e181f1..327fccc9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -972,6 +972,9 @@ packages: # https://github.com/fpco/stackage/issues/549 - tttool < 1.4 + # https://github.com/fpco/stackage/issues/559 + - vector-algorithms < 0.7 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 6cc802388d459b5295d9e375081398cd34a0e5ed Mon Sep 17 00:00:00 2001 From: Timothy Jones Date: Tue, 5 May 2015 18:27:48 +1200 Subject: [PATCH 157/933] Remove cabal-test-quickcheck, restore http-media Packages tested with cabal-test-quickcheck cannot pass on all of the required platforms: it requires that Cabal and cabal-install be on the same side of version 1.19, but a build against GHC 7.8 will tend to use Cabal-1.18 with cabal-install-1.20 or higher. As such, the library has been removed. The http-media package, which used cabal-test-quickcheck, is now expected to build its test suite and pass all tests. --- build-constraints.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 327fccc9..adb58c88 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -783,7 +783,6 @@ packages: - network-anonymous-i2p "Timothy Jones git@zmthy.io @zmthy": - - cabal-test-quickcheck - http-media "Greg V greg@unrelenting.technology @myfreeweb": @@ -1248,9 +1247,6 @@ expected-test-failures: # https://github.com/jberryman/directory-tree/issues/4 - directory-tree - # https://github.com/zmthy/http-media/issues/11 - - http-media - # https://github.com/ekmett/semigroupoids/issues/18 - semigroupoids From d38554f725a6b1335e89eda473ab4d59dcc67d50 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 5 May 2015 11:14:13 +0300 Subject: [PATCH 158/933] Remove blocked package and close #560 --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index adb58c88..85038c26 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -941,8 +941,7 @@ packages: - timezone-olson "Josh Holland josh@inv.alid.pw @jshholland": - # https://github.com/fpco/stackage/issues/560 - # - sandi GHC 7.10 + - sandi - data-ordlist "Harry Garrood @hdgarrood": From 8f38b985478c6b0d7022250b0dca855c86e5c273 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 5 May 2015 11:17:04 +0300 Subject: [PATCH 159/933] Add back BlogLiterately --- build-constraints.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 85038c26..9eedf1b0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -343,9 +343,8 @@ packages: "Brent Yorgey ": - active - # Temporarily disabled due to restrictive lens upper bound - #- BlogLiterately - #- BlogLiterately-diagrams + - BlogLiterately + # - BlogLiterately-diagrams GHC 7.10 - diagrams # https://github.com/fpco/stackage/issues/443 From 7b0f29a078487035c0a9c5bbb8c7e7cac7de39b4 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 5 May 2015 13:36:41 +0300 Subject: [PATCH 160/933] Add GHC major version to constraints file --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9eedf1b0..d0be6812 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1,3 +1,5 @@ +ghc-major-version: "7.10" + # Constraints for brand new builds packages: "Michael Snoyman michael@snoyman.com @snoyberg": From 2b4199b417c10efd5ea371df7b7b91a8535ef62b Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 5 May 2015 15:27:48 +0300 Subject: [PATCH 161/933] Expected test failure haskell/haddock#390 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d0be6812..f16ac465 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1303,6 +1303,9 @@ expected-test-failures: # https://github.com/ekmett/linear/issues/75 GHC 7.10 - linear + # https://github.com/haskell/haddock/issues/390 + - haddock-library + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 4a9725ccf89cd2141052b8761d55727d43f1f9be Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 5 May 2015 17:55:58 +0300 Subject: [PATCH 162/933] Temporarily block bitcoin-api due to broken wreq --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f16ac465..7a97e815 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -774,7 +774,7 @@ packages: "Leon Mergen leon@solatis.com @solatis": - base58string - - bitcoin-api + # - bitcoin-api GHC 7.10, via wreq - bitcoin-block - bitcoin-script - bitcoin-tx From 79bf759f8dd5d02a0c0c71363fc63dd89b911112 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 5 May 2015 18:32:06 +0300 Subject: [PATCH 163/933] Temporary block byorgey/BlogLiterately#20 --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7a97e815..ee68ba1a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -345,7 +345,8 @@ packages: "Brent Yorgey ": - active - - BlogLiterately + # https://github.com/byorgey/BlogLiterately/issues/20 + # - BlogLiterately GHC 7.10 # - BlogLiterately-diagrams GHC 7.10 - diagrams From 7ad175e95d177babaefaa57e3807e3a60b33056c Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 5 May 2015 19:39:58 +0300 Subject: [PATCH 164/933] Add expected test failure ekmett/machines#44 --- build-constraints.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ee68ba1a..6295e321 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1304,9 +1304,12 @@ expected-test-failures: # https://github.com/ekmett/linear/issues/75 GHC 7.10 - linear - # https://github.com/haskell/haddock/issues/390 + # https://github.com/haskell/haddock/issues/390 GHC 7.10 - haddock-library + # https://github.com/ekmett/machines/issues/44 GHC 7.10 + - machines + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From a568d0b0d98d9fc13d7a3d3f5724ed5319a50004 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 6 May 2015 06:18:27 +0300 Subject: [PATCH 165/933] Expected test failure ivanperez-keera/Yampa#10 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6295e321..b7f1f0b4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1310,6 +1310,9 @@ expected-test-failures: # https://github.com/ekmett/machines/issues/44 GHC 7.10 - machines + # https://github.com/ivanperez-keera/Yampa/issues/10 + - Yampa + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From d874e974edad90ce5164a11e8d3282a6562082e9 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 6 May 2015 06:20:13 +0300 Subject: [PATCH 166/933] Remove upper bound and close #559 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b7f1f0b4..ec971f92 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -972,9 +972,6 @@ packages: # https://github.com/fpco/stackage/issues/549 - tttool < 1.4 - # https://github.com/fpco/stackage/issues/559 - - vector-algorithms < 0.7 - # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From b8b491fc10a97998ebc74a10158f7308e41e667b Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 6 May 2015 06:26:28 +0300 Subject: [PATCH 167/933] Add some more Stackage tools explicitly --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ec971f92..c6f38900 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -108,6 +108,9 @@ packages: - stackage-cli - stackage-install - stackage-build-plan + - stackage-cabal + - stackage-sandbox + - stackage-setup - statistics-linreg - th-expand-syns - thyme From 76b25e903aaedf16bb999cc5167917da3403e0e0 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 6 May 2015 06:47:58 +0300 Subject: [PATCH 168/933] Remove expected test failure ekmett/machines#44 --- build-constraints.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c6f38900..35fa4d2a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1307,12 +1307,10 @@ expected-test-failures: # https://github.com/haskell/haddock/issues/390 GHC 7.10 - haddock-library - # https://github.com/ekmett/machines/issues/44 GHC 7.10 - - machines - # https://github.com/ivanperez-keera/Yampa/issues/10 - Yampa +>>>>>>> Remove expected test failure ekmett/machines#44 # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 592f19420dcfffb3463fbe6d5588da50294e369f Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 6 May 2015 06:57:59 +0300 Subject: [PATCH 169/933] Remove rebase artifact --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 35fa4d2a..9166301a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1310,7 +1310,6 @@ expected-test-failures: # https://github.com/ivanperez-keera/Yampa/issues/10 - Yampa ->>>>>>> Remove expected test failure ekmett/machines#44 # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 3e3f75365218c9d5fb1b3e5c93278c879eb90424 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 6 May 2015 07:10:36 +0300 Subject: [PATCH 170/933] Add back expected test failure ekmett/machines#44 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9166301a..c0c783b2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1310,6 +1310,9 @@ expected-test-failures: # https://github.com/ivanperez-keera/Yampa/issues/10 - Yampa + # https://github.com/ekmett/machines/issues/44 + - machines + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 94e6967489f2c2738139e9d208fc50d1b87f968f Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 6 May 2015 07:11:20 +0300 Subject: [PATCH 171/933] Remove expected test failure ivanperez-keera/Yampa#10 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c0c783b2..4ce72064 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1307,9 +1307,6 @@ expected-test-failures: # https://github.com/haskell/haddock/issues/390 GHC 7.10 - haddock-library - # https://github.com/ivanperez-keera/Yampa/issues/10 - - Yampa - # https://github.com/ekmett/machines/issues/44 - machines From 66cf2064bd2b205719b8a5c61ed636ede9050cdd Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 6 May 2015 07:20:30 +0300 Subject: [PATCH 172/933] Remove non-library packages --- stackage/stackage.cabal | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/stackage/stackage.cabal b/stackage/stackage.cabal index 8dc126ad..9988196e 100644 --- a/stackage/stackage.cabal +++ b/stackage/stackage.cabal @@ -1,5 +1,5 @@ name: stackage -version: 0.7.3.0 +version: 0.7.3.1 synopsis: Dummy package forcing installation of other Stackage packages homepage: https://www.stackage.org/ license: MIT @@ -19,9 +19,9 @@ library , stackage-upload , stackage-install , stackage-build-plan - , stackage-cabal - , stackage-sandbox - , stackage-setup + -- , stackage-cabal + -- , stackage-sandbox + -- , stackage-setup default-language: Haskell2010 source-repository head From 13821e67e8fd2b8e013babf04b2d580b46192055 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 6 May 2015 09:40:10 +0300 Subject: [PATCH 173/933] Remove manual flags for mtl-compat stackage-curator#1 --- build-constraints.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4ce72064..3660239b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1015,10 +1015,6 @@ package-flags: tar: old-time: false - mtl-compat: - two-point-one: false - two-point-two: false - # https://github.com/fpco/stackage/pull/482#issuecomment-83635207 jose-jwt: doctest: false From a889e1c59e6c1ba40f7f34cef4a3d27c7b57cd68 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Wed, 6 May 2015 09:23:23 +0200 Subject: [PATCH 174/933] Add feed and time-compat --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3660239b..01ad336b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -433,7 +433,9 @@ packages: - fay-jquery - fay-text - fay-uri + - feed - snaplet-fay + - time-compat "Sebastiaan Visser ": - clay From 756ea9785a14b48038b59d4f0ff93b3a20b7b139 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 6 May 2015 15:57:00 -0700 Subject: [PATCH 175/933] Add lib-enabled versions of the plugins --- stackage/stackage.cabal | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/stackage/stackage.cabal b/stackage/stackage.cabal index 9988196e..e56f30e0 100644 --- a/stackage/stackage.cabal +++ b/stackage/stackage.cabal @@ -1,5 +1,5 @@ name: stackage -version: 0.7.3.1 +version: 0.7.3.2 synopsis: Dummy package forcing installation of other Stackage packages homepage: https://www.stackage.org/ license: MIT @@ -14,14 +14,14 @@ cabal-version: >=1.10 library exposed-modules: Stackage.Dummy build-depends: base < 10 - , stackage-cli + , stackage-cli >= 0.1.0 , stackage-update , stackage-upload , stackage-install , stackage-build-plan - -- , stackage-cabal - -- , stackage-sandbox - -- , stackage-setup + , stackage-cabal >= 0.1.1 + , stackage-sandbox >= 0.1.1 + , stackage-setup >= 0.0.1 default-language: Haskell2010 source-repository head From 95f2f4c9d515bcd5941e6447868c8c15bcc92e59 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 7 May 2015 06:32:32 +0300 Subject: [PATCH 176/933] Add back BlogLiterately --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 01ad336b..c955706a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -348,8 +348,7 @@ packages: "Brent Yorgey ": - active - # https://github.com/byorgey/BlogLiterately/issues/20 - # - BlogLiterately GHC 7.10 + - BlogLiterately # - BlogLiterately-diagrams GHC 7.10 - diagrams From e658e7de3f065cc22b551aa308a3372bba45c223 Mon Sep 17 00:00:00 2001 From: Mitchell Rosen Date: Wed, 6 May 2015 22:41:23 -0700 Subject: [PATCH 177/933] Update build-constraints.yaml --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index c955706a..3fec63bb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -952,6 +952,9 @@ packages: "Harry Garrood @hdgarrood": - aeson-better-errors + + "Mitchell Rosen Date: Thu, 7 May 2015 11:48:15 +0300 Subject: [PATCH 178/933] Add wai-middleware-crowd --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3fec63bb..8d7620c7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -145,6 +145,7 @@ packages: - hackage-mirror - wai-middleware-consul + - wai-middleware-crowd - monad-logger-json - monad-logger-syslog From 85f39cfb7418097cffe3c1b0cc229bfa4974425e Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Fri, 8 May 2015 11:02:57 +0200 Subject: [PATCH 179/933] Add through-text --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8d7620c7..2ae56650 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -436,6 +436,7 @@ packages: - feed - snaplet-fay - time-compat + - through-text "Sebastiaan Visser ": - clay From 1fb9dcab3a83af87dc3f2f05928e325ed2445c6b Mon Sep 17 00:00:00 2001 From: Jeffrey Rosenbluth Date: Fri, 8 May 2015 09:22:47 -0400 Subject: [PATCH 180/933] Update build-constraints.yaml --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2ae56650..9f6c8c4d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -775,6 +775,8 @@ packages: #- diagrams-canvas GHC 7.10, via blank-canvas - diagrams-rasterific - lucid-svg + - diagrams-html5 + - static-canvas "Gabríel Arthúr Pétursson gabriel@system.is": - sdl2 From 603da9537e42258dda0c5d3d144ac4d2c65c284b Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sat, 9 May 2015 20:50:51 +0300 Subject: [PATCH 181/933] Upper bounds for #568 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9f6c8c4d..f4a7da28 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -983,6 +983,9 @@ packages: # https://github.com/fpco/stackage/issues/549 - tttool < 1.4 + # https://github.com/fpco/stackage/issues/568 + - pandoc-citeproc < 0.7 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From a44ece59f8f42aef45fa2ec6ae20ef83601cf83a Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 10 May 2015 09:09:23 +0300 Subject: [PATCH 182/933] Unblock jvranish/FixedList#1 --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f4a7da28..68a51027 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -75,8 +75,7 @@ packages: - executable-hash - executable-path - fgl - # https://github.com/jvranish/FixedList/issues/1 - #- fixed-list GHC 7.10 + - fixed-list - foreign-store - formatting #- fpco-api From ca23597be5380e9f880b8d8be0b3114bc2dfdfe5 Mon Sep 17 00:00:00 2001 From: Emanuel Borsboom Date: Sat, 9 May 2015 23:38:57 -0700 Subject: [PATCH 183/933] Add Chart-cairo and ghc-events --- build-constraints.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 68a51027..0886a714 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -645,8 +645,10 @@ packages: - parallel-io - text-binary - wl-pprint-text + - Chart-cairo + - ghc-events - "Michael Sloan ": - th-orphans - th-reify-many From d3eaeae3e283d24d2190f38e4cdc2e8b5a03ef1c Mon Sep 17 00:00:00 2001 From: Christiaan Baaij Date: Sun, 10 May 2015 11:33:08 +0200 Subject: [PATCH 184/933] Add clash packages --- build-constraints.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0886a714..f78ae8c2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -960,6 +960,14 @@ packages: "Mitchell Rosen @christiaanb": + - ghc-typelits-natnormalise + - clash-prelude + - clash-lib + - clash-vhdl + - clash-systemverilog + - clash-ghc "Stackage upper bounds": # https://github.com/fpco/stackage/issues/476 From 93dcb1e73b3b07a8a646ff4a07660d5f47d4468c Mon Sep 17 00:00:00 2001 From: Leon Mergen Date: Sun, 10 May 2015 18:09:01 +0700 Subject: [PATCH 185/933] Adds bitcoin-api-extra --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f78ae8c2..75dd99c2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -785,6 +785,7 @@ packages: "Leon Mergen leon@solatis.com @solatis": - base58string # - bitcoin-api GHC 7.10, via wreq + # - bitcoin-api-extra GHC 7.10, via wreq - bitcoin-block - bitcoin-script - bitcoin-tx From fae208eba3789880327480fe0b133545f98973f5 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 10 May 2015 16:28:42 +0300 Subject: [PATCH 186/933] DOT_STACKAGE_DIR --- automated/build.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/automated/build.sh b/automated/build.sh index 31cc1804..21abf2e5 100755 --- a/automated/build.sh +++ b/automated/build.sh @@ -12,7 +12,7 @@ BUNDLE_FILE=current.bundle CABAL_DIR=$ROOT/cabal GHC_DIR=$ROOT/ghc CURATOR_DIR=$ROOT/stackage-curator -UPDATE_DIR=$ROOT/stackage-update +DOT_STACKAGE_DIR=$ROOT/dot-stackage WORKDIR=$TROOT/work SSH_DIR=$ROOT/ssh-$(echo $TARGET | cut -d- -f 1) @@ -20,7 +20,7 @@ mkdir -p \ "$CABAL_DIR" \ "$GHC_DIR" \ "$CURATOR_DIR" \ - "$UPDATE_DIR" \ + "$DOT_STACKAGE_DIR" \ "$WORKDIR" \ "$SSH_DIR" @@ -64,7 +64,7 @@ chmod +x stackage-curator ) ARGS_COMMON="--rm -u $USER -v $WORKDIR:/home/stackage/work -w /home/stackage/work -v $BINDIR/stackage-curator:/usr/local/bin/stackage-curator:ro -v /etc/passwd:/etc/passwd:ro -v /etc/group:/etc/group:ro" -ARGS_PREBUILD="$ARGS_COMMON -v $CABAL_DIR:/home/stackage/.cabal -v $GHC_DIR:/home/stackage/.ghc -v $UPDATE_DIR:/home/stackage/.stackage-update" +ARGS_PREBUILD="$ARGS_COMMON -v $CABAL_DIR:/home/stackage/.cabal -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 $GHC_DIR:/home/stackage/.ghc:ro" ARGS_UPLOAD="$ARGS_COMMON -v $AUTH_TOKEN:/auth-token:ro -v $HACKAGE_CREDS:/hackage-creds:ro -v $CURATOR_DIR:/home/stackage/.stackage-curator -v $SSH_DIR:/home/ubuntu/.ssh:ro -v $GITCONFIG:/home/stackage/.gitconfig:ro" From 3a0f858e793418a97ce5055e2f92c5318bfac670 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 10 May 2015 16:39:57 +0300 Subject: [PATCH 187/933] Expected test failure haskell/ghc-events#9 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 75dd99c2..8fb87fc0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1327,6 +1327,9 @@ expected-test-failures: # https://github.com/ekmett/machines/issues/44 - machines + # https://github.com/haskell/ghc-events/issues/9 + - ghc-events + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 9c38e5fcc5c995b4bb2cdfbb7f79d04ab3b5da03 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 10 May 2015 19:19:48 +0300 Subject: [PATCH 188/933] Expected test failure haskell-servent/servant#68 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8fb87fc0..381bb623 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1330,6 +1330,9 @@ expected-test-failures: # https://github.com/haskell/ghc-events/issues/9 - ghc-events + # https://github.com/haskell-servant/servant/issues/68 + - servant-client + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 7f927fb99c4ddaf3b2d9b78affba897c3cb25c47 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 10 May 2015 19:41:32 +0300 Subject: [PATCH 189/933] No more CURATOR_DIR --- automated/build.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/automated/build.sh b/automated/build.sh index 21abf2e5..98e882a8 100755 --- a/automated/build.sh +++ b/automated/build.sh @@ -11,7 +11,6 @@ BUNDLE_FILE=current.bundle CABAL_DIR=$ROOT/cabal GHC_DIR=$ROOT/ghc -CURATOR_DIR=$ROOT/stackage-curator DOT_STACKAGE_DIR=$ROOT/dot-stackage WORKDIR=$TROOT/work SSH_DIR=$ROOT/ssh-$(echo $TARGET | cut -d- -f 1) @@ -19,7 +18,6 @@ SSH_DIR=$ROOT/ssh-$(echo $TARGET | cut -d- -f 1) mkdir -p \ "$CABAL_DIR" \ "$GHC_DIR" \ - "$CURATOR_DIR" \ "$DOT_STACKAGE_DIR" \ "$WORKDIR" \ "$SSH_DIR" @@ -66,7 +64,7 @@ chmod +x stackage-curator ARGS_COMMON="--rm -u $USER -v $WORKDIR:/home/stackage/work -w /home/stackage/work -v $BINDIR/stackage-curator:/usr/local/bin/stackage-curator:ro -v /etc/passwd:/etc/passwd:ro -v /etc/group:/etc/group:ro" ARGS_PREBUILD="$ARGS_COMMON -v $CABAL_DIR:/home/stackage/.cabal -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 $GHC_DIR:/home/stackage/.ghc:ro" -ARGS_UPLOAD="$ARGS_COMMON -v $AUTH_TOKEN:/auth-token:ro -v $HACKAGE_CREDS:/hackage-creds:ro -v $CURATOR_DIR:/home/stackage/.stackage-curator -v $SSH_DIR:/home/ubuntu/.ssh:ro -v $GITCONFIG:/home/stackage/.gitconfig:ro" +ARGS_UPLOAD="$ARGS_COMMON -v $AUTH_TOKEN:/auth-token:ro -v $HACKAGE_CREDS:/hackage-creds:ro -v $DOT_STACKAGE_DIR:/home/stackage/.stackage -v $SSH_DIR:/home/ubuntu/.ssh:ro -v $GITCONFIG:/home/stackage/.gitconfig:ro" # Use cabal update first to initialize ~/.cabal.config, then use stackage-curator update to get it securely docker run $ARGS_PREBUILD $IMAGE /bin/bash -c "cabal update && stackage-curator update && stackage-curator create-plan --plan-file $PLAN_FILE --target $TARGET ${CONSTRAINTS:-} && stackage-curator check --plan-file $PLAN_FILE && stackage-curator fetch --plan-file $PLAN_FILE && cabal install random cabal-install" From 7d549937145d990ce03298f6634630f0de66e87e Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 11 May 2015 07:20:04 +0300 Subject: [PATCH 190/933] Add back wreq bos/wreq#61 --- build-constraints.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 381bb623..69723095 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -744,8 +744,7 @@ packages: - machines-io - machines-process # on behalf of Bryan O'Sullivan @bos - # https://github.com/bos/wreq/issues/61 - # - wreq GHC 7.10 + - wreq "Andraz Bajt andraz@bajt.me @edofic": - effect-handlers @@ -784,8 +783,8 @@ packages: "Leon Mergen leon@solatis.com @solatis": - base58string - # - bitcoin-api GHC 7.10, via wreq - # - bitcoin-api-extra GHC 7.10, via wreq + - bitcoin-api + - bitcoin-api-extra - bitcoin-block - bitcoin-script - bitcoin-tx From 9c09182bd736165488583504e770cdce23d88653 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 11 May 2015 07:20:17 +0300 Subject: [PATCH 191/933] S3 doc upload --- automated/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/automated/build.sh b/automated/build.sh index 98e882a8..815fc595 100755 --- a/automated/build.sh +++ b/automated/build.sh @@ -64,9 +64,9 @@ chmod +x stackage-curator ARGS_COMMON="--rm -u $USER -v $WORKDIR:/home/stackage/work -w /home/stackage/work -v $BINDIR/stackage-curator:/usr/local/bin/stackage-curator:ro -v /etc/passwd:/etc/passwd:ro -v /etc/group:/etc/group:ro" ARGS_PREBUILD="$ARGS_COMMON -v $CABAL_DIR:/home/stackage/.cabal -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 $GHC_DIR:/home/stackage/.ghc:ro" -ARGS_UPLOAD="$ARGS_COMMON -v $AUTH_TOKEN:/auth-token:ro -v $HACKAGE_CREDS:/hackage-creds:ro -v $DOT_STACKAGE_DIR:/home/stackage/.stackage -v $SSH_DIR:/home/ubuntu/.ssh:ro -v $GITCONFIG:/home/stackage/.gitconfig:ro" +ARGS_UPLOAD="$ARGS_COMMON -e AWS_ACCESS_KEY=$AWS_ACCESS_KEY -e AWS_SECRET_KEY=$AWS_SECRET_KEY -v $AUTH_TOKEN:/auth-token:ro -v $HACKAGE_CREDS:/hackage-creds:ro -v $DOT_STACKAGE_DIR:/home/stackage/.stackage -v $SSH_DIR:/home/ubuntu/.ssh:ro -v $GITCONFIG:/home/stackage/.gitconfig:ro" # Use cabal update first to initialize ~/.cabal.config, then use stackage-curator update to get it securely docker run $ARGS_PREBUILD $IMAGE /bin/bash -c "cabal update && stackage-curator update && stackage-curator create-plan --plan-file $PLAN_FILE --target $TARGET ${CONSTRAINTS:-} && stackage-curator check --plan-file $PLAN_FILE && stackage-curator fetch --plan-file $PLAN_FILE && cabal install random cabal-install" docker run $ARGS_BUILD $IMAGE stackage-curator make-bundle --plan-file $PLAN_FILE --bundle-file $BUNDLE_FILE --target $TARGET -docker run $ARGS_UPLOAD $IMAGE /bin/bash -c "stackage-curator upload --bundle-file $BUNDLE_FILE && stackage-curator hackage-distro --plan-file $PLAN_FILE --target $TARGET && stackage-curator upload-github --plan-file $PLAN_FILE --target $TARGET" +docker run $ARGS_UPLOAD $IMAGE /bin/bash -c "stackage-curator upload --bundle-file $BUNDLE_FILE && stackage-curator hackage-distro --plan-file $PLAN_FILE --target $TARGET && stackage-curator upload-github --plan-file $PLAN_FILE --target $TARGET && stackage-curator upload-docs --target $TARGET" From e168f0f0378be0fb317a5a762b1bdfa30125fbea Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 11 May 2015 07:51:27 +0300 Subject: [PATCH 192/933] Account for nightly target name change --- automated/build.sh | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/automated/build.sh b/automated/build.sh index 815fc595..7e1b128c 100755 --- a/automated/build.sh +++ b/automated/build.sh @@ -5,7 +5,14 @@ set -eux ROOT=$(cd $(dirname $0) ; pwd) TARGET=$1 IMAGE=snoyberg/stackage:$(echo $TARGET | cut -d- -f 1) -TROOT=$ROOT/$(echo $TARGET | cut -d. -f 1) + +if [ "$IMAGE" -eq "nightly"] +then + TROOT=$ROOT/nightly +else + TROOT=$ROOT/$(echo $TARGET | cut -d. -f 1) +fi + PLAN_FILE=current-plan.yaml BUNDLE_FILE=current.bundle From 7336f41ed2dd5bc322389d394b6005a9353d6529 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 11 May 2015 08:33:18 +0300 Subject: [PATCH 193/933] Skip test for bttr/psqueues#2 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 69723095..80a892a4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1109,6 +1109,7 @@ skipped-tests: - testpack - vector - Cabal + - psqueues # Tests which we should build and run, but which are expected to fail. We # should not fail a build based on a test failure for one of these packages. From b400ffa8bf5f9a873d6486412cf9511eba70c955 Mon Sep 17 00:00:00 2001 From: Chris Done Date: Mon, 11 May 2015 08:48:41 +0200 Subject: [PATCH 194/933] Add path package --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 80a892a4..5a26b342 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -243,6 +243,7 @@ packages: - hindent - descriptive - wrap + - path # requires old haddock currently - haskell-docs # TODO: Add structured-haskell-mode once they've been ported to HSE 1.16. From ba330b4c05c5d7f144a8505537c8874681270088 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 11 May 2015 10:33:26 +0300 Subject: [PATCH 195/933] Upper bound for #572 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5a26b342..04358f5c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -996,6 +996,9 @@ packages: # https://github.com/fpco/stackage/issues/568 - pandoc-citeproc < 0.7 + # https://github.com/fpco/stackage/issues/572 + - attoparsec < 0.13 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From bcf7000cd2f5b30109fdac85818bf99cb6e46035 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 11 May 2015 10:37:01 +0300 Subject: [PATCH 196/933] Extra upper bound for #572 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 04358f5c..9cbfa303 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -998,6 +998,7 @@ packages: # https://github.com/fpco/stackage/issues/572 - attoparsec < 0.13 + - aeson < 0.8.1.0 # Package flags are applied to individual packages, and override the values of # global-flags From 4148ed9a297ca377346e9e3af09b359ad35c3b89 Mon Sep 17 00:00:00 2001 From: Jasper Van der Jeugt Date: Mon, 11 May 2015 10:36:55 +0100 Subject: [PATCH 197/933] Add psqueues to list of packages I maintain --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9cbfa303..67ca34c3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -182,6 +182,7 @@ packages: - blaze-markup - hakyll - stylish-haskell + - psqueues "Antoine Latter": - byteorder From fad4ca318a5aa16cd5a9e93256553fc0eb07e629 Mon Sep 17 00:00:00 2001 From: Jasper Van der Jeugt Date: Mon, 11 May 2015 10:41:32 +0100 Subject: [PATCH 198/933] Add websockets to Stackage --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9cbfa303..708e7d56 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -182,6 +182,7 @@ packages: - blaze-markup - hakyll - stylish-haskell + - websockets "Antoine Latter": - byteorder From 9fcbee26005e94d7b298d411091afc7b66e79166 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 11 May 2015 12:44:59 +0300 Subject: [PATCH 199/933] No more psqueues skipped tests --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 67ca34c3..13e5275c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1115,7 +1115,6 @@ skipped-tests: - testpack - vector - Cabal - - psqueues # Tests which we should build and run, but which are expected to fail. We # should not fail a build based on a test failure for one of these packages. From e4977f4028f7edb8d335befb960dcedf525df0bd Mon Sep 17 00:00:00 2001 From: Athan Clark Date: Mon, 11 May 2015 16:27:13 -0600 Subject: [PATCH 200/933] Adding the nested-routes library --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 390eacbc..e70a57df 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -972,6 +972,9 @@ packages: - clash-systemverilog - clash-ghc + "Athan Clark @athanclark": + - nested-routes + "Stackage upper bounds": # https://github.com/fpco/stackage/issues/476 - vector-space < 0.10 From be6b09f7d258fcae70dc0900535266070e01c356 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 12 May 2015 07:12:39 +0300 Subject: [PATCH 201/933] Upper bound for #576 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 390eacbc..c90b9607 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1002,6 +1002,9 @@ packages: - attoparsec < 0.13 - aeson < 0.8.1.0 + # https://github.com/fpco/stackage/issues/576 + - hscolour < 1.23 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From e91f30f067ed522e1d3bbf46a2b51ab7381d2cef Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 12 May 2015 09:55:50 +0300 Subject: [PATCH 202/933] No more expected failure kazu-yamamoto/http-date#6 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c90b9607..532c95cb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1312,9 +1312,6 @@ expected-test-failures: # https://github.com/simonmar/alex/issues/62 GHC 7.10 - alex - # https://github.com/kazu-yamamoto/http-date/issues/6 GHC 7.10 - - http-date - # https://github.com/haskell-suite/haskell-names/issues/63 GHC 7.10 - haskell-names From 609b644989f7559da22e36cadeefff2879f7c6cf Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 12 May 2015 09:57:44 +0300 Subject: [PATCH 203/933] Upper bounds for #577 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 532c95cb..7ecb0aa6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1005,6 +1005,9 @@ packages: # https://github.com/fpco/stackage/issues/576 - hscolour < 1.23 + # https://github.com/fpco/stackage/issues/577 + - MonadRandom < 0.4 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 521138a02624a6fbffc5d89e8e0146e46c993db7 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 12 May 2015 09:58:07 +0300 Subject: [PATCH 204/933] Remove upper bound and close #576 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7ecb0aa6..1c567064 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1002,9 +1002,6 @@ packages: - attoparsec < 0.13 - aeson < 0.8.1.0 - # https://github.com/fpco/stackage/issues/576 - - hscolour < 1.23 - # https://github.com/fpco/stackage/issues/577 - MonadRandom < 0.4 From 5947d30bcf68120713e44cf4d59af69a58ff2e8d Mon Sep 17 00:00:00 2001 From: Fumiaki Kinoshita Date: Tue, 12 May 2015 16:45:40 +0900 Subject: [PATCH 205/933] Add several packages I maintain --- build-constraints.yaml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9b38e5a3..71ed7e2d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -957,13 +957,13 @@ packages: "Josh Holland josh@inv.alid.pw @jshholland": - sandi - data-ordlist - + "Harry Garrood @hdgarrood": - aeson-better-errors - + "Mitchell Rosen @christiaanb": - ghc-typelits-natnormalise - clash-prelude @@ -975,6 +975,13 @@ packages: "Athan Clark @athanclark": - nested-routes + "Fumiaki Kinoshita @fumieval": + - control-bool + - monad-skeleton + - objective + - witherable + - xml-lens + "Stackage upper bounds": # https://github.com/fpco/stackage/issues/476 - vector-space < 0.10 From af68a28863dfc1f922e10c5c73c237fe5c9a2283 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 12 May 2015 14:25:25 +0300 Subject: [PATCH 206/933] Upper bound for #579 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 71ed7e2d..f33c3b00 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1015,6 +1015,9 @@ packages: # https://github.com/fpco/stackage/issues/577 - MonadRandom < 0.4 + # https://github.com/fpco/stackage/issues/579 + - wai-app-static < 3.1 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 84a0aa9b0a44bb9c0c58735889cb07c7a226e24c Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 12 May 2015 15:05:16 +0300 Subject: [PATCH 207/933] Upper bounds for #579 #580 and #581 --- build-constraints.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f33c3b00..9c7e33f9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1017,6 +1017,14 @@ packages: # https://github.com/fpco/stackage/issues/579 - wai-app-static < 3.1 + - yesod-static < 1.5 + + # https://github.com/fpco/stackage/issues/580 + - chunked-data < 0.2 + + # https://github.com/fpco/stackage/issues/581 + - xml-conduit < 1.3 + - html-conduit < 1.2 # Package flags are applied to individual packages, and override the values of # global-flags From 455e136eaa2ca905e67f45b8d0f530085f9ae238 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 12 May 2015 15:26:13 +0300 Subject: [PATCH 208/933] Remove upper bound and close #580 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9c7e33f9..fc5c9496 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1019,9 +1019,6 @@ packages: - wai-app-static < 3.1 - yesod-static < 1.5 - # https://github.com/fpco/stackage/issues/580 - - chunked-data < 0.2 - # https://github.com/fpco/stackage/issues/581 - xml-conduit < 1.3 - html-conduit < 1.2 From 3855d1d2f8b8c2720b20142e18f962932a412c02 Mon Sep 17 00:00:00 2001 From: Alois Cochard Date: Tue, 12 May 2015 14:36:19 +0200 Subject: [PATCH 209/933] Re-enable codex (#415). --- build-constraints.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f33c3b00..4388f500 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -741,9 +741,8 @@ packages: - unbound-generics "Alois Cochard alois.cochard@gmail.com @aloiscochard": - # https://github.com/fpco/stackage/issues/415 - # - codex - #- machines-directory GHC 7.10 + - codex + - machines-directory - machines-io - machines-process # on behalf of Bryan O'Sullivan @bos From c815a1af1d41df941aecd08f5abc9cc9441c5ddb Mon Sep 17 00:00:00 2001 From: Alois Cochard Date: Tue, 12 May 2015 14:36:19 +0200 Subject: [PATCH 210/933] Re-enable codex (#415). --- build-constraints.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f33c3b00..4388f500 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -741,9 +741,8 @@ packages: - unbound-generics "Alois Cochard alois.cochard@gmail.com @aloiscochard": - # https://github.com/fpco/stackage/issues/415 - # - codex - #- machines-directory GHC 7.10 + - codex + - machines-directory - machines-io - machines-process # on behalf of Bryan O'Sullivan @bos From 79d4edd677693e4022dd5a881c767131afd25b0c Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 12 May 2015 18:37:16 +0300 Subject: [PATCH 211/933] Skip MissingH tests --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 72ababc5..7aee8a9e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1136,6 +1136,7 @@ skipped-tests: - testpack - vector - Cabal + - MissingH # Tests which we should build and run, but which are expected to fail. We # should not fail a build based on a test failure for one of these packages. From 24b55488b58a12525f8954bb82a580a9d18c099f Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 12 May 2015 18:45:50 +0300 Subject: [PATCH 212/933] Remove upper bounds and close #568 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7aee8a9e..fa101ec8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1004,9 +1004,6 @@ packages: # https://github.com/fpco/stackage/issues/549 - tttool < 1.4 - # https://github.com/fpco/stackage/issues/568 - - pandoc-citeproc < 0.7 - # https://github.com/fpco/stackage/issues/572 - attoparsec < 0.13 - aeson < 0.8.1.0 From 2bc2fb924d1f103ff0d9452ea78143e201fa8eca Mon Sep 17 00:00:00 2001 From: Josh Holland Date: Tue, 12 May 2015 21:30:12 +0100 Subject: [PATCH 213/933] Add XMonad --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index fa101ec8..ca8133ce 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -956,6 +956,7 @@ packages: "Josh Holland josh@inv.alid.pw @jshholland": - sandi - data-ordlist + - xmonad "Harry Garrood @hdgarrood": - aeson-better-errors From 1e1f0ef7777a02b43bdc480095162f1e0eef6743 Mon Sep 17 00:00:00 2001 From: Athan Clark Date: Tue, 12 May 2015 18:15:19 -0600 Subject: [PATCH 214/933] more web packages --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index fa101ec8..75b38e80 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -973,6 +973,9 @@ packages: "Athan Clark @athanclark": - nested-routes + - urlpath + - markup + - webpage "Fumiaki Kinoshita @fumieval": - control-bool From 8f83ffb1c80e84977803edcab0dbafb6c84c1907 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 13 May 2015 06:21:16 +0300 Subject: [PATCH 215/933] Upper bounds for #586 --- build-constraints.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 75b38e80..ef44a4d3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1022,6 +1022,14 @@ packages: - xml-conduit < 1.3 - html-conduit < 1.2 + # https://github.com/fpco/stackage/issues/586 + - classy-prelude < 0.12 + - classy-prelude-conduit < 0.12 + - classy-prelude-yesod < 0.12 + - conduit-combinators < 1.0 + - basic-prelude < 0.4 + - chunked-data < 0.2 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 3f93ebaf4d8966368c58811104627e7f3da4906d Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 13 May 2015 08:19:22 +0300 Subject: [PATCH 216/933] Add stackage-metadata --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ef44a4d3..b918d2c8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -110,6 +110,7 @@ packages: - stackage-cabal - stackage-sandbox - stackage-setup + - stackage-metadata - statistics-linreg - th-expand-syns - thyme From 25fca6d6190c364674ed3f1a8a58868879899916 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 13 May 2015 10:52:45 +0300 Subject: [PATCH 217/933] No longer expect failure bos/text#118 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b918d2c8..1fcdace9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1342,9 +1342,6 @@ expected-test-failures: # https://github.com/haskell-suite/haskell-names/issues/63 GHC 7.10 - haskell-names - # https://github.com/bos/text/issues/118 GHC 7.10 - - text - # https://github.com/ekmett/hyperloglog/issues/10 GHC 7.10 - hyperloglog From fad55415e124dc3dd81326490be36cbe53269255 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 13 May 2015 11:12:05 +0300 Subject: [PATCH 218/933] Fix working directory for nightly --- automated/build.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/automated/build.sh b/automated/build.sh index 7e1b128c..7690be08 100755 --- a/automated/build.sh +++ b/automated/build.sh @@ -4,9 +4,10 @@ set -eux ROOT=$(cd $(dirname $0) ; pwd) TARGET=$1 -IMAGE=snoyberg/stackage:$(echo $TARGET | cut -d- -f 1) +TAG=$(echo $TARGET | cut -d- -f 1) +IMAGE=snoyberg/stackage:$TAG -if [ "$IMAGE" -eq "nightly"] +if [ "$TAG" -eq "nightly"] then TROOT=$ROOT/nightly else From 15cbe979846ce52cbaab9b5fb1ba5cd4fc450cba Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 13 May 2015 11:15:34 +0300 Subject: [PATCH 219/933] Fix bash (I suck at this) --- automated/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automated/build.sh b/automated/build.sh index 7690be08..dd876035 100755 --- a/automated/build.sh +++ b/automated/build.sh @@ -7,7 +7,7 @@ TARGET=$1 TAG=$(echo $TARGET | cut -d- -f 1) IMAGE=snoyberg/stackage:$TAG -if [ "$TAG" -eq "nightly"] +if [ "$TAG" = "nightly" ] then TROOT=$ROOT/nightly else From bf480cb3df4021c0cca5d324c8bf3e7cc9978ded Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 13 May 2015 16:52:38 +0300 Subject: [PATCH 220/933] Upper bound for #587 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1fcdace9..52c905b8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1031,6 +1031,9 @@ packages: - basic-prelude < 0.4 - chunked-data < 0.2 + # https://github.com/fpco/stackage/issues/587 + - cabal-debian < 4.27.2 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 7aa25b3f329bd1e35f9cdea61cf72b4f0874e838 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 13 May 2015 17:01:16 +0300 Subject: [PATCH 221/933] Temporarily block biophd BioHaskell/biophd#2 --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 52c905b8..8d2d3b35 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -534,7 +534,8 @@ packages: # - biosff GHC 7.10 - blastxml - bioace - - biophd < 0.0.6 || > 0.0.6 + # https://github.com/BioHaskell/biophd/issues/2 + # - biophd < 0.0.6 || > 0.0.6 - biopsl # https://github.com/ingolia/SamTools/issues/3 samtools - seqloc - bioalign From cd7681628aeb868c7b249adecafd2e20e1e569ce Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 13 May 2015 17:03:02 +0300 Subject: [PATCH 222/933] Expected test failure ekmett/parsers#47 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8d2d3b35..f7a1ed73 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1367,6 +1367,9 @@ expected-test-failures: # https://github.com/haskell-servant/servant/issues/68 - servant-client + # https://github.com/ekmett/parsers/issues/47 + - parsers + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From ea089da9ab3ea635aa2ce94fc687679900f81ab7 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 13 May 2015 18:54:30 +0300 Subject: [PATCH 223/933] Expected test failure: bitcoin-api --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f7a1ed73..2b2a3f5f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1370,6 +1370,9 @@ expected-test-failures: # https://github.com/ekmett/parsers/issues/47 - parsers + # Requires a running server + - bitcoin-api + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 8764b2cff0fc66cab23feb67ca0535ee5b8d943c Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 13 May 2015 18:56:11 +0300 Subject: [PATCH 224/933] Temporarily block: solatis/haskell-bitcoin-api-extra#1 --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2b2a3f5f..305e9363 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -788,7 +788,8 @@ packages: "Leon Mergen leon@solatis.com @solatis": - base58string - bitcoin-api - - bitcoin-api-extra + # https://github.com/solatis/haskell-bitcoin-api-extra/issues/1 + # - bitcoin-api-extra - bitcoin-block - bitcoin-script - bitcoin-tx From b5c6cfcff27c116788ee430c343a0bd8feb8c854 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 13 May 2015 19:12:07 +0300 Subject: [PATCH 225/933] --docmap-file added to automated builds --- automated/build.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/automated/build.sh b/automated/build.sh index dd876035..617c7e88 100755 --- a/automated/build.sh +++ b/automated/build.sh @@ -15,6 +15,7 @@ else fi PLAN_FILE=current-plan.yaml +DOCMAP_FILE=current-docmap.yaml BUNDLE_FILE=current.bundle CABAL_DIR=$ROOT/cabal @@ -76,5 +77,5 @@ ARGS_UPLOAD="$ARGS_COMMON -e AWS_ACCESS_KEY=$AWS_ACCESS_KEY -e AWS_SECRET_KEY=$A # Use cabal update first to initialize ~/.cabal.config, then use stackage-curator update to get it securely docker run $ARGS_PREBUILD $IMAGE /bin/bash -c "cabal update && stackage-curator update && stackage-curator create-plan --plan-file $PLAN_FILE --target $TARGET ${CONSTRAINTS:-} && stackage-curator check --plan-file $PLAN_FILE && stackage-curator fetch --plan-file $PLAN_FILE && cabal install random cabal-install" -docker run $ARGS_BUILD $IMAGE stackage-curator make-bundle --plan-file $PLAN_FILE --bundle-file $BUNDLE_FILE --target $TARGET -docker run $ARGS_UPLOAD $IMAGE /bin/bash -c "stackage-curator upload --bundle-file $BUNDLE_FILE && stackage-curator hackage-distro --plan-file $PLAN_FILE --target $TARGET && stackage-curator upload-github --plan-file $PLAN_FILE --target $TARGET && stackage-curator upload-docs --target $TARGET" +docker run $ARGS_BUILD $IMAGE stackage-curator make-bundle --plan-file $PLAN_FILE --docmap-file $DOCMAP_FILE --bundle-file $BUNDLE_FILE --target $TARGET +docker run $ARGS_UPLOAD $IMAGE /bin/bash -c "stackage-curator upload --bundle-file $BUNDLE_FILE && stackage-curator hackage-distro --plan-file $PLAN_FILE --target $TARGET && stackage-curator upload-github --plan-file $PLAN_FILE --docmap-file $DOCMAP_FILE --target $TARGET && stackage-curator upload-docs --target $TARGET" From ea98e38f37cdccb257314a73a2955d31a3235786 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 13 May 2015 19:17:15 +0300 Subject: [PATCH 226/933] --bundle-file for upload-docs --- automated/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automated/build.sh b/automated/build.sh index 617c7e88..476e130b 100755 --- a/automated/build.sh +++ b/automated/build.sh @@ -78,4 +78,4 @@ ARGS_UPLOAD="$ARGS_COMMON -e AWS_ACCESS_KEY=$AWS_ACCESS_KEY -e AWS_SECRET_KEY=$A # Use cabal update first to initialize ~/.cabal.config, then use stackage-curator update to get it securely docker run $ARGS_PREBUILD $IMAGE /bin/bash -c "cabal update && stackage-curator update && stackage-curator create-plan --plan-file $PLAN_FILE --target $TARGET ${CONSTRAINTS:-} && stackage-curator check --plan-file $PLAN_FILE && stackage-curator fetch --plan-file $PLAN_FILE && cabal install random cabal-install" docker run $ARGS_BUILD $IMAGE stackage-curator make-bundle --plan-file $PLAN_FILE --docmap-file $DOCMAP_FILE --bundle-file $BUNDLE_FILE --target $TARGET -docker run $ARGS_UPLOAD $IMAGE /bin/bash -c "stackage-curator upload --bundle-file $BUNDLE_FILE && stackage-curator hackage-distro --plan-file $PLAN_FILE --target $TARGET && stackage-curator upload-github --plan-file $PLAN_FILE --docmap-file $DOCMAP_FILE --target $TARGET && stackage-curator upload-docs --target $TARGET" +docker run $ARGS_UPLOAD $IMAGE /bin/bash -c "stackage-curator upload --bundle-file $BUNDLE_FILE && stackage-curator hackage-distro --plan-file $PLAN_FILE --target $TARGET && stackage-curator upload-github --plan-file $PLAN_FILE --docmap-file $DOCMAP_FILE --target $TARGET && stackage-curator upload-docs --target $TARGET --bundle-file $BUNDLE_FILE" From f132923d7568c826a0ec3a32e45b23d27bf582d6 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 13 May 2015 20:20:32 +0300 Subject: [PATCH 227/933] check-target-available --- automated/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automated/build.sh b/automated/build.sh index 476e130b..a120d320 100755 --- a/automated/build.sh +++ b/automated/build.sh @@ -76,6 +76,6 @@ ARGS_BUILD="$ARGS_COMMON -v $CABAL_DIR:/home/stackage/.cabal:ro -v $GHC_DIR:/hom ARGS_UPLOAD="$ARGS_COMMON -e AWS_ACCESS_KEY=$AWS_ACCESS_KEY -e AWS_SECRET_KEY=$AWS_SECRET_KEY -v $AUTH_TOKEN:/auth-token:ro -v $HACKAGE_CREDS:/hackage-creds:ro -v $DOT_STACKAGE_DIR:/home/stackage/.stackage -v $SSH_DIR:/home/ubuntu/.ssh:ro -v $GITCONFIG:/home/stackage/.gitconfig:ro" # Use cabal update first to initialize ~/.cabal.config, then use stackage-curator update to get it securely -docker run $ARGS_PREBUILD $IMAGE /bin/bash -c "cabal update && stackage-curator update && stackage-curator create-plan --plan-file $PLAN_FILE --target $TARGET ${CONSTRAINTS:-} && stackage-curator check --plan-file $PLAN_FILE && stackage-curator fetch --plan-file $PLAN_FILE && cabal install random cabal-install" +docker run $ARGS_PREBUILD $IMAGE /bin/bash -c "stackage-curator check-target-available --target $TARGET && cabal update && stackage-curator update && stackage-curator create-plan --plan-file $PLAN_FILE --target $TARGET ${CONSTRAINTS:-} && stackage-curator check --plan-file $PLAN_FILE && stackage-curator fetch --plan-file $PLAN_FILE && cabal install random cabal-install" docker run $ARGS_BUILD $IMAGE stackage-curator make-bundle --plan-file $PLAN_FILE --docmap-file $DOCMAP_FILE --bundle-file $BUNDLE_FILE --target $TARGET docker run $ARGS_UPLOAD $IMAGE /bin/bash -c "stackage-curator upload --bundle-file $BUNDLE_FILE && stackage-curator hackage-distro --plan-file $PLAN_FILE --target $TARGET && stackage-curator upload-github --plan-file $PLAN_FILE --docmap-file $DOCMAP_FILE --target $TARGET && stackage-curator upload-docs --target $TARGET --bundle-file $BUNDLE_FILE" From 8a024d79f2dfcccc631614eb72328c02f538f62a Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 14 May 2015 06:08:03 +0300 Subject: [PATCH 228/933] Switch bounds for #587 --- build-constraints.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 305e9363..819ff0d4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1034,7 +1034,7 @@ packages: - chunked-data < 0.2 # https://github.com/fpco/stackage/issues/587 - - cabal-debian < 4.27.2 + - newtype-generics < 0.4.0.1 # Package flags are applied to individual packages, and override the values of # global-flags @@ -1152,6 +1152,9 @@ skipped-tests: - Cabal - MissingH + # https://github.com/fpco/stackage/issues/587 + - newtype-generics + # Tests which we should build and run, but which are expected to fail. We # should not fail a build based on a test failure for one of these packages. expected-test-failures: From 8839ff07d6afadd414dacab0e40490c534861b59 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 14 May 2015 06:09:13 +0300 Subject: [PATCH 229/933] Remove upper bounds and close #586 --- build-constraints.yaml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 819ff0d4..d8322a2c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1025,14 +1025,6 @@ packages: - xml-conduit < 1.3 - html-conduit < 1.2 - # https://github.com/fpco/stackage/issues/586 - - classy-prelude < 0.12 - - classy-prelude-conduit < 0.12 - - classy-prelude-yesod < 0.12 - - conduit-combinators < 1.0 - - basic-prelude < 0.4 - - chunked-data < 0.2 - # https://github.com/fpco/stackage/issues/587 - newtype-generics < 0.4.0.1 From d0f41632ddfb8b222a34a86698ef4356be346301 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 14 May 2015 06:10:58 +0300 Subject: [PATCH 230/933] Upper bound for #588 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d8322a2c..2329e77b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1028,6 +1028,9 @@ packages: # https://github.com/fpco/stackage/issues/587 - newtype-generics < 0.4.0.1 + # https://github.com/fpco/stackage/issues/588 + - semigroupoids < 4.5 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From c068334feade75c9157105fbad84ea67998e9a2d Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 14 May 2015 06:24:04 +0300 Subject: [PATCH 231/933] Temporarily block two failing builds --- build-constraints.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2329e77b..534e2556 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -593,7 +593,8 @@ packages: # https://github.com/kazu-yamamoto/ghc-mod/issues/437 GHC 7.10 # - ghc-mod - io-choice - - system-canonicalpath + # https://github.com/d12frosted/CanonicalPath/issues/5 + # - system-canonicalpath "Yann Esposito ": - holy-project @@ -977,7 +978,8 @@ packages: "Athan Clark @athanclark": - nested-routes - urlpath - - markup + # https://github.com/athanclark/markup/issues/5 + # - markup - webpage "Fumiaki Kinoshita @fumieval": From 2b78553d09adea095b45bbe691484f85bedf3010 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 14 May 2015 06:45:48 +0300 Subject: [PATCH 232/933] Unblock markup --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 534e2556..c07bdaf3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -978,8 +978,7 @@ packages: "Athan Clark @athanclark": - nested-routes - urlpath - # https://github.com/athanclark/markup/issues/5 - # - markup + - markup - webpage "Fumiaki Kinoshita @fumieval": From 48e698038ab65d754290c17fe87750c3aaf14e44 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 14 May 2015 06:48:42 +0300 Subject: [PATCH 233/933] Temporary block for jwiegley/gitlib#46 --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c07bdaf3..000fab76 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -640,7 +640,8 @@ packages: - haddock-api - here - hlibgit2 - - gitlib-libgit2 + # https://github.com/jwiegley/gitlib/issues/46 + # - gitlib-libgit2 - hostname-validate - interpolatedstring-perl6 - iproute From f137d8ea9293085815ca30e6daf74bc482ffec9e Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 14 May 2015 06:50:00 +0300 Subject: [PATCH 234/933] Block stackage-curator --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 000fab76..6a002855 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -100,7 +100,8 @@ packages: - shelly - smtLib - stackage - - stackage-curator + # Temporary block while system-filepath issues worked out + # - stackage-curator - stackage-types - stackage-update - stackage-upload From d0993c79914893b0e3ac8f5db062901307700895 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 14 May 2015 08:27:49 +0300 Subject: [PATCH 235/933] Remove upper bounds and close #587 --- build-constraints.yaml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6a002855..7ae3d9bf 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1028,9 +1028,6 @@ packages: - xml-conduit < 1.3 - html-conduit < 1.2 - # https://github.com/fpco/stackage/issues/587 - - newtype-generics < 0.4.0.1 - # https://github.com/fpco/stackage/issues/588 - semigroupoids < 4.5 @@ -1150,9 +1147,6 @@ skipped-tests: - Cabal - MissingH - # https://github.com/fpco/stackage/issues/587 - - newtype-generics - # Tests which we should build and run, but which are expected to fail. We # should not fail a build based on a test failure for one of these packages. expected-test-failures: From fcfd3e11506c4c0a9980f60e3f7d04efac2077c8 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 14 May 2015 10:31:10 +0300 Subject: [PATCH 236/933] Unblock solatis/haskell-bitcoin-api-extra#1 --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7ae3d9bf..d1571c52 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -791,8 +791,7 @@ packages: "Leon Mergen leon@solatis.com @solatis": - base58string - bitcoin-api - # https://github.com/solatis/haskell-bitcoin-api-extra/issues/1 - # - bitcoin-api-extra + - bitcoin-api-extra - bitcoin-block - bitcoin-script - bitcoin-tx From ac77ed2b5b512338508ce7df1312ffedf250424d Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 14 May 2015 12:02:06 +0300 Subject: [PATCH 237/933] Remove block for vincenthz/hs-libgit#4 --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d1571c52..9937e709 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -215,8 +215,7 @@ packages: - crypto-random-api - hit - language-java - # https://github.com/vincenthz/hs-libgit/issues/4 - # - libgit GHC 7.10 + - libgit - pem - siphash - socks From 50dec036deb3751e59ed4d4b8ce5843f6cf271e9 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 14 May 2015 13:00:06 +0300 Subject: [PATCH 238/933] Use upload-index --- automated/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automated/build.sh b/automated/build.sh index a120d320..610857ab 100755 --- a/automated/build.sh +++ b/automated/build.sh @@ -78,4 +78,4 @@ ARGS_UPLOAD="$ARGS_COMMON -e AWS_ACCESS_KEY=$AWS_ACCESS_KEY -e AWS_SECRET_KEY=$A # Use cabal update first to initialize ~/.cabal.config, then use stackage-curator update to get it securely docker run $ARGS_PREBUILD $IMAGE /bin/bash -c "stackage-curator check-target-available --target $TARGET && cabal update && stackage-curator update && stackage-curator create-plan --plan-file $PLAN_FILE --target $TARGET ${CONSTRAINTS:-} && stackage-curator check --plan-file $PLAN_FILE && stackage-curator fetch --plan-file $PLAN_FILE && cabal install random cabal-install" docker run $ARGS_BUILD $IMAGE stackage-curator make-bundle --plan-file $PLAN_FILE --docmap-file $DOCMAP_FILE --bundle-file $BUNDLE_FILE --target $TARGET -docker run $ARGS_UPLOAD $IMAGE /bin/bash -c "stackage-curator upload --bundle-file $BUNDLE_FILE && stackage-curator hackage-distro --plan-file $PLAN_FILE --target $TARGET && stackage-curator upload-github --plan-file $PLAN_FILE --docmap-file $DOCMAP_FILE --target $TARGET && stackage-curator upload-docs --target $TARGET --bundle-file $BUNDLE_FILE" +docker run $ARGS_UPLOAD $IMAGE /bin/bash -c "stackage-curator upload --bundle-file $BUNDLE_FILE && stackage-curator hackage-distro --plan-file $PLAN_FILE --target $TARGET && stackage-curator upload-github --plan-file $PLAN_FILE --docmap-file $DOCMAP_FILE --target $TARGET && stackage-curator upload-index --plan-file $PLAN_FILE --target $TARGET && stackage-curator upload-docs --target $TARGET --bundle-file $BUNDLE_FILE" From a7bf4c7c7129c536f07ad1eb7b128d45de8c49db Mon Sep 17 00:00:00 2001 From: Peter Harpending Date: Thu, 14 May 2015 16:06:15 -0600 Subject: [PATCH 239/933] Add the package "exceptional" --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9937e709..def821b6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -988,6 +988,9 @@ packages: - witherable - xml-lens + "Peter Harpending @pharpend": + - exceptional + "Stackage upper bounds": # https://github.com/fpco/stackage/issues/476 - vector-space < 0.10 From 70d95d6c36eb8e47fd712ebb318620cc6e5ccc52 Mon Sep 17 00:00:00 2001 From: Emanuel Borsboom Date: Thu, 14 May 2015 16:56:50 -0700 Subject: [PATCH 240/933] Add monad-extras --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9937e709..27720105 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -627,7 +627,7 @@ packages: "Luis G. Torres ": + "Emanuel Borsboom ": - BoundedChan - broadcast-chan - bytestring-lexing @@ -654,6 +654,7 @@ packages: - wl-pprint-text - Chart-cairo - ghc-events + - monad-extras "Michael Sloan ": - th-orphans From d8555885798c926b4eb5df387dce61405ec1d9cd Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 15 May 2015 05:28:27 +0300 Subject: [PATCH 241/933] Upper bound for #579 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 27720105..ed1f36c9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1022,6 +1022,7 @@ packages: # https://github.com/fpco/stackage/issues/579 - wai-app-static < 3.1 - yesod-static < 1.5 + - keter < 1.4 # https://github.com/fpco/stackage/issues/581 - xml-conduit < 1.3 From fc84810552a4c087935e20b5d26fea359e65b58d Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 15 May 2015 05:37:31 +0300 Subject: [PATCH 242/933] Run check-target-available under ARGS_UPLOAD --- automated/build.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/automated/build.sh b/automated/build.sh index 610857ab..deae040e 100755 --- a/automated/build.sh +++ b/automated/build.sh @@ -76,6 +76,7 @@ ARGS_BUILD="$ARGS_COMMON -v $CABAL_DIR:/home/stackage/.cabal:ro -v $GHC_DIR:/hom ARGS_UPLOAD="$ARGS_COMMON -e AWS_ACCESS_KEY=$AWS_ACCESS_KEY -e AWS_SECRET_KEY=$AWS_SECRET_KEY -v $AUTH_TOKEN:/auth-token:ro -v $HACKAGE_CREDS:/hackage-creds:ro -v $DOT_STACKAGE_DIR:/home/stackage/.stackage -v $SSH_DIR:/home/ubuntu/.ssh:ro -v $GITCONFIG:/home/stackage/.gitconfig:ro" # Use cabal update first to initialize ~/.cabal.config, then use stackage-curator update to get it securely -docker run $ARGS_PREBUILD $IMAGE /bin/bash -c "stackage-curator check-target-available --target $TARGET && cabal update && stackage-curator update && stackage-curator create-plan --plan-file $PLAN_FILE --target $TARGET ${CONSTRAINTS:-} && stackage-curator check --plan-file $PLAN_FILE && stackage-curator fetch --plan-file $PLAN_FILE && cabal install random cabal-install" +docker run $ARGS_UPLOAD $IMAGE /bin/bash -c "stackage-curator check-target-available --target $TARGET" +docker run $ARGS_PREBUILD $IMAGE /bin/bash -c "cabal update && stackage-curator update && stackage-curator create-plan --plan-file $PLAN_FILE --target $TARGET ${CONSTRAINTS:-} && stackage-curator check --plan-file $PLAN_FILE && stackage-curator fetch --plan-file $PLAN_FILE && cabal install random cabal-install" docker run $ARGS_BUILD $IMAGE stackage-curator make-bundle --plan-file $PLAN_FILE --docmap-file $DOCMAP_FILE --bundle-file $BUNDLE_FILE --target $TARGET docker run $ARGS_UPLOAD $IMAGE /bin/bash -c "stackage-curator upload --bundle-file $BUNDLE_FILE && stackage-curator hackage-distro --plan-file $PLAN_FILE --target $TARGET && stackage-curator upload-github --plan-file $PLAN_FILE --docmap-file $DOCMAP_FILE --target $TARGET && stackage-curator upload-index --plan-file $PLAN_FILE --target $TARGET && stackage-curator upload-docs --target $TARGET --bundle-file $BUNDLE_FILE" From 2e34ece59ab0ac8eae02c952c63afe3b9068fe84 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 15 May 2015 07:07:35 +0300 Subject: [PATCH 243/933] Add back neat-interpolation --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 77391f9e..9715d32a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -669,7 +669,7 @@ packages: - hasql-postgres - list-t - mtl-prelude - #- neat-interpolation GHC 7.10 + - neat-interpolation - partial-handler - postgresql-binary - slave-thread From a8c4b0c02f144f7b948a0e163a92c365c8a76fbd Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 15 May 2015 07:26:58 +0300 Subject: [PATCH 244/933] edit-distance --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9715d32a..86bef7cc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -815,7 +815,7 @@ packages: - string-conversions "Oleg Grenrus oleg.grenrus@iki.fi @phadej": - #- edit-distance GHC 7.10 + - edit-distance - lattices - waitra From 7dbd0297b7be9e1cee9f7a849eb1f7eaf57325d4 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 15 May 2015 10:11:01 +0300 Subject: [PATCH 245/933] Add expected test failure for running server needed --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 86bef7cc..bde2700a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1371,6 +1371,7 @@ expected-test-failures: # Requires a running server - bitcoin-api + - bitcoin-api-extra # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: From 882569c740b6c00a52046d748b3185296ecd3f64 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 15 May 2015 13:01:01 +0300 Subject: [PATCH 246/933] Bind mount ~/.cabal during upload --- automated/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automated/build.sh b/automated/build.sh index deae040e..af54104a 100755 --- a/automated/build.sh +++ b/automated/build.sh @@ -73,7 +73,7 @@ chmod +x stackage-curator ARGS_COMMON="--rm -u $USER -v $WORKDIR:/home/stackage/work -w /home/stackage/work -v $BINDIR/stackage-curator:/usr/local/bin/stackage-curator:ro -v /etc/passwd:/etc/passwd:ro -v /etc/group:/etc/group:ro" ARGS_PREBUILD="$ARGS_COMMON -v $CABAL_DIR:/home/stackage/.cabal -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 $GHC_DIR:/home/stackage/.ghc:ro" -ARGS_UPLOAD="$ARGS_COMMON -e AWS_ACCESS_KEY=$AWS_ACCESS_KEY -e AWS_SECRET_KEY=$AWS_SECRET_KEY -v $AUTH_TOKEN:/auth-token:ro -v $HACKAGE_CREDS:/hackage-creds:ro -v $DOT_STACKAGE_DIR:/home/stackage/.stackage -v $SSH_DIR:/home/ubuntu/.ssh:ro -v $GITCONFIG:/home/stackage/.gitconfig:ro" +ARGS_UPLOAD="$ARGS_COMMON -e AWS_ACCESS_KEY=$AWS_ACCESS_KEY -e AWS_SECRET_KEY=$AWS_SECRET_KEY -v $AUTH_TOKEN:/auth-token:ro -v $HACKAGE_CREDS:/hackage-creds:ro -v $DOT_STACKAGE_DIR:/home/stackage/.stackage -v $SSH_DIR:/home/ubuntu/.ssh:ro -v $GITCONFIG:/home/stackage/.gitconfig:ro -v $CABAL_DIR:/home/stackage/.cabal:ro" # Use cabal update first to initialize ~/.cabal.config, then use stackage-curator update to get it securely docker run $ARGS_UPLOAD $IMAGE /bin/bash -c "stackage-curator check-target-available --target $TARGET" From f300fa08e83786013897f06ce9d1142fb1f4e260 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 15 May 2015 13:24:50 +0300 Subject: [PATCH 247/933] Upper bounds for #588 and #590 --- build-constraints.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index bde2700a..1d4679d7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1033,6 +1033,11 @@ packages: # https://github.com/fpco/stackage/issues/588 - semigroupoids < 4.5 + - semigroupoid-extras < 4.5 + + # https://github.com/fpco/stackage/issues/590 + - bifunctors < 5 + - profunctors < 5 # Package flags are applied to individual packages, and override the values of # global-flags From 96d2c0b9bfa9bbdc0d8298407071aebdae5e2dc8 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 15 May 2015 13:39:43 +0300 Subject: [PATCH 248/933] Upper bound for #591 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1d4679d7..b9689289 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1039,6 +1039,9 @@ packages: - bifunctors < 5 - profunctors < 5 + # https://github.com/fpco/stackage/issues/591 + - th-orphans < 0.12 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 708425fcefe956ff2e0aa13c2ba57d99d60fc9d5 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 15 May 2015 17:45:17 +0300 Subject: [PATCH 249/933] More upper bounds for #588 and #590 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index b9689289..955213d0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1034,10 +1034,13 @@ packages: # https://github.com/fpco/stackage/issues/588 - semigroupoids < 4.5 - semigroupoid-extras < 4.5 + - lens < 4.10 # https://github.com/fpco/stackage/issues/590 - bifunctors < 5 - profunctors < 5 + - machines < 0.5 + - free < 4.12 # https://github.com/fpco/stackage/issues/591 - th-orphans < 0.12 From 32431f0da57e403052ff53d6cab42fedb1ba5623 Mon Sep 17 00:00:00 2001 From: Peter Harpending Date: Sat, 16 May 2015 12:53:30 -0600 Subject: [PATCH 250/933] Add 'pager' to stackage --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 955213d0..8192f2c3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -991,6 +991,7 @@ packages: "Peter Harpending @pharpend": - exceptional + - pager "Stackage upper bounds": # https://github.com/fpco/stackage/issues/476 From f7eedd41d05727a80015176bf163b3bc66090eb4 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sat, 16 May 2015 22:10:56 +0300 Subject: [PATCH 251/933] Upper bound for ekmett/lens-action#5 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 955213d0..15e6a31f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1045,6 +1045,9 @@ packages: # https://github.com/fpco/stackage/issues/591 - th-orphans < 0.12 + # https://github.com/ekmett/lens-action/issues/5 + - lens-action < 0.2 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 738aa0c4ed066988f62eced40107a85e98ecfa1f Mon Sep 17 00:00:00 2001 From: gbaz Date: Mon, 18 May 2015 00:30:50 -0400 Subject: [PATCH 252/933] jmacro fixed for 710 --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7ab90a89..7d725fb7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -885,8 +885,7 @@ packages: - cabal-file-th "Gershom Bazerman @gbaz": - # http://hub.darcs.net/gershomb/jmacro/issue/1 GHC 7.10 - #- jmacro + - jmacro #- jmacro-rpc #- jmacro-rpc-happstack #- jmacro-rpc-snap From 38a06f49803c81ab41d96427a48d4cc6216fe60f Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 18 May 2015 11:21:48 +0300 Subject: [PATCH 253/933] Add bad package noteed/language-glsl#11 --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7d725fb7..9c068244 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -696,8 +696,7 @@ packages: #- elm-compiler - elm-core-sources #- elm-package - # https://github.com/noteed/language-glsl/issues/11 - #- language-glsl GHC 7.10 + - language-glsl - prettyclass - QuasiText - union-find From a7dfb5bccb3472d1b0b6ef4992c7d013c88c53d3 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 18 May 2015 12:52:46 +0300 Subject: [PATCH 254/933] Add back pvdbrand/quandl-api#2 --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9c068244..c923346b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -93,8 +93,7 @@ packages: - lhs2tex - persistent-mongoDB - pretty-class - # https://github.com/pvdbrand/quandl-api/issues/2 GHC 7.10 - #- quandl-api + - quandl-api - random-fu - random-source - shelly From e8defe55acea3c33144b4296cc3d6e2961cca3e4 Mon Sep 17 00:00:00 2001 From: Philipp Hausmann Date: Mon, 18 May 2015 12:10:44 +0200 Subject: [PATCH 255/933] Add tasty-silver --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 955213d0..18b3a15c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -992,6 +992,9 @@ packages: "Peter Harpending @pharpend": - exceptional + "Philipp Hausmann @phile314": + - tasty-silver + "Stackage upper bounds": # https://github.com/fpco/stackage/issues/476 - vector-space < 0.10 From e5970ae8b599097867ed1b84c3a16584c7c6c8dd Mon Sep 17 00:00:00 2001 From: Michael Thompson Date: Mon, 18 May 2015 10:19:43 -0400 Subject: [PATCH 256/933] Update build-constraints.yaml --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3da42d02..088e9121 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -993,6 +993,9 @@ packages: "Philipp Hausmann @phile314": - tasty-silver + "Michael Thompson @michaelt": + - pipes-text + "Stackage upper bounds": # https://github.com/fpco/stackage/issues/476 - vector-space < 0.10 From 2e234b90cf37349da36140f60508c3d59b6d6cd3 Mon Sep 17 00:00:00 2001 From: gbaz Date: Mon, 18 May 2015 13:19:06 -0400 Subject: [PATCH 257/933] Update build-constraints.yaml --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7d725fb7..80a61003 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -886,9 +886,9 @@ packages: "Gershom Bazerman @gbaz": - jmacro - #- jmacro-rpc - #- jmacro-rpc-happstack - #- jmacro-rpc-snap + - jmacro-rpc + - jmacro-rpc-happstack + - jmacro-rpc-snap - mbox - kmeans - boolsimplifier From e575cf8fe6e1b1b4d5e187f40e9bd1d150aefc6e Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 19 May 2015 07:35:54 +0300 Subject: [PATCH 258/933] Revert "Add bad package noteed/language-glsl#11" This reverts commit 38a06f49803c81ab41d96427a48d4cc6216fe60f. --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1473729f..f868d4c3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -695,7 +695,8 @@ packages: #- elm-compiler - elm-core-sources #- elm-package - - language-glsl + # https://github.com/noteed/language-glsl/issues/11 + #- language-glsl GHC 7.10 - prettyclass - QuasiText - union-find From 1b69a26bf704c0221713868332738bee7e7864d5 Mon Sep 17 00:00:00 2001 From: Justin Le Date: Tue, 19 May 2015 00:24:13 -0700 Subject: [PATCH 259/933] Update build-constraints.yaml --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f868d4c3..50be5c7f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -996,6 +996,10 @@ packages: "Michael Thompson @michaelt": - pipes-text + + "Justin Le @mstksg": + - auto + - tagged-binary "Stackage upper bounds": # https://github.com/fpco/stackage/issues/476 From 056e0ecceb039af4cb025fb0a3d2fcde484630e5 Mon Sep 17 00:00:00 2001 From: Peter Harpending Date: Tue, 19 May 2015 11:04:38 -0600 Subject: [PATCH 260/933] Add editor-open to stackage --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 07286435..eb0062e3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -991,6 +991,7 @@ packages: - xml-lens "Peter Harpending @pharpend": + - editor-open - exceptional - pager From 8d104e9be6b0ecddc31a26fcf3654780eadec08f Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 19 May 2015 21:20:29 +0300 Subject: [PATCH 261/933] language-glsl added *back* --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index eb0062e3..1bc337a2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -698,8 +698,7 @@ packages: #- elm-compiler - elm-core-sources #- elm-package - # https://github.com/noteed/language-glsl/issues/11 - #- language-glsl GHC 7.10 + - language-glsl - prettyclass - QuasiText - union-find From 1b46a985b34fe6aa4ad744837e874027130c410b Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 20 May 2015 10:45:24 +0300 Subject: [PATCH 262/933] Install libxml2-dev (pinging @manny-fp) --- debian-bootstrap.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index 8064d9b3..16b21645 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -52,6 +52,7 @@ apt-get install -y \ libsdl2-dev \ libxss-dev \ libgtk-3-dev \ + libxml2-dev \ libzmq3-dev mkdir /tmp/nettle-build From ff47d340ce71ef1b2abd9752fdd3b550a2623a94 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Wed, 20 May 2015 12:08:45 +0200 Subject: [PATCH 263/933] Remove deprecated package --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1bc337a2..225d76a0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -562,7 +562,6 @@ packages: - imagesize-conduit - json-schema - multipart - - regular-xmlpickler - rest-client - rest-core - rest-gen From fde883edfccf33139a6bd1919e1f6f6b85d67f6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6nke=20Hahn?= Date: Wed, 20 May 2015 18:25:23 +0800 Subject: [PATCH 264/933] add graph-wrapper --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 225d76a0..6fb19fc6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -812,6 +812,7 @@ packages: "Sönke Hahn soenkehahn@gmail.com @soenkehahn": - getopt-generics + - graph-wrapper - string-conversions "Oleg Grenrus oleg.grenrus@iki.fi @phadej": From ed86b5ce93b855d83afa0c84a84a5c46cb102b48 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 20 May 2015 15:19:42 +0300 Subject: [PATCH 265/933] Add libgsasl7-dev (pinging @manny-fp) --- debian-bootstrap.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index 16b21645..de24152e 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -53,6 +53,7 @@ apt-get install -y \ libxss-dev \ libgtk-3-dev \ libxml2-dev \ + libgsasl7-dev \ libzmq3-dev mkdir /tmp/nettle-build From 291eb1e02a8b397b39667b76364f9344f3134a2d Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 20 May 2015 18:29:33 +0300 Subject: [PATCH 266/933] Extra upper bound for #572 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6fb19fc6..5fba5bf0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1030,6 +1030,7 @@ packages: # https://github.com/fpco/stackage/issues/572 - attoparsec < 0.13 - aeson < 0.8.1.0 + - jose-jwt < 0.6 # https://github.com/fpco/stackage/issues/577 - MonadRandom < 0.4 From e83fbccc7770d37eb21ef4411c078b54be472e69 Mon Sep 17 00:00:00 2001 From: Ian Duncan Date: Wed, 20 May 2015 17:15:17 -0400 Subject: [PATCH 267/933] Add iand675 packages --- build-constraints.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5fba5bf0..a04c81e2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1004,6 +1004,19 @@ packages: - auto - tagged-binary + "Ian Duncan @iand675": + - datadog + - growler + - feature-flags + - flowdock + - growler + - engine-io-growler + - metrics + - pipes-wai + - serf + - uri-templater + - librato + "Stackage upper bounds": # https://github.com/fpco/stackage/issues/476 - vector-space < 0.10 From 6a5d78cfb6a7e99c72d5d439948abd8778a1a71e Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 21 May 2015 06:42:06 +0300 Subject: [PATCH 268/933] Upper bound for #602 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5fba5bf0..69fb2ba7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1061,6 +1061,9 @@ packages: # https://github.com/ekmett/lens-action/issues/5 - lens-action < 0.2 + # https://github.com/fpco/stackage/issues/602 + - errors < 2 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 9f5318d71026bf413b964ac919d6ac7c2716386b Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 21 May 2015 06:48:29 +0300 Subject: [PATCH 269/933] Temporarily block git-annex The only reason for this is that Docker Hub is having trouble creating a new image with the necessary libraries, which is stopping the build from succeeding. Will add back soon. --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 69fb2ba7..a9c30661 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -526,7 +526,8 @@ packages: #- hopenpgp-tools GHC 7.10, via syb-with-class "Joey Hess ": - - git-annex + [] + #- git-annex # https://github.com/fpco/stackage/issues/160 "Ketil Malde": From a5ee6149222f1ec94e7b30d7622ea79b132e6ed7 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 21 May 2015 07:57:10 +0300 Subject: [PATCH 270/933] Revert "Temporarily block git-annex" This reverts commit 9f5318d71026bf413b964ac919d6ac7c2716386b. --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 297a03fe..3347bd15 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -526,8 +526,7 @@ packages: #- hopenpgp-tools GHC 7.10, via syb-with-class "Joey Hess ": - [] - #- git-annex + - git-annex # https://github.com/fpco/stackage/issues/160 "Ketil Malde": From ce594395337c3073c8983986455cf3920c9104d4 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 22 May 2015 07:15:09 +0300 Subject: [PATCH 271/933] biophd and lens-action --- build-constraints.yaml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3347bd15..e257e872 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -536,8 +536,7 @@ packages: # - biosff GHC 7.10 - blastxml - bioace - # https://github.com/BioHaskell/biophd/issues/2 - # - biophd < 0.0.6 || > 0.0.6 + - biophd - biopsl # https://github.com/ingolia/SamTools/issues/3 samtools - seqloc - bioalign @@ -1071,9 +1070,6 @@ packages: # https://github.com/fpco/stackage/issues/591 - th-orphans < 0.12 - # https://github.com/ekmett/lens-action/issues/5 - - lens-action < 0.2 - # https://github.com/fpco/stackage/issues/602 - errors < 2 From d456f72b1b6211e65a1ee84b0e30a4cc76487f94 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 22 May 2015 08:44:16 +0300 Subject: [PATCH 272/933] Remove expected failure ekmett/semigroupoids#18 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e257e872..29f375ac 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1343,9 +1343,6 @@ expected-test-failures: # https://github.com/jberryman/directory-tree/issues/4 - directory-tree - # https://github.com/ekmett/semigroupoids/issues/18 - - semigroupoids - # https://github.com/ndmitchell/hoogle/issues/101 - hoogle From f9fd76a01d4ba747f432a33b03c80ea67c590f0e Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 22 May 2015 08:53:55 +0300 Subject: [PATCH 273/933] Add back package jwiegley/gitlib#46 --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 29f375ac..1c759279 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -640,8 +640,7 @@ packages: - haddock-api - here - hlibgit2 - # https://github.com/jwiegley/gitlib/issues/46 - # - gitlib-libgit2 + - gitlib-libgit2 - hostname-validate - interpolatedstring-perl6 - iproute From 27d372c572db5454d7ff268a068ec99ac5e995b8 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 22 May 2015 11:58:57 +0300 Subject: [PATCH 274/933] Block package BioHaskell/biophd#3 --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1c759279..87072a0f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -536,7 +536,8 @@ packages: # - biosff GHC 7.10 - blastxml - bioace - - biophd + # https://github.com/BioHaskell/biophd/issues/3 + # - biophd - biopsl # https://github.com/ingolia/SamTools/issues/3 samtools - seqloc - bioalign From b812dcaae2734ee6aa1973e25873a32ab6f2f9eb Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 22 May 2015 12:00:44 +0300 Subject: [PATCH 275/933] Temporary block amcphail/hmatrix-gsl-stats#6 --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 87072a0f..0b6a7acb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -906,7 +906,8 @@ packages: - generics-sop "Vivian McPhail ": - - hmatrix-gsl-stats + # https://github.com/amcphail/hmatrix-gsl-stats/issues/6 + # - hmatrix-gsl-stats - hstatistics - hsignal - plot From e424ba94ec636dcca0d05c259705abfe424b7f15 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 22 May 2015 12:01:48 +0300 Subject: [PATCH 276/933] Use upper bound instead --- build-constraints.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0b6a7acb..e1bf81c7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -906,8 +906,7 @@ packages: - generics-sop "Vivian McPhail ": - # https://github.com/amcphail/hmatrix-gsl-stats/issues/6 - # - hmatrix-gsl-stats + - hmatrix-gsl-stats - hstatistics - hsignal - plot @@ -1074,6 +1073,9 @@ packages: # https://github.com/fpco/stackage/issues/602 - errors < 2 + # https://github.com/amcphail/hmatrix-gsl-stats/issues/6 + - hmatrix-gsl-stats < 0.3 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 88789f73cdafd4a56b91c112e993840acc5b30e7 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 22 May 2015 12:03:23 +0300 Subject: [PATCH 277/933] Expected test failure ekmett/semigroupids#34 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index e1bf81c7..0394a028 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1412,6 +1412,9 @@ expected-test-failures: - bitcoin-api - bitcoin-api-extra + # https://github.com/ekmett/semigroupoids/issues/34 + - semigroupoids + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 751bc461ceeea5a2827aa5f7ff01e98af2664a68 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 22 May 2015 14:49:38 +0300 Subject: [PATCH 278/933] Temporary block iand675/metrics#2 --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0394a028..d7cb23bb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1010,7 +1010,8 @@ packages: - flowdock - growler - engine-io-growler - - metrics + # https://github.com/iand675/metrics/issues/2 + # - metrics - pipes-wai - serf - uri-templater From abf0f4f00427f8d4a4d170f58bc6abd0328c3357 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 22 May 2015 14:53:17 +0300 Subject: [PATCH 279/933] Expected test failure kazu-yamamoto/dns#29 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d7cb23bb..55ed1cb4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1416,6 +1416,9 @@ expected-test-failures: # https://github.com/ekmett/semigroupoids/issues/34 - semigroupoids + # https://github.com/kazu-yamamoto/dns/issues/29 + - dns + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From d458fb3f4ffb33459f48cdc0f7e91684c1119613 Mon Sep 17 00:00:00 2001 From: Vincent Hanquez Date: Sun, 24 May 2015 08:17:35 +0100 Subject: [PATCH 280/933] remove udbus as I don't maintain it anymore --- build-constraints.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 55ed1cb4..b5226014 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -221,8 +221,6 @@ packages: - tls - tls-debug - vhd - # https://github.com/vincenthz/hs-udbus/issues/4 - # - udbus GHC 7.10 - xenstore "Chris Done": From 34578ed4fe3509241f0dcab6942d9cdaf1e701cb Mon Sep 17 00:00:00 2001 From: Vincent Hanquez Date: Sun, 24 May 2015 08:17:41 +0100 Subject: [PATCH 281/933] add memory --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index b5226014..ced5a8ed 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -213,6 +213,7 @@ packages: - crypto-pubkey-types - crypto-random-api - hit + - memory - language-java - libgit - pem From 3c6e41e4d992bb2993d1d90a5ff1d84051410879 Mon Sep 17 00:00:00 2001 From: Vincent Hanquez Date: Sun, 24 May 2015 08:17:48 +0100 Subject: [PATCH 282/933] add cryptonite --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ced5a8ed..e8afb1b8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -210,6 +210,7 @@ packages: - cpu - cryptocipher - cryptohash + - cryptonite - crypto-pubkey-types - crypto-random-api - hit From a7c836e42a1404e502672a02b60b917f89f28cfc Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 25 May 2015 09:51:30 +0300 Subject: [PATCH 283/933] Upper bound for kawu/text-binary#1 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index e8afb1b8..faa831df 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1077,6 +1077,9 @@ packages: # https://github.com/amcphail/hmatrix-gsl-stats/issues/6 - hmatrix-gsl-stats < 0.3 + # https://github.com/kawu/text-binary/pull/1 + - text < 1.2.1 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 91780e63d574119b070a7d9ce0afb3d8ed125ffc Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 25 May 2015 10:02:38 +0300 Subject: [PATCH 284/933] Remove upper bound for amcphail/hmatrix-gsl-stats#6 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index faa831df..17ee68e7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1074,9 +1074,6 @@ packages: # https://github.com/fpco/stackage/issues/602 - errors < 2 - # https://github.com/amcphail/hmatrix-gsl-stats/issues/6 - - hmatrix-gsl-stats < 0.3 - # https://github.com/kawu/text-binary/pull/1 - text < 1.2.1 From bf27286d58586bbd8bede17f4e1c31b8ae03c49d Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 25 May 2015 13:05:19 +0300 Subject: [PATCH 285/933] Upper bound for #604 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 17ee68e7..cf96c182 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1077,6 +1077,9 @@ packages: # https://github.com/kawu/text-binary/pull/1 - text < 1.2.1 + # https://github.com/fpco/stackage/issues/604 + - Rasterific < 0.6 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 092bf817040da82a1e8aa55a34ee83380679715a Mon Sep 17 00:00:00 2001 From: Vincent Date: Mon, 25 May 2015 12:55:30 +0200 Subject: [PATCH 286/933] Add asciidiagram to build-constraints.yaml --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index cf96c182..ffbc7ed3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -377,6 +377,7 @@ packages: - Rasterific - svg-tree - rasterific-svg + - asciidiagram "Patrick Brisbin": - gravatar From 772bac4bd2f718e576fba1b8466cb93aa41cfbed Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 25 May 2015 14:21:46 +0300 Subject: [PATCH 287/933] Extra upper bound for #604 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ffbc7ed3..fb417a4a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1080,6 +1080,7 @@ packages: # https://github.com/fpco/stackage/issues/604 - Rasterific < 0.6 + - rasterific-svg < 0.2.3 # Package flags are applied to individual packages, and override the values of # global-flags From 5d2a4088ce2788ce62c7b3d5dd566d2ed02738b0 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 25 May 2015 14:43:58 +0300 Subject: [PATCH 288/933] Temporarily block asciidiagram #605 --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index fb417a4a..f17945a9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -377,7 +377,8 @@ packages: - Rasterific - svg-tree - rasterific-svg - - asciidiagram + # https://github.com/fpco/stackage/pull/605 + # - asciidiagram "Patrick Brisbin": - gravatar From 5600e41deca4a04d9da1e4a35b836089a3685bb1 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 25 May 2015 17:48:13 +0300 Subject: [PATCH 289/933] Remove upper bounds and close #604 --- build-constraints.yaml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f17945a9..2e08b552 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -377,8 +377,7 @@ packages: - Rasterific - svg-tree - rasterific-svg - # https://github.com/fpco/stackage/pull/605 - # - asciidiagram + - asciidiagram "Patrick Brisbin": - gravatar @@ -781,7 +780,8 @@ packages: "Jeffrey Rosenbluth jeffrey.rosenbluth@gmail.com": - palette #- diagrams-canvas GHC 7.10, via blank-canvas - - diagrams-rasterific + # https://github.com/diagrams/diagrams-rasterific/pull/30 + # - diagrams-rasterific - lucid-svg - diagrams-html5 - static-canvas @@ -1079,10 +1079,6 @@ packages: # https://github.com/kawu/text-binary/pull/1 - text < 1.2.1 - # https://github.com/fpco/stackage/issues/604 - - Rasterific < 0.6 - - rasterific-svg < 0.2.3 - # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 2edc877c0884758ff55e1fdde54fe1928301a374 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 26 May 2015 10:38:10 +0300 Subject: [PATCH 290/933] Add back diagrams-rasterific --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2e08b552..dd6cf3fc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -780,8 +780,7 @@ packages: "Jeffrey Rosenbluth jeffrey.rosenbluth@gmail.com": - palette #- diagrams-canvas GHC 7.10, via blank-canvas - # https://github.com/diagrams/diagrams-rasterific/pull/30 - # - diagrams-rasterific + - diagrams-rasterific - lucid-svg - diagrams-html5 - static-canvas From 125012a7ace3b6aac90a0b155cac8f3aac0f6250 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 26 May 2015 14:51:21 +0300 Subject: [PATCH 291/933] Remove expected test failure haskell-servant/servant#68 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index dd6cf3fc..4cc2226b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1404,9 +1404,6 @@ expected-test-failures: # https://github.com/haskell/ghc-events/issues/9 - ghc-events - # https://github.com/haskell-servant/servant/issues/68 - - servant-client - # https://github.com/ekmett/parsers/issues/47 - parsers From 42bc862d31d367bcb5b02ed5f20320b63bb8e347 Mon Sep 17 00:00:00 2001 From: Leon Mergen Date: Wed, 27 May 2015 10:44:49 +0700 Subject: [PATCH 292/933] Adds base32string --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4cc2226b..7232eef9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -789,6 +789,7 @@ packages: - sdl2 "Leon Mergen leon@solatis.com @solatis": + - base32string - base58string - bitcoin-api - bitcoin-api-extra From 629120934f55957ba32ea79e4e81410fc00f39e1 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 27 May 2015 07:00:31 +0300 Subject: [PATCH 293/933] Some expected test failures haskell-servent/servant#98 chrisdone/hindent#137 --- build-constraints.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4cc2226b..68070245 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1417,6 +1417,12 @@ expected-test-failures: # https://github.com/kazu-yamamoto/dns/issues/29 - dns + # https://github.com/haskell-servant/servant/issues/98 + - servant-client + + # https://github.com/chrisdone/hindent/issues/137 + - hindent + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 392f735a67814d0ec640151da32dcb01210a4cc6 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 27 May 2015 07:40:11 +0300 Subject: [PATCH 294/933] Don't use system libraries (causes trouble for Windows) --- build-constraints.yaml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e33625ee..f472725f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1085,12 +1085,6 @@ package-flags: mersenne-random-pure64: small_base: false - # Use system libraries to speed up compilation and get bug fixes - persistent-sqlite: - systemlib: true - yaml: - system-libyaml: true - cloud-haskell: tcp: true simplelocalnet: true From dd1a039f8d7516b289718fe18ca991aaafaff649 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 27 May 2015 12:31:01 +0300 Subject: [PATCH 295/933] Remove expected failure and close chrisdone/hindent#137 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f472725f..a7376c7a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1415,9 +1415,6 @@ expected-test-failures: # https://github.com/haskell-servant/servant/issues/98 - servant-client - # https://github.com/chrisdone/hindent/issues/137 - - hindent - # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 5a905f4ed8ee52c1a5b3ac9e1dd2efd04c6acf56 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 27 May 2015 14:00:15 -0700 Subject: [PATCH 296/933] + Dan Burton: hspec-jenkins --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index a7376c7a..c8c309ef 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -400,6 +400,7 @@ packages: - accelerate "Dan Burton ": + - hspec-jenkins - yesod-gitrev - basic-prelude - composition From 4d56c1245f68bd1a80191a5af6b1753306d59c19 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 28 May 2015 17:02:12 +0300 Subject: [PATCH 297/933] Allow text 1.2.1, block pandoc 1.4 (#607) --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c8c309ef..042da9f7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1077,8 +1077,8 @@ packages: # https://github.com/fpco/stackage/issues/602 - errors < 2 - # https://github.com/kawu/text-binary/pull/1 - - text < 1.2.1 + # https://github.com/fpco/stackage/issues/607 + - pandoc < 1.14 # Package flags are applied to individual packages, and override the values of # global-flags From 62869c2eec159b67500141c77693cc81a438f424 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 28 May 2015 18:49:07 +0300 Subject: [PATCH 298/933] Group highlighting-kate with #607 --- build-constraints.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 042da9f7..574962ca 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1024,9 +1024,6 @@ packages: # https://github.com/fpco/stackage/issues/476 - vector-space < 0.10 - # https://github.com/jgm/pandoc/issues/2036 - - highlighting-kate < 0.5.13 - # https://github.com/fpco/stackage/issues/509 - srcloc < 0.5 @@ -1079,6 +1076,7 @@ packages: # https://github.com/fpco/stackage/issues/607 - pandoc < 1.14 + - highlighting-kate < 0.5.13 # Package flags are applied to individual packages, and override the values of # global-flags From 6e695771dab3b593ee587089ff2985c8de931c5b Mon Sep 17 00:00:00 2001 From: Athan Clark Date: Thu, 28 May 2015 18:56:07 -0600 Subject: [PATCH 299/933] some "useful" combinators --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 574962ca..55a6a6c8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -983,6 +983,7 @@ packages: - urlpath - markup - webpage + - composition-extra "Fumiaki Kinoshita @fumieval": - control-bool From a197fdc56570700bf94958f45dc51a9d9d1fb872 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 29 May 2015 06:01:47 +0300 Subject: [PATCH 300/933] One more #607 upper bound --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 55a6a6c8..9987f13f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1078,6 +1078,7 @@ packages: # https://github.com/fpco/stackage/issues/607 - pandoc < 1.14 - highlighting-kate < 0.5.13 + - BlogLiterately < 0.8 # Package flags are applied to individual packages, and override the values of # global-flags From 20286bfb99d725fbcd41cb726da0939d8ffb43f6 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 29 May 2015 08:16:11 +0300 Subject: [PATCH 301/933] Remove upper bounds and close #476 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9987f13f..f379cc9a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1022,9 +1022,6 @@ packages: - librato "Stackage upper bounds": - # https://github.com/fpco/stackage/issues/476 - - vector-space < 0.10 - # https://github.com/fpco/stackage/issues/509 - srcloc < 0.5 From 45d8c8f3e5158b76fe4c691d94abc77920df1e14 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 29 May 2015 08:18:13 +0300 Subject: [PATCH 302/933] Remove upper bounds and close #515 --- build-constraints.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f379cc9a..4b7ae381 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1025,10 +1025,6 @@ packages: # https://github.com/fpco/stackage/issues/509 - srcloc < 0.5 - # https://github.com/fpco/stackage/issues/515 - - exception-transformers < 0.4 - - exception-mtl < 0.4 - # https://github.com/fpco/stackage/issues/517 - generic-deriving < 1.7 From ecce5c5080db5cd1ea2f07d1265411fcc364fbb3 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 29 May 2015 08:25:29 +0300 Subject: [PATCH 303/933] Temporary block on language-c-quote until srclog dep is fixed --- build-constraints.yaml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4b7ae381..4b7cb1e7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -810,7 +810,11 @@ packages: - pcre-heavy "Francesco Mazzoli f@mazzo.li @bitonic": - - language-c-quote + [] + # Temporarily blocked due to: + # https://github.com/fpco/stackage/issues/509 + # - language-c-quote + "Sönke Hahn soenkehahn@gmail.com @soenkehahn": - getopt-generics @@ -1022,9 +1026,6 @@ packages: - librato "Stackage upper bounds": - # https://github.com/fpco/stackage/issues/509 - - srcloc < 0.5 - # https://github.com/fpco/stackage/issues/517 - generic-deriving < 1.7 From 9b627ffe6671b01777a393d4b2bad807c93b5a00 Mon Sep 17 00:00:00 2001 From: Roman Cheplyaka Date: Fri, 29 May 2015 08:34:21 +0300 Subject: [PATCH 304/933] Add lexer-applicative, tuples-homogenous-h98 --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4b7cb1e7..4c219509 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -484,6 +484,7 @@ packages: - hse-cpp - immortal - regex-applicative + - lexer-applicative - smallcheck - tasty - tasty-golden @@ -494,6 +495,7 @@ packages: - timezone-olson - timezone-series - traverse-with-class + - tuples-homogenous-h98 "George Giorgidze ": - HCodecs From 809bf86930e2ac9a1a25a02c211ecfc7d3c3a8de Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 29 May 2015 09:06:07 +0300 Subject: [PATCH 305/933] Remove upper bounds and close #517 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4c219509..6d1c491a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1028,9 +1028,6 @@ packages: - librato "Stackage upper bounds": - # https://github.com/fpco/stackage/issues/517 - - generic-deriving < 1.7 - # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 From c22bde55a86164d8d531785453555ee9bc759b06 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 29 May 2015 14:44:52 +0300 Subject: [PATCH 306/933] Remove upper bounds and close #607 --- build-constraints.yaml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6d1c491a..c262ee49 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1068,11 +1068,6 @@ packages: # https://github.com/fpco/stackage/issues/602 - errors < 2 - # https://github.com/fpco/stackage/issues/607 - - pandoc < 1.14 - - highlighting-kate < 0.5.13 - - BlogLiterately < 0.8 - # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 778eab1edb003ba46e0d1dcef5f3d04278e4a700 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 29 May 2015 14:45:44 +0300 Subject: [PATCH 307/933] Upper bound for #610 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index c262ee49..157b1f4d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1068,6 +1068,9 @@ packages: # https://github.com/fpco/stackage/issues/602 - errors < 2 + # https://github.com/fpco/stackage/issues/610 + - either < 4.4 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 1b30030bf814daf0019884e416d76e57a7c6e968 Mon Sep 17 00:00:00 2001 From: Ian Duncan Date: Sat, 30 May 2015 11:12:09 -0400 Subject: [PATCH 308/933] Reenable metrics package --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 157b1f4d..e9a40a35 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1020,8 +1020,7 @@ packages: - flowdock - growler - engine-io-growler - # https://github.com/iand675/metrics/issues/2 - # - metrics + - metrics - pipes-wai - serf - uri-templater From 1452f61b6c955d50c0c452f5183f440845ab3db0 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 31 May 2015 07:18:17 +0300 Subject: [PATCH 309/933] Upper bound for #613 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 157b1f4d..db7c992f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1071,6 +1071,9 @@ packages: # https://github.com/fpco/stackage/issues/610 - either < 4.4 + # https://github.com/fpco/stackage/issues/613 + - hslua < 0.4 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 87152d0f0fca63171dc8f7378586d2cd366c53d8 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 31 May 2015 09:01:46 +0300 Subject: [PATCH 310/933] Remove upper bounds and close #579 --- build-constraints.yaml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 844db322..76070091 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1041,11 +1041,6 @@ packages: # https://github.com/fpco/stackage/issues/577 - MonadRandom < 0.4 - # https://github.com/fpco/stackage/issues/579 - - wai-app-static < 3.1 - - yesod-static < 1.5 - - keter < 1.4 - # https://github.com/fpco/stackage/issues/581 - xml-conduit < 1.3 - html-conduit < 1.2 From 7cfc0bc978c79ee55cea788ef13ecb37eae80343 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 31 May 2015 09:02:16 +0300 Subject: [PATCH 311/933] Remove expected failure haskell-servent/servent#98 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 76070091..dea40cc2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1401,9 +1401,6 @@ expected-test-failures: # https://github.com/kazu-yamamoto/dns/issues/29 - dns - # https://github.com/haskell-servant/servant/issues/98 - - servant-client - # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 62ff92d3aa25e50aa08e112ca41cc8528eb205d0 Mon Sep 17 00:00:00 2001 From: Leon Mergen Date: Sun, 31 May 2015 15:47:11 +0700 Subject: [PATCH 312/933] Adds network-anonymous-tor --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index dea40cc2..6e243d7f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -803,6 +803,7 @@ packages: - hexstring - network-attoparsec - network-anonymous-i2p + - network-anonymous-tor "Timothy Jones git@zmthy.io @zmthy": - http-media From 2e4d1da4ff104e18c9bc6080ec6175f86a949183 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 31 May 2015 13:51:43 +0300 Subject: [PATCH 313/933] Skip cmark benchmarks --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6e243d7f..fb9bb2c1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1452,6 +1452,9 @@ skipped-benchmarks: - postgresql-binary - scientific + # Pulls in discount which depends on extra C libraries + - cmark + skipped-profiling: # https://github.com/nomeata/ghc-heap-view/commit/8d198eb8fbbad2ce0c4527c781659f35b8909c04#diff-8288955e209cfbead5b318a8598be9c0R10 - ghc-heap-view From e522575d674b6e3cd0c86721aedcab6c83858f6f Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 31 May 2015 13:53:20 +0300 Subject: [PATCH 314/933] Expected haddock failure solatis/haskell-network-anonymous-tor#1 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index fb9bb2c1..b62dd3f8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1421,6 +1421,9 @@ expected-haddock-failures: # Not sure why, but it's a temporary package anyway - Cabal-ide-backend + # https://github.com/solatis/haskell-network-anonymous-tor/issues/1 + - network-anonymous-tor + # Benchmarks which should not be built. Note that Stackage does *not* generally # build benchmarks. The difference here will be whether dependencies for these # benchmarks are included or not. From 6c2ee116a47ea32dfa19519493f42d04ae9b1e7c Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 31 May 2015 13:54:53 +0300 Subject: [PATCH 315/933] Expected test failure iand675/metrics#3 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index b62dd3f8..bc142365 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1402,6 +1402,9 @@ expected-test-failures: # https://github.com/kazu-yamamoto/dns/issues/29 - dns + # https://github.com/iand675/metrics/issues/3 + - metrics + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 8d99e7707d680d2672cd875b48552b647050dd13 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 31 May 2015 14:04:11 +0300 Subject: [PATCH 316/933] Expect cipher-aes test failure --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index bc142365..9667c3e6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1405,6 +1405,10 @@ expected-test-failures: # https://github.com/iand675/metrics/issues/3 - metrics + # Getting no useful information as to why from the build server, but works + # when tested locally + - cipher-aes + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From efb92cc3a2cbbec07df21dca9c96f29525634270 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 31 May 2015 19:10:00 +0300 Subject: [PATCH 317/933] Remove upper bounds and close #613 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9667c3e6..578603be 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1066,9 +1066,6 @@ packages: # https://github.com/fpco/stackage/issues/610 - either < 4.4 - # https://github.com/fpco/stackage/issues/613 - - hslua < 0.4 - # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From e64c6dc6af604fd2f0a963676876b29becbbb696 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 31 May 2015 19:22:05 +0300 Subject: [PATCH 318/933] Upper bound for #615 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 578603be..04971712 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1066,6 +1066,9 @@ packages: # https://github.com/fpco/stackage/issues/610 - either < 4.4 + # https://github.com/fpco/stackage/issues/615 + - syb < 0.5 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 15d64ba6a76f94f2663615e0cbeaeb7e911e72c0 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 1 Jun 2015 08:42:04 +0300 Subject: [PATCH 319/933] Remove expected Haddock failure and close solatis/haskell-network-anonymous-tor#1 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 04971712..4fa39a21 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1428,9 +1428,6 @@ expected-haddock-failures: # Not sure why, but it's a temporary package anyway - Cabal-ide-backend - # https://github.com/solatis/haskell-network-anonymous-tor/issues/1 - - network-anonymous-tor - # Benchmarks which should not be built. Note that Stackage does *not* generally # build benchmarks. The difference here will be whether dependencies for these # benchmarks are included or not. From fc202c2e6aa778c164594bb2a19d0be48c5f0ce5 Mon Sep 17 00:00:00 2001 From: "Michal J. Gajda" Date: Tue, 2 Jun 2015 01:17:18 +0800 Subject: [PATCH 320/933] Added posix-realtime due to user interest. --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4fa39a21..cf379a21 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -460,7 +460,7 @@ packages: "Janne Hellsten ": - sqlite-simple - "Michal J. Gajda": + "Michal J. Gajda ": - iterable - Octree - FenwickTree @@ -469,6 +469,7 @@ packages: - wordpass - json-autotype + - posix-realtime "Dominic Steinitz ": [] From b55647cfcfc00aebdb75569c8a707392ddec4a3f Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 2 Jun 2015 06:18:08 +0300 Subject: [PATCH 321/933] Expect test failure bergmark/feed#3 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4fa39a21..07d717e1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1409,6 +1409,9 @@ expected-test-failures: # when tested locally - cipher-aes + # https://github.com/bergmark/feed/issues/3 + - feed + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 013b84fc34f8b68003d1cf216ef141f8d88774b0 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 2 Jun 2015 06:27:10 +0300 Subject: [PATCH 322/933] Expect test failure afcowie/http-streams#80 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 07d717e1..dfb1f920 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1412,6 +1412,9 @@ expected-test-failures: # https://github.com/bergmark/feed/issues/3 - feed + # https://github.com/afcowie/http-streams/issues/80 + - http-streams + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From dc9e340326e609302ac0f37b0446805f2da79528 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 2 Jun 2015 06:44:38 +0300 Subject: [PATCH 323/933] New stackage-server, no longer upload there --- automated/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automated/build.sh b/automated/build.sh index af54104a..902e62f4 100755 --- a/automated/build.sh +++ b/automated/build.sh @@ -79,4 +79,4 @@ ARGS_UPLOAD="$ARGS_COMMON -e AWS_ACCESS_KEY=$AWS_ACCESS_KEY -e AWS_SECRET_KEY=$A docker run $ARGS_UPLOAD $IMAGE /bin/bash -c "stackage-curator check-target-available --target $TARGET" docker run $ARGS_PREBUILD $IMAGE /bin/bash -c "cabal update && stackage-curator update && stackage-curator create-plan --plan-file $PLAN_FILE --target $TARGET ${CONSTRAINTS:-} && stackage-curator check --plan-file $PLAN_FILE && stackage-curator fetch --plan-file $PLAN_FILE && cabal install random cabal-install" docker run $ARGS_BUILD $IMAGE stackage-curator make-bundle --plan-file $PLAN_FILE --docmap-file $DOCMAP_FILE --bundle-file $BUNDLE_FILE --target $TARGET -docker run $ARGS_UPLOAD $IMAGE /bin/bash -c "stackage-curator upload --bundle-file $BUNDLE_FILE && stackage-curator hackage-distro --plan-file $PLAN_FILE --target $TARGET && stackage-curator upload-github --plan-file $PLAN_FILE --docmap-file $DOCMAP_FILE --target $TARGET && stackage-curator upload-index --plan-file $PLAN_FILE --target $TARGET && stackage-curator upload-docs --target $TARGET --bundle-file $BUNDLE_FILE" +docker run $ARGS_UPLOAD $IMAGE /bin/bash -c "stackage-curator upload-docs --target $TARGET --bundle-file $BUNDLE_FILE && stackage-curator upload-index --plan-file $PLAN_FILE --target $TARGET && stackage-curator upload-github --plan-file $PLAN_FILE --docmap-file $DOCMAP_FILE --target $TARGET && stackage-curator hackage-distro --plan-file $PLAN_FILE --target $TARGET" From 624fa471e3c7651b322f23a47d65c5e75f043e37 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 2 Jun 2015 06:46:13 +0300 Subject: [PATCH 324/933] Add back BlogLiterately-diagrams --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index dfb1f920..cb774bd4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -352,7 +352,7 @@ packages: "Brent Yorgey ": - active - BlogLiterately - # - BlogLiterately-diagrams GHC 7.10 + - BlogLiterately-diagrams - diagrams # https://github.com/fpco/stackage/issues/443 From e73128393e776a5c16c81c46e3b0276f61f2593d Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 2 Jun 2015 09:30:18 +0300 Subject: [PATCH 325/933] Expect test success bergmark/feed#3 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index cb774bd4..233ef756 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1409,9 +1409,6 @@ expected-test-failures: # when tested locally - cipher-aes - # https://github.com/bergmark/feed/issues/3 - - feed - # https://github.com/afcowie/http-streams/issues/80 - http-streams From 9dfe350eeadf5091f3bcaebad685450dc00c6739 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 2 Jun 2015 10:33:16 +0300 Subject: [PATCH 326/933] Add back language-c-quote without tests and close #509 --- build-constraints.yaml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 233ef756..74acaff8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -813,11 +813,7 @@ packages: - pcre-heavy "Francesco Mazzoli f@mazzo.li @bitonic": - [] - # Temporarily blocked due to: - # https://github.com/fpco/stackage/issues/509 - # - language-c-quote - + - language-c-quote "Sönke Hahn soenkehahn@gmail.com @soenkehahn": - getopt-generics @@ -1179,6 +1175,9 @@ skipped-tests: - Cabal - MissingH + # Upper bound on src-log, see: https://github.com/fpco/stackage/issues/509 + - language-c-quote + # Tests which we should build and run, but which are expected to fail. We # should not fail a build based on a test failure for one of these packages. expected-test-failures: From a95cb0244eaf2726005616dda665bf33d11fd41c Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 2 Jun 2015 13:37:28 +0300 Subject: [PATCH 327/933] Add explicit mime-mail --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 74acaff8..711cf73c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -13,6 +13,7 @@ packages: - hebrew-time - keter - markdown + - mime-mail - mime-mail-ses - monadcryptorandom - network-conduit-tls From 76f1bf1543e669079b467ed174c5ef22de297c3d Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 2 Jun 2015 14:09:00 +0300 Subject: [PATCH 328/933] Upper bound for #616 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 711cf73c..14b5d997 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1066,6 +1066,9 @@ packages: # https://github.com/fpco/stackage/issues/615 - syb < 0.5 + # https://github.com/fpco/stackage/issues/616 + - string-conversions < 0.4 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From dd22f5d4660ba960ac9827d5b3388c8bfd3f909a Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 3 Jun 2015 06:50:56 +0300 Subject: [PATCH 329/933] Upper bounds for #617 --- build-constraints.yaml | 50 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 14b5d997..d910d207 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1069,6 +1069,56 @@ packages: # https://github.com/fpco/stackage/issues/616 - string-conversions < 0.4 + # https://github.com/fpco/stackage/issues/617 + - amazonka < 0.3.5 + - amazonka-core < 0.3.5 + - amazonka-autoscaling < 0.3.5 + - amazonka-cloudformation < 0.3.5 + - amazonka-cloudfront < 0.3.5 + - amazonka-cloudhsm < 0.3.5 + - amazonka-cloudsearch-domains < 0.3.5 + - amazonka-cloudsearch < 0.3.5 + - amazonka-cloudtrail < 0.3.5 + - amazonka-cloudwatch-logs < 0.3.5 + - amazonka-cloudwatch < 0.3.5 + - amazonka-codedeploy < 0.3.5 + - amazonka-cognito-identity < 0.3.5 + - amazonka-cognito-sync < 0.3.5 + - amazonka-config < 0.3.5 + - amazonka-datapipeline < 0.3.5 + - amazonka-directconnect < 0.3.5 + - amazonka-dynamodb < 0.3.5 + - amazonka-ec2 < 0.3.5 + - amazonka-ecs < 0.3.5 + - amazonka-elasticache < 0.3.5 + - amazonka-elasticbeanstalk < 0.3.5 + - amazonka-elastictranscoder < 0.3.5 + - amazonka-elb < 0.3.5 + - amazonka-emr < 0.3.5 + - amazonka-glacier < 0.3.5 + - amazonka-iam < 0.3.5 + - amazonka-importexport < 0.3.5 + - amazonka-kinesis < 0.3.5 + - amazonka-kms < 0.3.5 + - amazonka-lambda < 0.3.5 + - amazonka-ml < 0.3.5 + - amazonka-opsworks < 0.3.5 + - amazonka-rds < 0.3.5 + - amazonka-redshift < 0.3.5 + - amazonka-route53-domains < 0.3.5 + - amazonka-route53 < 0.3.5 + - amazonka-s3 < 0.3.5 + - amazonka-sdb < 0.3.5 + - amazonka-ses < 0.3.5 + - amazonka-sns < 0.3.5 + - amazonka-sqs < 0.3.5 + - amazonka-ssm < 0.3.5 + - amazonka-storagegateway < 0.3.5 + - amazonka-sts < 0.3.5 + - amazonka-support < 0.3.5 + - amazonka-swf < 0.3.5 + - amazonka-workspaces < 0.3.5 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From e87383ff7c7a963bf1081e45f7ff69e6899d85fe Mon Sep 17 00:00:00 2001 From: Michael Xavier Date: Tue, 2 Jun 2015 22:11:10 -0700 Subject: [PATCH 330/933] Add a few packages that I maintain --- build-constraints.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d910d207..a0830e28 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1024,6 +1024,11 @@ packages: - uri-templater - librato + "Michael Xavier @MichaelXavier": + - angel + - uri-bytestring + - phash + - cron "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 From 20ba31d84d05c7ce3185c6f4a73b7d760c6af99f Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 3 Jun 2015 10:47:09 +0300 Subject: [PATCH 331/933] Don't expect test failure iand675/metrics#3 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d910d207..3bc43c39 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1455,9 +1455,6 @@ expected-test-failures: # https://github.com/kazu-yamamoto/dns/issues/29 - dns - # https://github.com/iand675/metrics/issues/3 - - metrics - # Getting no useful information as to why from the build server, but works # when tested locally - cipher-aes From 445195fcab831e99c1b586da6c0797ac97959211 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 3 Jun 2015 11:10:23 +0300 Subject: [PATCH 332/933] Expect cipher-aes test to pass --- build-constraints.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3bc43c39..3896830f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1455,10 +1455,6 @@ expected-test-failures: # https://github.com/kazu-yamamoto/dns/issues/29 - dns - # Getting no useful information as to why from the build server, but works - # when tested locally - - cipher-aes - # https://github.com/afcowie/http-streams/issues/80 - http-streams From ca76f90440eb9eaaf0697714a505e7a9f97ed97b Mon Sep 17 00:00:00 2001 From: Christiaan Baaij Date: Wed, 3 Jun 2015 18:04:39 +0200 Subject: [PATCH 333/933] Add ghc-tcplugins-extra package --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 84748b4b..84aede96 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -976,6 +976,7 @@ packages: - tasty-hspec "Christiaan Baaij @christiaanb": + - ghc-tcplugins-extra - ghc-typelits-natnormalise - clash-prelude - clash-lib From b6baf5136295a53684ccca916c72f58a3f4438b3 Mon Sep 17 00:00:00 2001 From: Christiaan Baaij Date: Wed, 3 Jun 2015 20:02:18 +0200 Subject: [PATCH 334/933] Add the `clash-verilog` package --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 84aede96..78b5154a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -981,6 +981,7 @@ packages: - clash-prelude - clash-lib - clash-vhdl + - clash-verilog - clash-systemverilog - clash-ghc From bf2dc54ff73f9ccdbe0c37fa00104b23211ed5c3 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 4 Jun 2015 09:54:16 +0300 Subject: [PATCH 335/933] Upper bound for #622 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 84aede96..320fbde4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1121,6 +1121,9 @@ packages: - amazonka-swf < 0.3.5 - amazonka-workspaces < 0.3.5 + # https://github.com/fpco/stackage/issues/622 + - doctest < 0.10 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 21eb168b10ab0407fc31a35aeaeffb539e70bb3f Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 4 Jun 2015 09:56:26 +0300 Subject: [PATCH 336/933] Disallow comonad 4.2.7 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 320fbde4..0b31b255 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -266,7 +266,7 @@ packages: - bound - bytes - charset - - comonad + - comonad > 4.2.7 || < 4.2.7 - comonads-fd - comonad-transformers # https://github.com/ekmett/compensated/issues/5 From fac76f0464311b5ddd0e264d7abe942fc03e373c Mon Sep 17 00:00:00 2001 From: John Chee Date: Thu, 4 Jun 2015 15:42:50 -0700 Subject: [PATCH 337/933] Delete comment. --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index af973344..a6175f77 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -941,7 +941,6 @@ packages: - setlocale "John Chee @chee1bot": - # go - cgi "Taylor Fausak @tfausak": From 0630382e33ca58efb09564cedd3bd76c34c81e55 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 5 Jun 2015 06:05:42 +0300 Subject: [PATCH 338/933] Expected test failures and missing lib (pinging @manny-fp) --- build-constraints.yaml | 6 ++++++ debian-bootstrap.sh | 1 + 2 files changed, 7 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1155a050..51391607 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1469,6 +1469,12 @@ expected-test-failures: # https://github.com/afcowie/http-streams/issues/80 - http-streams + # https://github.com/Soostone/uri-bytestring/issues/9 + - uri-bytestring + + # https://github.com/MichaelXavier/cron/issues/13 + - cron + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index de24152e..9438d78b 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -54,6 +54,7 @@ apt-get install -y \ libgtk-3-dev \ libxml2-dev \ libgsasl7-dev \ + libphash0-dev \ libzmq3-dev mkdir /tmp/nettle-build From a4d9fbe34e89229d7b5694d44b554ce3115a5fb1 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 5 Jun 2015 06:07:15 +0300 Subject: [PATCH 339/933] Block two packages temporarily --- build-constraints.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 51391607..34a6b36d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1028,9 +1028,11 @@ packages: - librato "Michael Xavier @MichaelXavier": - - angel + # https://github.com/MichaelXavier/Angel/issues/41 + # - angel - uri-bytestring - - phash + # Temporarily dropped while DockerHub adds necessary library + # - phash - cron "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 From 6f0335d9f07dd608acb384da1d2a186806b11d52 Mon Sep 17 00:00:00 2001 From: Lars Kuhtz Date: Thu, 4 Jun 2015 21:11:21 -0700 Subject: [PATCH 340/933] Add package wai-cors --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 34a6b36d..5c08c4db 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1034,6 +1034,10 @@ packages: # Temporarily dropped while DockerHub adds necessary library # - phash - cron + + "Lars Kuhtz @larskuhtz": + - wai-cors + "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 From 830f37889520629a8f6be8618d4bdabd94e6b34e Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 5 Jun 2015 07:33:14 +0300 Subject: [PATCH 341/933] Add phash back --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 34a6b36d..23fc5757 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1031,8 +1031,7 @@ packages: # https://github.com/MichaelXavier/Angel/issues/41 # - angel - uri-bytestring - # Temporarily dropped while DockerHub adds necessary library - # - phash + - phash - cron "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 From be494dea2deb79e160c295eefaa850e2c949d95f Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 7 Jun 2015 06:14:19 +0300 Subject: [PATCH 342/933] Remove upper bounds and close #617 --- build-constraints.yaml | 50 ------------------------------------------ 1 file changed, 50 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4496ae0c..f0fc0d05 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1082,56 +1082,6 @@ packages: # https://github.com/fpco/stackage/issues/616 - string-conversions < 0.4 - # https://github.com/fpco/stackage/issues/617 - - amazonka < 0.3.5 - - amazonka-core < 0.3.5 - - amazonka-autoscaling < 0.3.5 - - amazonka-cloudformation < 0.3.5 - - amazonka-cloudfront < 0.3.5 - - amazonka-cloudhsm < 0.3.5 - - amazonka-cloudsearch-domains < 0.3.5 - - amazonka-cloudsearch < 0.3.5 - - amazonka-cloudtrail < 0.3.5 - - amazonka-cloudwatch-logs < 0.3.5 - - amazonka-cloudwatch < 0.3.5 - - amazonka-codedeploy < 0.3.5 - - amazonka-cognito-identity < 0.3.5 - - amazonka-cognito-sync < 0.3.5 - - amazonka-config < 0.3.5 - - amazonka-datapipeline < 0.3.5 - - amazonka-directconnect < 0.3.5 - - amazonka-dynamodb < 0.3.5 - - amazonka-ec2 < 0.3.5 - - amazonka-ecs < 0.3.5 - - amazonka-elasticache < 0.3.5 - - amazonka-elasticbeanstalk < 0.3.5 - - amazonka-elastictranscoder < 0.3.5 - - amazonka-elb < 0.3.5 - - amazonka-emr < 0.3.5 - - amazonka-glacier < 0.3.5 - - amazonka-iam < 0.3.5 - - amazonka-importexport < 0.3.5 - - amazonka-kinesis < 0.3.5 - - amazonka-kms < 0.3.5 - - amazonka-lambda < 0.3.5 - - amazonka-ml < 0.3.5 - - amazonka-opsworks < 0.3.5 - - amazonka-rds < 0.3.5 - - amazonka-redshift < 0.3.5 - - amazonka-route53-domains < 0.3.5 - - amazonka-route53 < 0.3.5 - - amazonka-s3 < 0.3.5 - - amazonka-sdb < 0.3.5 - - amazonka-ses < 0.3.5 - - amazonka-sns < 0.3.5 - - amazonka-sqs < 0.3.5 - - amazonka-ssm < 0.3.5 - - amazonka-storagegateway < 0.3.5 - - amazonka-sts < 0.3.5 - - amazonka-support < 0.3.5 - - amazonka-swf < 0.3.5 - - amazonka-workspaces < 0.3.5 - # https://github.com/fpco/stackage/issues/622 - doctest < 0.10 From 4f8b64746d4c7f4ea963f793fe1882c23d580629 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 7 Jun 2015 06:14:29 +0300 Subject: [PATCH 343/933] Upper bounds for #624 #625 --- build-constraints.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f0fc0d05..2a9c2cc0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1085,6 +1085,12 @@ packages: # https://github.com/fpco/stackage/issues/622 - doctest < 0.10 + # https://github.com/fpco/stackage/issues/624 + - bytestring-lexing < 0.5 + + # https://github.com/fpco/stackage/issues/625 + - foldl < 1.1 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 69d681e20faaf8aed8083642818346ea3e3bf9e6 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 7 Jun 2015 06:29:53 +0300 Subject: [PATCH 344/933] Expect wai-cors failure --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2a9c2cc0..d64494bd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1436,6 +1436,9 @@ expected-test-failures: # https://github.com/MichaelXavier/cron/issues/13 - cron + # No PhantomJS available + - wai-cors + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 476a80993a7826ccebf38001872c439af429e3d0 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 7 Jun 2015 06:32:10 +0300 Subject: [PATCH 345/933] Temporarily block phash --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d64494bd..22b75eab 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1031,7 +1031,8 @@ packages: # https://github.com/MichaelXavier/Angel/issues/41 # - angel - uri-bytestring - - phash + # Temporarily blocking again, still debugging build on server + # - phash - cron "Lars Kuhtz @larskuhtz": From d6df81bf5dca4eb157eaab90cc382d159ff96265 Mon Sep 17 00:00:00 2001 From: Sam Rijs Date: Mon, 8 Jun 2015 16:46:30 +1000 Subject: [PATCH 346/933] add ndjson-conduit --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 22b75eab..1a1cbff2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1037,6 +1037,9 @@ packages: "Lars Kuhtz @larskuhtz": - wai-cors + + "Sam Rijs " + - ndjson-conduit "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 From 5ebc11ced5d25ac688f0f335e992f1bd5c9d76d4 Mon Sep 17 00:00:00 2001 From: Sam Rijs Date: Mon, 8 Jun 2015 16:50:34 +1000 Subject: [PATCH 347/933] fix missing semicolon --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1a1cbff2..c4bbced5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1038,7 +1038,7 @@ packages: "Lars Kuhtz @larskuhtz": - wai-cors - "Sam Rijs " + "Sam Rijs ": - ndjson-conduit "Stackage upper bounds": From ff5a84b6489462d6153147dec7f1f6e11c4b0934 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 9 Jun 2015 05:56:17 +0300 Subject: [PATCH 348/933] Remove upper bounds and close #625 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 22b75eab..de193131 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1089,9 +1089,6 @@ packages: # https://github.com/fpco/stackage/issues/624 - bytestring-lexing < 0.5 - # https://github.com/fpco/stackage/issues/625 - - foldl < 1.1 - # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From bc775949b9f3872b9f9e378dfc1080addefeeb0c Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 9 Jun 2015 05:58:30 +0300 Subject: [PATCH 349/933] Remove upper bound and close #624 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index de193131..3c181030 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1086,9 +1086,6 @@ packages: # https://github.com/fpco/stackage/issues/622 - doctest < 0.10 - # https://github.com/fpco/stackage/issues/624 - - bytestring-lexing < 0.5 - # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From b3c52505facb443f31790e97f0dce69cbd9f6b45 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 9 Jun 2015 06:02:33 +0300 Subject: [PATCH 350/933] Upper bounds for #627 --- build-constraints.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4db84729..e3f5aa20 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1092,6 +1092,12 @@ packages: # https://github.com/fpco/stackage/issues/622 - doctest < 0.10 + # https://github.com/fpco/stackage/issues/627 + - persistent < 2.2 + - persistent-mysql < 2.2 + - persistent-postgresql < 2.2 + - persistent-sqlite < 2.2 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 9458ba1bcdbfe1833b7f77d399afefa6ffbd486e Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 9 Jun 2015 06:16:28 +0300 Subject: [PATCH 351/933] Remove expected test failure Soostone/uri-bytestring#9 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e3f5aa20..6c69a71f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1437,9 +1437,6 @@ expected-test-failures: # https://github.com/afcowie/http-streams/issues/80 - http-streams - # https://github.com/Soostone/uri-bytestring/issues/9 - - uri-bytestring - # https://github.com/MichaelXavier/cron/issues/13 - cron From 2863e8cedb4c6a89b9b852e8f032125e2356157f Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 9 Jun 2015 06:43:41 +0300 Subject: [PATCH 352/933] Don't expect test failure MichaelXavier/cron#13 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6c69a71f..24c580ab 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1437,9 +1437,6 @@ expected-test-failures: # https://github.com/afcowie/http-streams/issues/80 - http-streams - # https://github.com/MichaelXavier/cron/issues/13 - - cron - # No PhantomJS available - wai-cors From 5cfd5ba7509d25668d604610941cff13c1f267ef Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 9 Jun 2015 14:43:42 +0300 Subject: [PATCH 353/933] Remove upper bounds and close #616 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 24c580ab..c9fa0fcb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1086,9 +1086,6 @@ packages: # https://github.com/fpco/stackage/issues/615 - syb < 0.5 - # https://github.com/fpco/stackage/issues/616 - - string-conversions < 0.4 - # https://github.com/fpco/stackage/issues/622 - doctest < 0.10 From df697894905e47984c34ee86f37d9d53f23d38a8 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 10 Jun 2015 09:05:14 +0300 Subject: [PATCH 354/933] Don't expect failure afcowie/http-streams#80 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c9fa0fcb..1987d702 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1431,9 +1431,6 @@ expected-test-failures: # https://github.com/kazu-yamamoto/dns/issues/29 - dns - # https://github.com/afcowie/http-streams/issues/80 - - http-streams - # No PhantomJS available - wai-cors From b85b2b4ffb2e51471c15a6f66ab28af89beca318 Mon Sep 17 00:00:00 2001 From: Anupam Jain Date: Wed, 10 Jun 2015 17:53:33 +0530 Subject: [PATCH 355/933] Added wai-routes --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1987d702..b4de99a3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1044,6 +1044,9 @@ packages: "Sam Rijs ": - ndjson-conduit + "Anupam Jain ": + - wai-routes + "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 From ef0ed7e3805509c26b94c5252a9ce2442ccffaab Mon Sep 17 00:00:00 2001 From: Daniel Patterson Date: Wed, 10 Jun 2015 15:24:06 -0400 Subject: [PATCH 356/933] Add hspec-snap --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index b4de99a3..5fa0705d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1046,6 +1046,8 @@ packages: "Anupam Jain ": - wai-routes + "Daniel Patterson ": + - hspec-snap "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 From 2e653dd79a6807322f3a3eb088cee37bc3d9ab12 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 11 Jun 2015 07:51:44 +0300 Subject: [PATCH 357/933] Add in stack --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5fa0705d..79fed2ec 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -99,6 +99,7 @@ packages: - random-source - shelly - smtLib + - stack - stackage # Temporary block while system-filepath issues worked out # - stackage-curator From 1cf579ad44f5d3c0b37a16712d2039519849e44e Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 11 Jun 2015 07:56:26 +0300 Subject: [PATCH 358/933] Expected failure afcowie/http-streams#90 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 79fed2ec..5051d1f8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1440,6 +1440,9 @@ expected-test-failures: # No PhantomJS available - wai-cors + # https://github.com/afcowie/http-streams/issues/90 + - http-streams + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 7121e266a62c58b252dc726d4ac4bf1aae1b34d9 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 11 Jun 2015 08:05:42 +0300 Subject: [PATCH 359/933] Expect failure --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5051d1f8..6ddf893c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1443,6 +1443,10 @@ expected-test-failures: # https://github.com/afcowie/http-streams/issues/90 - http-streams + # Permissions failure when creating /home/stackage/.stack. We _should_ fix + # this in the build scripts here... + - stack + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 2d3b6ba43dadf840bfe7c539730a983ce51178f9 Mon Sep 17 00:00:00 2001 From: Mathieu Boespflug Date: Thu, 11 Jun 2015 11:52:33 +0200 Subject: [PATCH 360/933] Add netwire, th-lift Note: I'm not the maintainer of netwire. --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6ddf893c..ca1ca945 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1050,6 +1050,10 @@ packages: "Daniel Patterson ": - hspec-snap + "Mathieu Boespflug @mboes": + - netwire + - th-lift + "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 From cd9dacb8b08f18e3a9d2b780c0d2a19be82bdc68 Mon Sep 17 00:00:00 2001 From: Alcides Viamontes E Date: Fri, 12 Jun 2015 13:47:13 +0200 Subject: [PATCH 361/933] Added second-transfer --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ca1ca945..0bd3397e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1053,6 +1053,9 @@ packages: "Mathieu Boespflug @mboes": - netwire - th-lift + + "Alcides Viamontes ": + - second-transfer "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 From 300a78ae5f896168837fead2d6bd2389f3b3cb53 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 12 Jun 2015 16:07:17 +0300 Subject: [PATCH 362/933] Add back angel --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0bd3397e..f5804407 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1032,8 +1032,7 @@ packages: - librato "Michael Xavier @MichaelXavier": - # https://github.com/MichaelXavier/Angel/issues/41 - # - angel + - angel - uri-bytestring # Temporarily blocking again, still debugging build on server # - phash From a1c20c90e4e9723ca1e3279ccda08979fab7fcfc Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 12 Jun 2015 16:16:01 +0300 Subject: [PATCH 363/933] Don't expect test failure afcowie/http-streams#90 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f5804407..ff50ef08 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1446,9 +1446,6 @@ expected-test-failures: # No PhantomJS available - wai-cors - # https://github.com/afcowie/http-streams/issues/90 - - http-streams - # Permissions failure when creating /home/stackage/.stack. We _should_ fix # this in the build scripts here... - stack From 5fa6b97f9de418d00d8e3667425c38b62828c23b Mon Sep 17 00:00:00 2001 From: Felipe Lessa Date: Fri, 12 Jun 2015 11:45:49 -0300 Subject: [PATCH 364/933] Add country-codes, {yesod-,}mangopay, nonce and thumbnail-plus. --- build-constraints.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ff50ef08..93787afc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -387,12 +387,17 @@ packages: "Paul Harper ": - yesod-auth-oauth2 - "Felipe Lessa ": + "Felipe Lessa @meteficha": + - country-codes - esqueleto - fb - fb-persistent + - mangopay + - nonce + - thumbnail-plus - yesod-fb - yesod-auth-fb + - yesod-mangopay "Alexander Altman ": - base-unicode-symbols From 27148a6e0123e5dfccec1a6455abfcb764de11bc Mon Sep 17 00:00:00 2001 From: Felipe Lessa Date: Fri, 12 Jun 2015 11:46:40 -0300 Subject: [PATCH 365/933] Whitespace. --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 93787afc..810508a5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1045,7 +1045,7 @@ packages: "Lars Kuhtz @larskuhtz": - wai-cors - + "Sam Rijs ": - ndjson-conduit @@ -1057,7 +1057,7 @@ packages: "Mathieu Boespflug @mboes": - netwire - th-lift - + "Alcides Viamontes ": - second-transfer From 70f38e5f184a71298648f1586edd1859402a8f5b Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sat, 13 Jun 2015 21:21:50 +0300 Subject: [PATCH 366/933] Skip MichaelXavier/Angel#42 --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ff50ef08..087c2f8e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1032,7 +1032,8 @@ packages: - librato "Michael Xavier @MichaelXavier": - - angel + # https://github.com/MichaelXavier/Angel/issues/42 + # - angel - uri-bytestring # Temporarily blocking again, still debugging build on server # - phash From 3c628ae32e6a278b75302681587da035bcc2695e Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sat, 13 Jun 2015 21:28:37 +0300 Subject: [PATCH 367/933] Expected test failure kazu-yamamoto/http2#4 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 087c2f8e..526c540d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1451,6 +1451,9 @@ expected-test-failures: # this in the build scripts here... - stack + # https://github.com/kazu-yamamoto/http2/issues/4 + - http2 + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From cc5b1ff00fdbd89a2d6f378841f3ff9ab8e40d85 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sat, 13 Jun 2015 21:29:51 +0300 Subject: [PATCH 368/933] Expected test failure alcidesv/second-transfer#1 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 526c540d..c714d400 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1454,6 +1454,9 @@ expected-test-failures: # https://github.com/kazu-yamamoto/http2/issues/4 - http2 + # https://github.com/alcidesv/second-transfer/issues/1 + - second-transfer + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From b989d050a7e160cf183e751249bb18fe6778e709 Mon Sep 17 00:00:00 2001 From: Michael Thompson Date: Sat, 13 Jun 2015 15:47:02 -0400 Subject: [PATCH 369/933] add lens-simple (& lens-family) I agreed with roconnor to watch over lens-family for stackage purposes. --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index e4d57793..79ecc38b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1018,6 +1018,9 @@ packages: "Michael Thompson @michaelt": - pipes-text + - lens-simple + - lens-family-core + - lens-family "Justin Le @mstksg": - auto From e59bc5ddf915b3cb29ecafc128ba9331866445fb Mon Sep 17 00:00:00 2001 From: Sam Rijs Date: Sun, 14 Jun 2015 14:40:30 +1000 Subject: [PATCH 370/933] add attoparsec-trans --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 79ecc38b..cdbe0de7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1052,6 +1052,7 @@ packages: "Sam Rijs ": - ndjson-conduit + - attoparsec-trans "Anupam Jain ": - wai-routes From 4263bb14a128e67cfe8a28ce5e22709d052de31f Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 14 Jun 2015 08:18:16 +0300 Subject: [PATCH 371/933] Expected test failure prowdsponsor/thumbnail-plus#3 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 79ecc38b..337f3495 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1465,6 +1465,9 @@ expected-test-failures: # https://github.com/alcidesv/second-transfer/issues/1 - second-transfer + # https://github.com/prowdsponsor/thumbnail-plus/issues/3 + - thumbnail-plus + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 14bd6c62b6baa74cb752b9135da13d57cc89dfd8 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 14 Jun 2015 08:20:04 +0300 Subject: [PATCH 372/933] Expected test failure prowdsponsor/mangopay#30 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 337f3495..ac6e9d90 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1468,6 +1468,9 @@ expected-test-failures: # https://github.com/prowdsponsor/thumbnail-plus/issues/3 - thumbnail-plus + # https://github.com/prowdsponsor/mangopay/issues/30 + - mangopay + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From c086f590f0cccae252a423c61ac2c1bceaf89d16 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 14 Jun 2015 13:15:57 +0300 Subject: [PATCH 373/933] Unblock phash --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4126f961..188469a7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1043,8 +1043,7 @@ packages: # https://github.com/MichaelXavier/Angel/issues/42 # - angel - uri-bytestring - # Temporarily blocking again, still debugging build on server - # - phash + - phash - cron "Lars Kuhtz @larskuhtz": From b582a8fba909ae797679eefffa077664dcab603c Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 14 Jun 2015 17:15:02 +0300 Subject: [PATCH 374/933] Remove expected test failure prowdsponsor/thumbnail-plus#3 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 188469a7..c0168c40 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1465,9 +1465,6 @@ expected-test-failures: # https://github.com/alcidesv/second-transfer/issues/1 - second-transfer - # https://github.com/prowdsponsor/thumbnail-plus/issues/3 - - thumbnail-plus - # https://github.com/prowdsponsor/mangopay/issues/30 - mangopay From a6b2ebdcabc252eec6d1657d5c7ab25a1f33abb7 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 14 Jun 2015 22:18:45 +0300 Subject: [PATCH 375/933] Add angel back --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c0168c40..0bc2e048 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1040,8 +1040,7 @@ packages: - librato "Michael Xavier @MichaelXavier": - # https://github.com/MichaelXavier/Angel/issues/42 - # - angel + - angel - uri-bytestring - phash - cron From 484135e2856a691d6595aa91681f35957575f6fa Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 15 Jun 2015 08:31:57 +0300 Subject: [PATCH 376/933] Expected test failure MichaelXavier/Angel#43 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0bc2e048..f12e1de8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1467,6 +1467,9 @@ expected-test-failures: # https://github.com/prowdsponsor/mangopay/issues/30 - mangopay + # https://github.com/MichaelXavier/Angel/issues/43 + - angel + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 38d38b860365979614031eefc93164f2b9456cb6 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 15 Jun 2015 08:33:24 +0300 Subject: [PATCH 377/933] Expected test failure MichaelXavier/phash#4 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f12e1de8..b92f40f2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1470,6 +1470,9 @@ expected-test-failures: # https://github.com/MichaelXavier/Angel/issues/43 - angel + # https://github.com/MichaelXavier/phash/issues/4 + - phash + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 6a3a594dcc19bbb2b076e617fefac5feb0f62fd8 Mon Sep 17 00:00:00 2001 From: philopon Date: Mon, 15 Jun 2015 14:37:30 +0900 Subject: [PATCH 378/933] Add apiary --- build-constraints.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index b92f40f2..a7774e81 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1064,6 +1064,23 @@ packages: "Alcides Viamontes ": - second-transfer + "Hirotomo Moriwaki @philopon": + - apiary + - apiary-logger + - apiary-persistent + - apiary-websockets + - apiary-cookie + - apiary-session + - apiary-clientsession + - apiary-authenticate + - apiary-eventsource + - apiary-mongoDB + - apiary-memcached + - types-compat + - web-routing + - bytestring-read + - memcached-binary + "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 From 5c863d34a7152b9f2264148d723f7f63bbf5643f Mon Sep 17 00:00:00 2001 From: Felipe Lessa Date: Mon, 15 Jun 2015 16:39:44 -0300 Subject: [PATCH 379/933] The serversession family of packages. --- build-constraints.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index a7774e81..2120379a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -394,6 +394,13 @@ packages: - fb-persistent - mangopay - nonce + - serversession + - serversession-backend-acid-state + - serversession-backend-persistent + - serversession-backend-redis + - serversession-frontend-snap + - serversession-frontend-wai + - serversession-frontend-yesod - thumbnail-plus - yesod-fb - yesod-auth-fb From 8c891704b84068cd6c3d57603433e06f3f8f6479 Mon Sep 17 00:00:00 2001 From: Felipe Lessa Date: Mon, 15 Jun 2015 17:01:46 -0300 Subject: [PATCH 380/933] Comment out serversession-frontend-wai for now. --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2120379a..7103c26b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -399,7 +399,8 @@ packages: - serversession-backend-persistent - serversession-backend-redis - serversession-frontend-snap - - serversession-frontend-wai + # + # - serversession-frontend-wai - serversession-frontend-yesod - thumbnail-plus - yesod-fb From 6f48c59320314800835de0eadf2714528a79594f Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 16 Jun 2015 08:06:48 +0300 Subject: [PATCH 381/933] Expect test failure memcached-binary --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index a7774e81..a0494707 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1490,6 +1490,9 @@ expected-test-failures: # https://github.com/MichaelXavier/phash/issues/4 - phash + # Requires memcached on the server + - memcached-binary + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 35759e168b645eaa364e9075e548bf68d64b0d83 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 16 Jun 2015 08:13:52 +0300 Subject: [PATCH 382/933] Skip acid-state benchmarks --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d2d1fbc1..67ce749c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1554,6 +1554,9 @@ skipped-benchmarks: # Pulls in discount which depends on extra C libraries - cmark + # Old criterion + - acid-state + skipped-profiling: # https://github.com/nomeata/ghc-heap-view/commit/8d198eb8fbbad2ce0c4527c781659f35b8909c04#diff-8288955e209cfbead5b318a8598be9c0R10 - ghc-heap-view From 93536cbbfaf4ab0a8186985dff4b748c4ee9eea3 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 17 Jun 2015 07:04:07 +0300 Subject: [PATCH 383/933] Expected test failure serversession-backend-redis --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 67ce749c..3295181c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1501,6 +1501,9 @@ expected-test-failures: # Requires memcached on the server - memcached-binary + # Requires redis on the build machine + - serversession-backend-redis + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From e38b0d635b64649e344020b5c0ee28c9976356a3 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 17 Jun 2015 07:33:34 +0300 Subject: [PATCH 384/933] Add back al (pinging @manny-fp @phaazon) --- build-constraints.yaml | 3 +-- debian-bootstrap.sh | 1 + 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3295181c..33ebef2e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -602,8 +602,7 @@ packages: - io-manager "Dimitri Sabadie Date: Thu, 18 Jun 2015 10:10:03 +0300 Subject: [PATCH 385/933] Temporary block on al --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 33ebef2e..1c95dc12 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -602,7 +602,7 @@ packages: - io-manager "Dimitri Sabadie Date: Thu, 18 Jun 2015 17:04:08 +0300 Subject: [PATCH 386/933] Temporarily block git-annex #638 --- build-constraints.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1c95dc12..7263af35 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -546,7 +546,9 @@ packages: #- hopenpgp-tools GHC 7.10, via syb-with-class "Joey Hess ": - - git-annex + [] + # https://github.com/fpco/stackage/issues/638 + # - git-annex # https://github.com/fpco/stackage/issues/160 "Ketil Malde": From a97f4b23021538284b9b375fdb23c8689145b901 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 21 Jun 2015 07:08:56 +0300 Subject: [PATCH 387/933] Upper bound for vincenthz/cryptonite#16 --- build-constraints.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7263af35..8eb09676 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1141,6 +1141,15 @@ packages: - persistent-postgresql < 2.2 - persistent-sqlite < 2.2 + # https://github.com/vincenthz/cryptonite/issues/16 + - tls < 1.3 + - connection < 0.2.5 + - tls-debug < 0.4 + - x509 < 1.6.0 + - x509-validation < 1.6.0 + - x509-store < 1.6.0 + - x509-system < 1.6.0 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 586c6e36b75e8fd0d463d312faa01bb75a1730f9 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 21 Jun 2015 18:59:32 +0300 Subject: [PATCH 388/933] Remove upper bounds and close #581 --- build-constraints.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8eb09676..d4b4f83c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1105,10 +1105,6 @@ packages: # https://github.com/fpco/stackage/issues/577 - MonadRandom < 0.4 - # https://github.com/fpco/stackage/issues/581 - - xml-conduit < 1.3 - - html-conduit < 1.2 - # https://github.com/fpco/stackage/issues/588 - semigroupoids < 4.5 - semigroupoid-extras < 4.5 From 21b1fdb669a06def05c4fb570f1decea18fea012 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 21 Jun 2015 19:00:04 +0300 Subject: [PATCH 389/933] Remove upper bounds for vincenthz/cryptonite#16 --- build-constraints.yaml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d4b4f83c..bfc44835 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1137,15 +1137,6 @@ packages: - persistent-postgresql < 2.2 - persistent-sqlite < 2.2 - # https://github.com/vincenthz/cryptonite/issues/16 - - tls < 1.3 - - connection < 0.2.5 - - tls-debug < 0.4 - - x509 < 1.6.0 - - x509-validation < 1.6.0 - - x509-store < 1.6.0 - - x509-system < 1.6.0 - # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 0841b7d7941143d8b6d2bfebf0ce382e4cf9c283 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 22 Jun 2015 14:10:10 +0300 Subject: [PATCH 390/933] Upper bound for gtk2hs/gtk2hs#109 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index bfc44835..ca6309d5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1137,6 +1137,9 @@ packages: - persistent-postgresql < 2.2 - persistent-sqlite < 2.2 + # https://github.com/gtk2hs/gtk2hs/issues/109 + - gtk < 0.13.8 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 3bdb12e227b119675fc84fef8b8b2c62f9e330ac Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 23 Jun 2015 08:12:48 +0300 Subject: [PATCH 391/933] Upper bound for #639 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ca6309d5..ae42f868 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1140,6 +1140,9 @@ packages: # https://github.com/gtk2hs/gtk2hs/issues/109 - gtk < 0.13.8 + # https://github.com/fpco/stackage/issues/639 + - mainland-pretty < 0.3 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 0d90c2249fe255c42fec6c6a2371537cfec5d873 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 23 Jun 2015 08:15:03 +0300 Subject: [PATCH 392/933] Upper bound for #640 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ae42f868..2ec1b82e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1143,6 +1143,9 @@ packages: # https://github.com/fpco/stackage/issues/639 - mainland-pretty < 0.3 + # https://github.com/fpco/stackage/issues/640 + - time-locale-compat < 0.1.1.0 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From ae36bec1d6aaf4e5c907829aced722ecc1ca63d4 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 23 Jun 2015 08:16:03 +0300 Subject: [PATCH 393/933] Include stack in README --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 5b15fd98..c2963d49 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,15 @@ project information. In addition, we have the following repositories: * [stackage-types](https://github.com/fpco/stackage-types) [![Build Status](https://travis-ci.org/fpco/stackage-types.svg?branch=master)](https://travis-ci.org/fpco/stackage-types) * [lts-haskell](https://github.com/fpco/lts-haskell) * [stackage-nightly](https://github.com/fpco/stackage-nightly) + +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://travis-ci.org/commercialhaskell/stack.svg?branch=master)](https://travis-ci.org/commercialhaskell/stack) + +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) From 763a41a979403c9f59cdd7f2df79da62a52a3fae Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 23 Jun 2015 12:12:55 +0300 Subject: [PATCH 394/933] Remove upper bounds and close #610 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2ec1b82e..37ece912 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1122,9 +1122,6 @@ packages: # https://github.com/fpco/stackage/issues/602 - errors < 2 - # https://github.com/fpco/stackage/issues/610 - - either < 4.4 - # https://github.com/fpco/stackage/issues/615 - syb < 0.5 From a7d7a0330b2f0e8836bedd1dcc40b777ff245032 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 23 Jun 2015 12:15:35 +0300 Subject: [PATCH 395/933] Skip tests for aws #602 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 37ece912..6d15bdd1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1256,6 +1256,9 @@ skipped-tests: # Upper bound on src-log, see: https://github.com/fpco/stackage/issues/509 - language-c-quote + # https://github.com/fpco/stackage/issues/602 + - aws + # Tests which we should build and run, but which are expected to fail. We # should not fail a build based on a test failure for one of these packages. expected-test-failures: From c492f7742a49f934d5bec5734fd13339021be0ce Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 23 Jun 2015 12:17:49 +0300 Subject: [PATCH 396/933] Remove upper bounds and close #549 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6d15bdd1..2bd1e888 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1094,9 +1094,6 @@ packages: # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 - # https://github.com/fpco/stackage/issues/549 - - tttool < 1.4 - # https://github.com/fpco/stackage/issues/572 - attoparsec < 0.13 - aeson < 0.8.1.0 From e316e95f341e4dc70edbaa55c2d7aad5e07b4dee Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 23 Jun 2015 12:23:14 +0300 Subject: [PATCH 397/933] Remove upper bounds and close #443 --- build-constraints.yaml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2bd1e888..afd6615f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -356,11 +356,8 @@ packages: - BlogLiterately - BlogLiterately-diagrams - diagrams - - # https://github.com/fpco/stackage/issues/443 - #- diagrams-builder - #- diagrams-haddock - + - diagrams-builder + - diagrams-haddock - diagrams-contrib - diagrams-core - diagrams-lib From 5ffaf365bbd5de1bc31e4e39c9743d19782f5370 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 23 Jun 2015 12:27:52 +0300 Subject: [PATCH 398/933] Remove upper bounds and close #577 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index afd6615f..699d7991 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1096,9 +1096,6 @@ packages: - aeson < 0.8.1.0 - jose-jwt < 0.6 - # https://github.com/fpco/stackage/issues/577 - - MonadRandom < 0.4 - # https://github.com/fpco/stackage/issues/588 - semigroupoids < 4.5 - semigroupoid-extras < 4.5 From 910c7b17f11fbe7f3b9d41ba2cdc28430547d4cf Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 23 Jun 2015 12:38:54 +0300 Subject: [PATCH 399/933] Skip tests as necessary for #622 --- build-constraints.yaml | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 699d7991..e3c3bcd6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1116,9 +1116,6 @@ packages: # https://github.com/fpco/stackage/issues/615 - syb < 0.5 - # https://github.com/fpco/stackage/issues/622 - - doctest < 0.10 - # https://github.com/fpco/stackage/issues/627 - persistent < 2.2 - persistent-mysql < 2.2 @@ -1250,6 +1247,17 @@ skipped-tests: # https://github.com/fpco/stackage/issues/602 - aws + # https://github.com/fpco/stackage/issues/622 + - ad + - bound + - bytestring-read + - heaps + - hyphenation + - linear + - machines + - semigroupoids + - web-routing + # Tests which we should build and run, but which are expected to fail. We # should not fail a build based on a test failure for one of these packages. expected-test-failures: From dbc2ba4b2c3bec84bc156fb870909c0d9d869976 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 23 Jun 2015 15:58:47 +0300 Subject: [PATCH 400/933] Remove upper bounds and close #640 --- build-constraints.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e3c3bcd6..1054d67b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1128,8 +1128,6 @@ packages: # https://github.com/fpco/stackage/issues/639 - mainland-pretty < 0.3 - # https://github.com/fpco/stackage/issues/640 - - time-locale-compat < 0.1.1.0 # Package flags are applied to individual packages, and override the values of # global-flags From 182363cf2f106a51beabf063a2886201ea287637 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 23 Jun 2015 15:58:56 +0300 Subject: [PATCH 401/933] Upper bounds for #641 --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1054d67b..4273c712 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1128,6 +1128,8 @@ packages: # https://github.com/fpco/stackage/issues/639 - mainland-pretty < 0.3 + # https://github.com/fpco/stackage/issues/641 + - gipeda < 0.1.1 # Package flags are applied to individual packages, and override the values of # global-flags From 58bf95c115005316cc005b09ca47b4b1a845e485 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 23 Jun 2015 16:36:48 +0300 Subject: [PATCH 402/933] Reenable tests #622 --- build-constraints.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4273c712..189bbf25 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1250,13 +1250,11 @@ skipped-tests: # https://github.com/fpco/stackage/issues/622 - ad - bound - - bytestring-read - heaps - hyphenation - linear - machines - semigroupoids - - web-routing # Tests which we should build and run, but which are expected to fail. We # should not fail a build based on a test failure for one of these packages. From 585d1168c6db2db0d992a4311ea459c713d90616 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 23 Jun 2015 16:37:42 +0300 Subject: [PATCH 403/933] Remove upper bound on jose-jwt #572 --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 189bbf25..557cfaa7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1094,7 +1094,6 @@ packages: # https://github.com/fpco/stackage/issues/572 - attoparsec < 0.13 - aeson < 0.8.1.0 - - jose-jwt < 0.6 # https://github.com/fpco/stackage/issues/588 - semigroupoids < 4.5 From 596efd0cdb749f206775620efc5ae83b85b8db99 Mon Sep 17 00:00:00 2001 From: Arash Rouhani Date: Wed, 24 Jun 2015 00:06:32 +0200 Subject: [PATCH 404/933] Add yesod-text-markdown See https://github.com/Tarrasch/yesod-text-markdown/issues/5 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 557cfaa7..5e439fdd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -438,6 +438,9 @@ packages: - pipes-safe - turtle - foldl + + "Arash Rouhani ": + - yesod-text-markdown "Chris Allen ": - bloodhound From 14db1164af4d89f16975b592a21ed203130f11b7 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 24 Jun 2015 08:32:30 +0300 Subject: [PATCH 405/933] Upper bound on messagepack for rodrigosetti/messagepack-rpc#2 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5e439fdd..b501f116 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1133,6 +1133,9 @@ packages: # https://github.com/fpco/stackage/issues/641 - gipeda < 0.1.1 + # https://github.com/rodrigosetti/messagepack-rpc/issues/2 + - messagepack < 0.4 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From b90fbb3592bad448f03afe9405d4a63b941673ed Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 24 Jun 2015 20:55:56 +0300 Subject: [PATCH 406/933] Remove upper bounds and close #591 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b501f116..8c7ee59f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1109,9 +1109,6 @@ packages: - machines < 0.5 - free < 4.12 - # https://github.com/fpco/stackage/issues/591 - - th-orphans < 0.12 - # https://github.com/fpco/stackage/issues/602 - errors < 2 From 239b3aee0e28caf035a028dd5cf7281133a81ca2 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 24 Jun 2015 21:02:50 +0300 Subject: [PATCH 407/933] Rearrange #627 upper bounds --- build-constraints.yaml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8c7ee59f..ef0265ee 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1115,12 +1115,6 @@ packages: # https://github.com/fpco/stackage/issues/615 - syb < 0.5 - # https://github.com/fpco/stackage/issues/627 - - persistent < 2.2 - - persistent-mysql < 2.2 - - persistent-postgresql < 2.2 - - persistent-sqlite < 2.2 - # https://github.com/gtk2hs/gtk2hs/issues/109 - gtk < 0.13.8 @@ -1258,6 +1252,9 @@ skipped-tests: - machines - semigroupoids + # https://github.com/fpco/stackage/issues/627 + - esqueleto + # Tests which we should build and run, but which are expected to fail. We # should not fail a build based on a test failure for one of these packages. expected-test-failures: From 3ea511da5698e86750ca85311e4973b0a7dd612d Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 24 Jun 2015 21:04:19 +0300 Subject: [PATCH 408/933] Remove upper bounds and close #641 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ef0265ee..2477eaef 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1121,9 +1121,6 @@ packages: # https://github.com/fpco/stackage/issues/639 - mainland-pretty < 0.3 - # https://github.com/fpco/stackage/issues/641 - - gipeda < 0.1.1 - # https://github.com/rodrigosetti/messagepack-rpc/issues/2 - messagepack < 0.4 From 63b3d21c7e2e490d71f0408dda781271c0ea8c3e Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 24 Jun 2015 23:25:08 +0300 Subject: [PATCH 409/933] Remove upper bounds and close #627 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2477eaef..504d8fa2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1249,9 +1249,6 @@ skipped-tests: - machines - semigroupoids - # https://github.com/fpco/stackage/issues/627 - - esqueleto - # Tests which we should build and run, but which are expected to fail. We # should not fail a build based on a test failure for one of these packages. expected-test-failures: From 8c4adaf1465dd212c49c2d5572cc350e78cb9759 Mon Sep 17 00:00:00 2001 From: Noam Lewis Date: Thu, 25 Jun 2015 00:14:27 +0300 Subject: [PATCH 410/933] add digits and base-orphans --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 504d8fa2..a2df58f1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -941,6 +941,8 @@ packages: "Noam Lewis @sinelaw": - xml-to-json - xml-to-json-fast + - base-orphans + - digits "Tim Baumann @timjb": - aeson-schema From cec0b5b41359cb5a5e83c22be142e40333d6b125 Mon Sep 17 00:00:00 2001 From: Felipe Lessa Date: Wed, 24 Jun 2015 18:37:23 -0300 Subject: [PATCH 411/933] prowdsponsor -> meteficha --- build-constraints.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 504d8fa2..2c3f8910 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -438,7 +438,7 @@ packages: - pipes-safe - turtle - foldl - + "Arash Rouhani ": - yesod-text-markdown @@ -1584,3 +1584,5 @@ github-users: - mihaimaruseac elm-lang: - JoeyEremondi + prowdsponsor: + - meteficha From eac93bd52c33d20a7508ceef65e68a8d655afb8a Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 26 Jun 2015 08:05:37 +0300 Subject: [PATCH 412/933] Upper bound for #646 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ff1e7d30..7c18857a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1126,6 +1126,9 @@ packages: # https://github.com/rodrigosetti/messagepack-rpc/issues/2 - messagepack < 0.4 + # https://github.com/fpco/stackage/issues/646 + - clock < 0.5 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 45afdf5fa314228da0deb81a7e904fb150f62b5a Mon Sep 17 00:00:00 2001 From: Athan Clark Date: Fri, 26 Jun 2015 13:37:41 -0600 Subject: [PATCH 413/933] add algebra package to Stackage --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 55a6a6c8..01896faa 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -257,6 +257,7 @@ packages: # - MFlow "Edward Kmett ": + - algebra - ad - adjunctions - approximate From bc688f0956e4b83e11052dba067e719e7c1d4663 Mon Sep 17 00:00:00 2001 From: Dimitri 'phaazon' Sabadie Date: Fri, 26 Jun 2015 23:06:42 +0200 Subject: [PATCH 414/933] Added hid. hid requires hidapi-libusb to be installed with pkg-config information. --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7c18857a..9e63b70e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -607,6 +607,7 @@ packages: # - al --FIXME temporary, figure out why it's not working with stackage-build - monad-journal - smoothie + - hid "Thomas Schilling ": - ghc-syb-utils From 543cd645462ebb1d686baba166e2c8e82482978f Mon Sep 17 00:00:00 2001 From: Dimitri 'phaazon' Sabadie Date: Fri, 26 Jun 2015 23:09:00 +0200 Subject: [PATCH 415/933] Added msi-kb-backlit. Requires hid (see #647). --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7c18857a..8e10d53c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -607,6 +607,7 @@ packages: # - al --FIXME temporary, figure out why it's not working with stackage-build - monad-journal - smoothie + - msi-kb-backlit "Thomas Schilling ": - ghc-syb-utils From a4fcf56e73890a5ecde9630acab706d9d6af2748 Mon Sep 17 00:00:00 2001 From: Kai Zhang Date: Fri, 26 Jun 2015 16:12:48 -0700 Subject: [PATCH 416/933] add clustering, matrices --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7c18857a..11741a5d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1092,6 +1092,10 @@ packages: - bytestring-read - memcached-binary + "Kai Zhang @kaizhang": + - clustering + - matrices + "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 From b7d12ab00acff30ab14fc50d8ce491edece13ca0 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sat, 27 Jun 2015 22:19:07 +0300 Subject: [PATCH 417/933] Remove upper bounds for rodrigosetti/messagepack-rpc#2 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8e10d53c..5683252f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1124,9 +1124,6 @@ packages: # https://github.com/fpco/stackage/issues/639 - mainland-pretty < 0.3 - # https://github.com/rodrigosetti/messagepack-rpc/issues/2 - - messagepack < 0.4 - # https://github.com/fpco/stackage/issues/646 - clock < 0.5 From d48dfee382682c3f1fdd82e422f7d0303f97aa48 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sat, 27 Jun 2015 22:20:40 +0300 Subject: [PATCH 418/933] Add back webdriver --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5683252f..4ca24106 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -116,8 +116,7 @@ packages: - statistics-linreg - th-expand-syns - thyme - # https://github.com/kallisti-dev/hs-webdriver/issues/71 - # - webdriver + - webdriver - web-fpco - criterion - th-lift From 974cd51dd066ce31d350a66064a3a12a463ee53a Mon Sep 17 00:00:00 2001 From: Will Coster Date: Sat, 27 Jun 2015 20:20:36 -0700 Subject: [PATCH 419/933] Add prometheus-haskell packages to stackage --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6f685b66..d0e25550 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -973,7 +973,10 @@ packages: - linux-namespaces "Will Coster @fimad": + - prometheus-client + - prometheus-metrics-ghc - scalpel + - wai-middleware-prometheus "Smirnov Alexey @chemist": - snmp From 192bda946978b67c4afe7303ceb35e8b1d3a52ce Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 28 Jun 2015 08:06:33 +0300 Subject: [PATCH 420/933] Add libhidapi-dev pinging @manny-fp --- debian-bootstrap.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index 74184ca5..54034881 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -56,6 +56,7 @@ apt-get install -y \ libgsasl7-dev \ libphash0-dev \ libopenal-dev \ + libhidapi-dev \ libzmq3-dev mkdir /tmp/nettle-build From 1f6e356ce989a9097b9e74251c14bf299a4e12f4 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 28 Jun 2015 08:11:31 +0300 Subject: [PATCH 421/933] Upper bound for ocharles/engine.io#22 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6f685b66..09fe5962 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1131,6 +1131,9 @@ packages: # https://github.com/fpco/stackage/issues/646 - clock < 0.5 + # https://github.com/ocharles/engine.io/issues/22 + - engine-io < 1.2.8 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 4c255e890900a85ac106cbcfe22ffa010c4d5bc1 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 28 Jun 2015 08:29:59 +0300 Subject: [PATCH 422/933] Temporary ban kaizhang/clustering#1 --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 09fe5962..7b825b45 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1094,7 +1094,8 @@ packages: - memcached-binary "Kai Zhang @kaizhang": - - clustering + # https://github.com/kaizhang/clustering/issues/1 + # - clustering - matrices "Stackage upper bounds": From 05b43533ce8b8b7a1ae4c90119a73e7167e0d089 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 28 Jun 2015 08:30:18 +0300 Subject: [PATCH 423/933] Expected test failure: Rlang-QQ --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7b825b45..68db4db9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1511,6 +1511,9 @@ expected-test-failures: # Requires redis on the build machine - serversession-backend-redis + # Unstated dependency on HList-PP + - Rlang-QQ + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 84fd744c9fee85cdc72be346c6c9ae5cb771a82a Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 28 Jun 2015 08:36:07 +0300 Subject: [PATCH 424/933] Temporary block --- build-constraints.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 68db4db9..a4c1d217 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -606,8 +606,9 @@ packages: # - al --FIXME temporary, figure out why it's not working with stackage-build - monad-journal - smoothie - - hid - - msi-kb-backlit + #Temporary, will add back immediately + #- hid + #- msi-kb-backlit "Thomas Schilling ": - ghc-syb-utils From 7e55dc13f9f4996e0b657f6660b3c64c409a7692 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 28 Jun 2015 08:36:17 +0300 Subject: [PATCH 425/933] Revert "Temporary block" This reverts commit 84fd744c9fee85cdc72be346c6c9ae5cb771a82a. --- build-constraints.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a4c1d217..68db4db9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -606,9 +606,8 @@ packages: # - al --FIXME temporary, figure out why it's not working with stackage-build - monad-journal - smoothie - #Temporary, will add back immediately - #- hid - #- msi-kb-backlit + - hid + - msi-kb-backlit "Thomas Schilling ": - ghc-syb-utils From 756c396a254e9b6154e0a205741d1fec712c4523 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 28 Jun 2015 11:14:56 +0300 Subject: [PATCH 426/933] Revert "Upper bound for ocharles/engine.io#22" This reverts commit 1f6e356ce989a9097b9e74251c14bf299a4e12f4. --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 68db4db9..28ce6ed6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1132,9 +1132,6 @@ packages: # https://github.com/fpco/stackage/issues/646 - clock < 0.5 - # https://github.com/ocharles/engine.io/issues/22 - - engine-io < 1.2.8 - # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From b5d1e2b632018793b1227a3ade3d696fea8d2e62 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 28 Jun 2015 23:32:12 +0300 Subject: [PATCH 427/933] Don't expect test failure haskell-suite/haskell-names#63 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3a1dd296..c7d60344 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1449,9 +1449,6 @@ expected-test-failures: # https://github.com/simonmar/alex/issues/62 GHC 7.10 - alex - # https://github.com/haskell-suite/haskell-names/issues/63 GHC 7.10 - - haskell-names - # https://github.com/ekmett/hyperloglog/issues/10 GHC 7.10 - hyperloglog From 84c612c01dc2cd8224949024ccd22aab65aa9c81 Mon Sep 17 00:00:00 2001 From: Kai Zhang Date: Sun, 28 Jun 2015 19:07:19 -0700 Subject: [PATCH 428/933] fix package "clustering" --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c7d60344..e52c42c9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1097,8 +1097,7 @@ packages: - memcached-binary "Kai Zhang @kaizhang": - # https://github.com/kaizhang/clustering/issues/1 - # - clustering + - clustering - matrices "Stackage upper bounds": From 9cbeade9bd5e8841a9e3437e6e9a380c2f15b066 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 29 Jun 2015 12:16:57 +0300 Subject: [PATCH 429/933] Skip tests kaizhang/clustering#2 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index e52c42c9..2d7ad105 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1259,6 +1259,9 @@ skipped-tests: - machines - semigroupoids + # https://github.com/kaizhang/clustering/issues/2 + - clustering + # Tests which we should build and run, but which are expected to fail. We # should not fail a build based on a test failure for one of these packages. expected-test-failures: From f12017174a546cc5a1c25b89342e589da0e5efcb Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 29 Jun 2015 12:27:36 +0300 Subject: [PATCH 430/933] Skip benchmarks for kaizhang/clustering#2 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2d7ad105..a9cdbf9f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1569,6 +1569,9 @@ skipped-benchmarks: # Old criterion - acid-state + # https://github.com/kaizhang/clustering/issues/2 + - clustering + skipped-profiling: # https://github.com/nomeata/ghc-heap-view/commit/8d198eb8fbbad2ce0c4527c781659f35b8909c04#diff-8288955e209cfbead5b318a8598be9c0R10 - ghc-heap-view From eb26f8401d65688bbcca75f6a5551d41012c570d Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 29 Jun 2015 12:27:45 +0300 Subject: [PATCH 431/933] Reinstall Cabal library too --- automated/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automated/build.sh b/automated/build.sh index 902e62f4..da6a9b60 100755 --- a/automated/build.sh +++ b/automated/build.sh @@ -77,6 +77,6 @@ ARGS_UPLOAD="$ARGS_COMMON -e AWS_ACCESS_KEY=$AWS_ACCESS_KEY -e AWS_SECRET_KEY=$A # Use cabal update first to initialize ~/.cabal.config, then use stackage-curator update to get it securely docker run $ARGS_UPLOAD $IMAGE /bin/bash -c "stackage-curator check-target-available --target $TARGET" -docker run $ARGS_PREBUILD $IMAGE /bin/bash -c "cabal update && stackage-curator update && stackage-curator create-plan --plan-file $PLAN_FILE --target $TARGET ${CONSTRAINTS:-} && stackage-curator check --plan-file $PLAN_FILE && stackage-curator fetch --plan-file $PLAN_FILE && cabal install random cabal-install" +docker run $ARGS_PREBUILD $IMAGE /bin/bash -c "cabal update && stackage-curator update && stackage-curator create-plan --plan-file $PLAN_FILE --target $TARGET ${CONSTRAINTS:-} && stackage-curator check --plan-file $PLAN_FILE && stackage-curator fetch --plan-file $PLAN_FILE && cabal install random Cabal cabal-install" docker run $ARGS_BUILD $IMAGE stackage-curator make-bundle --plan-file $PLAN_FILE --docmap-file $DOCMAP_FILE --bundle-file $BUNDLE_FILE --target $TARGET docker run $ARGS_UPLOAD $IMAGE /bin/bash -c "stackage-curator upload-docs --target $TARGET --bundle-file $BUNDLE_FILE && stackage-curator upload-index --plan-file $PLAN_FILE --target $TARGET && stackage-curator upload-github --plan-file $PLAN_FILE --docmap-file $DOCMAP_FILE --target $TARGET && stackage-curator hackage-distro --plan-file $PLAN_FILE --target $TARGET" From d7da79e25e532d1c727c227031b1de959c1a4787 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 30 Jun 2015 06:57:16 +0300 Subject: [PATCH 432/933] Upper bound on stack --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a9cdbf9f..2ffbafca 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -99,7 +99,7 @@ packages: - random-source - shelly - smtLib - - stack + - stack < 9.9.9 - stackage # Temporary block while system-filepath issues worked out # - stackage-curator From b9d3c6695c2ac29d09d58a72a14d18cfe85e4273 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 30 Jun 2015 07:01:55 +0300 Subject: [PATCH 433/933] Upper bound for #653 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2ffbafca..453d79f3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1134,6 +1134,9 @@ packages: # https://github.com/fpco/stackage/issues/646 - clock < 0.5 + # https://github.com/fpco/stackage/issues/653 + - base-orphans < 0.4 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From eebe38bf0f110065c46623d0ee17239c0aaae8dd Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 30 Jun 2015 07:02:59 +0300 Subject: [PATCH 434/933] Upper bound for #654 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 453d79f3..f0016e8b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1137,6 +1137,9 @@ packages: # https://github.com/fpco/stackage/issues/653 - base-orphans < 0.4 + # https://github.com/fpco/stackage/issues/654 + - generic-deriving < 1.8 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 11133bc0b81ae97e85c608cbc214dcf3e4c4ad34 Mon Sep 17 00:00:00 2001 From: Michel Boucey Date: Tue, 30 Jun 2015 10:44:38 +0200 Subject: [PATCH 435/933] add @MichelBoucey packages --- build-constraints.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f0016e8b..39689e73 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1100,6 +1100,11 @@ packages: - clustering - matrices + "Michel Boucey @MichelBoucey": + - IPv6Addr + - ip6addr + - cayley-client + "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 From 082dd72ef927dd3d3438763c07c3f72566ff245f Mon Sep 17 00:00:00 2001 From: k0ral Date: Tue, 30 Jun 2015 10:56:39 +0200 Subject: [PATCH 436/933] Add timerep --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 39689e73..fc65c811 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1104,6 +1104,9 @@ packages: - IPv6Addr - ip6addr - cayley-client + + "koral koral@mailoo.org @k0ral": + - timerep "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 From 1fd7485e23ecaa76807cb0b1f8de56b04851e545 Mon Sep 17 00:00:00 2001 From: Athan Clark Date: Tue, 30 Jun 2015 13:33:26 -0600 Subject: [PATCH 437/933] utility libraries, and ltext --- build-constraints.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 557a795e..43840455 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -258,7 +258,6 @@ packages: # - MFlow "Edward Kmett ": - - algebra - ad - adjunctions - approximate @@ -1016,6 +1015,10 @@ packages: - markup - webpage - composition-extra + - digestive-foundation-lucid + - ltext + - pred-trie + - poly-arity "Fumiaki Kinoshita @fumieval": - control-bool From f590783a02bdc70112733f24eacc7083b37016c3 Mon Sep 17 00:00:00 2001 From: Athan Clark Date: Tue, 30 Jun 2015 13:35:48 -0600 Subject: [PATCH 438/933] roll-back for algebra --- README.md | 9 ++ automated/build.sh | 4 +- build-constraints.yaml | 244 +++++++++++++++++++++++++++++++---------- debian-bootstrap.sh | 3 + 4 files changed, 199 insertions(+), 61 deletions(-) diff --git a/README.md b/README.md index 5b15fd98..c2963d49 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,15 @@ project information. In addition, we have the following repositories: * [stackage-types](https://github.com/fpco/stackage-types) [![Build Status](https://travis-ci.org/fpco/stackage-types.svg?branch=master)](https://travis-ci.org/fpco/stackage-types) * [lts-haskell](https://github.com/fpco/lts-haskell) * [stackage-nightly](https://github.com/fpco/stackage-nightly) + +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://travis-ci.org/commercialhaskell/stack.svg?branch=master)](https://travis-ci.org/commercialhaskell/stack) + +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) diff --git a/automated/build.sh b/automated/build.sh index af54104a..da6a9b60 100755 --- a/automated/build.sh +++ b/automated/build.sh @@ -77,6 +77,6 @@ ARGS_UPLOAD="$ARGS_COMMON -e AWS_ACCESS_KEY=$AWS_ACCESS_KEY -e AWS_SECRET_KEY=$A # Use cabal update first to initialize ~/.cabal.config, then use stackage-curator update to get it securely docker run $ARGS_UPLOAD $IMAGE /bin/bash -c "stackage-curator check-target-available --target $TARGET" -docker run $ARGS_PREBUILD $IMAGE /bin/bash -c "cabal update && stackage-curator update && stackage-curator create-plan --plan-file $PLAN_FILE --target $TARGET ${CONSTRAINTS:-} && stackage-curator check --plan-file $PLAN_FILE && stackage-curator fetch --plan-file $PLAN_FILE && cabal install random cabal-install" +docker run $ARGS_PREBUILD $IMAGE /bin/bash -c "cabal update && stackage-curator update && stackage-curator create-plan --plan-file $PLAN_FILE --target $TARGET ${CONSTRAINTS:-} && stackage-curator check --plan-file $PLAN_FILE && stackage-curator fetch --plan-file $PLAN_FILE && cabal install random Cabal cabal-install" docker run $ARGS_BUILD $IMAGE stackage-curator make-bundle --plan-file $PLAN_FILE --docmap-file $DOCMAP_FILE --bundle-file $BUNDLE_FILE --target $TARGET -docker run $ARGS_UPLOAD $IMAGE /bin/bash -c "stackage-curator upload --bundle-file $BUNDLE_FILE && stackage-curator hackage-distro --plan-file $PLAN_FILE --target $TARGET && stackage-curator upload-github --plan-file $PLAN_FILE --docmap-file $DOCMAP_FILE --target $TARGET && stackage-curator upload-index --plan-file $PLAN_FILE --target $TARGET && stackage-curator upload-docs --target $TARGET --bundle-file $BUNDLE_FILE" +docker run $ARGS_UPLOAD $IMAGE /bin/bash -c "stackage-curator upload-docs --target $TARGET --bundle-file $BUNDLE_FILE && stackage-curator upload-index --plan-file $PLAN_FILE --target $TARGET && stackage-curator upload-github --plan-file $PLAN_FILE --docmap-file $DOCMAP_FILE --target $TARGET && stackage-curator hackage-distro --plan-file $PLAN_FILE --target $TARGET" diff --git a/build-constraints.yaml b/build-constraints.yaml index 01896faa..43840455 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -13,6 +13,7 @@ packages: - hebrew-time - keter - markdown + - mime-mail - mime-mail-ses - monadcryptorandom - network-conduit-tls @@ -98,6 +99,7 @@ packages: - random-source - shelly - smtLib + - stack < 9.9.9 - stackage # Temporary block while system-filepath issues worked out # - stackage-curator @@ -114,8 +116,7 @@ packages: - statistics-linreg - th-expand-syns - thyme - # https://github.com/kallisti-dev/hs-webdriver/issues/71 - # - webdriver + - webdriver - web-fpco - criterion - th-lift @@ -257,7 +258,6 @@ packages: # - MFlow "Edward Kmett ": - - algebra - ad - adjunctions - approximate @@ -266,7 +266,7 @@ packages: - bound - bytes - charset - - comonad + - comonad > 4.2.7 || < 4.2.7 - comonads-fd - comonad-transformers # https://github.com/ekmett/compensated/issues/5 @@ -353,13 +353,10 @@ packages: "Brent Yorgey ": - active - BlogLiterately - # - BlogLiterately-diagrams GHC 7.10 + - BlogLiterately-diagrams - diagrams - - # https://github.com/fpco/stackage/issues/443 - #- diagrams-builder - #- diagrams-haddock - + - diagrams-builder + - diagrams-haddock - diagrams-contrib - diagrams-core - diagrams-lib @@ -386,12 +383,25 @@ packages: "Paul Harper ": - yesod-auth-oauth2 - "Felipe Lessa ": + "Felipe Lessa @meteficha": + - country-codes - esqueleto - fb - fb-persistent + - mangopay + - nonce + - serversession + - serversession-backend-acid-state + - serversession-backend-persistent + - serversession-backend-redis + - serversession-frontend-snap + # + # - serversession-frontend-wai + - serversession-frontend-yesod + - thumbnail-plus - yesod-fb - yesod-auth-fb + - yesod-mangopay "Alexander Altman ": - base-unicode-symbols @@ -428,6 +438,9 @@ packages: - turtle - foldl + "Arash Rouhani ": + - yesod-text-markdown + "Chris Allen ": - bloodhound @@ -461,7 +474,7 @@ packages: "Janne Hellsten ": - sqlite-simple - "Michal J. Gajda": + "Michal J. Gajda ": - iterable - Octree - FenwickTree @@ -470,6 +483,7 @@ packages: - wordpass - json-autotype + - posix-realtime "Dominic Steinitz ": [] @@ -485,6 +499,7 @@ packages: - hse-cpp - immortal - regex-applicative + - lexer-applicative - smallcheck - tasty - tasty-golden @@ -495,6 +510,7 @@ packages: - timezone-olson - timezone-series - traverse-with-class + - tuples-homogenous-h98 "George Giorgidze ": - HCodecs @@ -529,7 +545,9 @@ packages: #- hopenpgp-tools GHC 7.10, via syb-with-class "Joey Hess ": - - git-annex + [] + # https://github.com/fpco/stackage/issues/638 + # - git-annex # https://github.com/fpco/stackage/issues/160 "Ketil Malde": @@ -585,10 +603,11 @@ packages: - io-manager "Dimitri Sabadie ": - ghc-syb-utils @@ -802,6 +821,7 @@ packages: - hexstring - network-attoparsec - network-anonymous-i2p + - network-anonymous-tor "Timothy Jones git@zmthy.io @zmthy": - http-media @@ -922,6 +942,8 @@ packages: "Noam Lewis @sinelaw": - xml-to-json - xml-to-json-fast + - base-orphans + - digits "Tim Baumann @timjb": - aeson-schema @@ -936,6 +958,9 @@ packages: "Sven Bartscher sven.bartscher@weltraumschlangen.de @kritzefitz": - setlocale + "John Chee @chee1bot": + - cgi + "Taylor Fausak @tfausak": - flow @@ -948,7 +973,10 @@ packages: - linux-namespaces "Will Coster @fimad": + - prometheus-client + - prometheus-metrics-ghc - scalpel + - wai-middleware-prometheus "Smirnov Alexey @chemist": - snmp @@ -972,10 +1000,12 @@ packages: - tasty-hspec "Christiaan Baaij @christiaanb": + - ghc-tcplugins-extra - ghc-typelits-natnormalise - clash-prelude - clash-lib - clash-vhdl + - clash-verilog - clash-systemverilog - clash-ghc @@ -985,6 +1015,10 @@ packages: - markup - webpage - composition-extra + - digestive-foundation-lucid + - ltext + - pred-trie + - poly-arity "Fumiaki Kinoshita @fumieval": - control-bool @@ -1003,7 +1037,10 @@ packages: "Michael Thompson @michaelt": - pipes-text - + - lens-simple + - lens-family-core + - lens-family + "Justin Le @mstksg": - auto - tagged-binary @@ -1015,49 +1052,73 @@ packages: - flowdock - growler - engine-io-growler - # https://github.com/iand675/metrics/issues/2 - # - metrics + - metrics - pipes-wai - serf - uri-templater - librato - + + "Michael Xavier @MichaelXavier": + - angel + - uri-bytestring + - phash + - cron + + "Lars Kuhtz @larskuhtz": + - wai-cors + + "Sam Rijs ": + - ndjson-conduit + - attoparsec-trans + + "Anupam Jain ": + - wai-routes + "Daniel Patterson ": + - hspec-snap + + "Mathieu Boespflug @mboes": + - netwire + - th-lift + + "Alcides Viamontes ": + - second-transfer + + "Hirotomo Moriwaki @philopon": + - apiary + - apiary-logger + - apiary-persistent + - apiary-websockets + - apiary-cookie + - apiary-session + - apiary-clientsession + - apiary-authenticate + - apiary-eventsource + - apiary-mongoDB + - apiary-memcached + - types-compat + - web-routing + - bytestring-read + - memcached-binary + + "Kai Zhang @kaizhang": + - clustering + - matrices + + "Michel Boucey @MichelBoucey": + - IPv6Addr + - ip6addr + - cayley-client + + "koral koral@mailoo.org @k0ral": + - timerep + "Stackage upper bounds": - # https://github.com/fpco/stackage/issues/476 - - vector-space < 0.10 - - # https://github.com/fpco/stackage/issues/509 - - srcloc < 0.5 - - # https://github.com/fpco/stackage/issues/515 - - exception-transformers < 0.4 - - exception-mtl < 0.4 - - # https://github.com/fpco/stackage/issues/517 - - generic-deriving < 1.7 - # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 - # https://github.com/fpco/stackage/issues/549 - - tttool < 1.4 - # https://github.com/fpco/stackage/issues/572 - attoparsec < 0.13 - aeson < 0.8.1.0 - - jose-jwt < 0.6 - - # https://github.com/fpco/stackage/issues/577 - - MonadRandom < 0.4 - - # https://github.com/fpco/stackage/issues/579 - - wai-app-static < 3.1 - - yesod-static < 1.5 - - keter < 1.4 - - # https://github.com/fpco/stackage/issues/581 - - xml-conduit < 1.3 - - html-conduit < 1.2 # https://github.com/fpco/stackage/issues/588 - semigroupoids < 4.5 @@ -1070,15 +1131,26 @@ packages: - machines < 0.5 - free < 4.12 - # https://github.com/fpco/stackage/issues/591 - - th-orphans < 0.12 - # https://github.com/fpco/stackage/issues/602 - errors < 2 - # https://github.com/fpco/stackage/issues/607 - - pandoc < 1.14 - - highlighting-kate < 0.5.13 + # https://github.com/fpco/stackage/issues/615 + - syb < 0.5 + + # https://github.com/gtk2hs/gtk2hs/issues/109 + - gtk < 0.13.8 + + # https://github.com/fpco/stackage/issues/639 + - mainland-pretty < 0.3 + + # https://github.com/fpco/stackage/issues/646 + - clock < 0.5 + + # https://github.com/fpco/stackage/issues/653 + - base-orphans < 0.4 + + # https://github.com/fpco/stackage/issues/654 + - generic-deriving < 1.8 # Package flags are applied to individual packages, and override the values of # global-flags @@ -1190,6 +1262,24 @@ skipped-tests: - Cabal - MissingH + # Upper bound on src-log, see: https://github.com/fpco/stackage/issues/509 + - language-c-quote + + # https://github.com/fpco/stackage/issues/602 + - aws + + # https://github.com/fpco/stackage/issues/622 + - ad + - bound + - heaps + - hyphenation + - linear + - machines + - semigroupoids + + # https://github.com/kaizhang/clustering/issues/2 + - clustering + # Tests which we should build and run, but which are expected to fail. We # should not fail a build based on a test failure for one of these packages. expected-test-failures: @@ -1379,9 +1469,6 @@ expected-test-failures: # https://github.com/simonmar/alex/issues/62 GHC 7.10 - alex - # https://github.com/haskell-suite/haskell-names/issues/63 GHC 7.10 - - haskell-names - # https://github.com/ekmett/hyperloglog/issues/10 GHC 7.10 - hyperloglog @@ -1413,8 +1500,36 @@ expected-test-failures: # https://github.com/kazu-yamamoto/dns/issues/29 - dns - # https://github.com/haskell-servant/servant/issues/98 - - servant-client + # No PhantomJS available + - wai-cors + + # Permissions failure when creating /home/stackage/.stack. We _should_ fix + # this in the build scripts here... + - stack + + # https://github.com/kazu-yamamoto/http2/issues/4 + - http2 + + # https://github.com/alcidesv/second-transfer/issues/1 + - second-transfer + + # https://github.com/prowdsponsor/mangopay/issues/30 + - mangopay + + # https://github.com/MichaelXavier/Angel/issues/43 + - angel + + # https://github.com/MichaelXavier/phash/issues/4 + - phash + + # Requires memcached on the server + - memcached-binary + + # Requires redis on the build machine + - serversession-backend-redis + + # Unstated dependency on HList-PP + - Rlang-QQ # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: @@ -1466,6 +1581,15 @@ skipped-benchmarks: - postgresql-binary - scientific + # Pulls in discount which depends on extra C libraries + - cmark + + # Old criterion + - acid-state + + # https://github.com/kaizhang/clustering/issues/2 + - clustering + skipped-profiling: # https://github.com/nomeata/ghc-heap-view/commit/8d198eb8fbbad2ce0c4527c781659f35b8909c04#diff-8288955e209cfbead5b318a8598be9c0R10 - ghc-heap-view @@ -1494,3 +1618,5 @@ github-users: - mihaimaruseac elm-lang: - JoeyEremondi + prowdsponsor: + - meteficha diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index de24152e..54034881 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -54,6 +54,9 @@ apt-get install -y \ libgtk-3-dev \ libxml2-dev \ libgsasl7-dev \ + libphash0-dev \ + libopenal-dev \ + libhidapi-dev \ libzmq3-dev mkdir /tmp/nettle-build From 87fc30846307ee5a8ca81226a41c1bcfb86a507b Mon Sep 17 00:00:00 2001 From: Athan Clark Date: Tue, 30 Jun 2015 13:38:21 -0600 Subject: [PATCH 439/933] algebra --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 43840455..9f3013bf 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -258,6 +258,7 @@ packages: # - MFlow "Edward Kmett ": + - algebra - ad - adjunctions - approximate From ab368486af7211d7591a4ef2a22a2ee35e3a814e Mon Sep 17 00:00:00 2001 From: Athan Clark Date: Tue, 30 Jun 2015 13:40:41 -0600 Subject: [PATCH 440/933] unneeded --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9f3013bf..43840455 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -258,7 +258,6 @@ packages: # - MFlow "Edward Kmett ": - - algebra - ad - adjunctions - approximate From ad861c57a8ef459a45ad2e6da6312b7f18099287 Mon Sep 17 00:00:00 2001 From: Athan Clark Date: Tue, 30 Jun 2015 14:57:12 -0600 Subject: [PATCH 441/933] apologies, there was a typo. Version 0.0.0.3 of digestive-functors-lucid should work --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 43840455..90ba5c3a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1015,7 +1015,7 @@ packages: - markup - webpage - composition-extra - - digestive-foundation-lucid + - digestive-functors-lucid - ltext - pred-trie - poly-arity From 7670c2632384fa1c6b80d1a15ea0007ba9be9b27 Mon Sep 17 00:00:00 2001 From: Christopher Reichert Date: Wed, 1 Jul 2015 11:28:37 -0500 Subject: [PATCH 442/933] Add packages for creichert. --- build-constraints.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index fc65c811..5f50bd8d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1076,6 +1076,13 @@ packages: - netwire - th-lift + "Christopher Reichert @creichert": + - bencode + - hsebaysdk + - dockerfile + - wai-middleware-throttle + - yesod-auth-basic + "Alcides Viamontes ": - second-transfer From 6172d0eacd0aa7c5d54ff9189781e3005282426a Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 2 Jul 2015 18:21:39 +0300 Subject: [PATCH 443/933] Upper bounds for #659 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5f50bd8d..8b94fe54 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1155,6 +1155,9 @@ packages: # https://github.com/fpco/stackage/issues/654 - generic-deriving < 1.8 + # https://github.com/fpco/stackage/issues/659 + - pandoc < 1.15 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From e05a9218ebd441d95fbe9b318f55ada5e7680a7e Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 2 Jul 2015 18:38:59 +0300 Subject: [PATCH 444/933] Extra #572 upper bound --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8b94fe54..66b7b256 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1122,6 +1122,7 @@ packages: # https://github.com/fpco/stackage/issues/572 - attoparsec < 0.13 - aeson < 0.8.1.0 + - smoothie < 0.3.2 # https://github.com/fpco/stackage/issues/588 - semigroupoids < 4.5 From 87db240bca3dea22e0a523c23c764c8a5224742a Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 2 Jul 2015 18:49:08 +0300 Subject: [PATCH 445/933] Try using sudo: false (learned from commercialhaskell/stack#458) --- .travis.yml | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 70421914..e05d22b2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,12 +1,16 @@ -env: - - CABALVER=1.22 GHCVER=7.10.1 +sudo: false + +addons: + apt: + sources: + - hvr-ghc + packages: + - ghc-7.10.1 + - cabal-install-1.22 # Note: the distinction between `before_install` and `install` is not important. before_install: - - travis_retry sudo add-apt-repository -y ppa:hvr/ghc - - travis_retry sudo apt-get update - - travis_retry sudo apt-get install cabal-install-$CABALVER ghc-$GHCVER # see note about happy/alex - - export PATH=/opt/ghc/$GHCVER/bin:/opt/cabal/$CABALVER/bin:$PATH + - export PATH=/opt/ghc/7.10.1/bin:/opt/cabal/1.22/bin:$PATH install: - cabal --version From 5d2a0b61f7abd941f16002292b634cd5520e292d Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 3 Jul 2015 14:02:43 +0300 Subject: [PATCH 446/933] Remove upper bound and close #639 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 66b7b256..03134157 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1144,9 +1144,6 @@ packages: # https://github.com/gtk2hs/gtk2hs/issues/109 - gtk < 0.13.8 - # https://github.com/fpco/stackage/issues/639 - - mainland-pretty < 0.3 - # https://github.com/fpco/stackage/issues/646 - clock < 0.5 From 1aac6880a4c75c58fb3df494f51fe583f7c7e9e1 Mon Sep 17 00:00:00 2001 From: rcallahan Date: Fri, 3 Jul 2015 09:22:29 -0500 Subject: [PATCH 447/933] Update build-constraints.yaml --- build-constraints.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 03134157..eea8e007 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1115,6 +1115,12 @@ packages: "koral koral@mailoo.org @k0ral": - timerep + "Rob O'Callahan ropoctl@gmail.com": + - pipes-fastx + - seqalign + - thermonuc + - xlsior + "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 From dcce02c2d7944f3d2551917935e8abc278e8a067 Mon Sep 17 00:00:00 2001 From: Kostiantyn Rybnikov Date: Fri, 3 Jul 2015 18:13:14 +0300 Subject: [PATCH 448/933] Add protocol-buffers packages --- build-constraints.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 03134157..8e91c2ce 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1115,6 +1115,11 @@ packages: "koral koral@mailoo.org @k0ral": - timerep + "Kostiantyn Rybnikov @k-bx" + - protocol-buffers + - protocol-buffers-descriptor + - hprotoc + "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 From 0e0aea5446a2b529cbfb9ee255248da072e847c6 Mon Sep 17 00:00:00 2001 From: Kostiantyn Rybnikov Date: Fri, 3 Jul 2015 18:21:01 +0300 Subject: [PATCH 449/933] Fix YAML syntax error --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8e91c2ce..d93e6b31 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1115,7 +1115,7 @@ packages: "koral koral@mailoo.org @k0ral": - timerep - "Kostiantyn Rybnikov @k-bx" + "Kostiantyn Rybnikov @k-bx": - protocol-buffers - protocol-buffers-descriptor - hprotoc From 9ec1988c1362dff692da995f2b9f75773d67d7d1 Mon Sep 17 00:00:00 2001 From: rcallahan Date: Fri, 3 Jul 2015 11:22:19 -0500 Subject: [PATCH 450/933] Update build-constraints.yaml --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 67a3ef07..041bc4b8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1122,6 +1122,7 @@ packages: "Rob O'Callahan ropoctl@gmail.com": - pipes-fastx + - pipes-illumina - seqalign - thermonuc - xlsior From 0c0b0e6a222b74c95be0e278040235077628756e Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sat, 4 Jul 2015 00:17:59 +0300 Subject: [PATCH 451/933] Remove expected failure --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 041bc4b8..063f634d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1535,9 +1535,6 @@ expected-test-failures: # https://github.com/MichaelXavier/Angel/issues/43 - angel - # https://github.com/MichaelXavier/phash/issues/4 - - phash - # Requires memcached on the server - memcached-binary From 243a58387bcb40100a72b3be6df4c370ea8a5b11 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 5 Jul 2015 07:42:15 +0300 Subject: [PATCH 452/933] Remove upper bound and close #646 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 063f634d..fc577c60 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1156,9 +1156,6 @@ packages: # https://github.com/gtk2hs/gtk2hs/issues/109 - gtk < 0.13.8 - # https://github.com/fpco/stackage/issues/646 - - clock < 0.5 - # https://github.com/fpco/stackage/issues/653 - base-orphans < 0.4 From 7c4f3338a19fb03b7778468499bc1f44b578e725 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 5 Jul 2015 07:52:23 +0300 Subject: [PATCH 453/933] Remove upper bound and close #615 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index fc577c60..afabeebe 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1150,9 +1150,6 @@ packages: # https://github.com/fpco/stackage/issues/602 - errors < 2 - # https://github.com/fpco/stackage/issues/615 - - syb < 0.5 - # https://github.com/gtk2hs/gtk2hs/issues/109 - gtk < 0.13.8 From 0119baedddd7f7ac697042d5463e9e851e83ef79 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 5 Jul 2015 07:55:24 +0300 Subject: [PATCH 454/933] Upper bounds for k-bx/protocol-buffers#1 --- build-constraints.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index afabeebe..2e60d9dc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1162,6 +1162,11 @@ packages: # https://github.com/fpco/stackage/issues/659 - pandoc < 1.15 + # https://github.com/k-bx/protocol-buffers/issues/1 + - protocol-buffers < 2.1 + - protocol-buffers-descriptor < 2.1 + - hprotoc < 2.1 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From db514e2964656aa8bf261e552ecc8f6f0ba7018e Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 5 Jul 2015 14:35:49 +0300 Subject: [PATCH 455/933] Temporary block on protocol-buffers #661 --- build-constraints.yaml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ebcc9ad0..a7382729 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1119,10 +1119,11 @@ packages: "koral koral@mailoo.org @k0ral": - timerep - "Kostiantyn Rybnikov @k-bx": - - protocol-buffers - - protocol-buffers-descriptor - - hprotoc + # Doesn't compile on GHC 7.10, see: https://github.com/fpco/stackage/pull/661 + # "Kostiantyn Rybnikov @k-bx": + # - protocol-buffers + # - protocol-buffers-descriptor + # - hprotoc "Rob O'Callahan ropoctl@gmail.com": - pipes-fastx From 505e64201eaeeeccf499d4c0c94287a382d95fd1 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 5 Jul 2015 14:45:50 +0300 Subject: [PATCH 456/933] Remove protocol-buffer upper bounds #661 --- build-constraints.yaml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a7382729..29b57273 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1167,11 +1167,6 @@ packages: # https://github.com/fpco/stackage/issues/659 - pandoc < 1.15 - # https://github.com/k-bx/protocol-buffers/issues/1 - - protocol-buffers < 2.1 - - protocol-buffers-descriptor < 2.1 - - hprotoc < 2.1 - # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 135535ccdef44171396ad71c77a7a5ef9af000dc Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 5 Jul 2015 16:02:09 +0300 Subject: [PATCH 457/933] Expected test failure rcallahan/xlsior#1 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 29b57273..ce4621a7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1543,6 +1543,9 @@ expected-test-failures: # Unstated dependency on HList-PP - Rlang-QQ + # https://github.com/rcallahan/xlsior/issues/1 + - xlsior + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 2a44bd4224b4d93624b5a7cd5d6c12ee5d08a7fb Mon Sep 17 00:00:00 2001 From: Kostiantyn Rybnikov Date: Mon, 6 Jul 2015 16:36:21 +0300 Subject: [PATCH 458/933] Add back protocol-buffers Version 2.1.1 builds fine with GHC 7.10 now https://travis-ci.org/k-bx/protocol-buffers/builds/69730426 --- build-constraints.yaml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ce4621a7..6924f35a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1119,11 +1119,10 @@ packages: "koral koral@mailoo.org @k0ral": - timerep - # Doesn't compile on GHC 7.10, see: https://github.com/fpco/stackage/pull/661 - # "Kostiantyn Rybnikov @k-bx": - # - protocol-buffers - # - protocol-buffers-descriptor - # - hprotoc + "Kostiantyn Rybnikov @k-bx": + - protocol-buffers + - protocol-buffers-descriptor + - hprotoc "Rob O'Callahan ropoctl@gmail.com": - pipes-fastx From 0404b5343c9ee3059c57d83218343cf19312f925 Mon Sep 17 00:00:00 2001 From: Kostiantyn Rybnikov Date: Mon, 6 Jul 2015 17:46:14 +0300 Subject: [PATCH 459/933] Change to re-trigger travis --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6924f35a..35269467 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1121,8 +1121,8 @@ packages: "Kostiantyn Rybnikov @k-bx": - protocol-buffers - - protocol-buffers-descriptor - hprotoc + - protocol-buffers-descriptor "Rob O'Callahan ropoctl@gmail.com": - pipes-fastx From 27da7e3d6bbe0fe41f7388be3166f76a236af734 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 6 Jul 2015 18:05:22 +0300 Subject: [PATCH 460/933] Upper bounds for #664 and #665 --- build-constraints.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ce4621a7..fedef888 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1167,6 +1167,12 @@ packages: # https://github.com/fpco/stackage/issues/659 - pandoc < 1.15 + # https://github.com/fpco/stackage/issues/664 + - fast-logger < 2.4 + + # https://github.com/fpco/stackage/issues/665 + - iproute < 1.5 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From ce978f9eadfce1d8f403501712312b4e0418e9b8 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 6 Jul 2015 18:17:10 +0300 Subject: [PATCH 461/933] Upper bound for #666 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index fe895a14..0c6abea5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1172,6 +1172,9 @@ packages: # https://github.com/fpco/stackage/issues/665 - iproute < 1.5 + # https://github.com/fpco/stackage/issues/666 + - tar < 0.4.2 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 05429ecb95d93574ae6975dd89a432316ffeeb91 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 6 Jul 2015 18:59:16 +0300 Subject: [PATCH 462/933] Disable hprotoc, lacks GHC 7.10 compat. Pinging @k-bx --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0c6abea5..ae9562b1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1121,7 +1121,7 @@ packages: "Kostiantyn Rybnikov @k-bx": - protocol-buffers - - hprotoc + # - hprotoc - protocol-buffers-descriptor "Rob O'Callahan ropoctl@gmail.com": From 7b602d3bfd7f2f54d317d36e07d345178eac4e94 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 7 Jul 2015 05:37:07 +0300 Subject: [PATCH 463/933] Remove upper bounds and close #665 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ae9562b1..c1d3e3cf 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1169,9 +1169,6 @@ packages: # https://github.com/fpco/stackage/issues/664 - fast-logger < 2.4 - # https://github.com/fpco/stackage/issues/665 - - iproute < 1.5 - # https://github.com/fpco/stackage/issues/666 - tar < 0.4.2 From db222a35b1cc2b1058ca7ca52442166596178ab4 Mon Sep 17 00:00:00 2001 From: Kostiantyn Rybnikov Date: Wed, 8 Jul 2015 14:15:33 +0300 Subject: [PATCH 464/933] Hprotoc build should be fixed I added hprotoc-building to travis and fixed it, so should be good now --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c1d3e3cf..d3b81018 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1121,7 +1121,7 @@ packages: "Kostiantyn Rybnikov @k-bx": - protocol-buffers - # - hprotoc + - hprotoc - protocol-buffers-descriptor "Rob O'Callahan ropoctl@gmail.com": From eeb14279f95f0ad85198276c0c81fddd52908bde Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 8 Jul 2015 15:35:56 +0300 Subject: [PATCH 465/933] Added initial curators file --- CURATORS.md | 101 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 101 insertions(+) create mode 100644 CURATORS.md diff --git a/CURATORS.md b/CURATORS.md new file mode 100644 index 00000000..8855852a --- /dev/null +++ b/CURATORS.md @@ -0,0 +1,101 @@ +This is a collection of instructions for what Stackage curators- the guys who +maintain the Stackage project itself- should be doing on a regular basis. At +the time of writing (July 2015), this is handled almost entirely by Michael +Snoyman. Curation activities are mostly automated, and do not take up a +significant amount of time. But it's good to spread the knowledge for obvious +reasons (errant buses, if I ever decide to take a vacation...). + +## Workflow + +This section sketches out at a high level how the entire Stackage build/curation +process works: + +* [build-constraints.yaml](https://github.com/fpco/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 + * The [Travis job](https://github.com/fpco/stackage/blob/master/.travis.yml) performs these two steps to provide immediate feedback on pull requests +* Docker Hub [builds](https://github.com/fpco/stackage/blob/master/Dockerfile) a [Docker image](https://registry.hub.docker.com/u/snoyberg/stackage/) for running builds +* The stackage-build server (described below) is able to run automated builds using the [build.sh script](https://github.com/fpco/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) +* Cutting a new LTS major release is essentially just a Stackage Nightly that gets uploaded as an LTS + +## Pull requests + +The typical story on pull requests is: if Travis accepts it, and the author +only added packages under his/her own name, merge it. If the build later fails +(see below), then block the package until it's fixed. + +## Fixing bounds issues + +The most common activity you'll deal with in Stackage curation is a version +bound issue, usually a restrictive upper bound. You fix this by opening an +issue on the Stackage repo about the problem, and modifying the +build-constraints.yaml file to work around it in one of the ways below. Be sure +to refer to the issue for workarounds added to that file. + +* __Temporary upper bounds__ Most common technique, just prevent a new version of a library from being included immediately +* __Skipping tests and benchmarks__ If the upper bound is only in a test suite or benchmark, you can add the relevant package to skipped-tests or skipped-benchmarks. For example, if conduit had an upper bound on criterion for a benchmark, you could added conduit as a skipped benchmark. +* __Excluding packages__ In an extreme case of a non-responsive maintainer, you can remove the package entirely from Stackage. We try to avoid that whenever possible + +## Upgrading GHC versions + +The Dockerfile contains information on which GHC versions should be used. You +can modify it and push it to Github to trigger a DockerHub build. The master +branch is used for nightlies, and the lts branch for LTS. 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 +delete all of the old images and let the new ones get downloaded: + +``` +docker rm $(docker ps -a -q) +docker rmi $(docker images -q) +``` + +## stackage-build server + +You'll need to get your SSH public key added to the machine. ~/.ssh/config info: + +``` +Host stackage-build + User ubuntu + Hostname ec2-52-5-20-252.compute-1.amazonaws.com +``` + +We currently run the builds manually so make it easy to see when there are +bounds issues that need to be corrected. Automated this would be even better, +we're just not there yet. + +``` +# Run a nightly build +/opt/stackage-build/stackage/automated/build.sh nightly-2015-07-08 + +# Run an LTS minor bump +/opt/stackage-build/stackage/automated/build.sh lts-2.17 + +# Run an LTS major bump +/opt/stackage-build/stackage/automated/build.sh lts-3.0 +``` + +Recommended: run these from inside a `screen` 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.: + +``` +CONSTRAINTS='--constraint "conduit < 1.4.5" --constraint "criterion < 1.2.3"' /opt/stackage-build/stackage/automated/build.sh lts-2.17 +``` + +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 +universal advice on how to solve things, since each situation is unique. Let's +develop this advice over time. For now: if you're not sure, ask Michael for +guidance. + +### Timing + +Nightly builds should be run once a day. A common technique I use is, after a +build succeeds, write something like `sleep 20h; +/opt/stackage-build/stackage/automated/build.sh nightly-2015-01-02`. LTS minor +bumps typically are run on Sundays. From 6e9eee8de47c2c5949305dd77d663abfb103faf0 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 8 Jul 2015 15:43:51 +0300 Subject: [PATCH 466/933] Skip test for #668 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d3b81018..bcc103e6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1300,6 +1300,9 @@ skipped-tests: # https://github.com/kaizhang/clustering/issues/2 - clustering + # https://github.com/fpco/stackage/issues/668 + - second-transfer + # Tests which we should build and run, but which are expected to fail. We # should not fail a build based on a test failure for one of these packages. expected-test-failures: From 089d0020fb6fb774b266a03c436530c7320c61c4 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 8 Jul 2015 15:57:54 +0300 Subject: [PATCH 467/933] Revert "Hprotoc build should be fixed" This reverts commit db222a35b1cc2b1058ca7ca52442166596178ab4. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index bcc103e6..8b9e755b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1121,7 +1121,7 @@ packages: "Kostiantyn Rybnikov @k-bx": - protocol-buffers - - hprotoc + # - hprotoc - protocol-buffers-descriptor "Rob O'Callahan ropoctl@gmail.com": From 0767560ca5404a9ba0f2c0aff065ea82ff515b72 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 8 Jul 2015 16:02:28 +0300 Subject: [PATCH 468/933] Upper bound for alcidesv/second-transfer#2 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8b9e755b..baa0a017 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1172,6 +1172,9 @@ packages: # https://github.com/fpco/stackage/issues/666 - tar < 0.4.2 + # https://github.com/alcidesv/second-transfer/issues/2 + - http2 < 1.0 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From e6f512654111a70834f144ec95911d907a2c5a92 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 8 Jul 2015 23:48:52 +0300 Subject: [PATCH 469/933] Remove http2 upper bound alcidesv/second-transfer#2 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index baa0a017..8b9e755b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1172,9 +1172,6 @@ packages: # https://github.com/fpco/stackage/issues/666 - tar < 0.4.2 - # https://github.com/alcidesv/second-transfer/issues/2 - - http2 < 1.0 - # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From ee28a3d7ccfa20c64d9f95a04426e9a03e43cf3d Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 9 Jul 2015 18:02:48 +0300 Subject: [PATCH 470/933] Revert "Remove http2 upper bound alcidesv/second-transfer#2" This reverts commit e6f512654111a70834f144ec95911d907a2c5a92. --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8b9e755b..baa0a017 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1172,6 +1172,9 @@ packages: # https://github.com/fpco/stackage/issues/666 - tar < 0.4.2 + # https://github.com/alcidesv/second-transfer/issues/2 + - http2 < 1.0 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From d80790eb2bd1b911f8d0b1a9d8f389de47a926d0 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 9 Jul 2015 18:03:36 +0300 Subject: [PATCH 471/933] Upper bound for #669 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index baa0a017..7fc42253 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1175,6 +1175,9 @@ packages: # https://github.com/alcidesv/second-transfer/issues/2 - http2 < 1.0 + # https://github.com/fpco/stackage/issues/669 + - linear < 1.19 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From ebf285d64b440dba00ac11fe526b0cd5cac4b65d Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 9 Jul 2015 18:38:02 +0300 Subject: [PATCH 472/933] Move location of linear skipped test --- build-constraints.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7fc42253..0fc54c32 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1299,7 +1299,6 @@ skipped-tests: - bound - heaps - hyphenation - - linear - machines - semigroupoids @@ -1309,6 +1308,9 @@ skipped-tests: # https://github.com/fpco/stackage/issues/668 - second-transfer + # https://github.com/fpco/stackage/issues/669 + - linear + # Tests which we should build and run, but which are expected to fail. We # should not fail a build based on a test failure for one of these packages. expected-test-failures: From 983c93edc7ba00f7007386def8351f3bf8aa9625 Mon Sep 17 00:00:00 2001 From: John Lenz Date: Thu, 9 Jul 2015 10:43:37 -0500 Subject: [PATCH 473/933] Add John Lenz's packages The two webdriver packages require selenium server to be running so I added them to the ignore list. I have manually executed the test suite with nightly-2015-07-08 and it passes for these packages. --- build-constraints.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7fc42253..61f9c4ce 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1130,6 +1130,11 @@ packages: - seqalign - thermonuc - xlsior + "John Lenz @wuzzeb": + - yesod-auth-account + - yesod-static-angular + - hspec-webdriver + - webdriver-angular "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 @@ -1393,6 +1398,8 @@ expected-test-failures: # Requires a running webdriver server - webdriver - webdriver-snoy + - hspec-webdriver + - webdriver-angular # Weird conflicts with sandboxing - ghc-mod From 903904cde1b1fb9115f87d8dc75f7bd3e85645f9 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 10 Jul 2015 13:48:54 +0300 Subject: [PATCH 474/933] Upper bounds for #671 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 26366d24..3abf3c4f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1183,6 +1183,9 @@ packages: # https://github.com/fpco/stackage/issues/669 - linear < 1.19 + # https://github.com/fpco/stackage/issues/671 + - lucid-svg < 0.5 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 729d919513055276c175af0e932e2e361a8ab364 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 10 Jul 2015 13:49:23 +0300 Subject: [PATCH 475/933] Upper bounds for #672 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3abf3c4f..9ce9818d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1186,6 +1186,9 @@ packages: # https://github.com/fpco/stackage/issues/671 - lucid-svg < 0.5 + # https://github.com/fpco/stackage/issues/672 + - reflection < 2 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 5d379ce839336c902b0474fcf0c86c06f023108d Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 10 Jul 2015 15:05:37 +0300 Subject: [PATCH 476/933] Add back streams ekmett/streams#11 --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9ce9818d..b24b14c1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -315,8 +315,7 @@ packages: - semigroupoids - semigroups - speculation - # https://github.com/ekmett/streams/issues/11 - # - streams GHC 7.10 + - streams - tagged - vector-instances - void From aee40371675f28a21c32a64b301116289cf4e8ec Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 10 Jul 2015 17:17:52 +0300 Subject: [PATCH 477/933] Remove upper bounds and close #671 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b24b14c1..19fadd5c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1182,9 +1182,6 @@ packages: # https://github.com/fpco/stackage/issues/669 - linear < 1.19 - # https://github.com/fpco/stackage/issues/671 - - lucid-svg < 0.5 - # https://github.com/fpco/stackage/issues/672 - reflection < 2 From 2e7f4ce990fa115a8f64d769843ae57e50737ccf Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 10 Jul 2015 18:31:30 +0300 Subject: [PATCH 478/933] Exclude boolsimplifier --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 19fadd5c..2af7e532 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -914,7 +914,8 @@ packages: - jmacro-rpc-snap - mbox - kmeans - - boolsimplifier + # Not compatible with GHC 7.10.2 (yes, it's a regression in GHC) + # - boolsimplifier - cubicspline - maximal-cliques From 866f9fbfc0abe1733b05c31d9921188b4941cc11 Mon Sep 17 00:00:00 2001 From: Sven Heyll Date: Fri, 10 Jul 2015 22:06:23 +0200 Subject: [PATCH 479/933] Add b9 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2af7e532..39a462af 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1135,6 +1135,9 @@ packages: - yesod-static-angular - hspec-webdriver - webdriver-angular + + "Sven Heyll @sheyll": + - b9 "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 From f7f88f9fa38add62edb7d9f9dd402fc617de41c7 Mon Sep 17 00:00:00 2001 From: Will Thompson Date: Sat, 11 Jul 2015 10:25:04 +0100 Subject: [PATCH 480/933] Add bustle I am in the process of improving the buildability of this package on Travis-CI. It builds from the Hackage package locally, but there are some tedious gtk2hs-buildtools/Cabal library version/miscellaneous problems which make building it not always a pleasant experience. --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 39a462af..3e385043 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1138,6 +1138,9 @@ packages: "Sven Heyll @sheyll": - b9 + + "Will Thompson @wjt": + - bustle "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 From a1e2c3483eac177d392cb055f2187a93611b7072 Mon Sep 17 00:00:00 2001 From: Will Thompson Date: Sat, 11 Jul 2015 10:30:59 +0100 Subject: [PATCH 481/933] Install libpcap headers The 'bustle' package depends on 'pcap' which has a build-dependency on libpcap. --- debian-bootstrap.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index 54034881..61b853af 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -57,7 +57,8 @@ apt-get install -y \ libphash0-dev \ libopenal-dev \ libhidapi-dev \ - libzmq3-dev + libzmq3-dev \ + libpcap0.8-dev mkdir /tmp/nettle-build ( From 0dc2fc8a7993c9a600fd56f3b3f4da1c7932f2b5 Mon Sep 17 00:00:00 2001 From: Dimitri 'phaazon' Sabadie Date: Sat, 11 Jul 2015 17:07:24 +0200 Subject: [PATCH 482/933] Added event. --- build-constraints.yaml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 39a462af..95235f3e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -603,10 +603,11 @@ packages: "Dimitri Sabadie ": - ghc-syb-utils @@ -1115,7 +1116,7 @@ packages: - IPv6Addr - ip6addr - cayley-client - + "koral koral@mailoo.org @k0ral": - timerep @@ -1135,7 +1136,7 @@ packages: - yesod-static-angular - hspec-webdriver - webdriver-angular - + "Sven Heyll @sheyll": - b9 From d993896ed1c35133954ab507c45fa9812d5ac930 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Fija=C5=82kowski?= Date: Sat, 11 Jul 2015 21:02:55 +0200 Subject: [PATCH 483/933] Add hLibsass and hSass --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 39a462af..0fa1db45 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1138,6 +1138,10 @@ packages: "Sven Heyll @sheyll": - b9 + + "Jakub Fijałkowski kuba@codinginfinity.me @Fiolek_": + - hlibsass + - hsass "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 From ad7006da9a520229c752510caf80f26acdf505dc Mon Sep 17 00:00:00 2001 From: Sam Rijs Date: Sun, 12 Jul 2015 16:07:57 +1000 Subject: [PATCH 484/933] add operational-class --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 39a462af..91bea368 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1070,6 +1070,7 @@ packages: "Sam Rijs ": - ndjson-conduit - attoparsec-trans + - operational-class "Anupam Jain ": - wai-routes From 78c5d9a8fb1da86f79e0338ed5d9d920ced4f994 Mon Sep 17 00:00:00 2001 From: Chris Wong Date: Sun, 12 Jul 2015 20:10:01 +1200 Subject: [PATCH 485/933] Add nationstates --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index fe4af1a1..2556b8eb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1078,6 +1078,9 @@ packages: "Daniel Patterson ": - hspec-snap + "Chris Wong @lfairy": + - nationstates + "Mathieu Boespflug @mboes": - netwire - th-lift From d5e87e14bd7254e105b693d4d1392c649da9565a Mon Sep 17 00:00:00 2001 From: Oleg Grenrus Date: Sun, 12 Jul 2015 14:50:31 +0300 Subject: [PATCH 486/933] Add spdx --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index fe4af1a1..c8437ffc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -842,6 +842,7 @@ packages: - edit-distance - lattices - waitra + - spdx "Adam C. Foltzer acfoltzer@galois.com @acfoltzer": - cryptol From 7c58f403db6f73dad671ba5d4783ed8aaf37a742 Mon Sep 17 00:00:00 2001 From: Oleg Grenrus Date: Sun, 12 Jul 2015 14:55:55 +0300 Subject: [PATCH 487/933] Add postgresql-simple-url --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index c8437ffc..5a639b1d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -843,6 +843,7 @@ packages: - lattices - waitra - spdx + - postgresql-simple-url "Adam C. Foltzer acfoltzer@galois.com @acfoltzer": - cryptol From 49680b6111b5c6237970cea524237726419a270e Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 12 Jul 2015 18:30:49 +0300 Subject: [PATCH 488/933] Remove upper bounds and close #659 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f412e50c..94a3dbfd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1181,9 +1181,6 @@ packages: # https://github.com/fpco/stackage/issues/654 - generic-deriving < 1.8 - # https://github.com/fpco/stackage/issues/659 - - pandoc < 1.15 - # https://github.com/fpco/stackage/issues/664 - fast-logger < 2.4 From 6defa68679d766bd3fa60cdb9611a476fcb6044a Mon Sep 17 00:00:00 2001 From: Sam Rijs Date: Mon, 13 Jul 2015 13:25:51 +1000 Subject: [PATCH 489/933] add range package Adding the `range` package, of which I am co-maintainer. Robert Massaioli asked me to add it under his name. --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d29e7443..ce520370 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1153,6 +1153,9 @@ packages: - hlibsass - hsass + "Robert Massaioli robertmassaioli@gmail.com": + - range + "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 From e5c08607cc8657810a58808174b55432d34d9d37 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 13 Jul 2015 18:02:31 +0300 Subject: [PATCH 490/933] Expected test failure for range #681 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ce520370..4c9fa2b3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1589,6 +1589,9 @@ expected-test-failures: # https://github.com/rcallahan/xlsior/issues/1 - xlsior + # https://github.com/fpco/stackage/issues/681 + - range + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 2101c7a7beaf545354b950aa6ab5559e85a0dc8d Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 13 Jul 2015 18:37:44 +0300 Subject: [PATCH 491/933] Try out hprotoc again --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4c9fa2b3..0c0aeefc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1128,7 +1128,7 @@ packages: "Kostiantyn Rybnikov @k-bx": - protocol-buffers - # - hprotoc + - hprotoc - protocol-buffers-descriptor "Rob O'Callahan ropoctl@gmail.com": From 3509001d2244a66b8cfb82324b5cbe047c8e4175 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Tue, 14 Jul 2015 16:12:52 +0200 Subject: [PATCH 492/933] Upper bound for #682 --- build-constraints.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0c0aeefc..04f76946 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1145,10 +1145,10 @@ packages: "Sven Heyll @sheyll": - b9 - + "Will Thompson @wjt": - bustle - + "Jakub Fijałkowski kuba@codinginfinity.me @Fiolek_": - hlibsass - hsass @@ -1203,6 +1203,9 @@ packages: # https://github.com/fpco/stackage/issues/672 - reflection < 2 + # https://github.com/fpco/stackage/issues/682 + - vector < 0.11 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From e780c44aba18233f151bd359463c5cb283bbb125 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 14 Jul 2015 20:23:04 +0300 Subject: [PATCH 493/933] Close issue #681 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 04f76946..2b24079f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1592,9 +1592,6 @@ expected-test-failures: # https://github.com/rcallahan/xlsior/issues/1 - xlsior - # https://github.com/fpco/stackage/issues/681 - - range - # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From ae71b7b8815273457ebc5195344e136365e858bd Mon Sep 17 00:00:00 2001 From: Omari Norman Date: Tue, 14 Jul 2015 18:34:21 -0400 Subject: [PATCH 494/933] Add rainbox 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 2b24079f..ba126f75 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -152,6 +152,7 @@ packages: "Omari Norman ": - rainbow + - rainbox - multiarg - prednote - cartel From 6fb94d56196b8f10bb2dab3bf3a2cd17ab101643 Mon Sep 17 00:00:00 2001 From: Omari Norman Date: Tue, 14 Jul 2015 20:20:27 -0400 Subject: [PATCH 495/933] Add pipes-cliff 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 ba126f75..90a69848 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -153,6 +153,7 @@ packages: "Omari Norman ": - rainbow - rainbox + - pipes-cliff - multiarg - prednote - cartel From 4e959fd661fa23fa4f34e071b919b208c6e26da3 Mon Sep 17 00:00:00 2001 From: Omari Norman Date: Tue, 14 Jul 2015 20:22:43 -0400 Subject: [PATCH 496/933] Add anonymous-sums 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 90a69848..476fe63d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -154,6 +154,7 @@ packages: - rainbow - rainbox - pipes-cliff + - anonymous-sums - multiarg - prednote - cartel From aa38aec2400eaf8f2c786570cdae193817ca8505 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Wed, 15 Jul 2015 17:32:41 +0200 Subject: [PATCH 497/933] Upper bound for #684 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 476fe63d..0fb28982 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1209,6 +1209,9 @@ packages: # https://github.com/fpco/stackage/issues/682 - vector < 0.11 + # https://github.com/fpco/stackage/issues/684 + - cmark < 0.4 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 9e73b85810d8196e0e28043343b5b7ec39f46588 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Wed, 15 Jul 2015 19:34:17 +0200 Subject: [PATCH 498/933] Remove upper bound and close #684 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0fb28982..476fe63d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1209,9 +1209,6 @@ packages: # https://github.com/fpco/stackage/issues/682 - vector < 0.11 - # https://github.com/fpco/stackage/issues/684 - - cmark < 0.4 - # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From d9ac69922dbce71bd9627a8301b559120487c8bd Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Wed, 15 Jul 2015 22:15:59 +0200 Subject: [PATCH 499/933] drop machines and free upper bounds (#590) --- build-constraints.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 476fe63d..10fef358 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1176,8 +1176,6 @@ packages: # https://github.com/fpco/stackage/issues/590 - bifunctors < 5 - profunctors < 5 - - machines < 0.5 - - free < 4.12 # https://github.com/fpco/stackage/issues/602 - errors < 2 From 7f588914aec71aca419585da7020be347b0e9219 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Wed, 15 Jul 2015 22:26:52 +0200 Subject: [PATCH 500/933] Disable netwire to upgrade 5 other packages --- build-constraints.yaml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 10fef358..ec2fd306 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1087,7 +1087,8 @@ packages: - nationstates "Mathieu Boespflug @mboes": - - netwire + # https://github.com/fpco/stackage/issues/590 + # netwire - th-lift "Christopher Reichert @creichert": @@ -1169,13 +1170,10 @@ packages: - smoothie < 0.3.2 # https://github.com/fpco/stackage/issues/588 - - semigroupoids < 4.5 - - semigroupoid-extras < 4.5 - - lens < 4.10 + - lens < 4.12 # https://github.com/fpco/stackage/issues/590 - - bifunctors < 5 - - profunctors < 5 + - profunctors < 5.1 # https://github.com/fpco/stackage/issues/602 - errors < 2 From 8182cc2aa74d36c6c6eba2064d5f2b8105d62ab6 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Wed, 15 Jul 2015 22:48:38 +0200 Subject: [PATCH 501/933] Remove another upper bound an close #590 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ec2fd306..2e370844 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1172,9 +1172,6 @@ packages: # https://github.com/fpco/stackage/issues/588 - lens < 4.12 - # https://github.com/fpco/stackage/issues/590 - - profunctors < 5.1 - # https://github.com/fpco/stackage/issues/602 - errors < 2 From 20d1a5fa5e6896f4dbec2cb6554733c74bf9790e Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Wed, 15 Jul 2015 22:54:27 +0200 Subject: [PATCH 502/933] Move upper bound to #686, closes #588 --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2e370844..60ef267d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1169,9 +1169,6 @@ packages: - aeson < 0.8.1.0 - smoothie < 0.3.2 - # https://github.com/fpco/stackage/issues/588 - - lens < 4.12 - # https://github.com/fpco/stackage/issues/602 - errors < 2 @@ -1202,6 +1199,9 @@ packages: # https://github.com/fpco/stackage/issues/682 - vector < 0.11 + # https://github.com/fpco/stackage/issues/686 + - lens < 4.12 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 58e299bb06df90f049357af77be19e0e4a53ec14 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Wed, 15 Jul 2015 23:18:02 +0200 Subject: [PATCH 503/933] Remove upper bound and close #664 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 60ef267d..57de6260 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1181,9 +1181,6 @@ packages: # https://github.com/fpco/stackage/issues/654 - generic-deriving < 1.8 - # https://github.com/fpco/stackage/issues/664 - - fast-logger < 2.4 - # https://github.com/fpco/stackage/issues/666 - tar < 0.4.2 From c0925e6c4ab41744bc31130551f01e6826e8329b Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Wed, 15 Jul 2015 23:21:25 +0200 Subject: [PATCH 504/933] Map analytics to ekmett (#654) --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 57de6260..10699b1f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1674,3 +1674,5 @@ github-users: - JoeyEremondi prowdsponsor: - meteficha + analytics: + - ekmett From 1c9c5f9cfab2e7a80efb03d918d5d799f776d5c9 Mon Sep 17 00:00:00 2001 From: Dimitri 'phaazon' Sabadie Date: Thu, 16 Jul 2015 20:25:20 +0200 Subject: [PATCH 505/933] Added zero. --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 10699b1f..4d4d520c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -611,6 +611,7 @@ packages: - monad-journal - msi-kb-backlit - smoothie + - zero "Thomas Schilling ": - ghc-syb-utils From 255d0f9ca8101d76386ef79c24c76dbba665f5b7 Mon Sep 17 00:00:00 2001 From: Index Int Date: Fri, 17 Jul 2015 05:16:51 +0300 Subject: [PATCH 506/933] Update build-constraints.yaml --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 10699b1f..247711e2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1160,6 +1160,9 @@ packages: "Robert Massaioli robertmassaioli@gmail.com": - range + "Index Int ": + - transformers-lift + "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 From d0b16ce9f803ab4b3090c1e7ec643eabe1144876 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Fri, 17 Jul 2015 09:30:36 +0200 Subject: [PATCH 507/933] Remove upper bound and close #653 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 10699b1f..1f26df4c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1175,9 +1175,6 @@ packages: # https://github.com/gtk2hs/gtk2hs/issues/109 - gtk < 0.13.8 - # https://github.com/fpco/stackage/issues/653 - - base-orphans < 0.4 - # https://github.com/fpco/stackage/issues/654 - generic-deriving < 1.8 From bc276aeb14fa1df1843248933ab18b0f641fc874 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Fri, 17 Jul 2015 15:33:35 +0200 Subject: [PATCH 508/933] Re-enable tests for wai-logger and hyperloglog --- build-constraints.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7e1831e0..7f008ce8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1380,7 +1380,6 @@ expected-test-failures: # Problems with doctest and sandboxing - warp - - wai-logger # https://github.com/fpco/stackage/issues/163 - hTalos @@ -1524,9 +1523,6 @@ expected-test-failures: # https://github.com/simonmar/alex/issues/62 GHC 7.10 - alex - # https://github.com/ekmett/hyperloglog/issues/10 GHC 7.10 - - hyperloglog - # https://github.com/acid-state/safecopy/issues/25 GHC 7.10 - safecopy From 62770fbdf31bfd9b3b1d98b7d6fe527e5853db10 Mon Sep 17 00:00:00 2001 From: Juan Pedro Villa Isaza Date: Fri, 17 Jul 2015 12:08:07 -0500 Subject: [PATCH 509/933] Add the inflections package --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7f008ce8..cea7b9ae 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1164,6 +1164,9 @@ packages: "Index Int ": - transformers-lift + "Juan Pedro Villa Isaza jvilla@stackbuilders.com @jpvillaisaza": + - inflections + "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 From bdb9353d21fd4117b146973ed75b088baf7dc550 Mon Sep 17 00:00:00 2001 From: Juan Pedro Villa Isaza Date: Fri, 17 Jul 2015 16:13:47 -0500 Subject: [PATCH 510/933] Add the twitter-feed package --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index cea7b9ae..e4436dbc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1166,6 +1166,7 @@ packages: "Juan Pedro Villa Isaza jvilla@stackbuilders.com @jpvillaisaza": - inflections + - twitter-feed "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 From 2fe78ead569d4c002b5d7cfbb6759d2e78cbf757 Mon Sep 17 00:00:00 2001 From: Scott Murphy Date: Fri, 17 Jul 2015 19:18:07 -0500 Subject: [PATCH 511/933] added xlsx and binary search to stackage @qrilka --- build-constraints.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index cea7b9ae..c12234e1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1,5 +1,4 @@ ghc-major-version: "7.10" - # Constraints for brand new builds packages: "Michael Snoyman michael@snoyman.com @snoyberg": @@ -1167,6 +1166,10 @@ packages: "Juan Pedro Villa Isaza jvilla@stackbuilders.com @jpvillaisaza": - inflections + "Scott Murphy scott.murphy@plowtech.net @smurphy8": + - binary-search + - xlsx + "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 From 735d9df31004c0cf57c9a24978b871516c06a09b Mon Sep 17 00:00:00 2001 From: Index Int Date: Sat, 18 Jul 2015 05:27:43 +0300 Subject: [PATCH 512/933] Add ether --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index e4436dbc..76a09899 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1163,6 +1163,7 @@ packages: "Index Int ": - transformers-lift + - ether "Juan Pedro Villa Isaza jvilla@stackbuilders.com @jpvillaisaza": - inflections From f01a6c1bccac7708860c3eae129a1c0d66c9ccc5 Mon Sep 17 00:00:00 2001 From: Sergey Alirzaev Date: Sat, 18 Jul 2015 21:12:13 +0300 Subject: [PATCH 513/933] Update build-constraints.yaml --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 76a09899..d84e1f0d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1168,6 +1168,10 @@ packages: "Juan Pedro Villa Isaza jvilla@stackbuilders.com @jpvillaisaza": - inflections - twitter-feed + + "Sergey Alirzaev ": + - monad-peel + - Network-NineP "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 From ecbd5bf060443426202e850f45f486d4a950e2b5 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sun, 19 Jul 2015 01:48:16 +0200 Subject: [PATCH 514/933] Fix flags for NineP/#693 --- build-constraints.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d84e1f0d..91e1b2c5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1168,7 +1168,7 @@ packages: "Juan Pedro Villa Isaza jvilla@stackbuilders.com @jpvillaisaza": - inflections - twitter-feed - + "Sergey Alirzaev ": - monad-peel - Network-NineP @@ -1256,6 +1256,9 @@ package-flags: cabal-rpm: old-locale: false + NineP: + bytestring-in-base: false + # By skipping a test suite, we do not pull in the build dependencies skipped-tests: - ReadArgs # old version of hspec From 02906f9f7cc105344aae50f279001c5f9c00e854 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sun, 19 Jul 2015 01:56:52 +0200 Subject: [PATCH 515/933] Disable inflections test-suite stackbuilders/inflections-hs#10 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 91e1b2c5..85aceebf 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1594,6 +1594,9 @@ expected-test-failures: # https://github.com/rcallahan/xlsior/issues/1 - xlsior + # https://github.com/stackbuilders/inflections-hs/issues/10 + - inflections + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From e37958c830b60592fe26dfa32e44ef0ca9ff721d Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sun, 19 Jul 2015 02:36:28 +0200 Subject: [PATCH 516/933] Disable twitter-feed test-suite stackbuilders/twitter-feed#12 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 85aceebf..27f992f6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1597,6 +1597,9 @@ expected-test-failures: # https://github.com/stackbuilders/inflections-hs/issues/10 - inflections + # https://github.com/stackbuilders/twitter-feed/issues/12 + - twitter-feed + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 2b54876cc7f4d2c809a8a823531cb8b9481c709e Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sun, 19 Jul 2015 05:06:46 +0200 Subject: [PATCH 517/933] Remove upper bound and close #602 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 27f992f6..c8b9ee08 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1182,9 +1182,6 @@ packages: - aeson < 0.8.1.0 - smoothie < 0.3.2 - # https://github.com/fpco/stackage/issues/602 - - errors < 2 - # https://github.com/gtk2hs/gtk2hs/issues/109 - gtk < 0.13.8 From 42813f0687530235b0aabb298e060846cd3626c7 Mon Sep 17 00:00:00 2001 From: Oliver Charles Date: Sun, 19 Jul 2015 10:30:48 +0100 Subject: [PATCH 518/933] Add some of @ocharles' packages to Stackage --- build-constraints.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index c8b9ee08..8e8d6685 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1173,6 +1173,15 @@ packages: - monad-peel - Network-NineP + "Oliver Charles Date: Sun, 19 Jul 2015 10:34:01 +0100 Subject: [PATCH 519/933] Correct a typo to @ocharles' packages --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8e8d6685..4f3cf21f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1173,7 +1173,7 @@ packages: - monad-peel - Network-NineP - "Oliver Charles ": - engine-io - diff3 - digestive-functors-aeson From 6b14ca9df08aa778f6f5349618028a62bdb9e6cb Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sun, 19 Jul 2015 20:59:43 +0200 Subject: [PATCH 520/933] Disable libsystemd-journal, needs libsystemd --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4f3cf21f..3d83fb0d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1178,7 +1178,8 @@ packages: - diff3 - digestive-functors-aeson - exhaustive - - libsystemd-journal + # Needs pkg-config libsystemd + # - libsystemd-journal - network-carbon - socket-io From 931caddcf3e7377505b54a1c17c9defa4121fdf7 Mon Sep 17 00:00:00 2001 From: Scott Murphy Date: Mon, 20 Jul 2015 04:59:48 -0500 Subject: [PATCH 521/933] Added binary-search and xlsx --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c12234e1..8610c018 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1173,7 +1173,7 @@ packages: "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 - + # https://github.com/fpco/stackage/issues/572 - attoparsec < 0.13 - aeson < 0.8.1.0 From 683df37da12914d66b27119e171e684c9d8e2ed8 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 20 Jul 2015 16:38:02 +0300 Subject: [PATCH 522/933] Add yaml explicitly --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 11c6b1d7..3c3b96d2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -52,6 +52,7 @@ packages: - mutable-containers - hpc-coveralls - monad-unlift + - yaml "FP Complete michael@fpcomplete.com @snoyberg": - alex From 77589e1400933c7729f8728d60aa2ad7799fb124 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 20 Jul 2015 16:57:51 +0200 Subject: [PATCH 523/933] Re-enable test-suites for inflections and twitter-feed --- build-constraints.yaml | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3c3b96d2..45c617c9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1184,13 +1184,13 @@ packages: - socket-io "Scott Murphy scott.murphy@plowtech.net @smurphy8": - - binary-search + - binary-search - xlsx - + "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 - + # https://github.com/fpco/stackage/issues/572 - attoparsec < 0.13 - aeson < 0.8.1.0 @@ -1605,12 +1605,6 @@ expected-test-failures: # https://github.com/rcallahan/xlsior/issues/1 - xlsior - # https://github.com/stackbuilders/inflections-hs/issues/10 - - inflections - - # https://github.com/stackbuilders/twitter-feed/issues/12 - - twitter-feed - # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From eda70111fba5b99a34848ea4c16697b7f97b99dd Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 20 Jul 2015 18:53:27 +0300 Subject: [PATCH 524/933] Add helics --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 45c617c9..a912661d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -149,6 +149,7 @@ packages: - wai-middleware-crowd - monad-logger-json - monad-logger-syslog + - helics "Omari Norman ": - rainbow From 96198e0075833598e7381a8c1261733f52558c31 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 20 Jul 2015 19:14:36 +0300 Subject: [PATCH 525/933] Revert "Add helics" This reverts commit eda70111fba5b99a34848ea4c16697b7f97b99dd. --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a912661d..45c617c9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -149,7 +149,6 @@ packages: - wai-middleware-crowd - monad-logger-json - monad-logger-syslog - - helics "Omari Norman ": - rainbow From 712ba7370ce5dff2ac4f3aa0933a23f321d60a30 Mon Sep 17 00:00:00 2001 From: Omari Norman Date: Mon, 20 Jul 2015 18:21:22 -0400 Subject: [PATCH 526/933] Add Earley to Omari Norman packages --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 45c617c9..fcda3ba4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -158,6 +158,7 @@ packages: - multiarg - prednote - cartel + - Earley "Neil Mitchell": - hlint From ca9047b70a5bf3c52f13758cb92b9bace930bd8b Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Tue, 21 Jul 2015 13:17:29 -0700 Subject: [PATCH 527/933] Added upper bound: http-conduit < 2.1.6 per #699 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 45c617c9..7a3e867e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1220,6 +1220,9 @@ packages: # https://github.com/fpco/stackage/issues/686 - lens < 4.12 + # https://github.com/fpco/stackage/issues/699 + - http-conduit < 2.1.6 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From c6872e5bf29988ab2c484ac2d0854d9ebfc06dce Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 21 Jul 2015 23:49:41 +0300 Subject: [PATCH 528/933] Add some OS-specific packages for fsnotify commercialhaskell/stack#594 --- build-constraints.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7a3e867e..c0a84426 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -150,6 +150,11 @@ packages: - monad-logger-json - monad-logger-syslog + - fsnotify + - hinotify + - hfsevents + - Win32-notify + "Omari Norman ": - rainbow - rainbox @@ -1273,6 +1278,12 @@ package-flags: NineP: bytestring-in-base: false +# Used for packages that cannot be built on Linux +skipped-builds: + - hfsevents + - Win32 + - Win32-notify + # By skipping a test suite, we do not pull in the build dependencies skipped-tests: - ReadArgs # old version of hspec From f094e80c0d1b5c6879a9a2322875bcf500e789f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antoni=20Silvestre=20Padr=C3=B3s?= Date: Wed, 22 Jul 2015 00:13:39 +0200 Subject: [PATCH 529/933] Adding haskell-neo4j-client --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index c0a84426..6c1f6d6d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1192,6 +1192,10 @@ packages: - binary-search - xlsx + "Antoni Silvestre ": + # Test suite needs a running neo4j server with auth disabled + - haskell-neo4j-client + "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 From 35887a264a2666f38b0602c88a9b40fe120d7039 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antoni=20Silvestre=20Padr=C3=B3s?= Date: Wed, 22 Jul 2015 00:16:28 +0200 Subject: [PATCH 530/933] Extra comment --- build-constraints.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6c1f6d6d..feadd371 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1192,8 +1192,10 @@ packages: - binary-search - xlsx - "Antoni Silvestre ": + "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 + # package name is haskell-neo4j-client github name is haskell-neo4j-rest-client - haskell-neo4j-client "Stackage upper bounds": From 8091161fe1da5279399acf1fb5254043a0c77c09 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 22 Jul 2015 07:44:07 -0700 Subject: [PATCH 531/933] lifting constraint on http-conduit #699 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c0a84426..3ad280a2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1225,9 +1225,6 @@ packages: # https://github.com/fpco/stackage/issues/686 - lens < 4.12 - # https://github.com/fpco/stackage/issues/699 - - http-conduit < 2.1.6 - # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 7f4ff85ddd6fe1cc9b8e274993e38302720dc47d Mon Sep 17 00:00:00 2001 From: Andrew Martin Date: Wed, 22 Jul 2015 10:58:09 -0400 Subject: [PATCH 532/933] Added yesod-table --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3ad280a2..e8d4af3c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -445,6 +445,9 @@ packages: - turtle - foldl + "Andrew Thaddeus Martin ": + - yesod-table + "Arash Rouhani ": - yesod-text-markdown From 57ca8a5f6dc0778269614b9425e8512f1fdb9867 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 22 Jul 2015 08:01:51 -0700 Subject: [PATCH 533/933] Add upper bound: shelly < 1.6.3 per #701 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3ad280a2..3192b58c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1225,6 +1225,9 @@ packages: # https://github.com/fpco/stackage/issues/686 - lens < 4.12 + # https://github.com/fpco/stackage/issues/701 + - shelly < 1.6.3 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 1757de1d67eaeb1a54fd31ef9eaaeec47bf634ea Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 23 Jul 2015 04:23:04 -0700 Subject: [PATCH 534/933] Add upper bound: warp < 3.1 per #703 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 64e25d83..b88bdf63 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1238,6 +1238,9 @@ packages: # https://github.com/fpco/stackage/issues/701 - shelly < 1.6.3 + # https://github.com/fpco/stackage/issues/703 + - warp < 3.1 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 66739ee20ab5ff2f9c1a486111c72aa7da1ca999 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 23 Jul 2015 04:30:06 -0700 Subject: [PATCH 535/933] Revert "Add upper bound: shelly < 1.6.3 per #701" This reverts commit 57ca8a5f6dc0778269614b9425e8512f1fdb9867. --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b88bdf63..ec9fc8f5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1235,9 +1235,6 @@ packages: # https://github.com/fpco/stackage/issues/686 - lens < 4.12 - # https://github.com/fpco/stackage/issues/701 - - shelly < 1.6.3 - # https://github.com/fpco/stackage/issues/703 - warp < 3.1 From 1e9fefb4c8c49d1e4f2be570e5f060c53aefb8ea Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 23 Jul 2015 04:48:27 -0700 Subject: [PATCH 536/933] Tracking constraint "http2 < 1.0" via #668 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ec9fc8f5..29df1be0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1220,7 +1220,7 @@ packages: # https://github.com/fpco/stackage/issues/666 - tar < 0.4.2 - # https://github.com/alcidesv/second-transfer/issues/2 + # https://github.com/fpco/stackage/issues/668 - http2 < 1.0 # https://github.com/fpco/stackage/issues/669 From 04ee6913b7e00f19afcdd3597f3deb0e17eede5c Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 23 Jul 2015 04:56:06 -0700 Subject: [PATCH 537/933] Add upper bound: warp-tls < 3.1 per #703 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 29df1be0..a51f3777 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1237,6 +1237,7 @@ packages: # https://github.com/fpco/stackage/issues/703 - warp < 3.1 + - warp-tls < 3.1 # Package flags are applied to individual packages, and override the values of # global-flags From c8784dbf296b6c06036962738cb6e9e01955eb1d Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 23 Jul 2015 05:11:05 -0700 Subject: [PATCH 538/933] Lift constraint "http2 < 1.0" per #668 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a51f3777..79d7b3fa 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1220,9 +1220,6 @@ packages: # https://github.com/fpco/stackage/issues/666 - tar < 0.4.2 - # https://github.com/fpco/stackage/issues/668 - - http2 < 1.0 - # https://github.com/fpco/stackage/issues/669 - linear < 1.19 From f000ed70132bd9714fc89ed639ed81598e08cfe0 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 23 Jul 2015 06:19:06 -0700 Subject: [PATCH 539/933] disable yesod-table per #704 --- build-constraints.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 79d7b3fa..9e496aae 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -447,7 +447,9 @@ packages: - foldl "Andrew Thaddeus Martin ": - - yesod-table + [] + # https://github.com/fpco/stackage/issues/704 + # - yesod-table GHC 7.10 "Arash Rouhani ": - yesod-text-markdown From 09fe03a85296582c2fe4f8934cf62bb8126125ba Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 23 Jul 2015 06:24:41 -0700 Subject: [PATCH 540/933] skip haskell-neo4j-client test suite, requires running server --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9e496aae..38642938 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1380,6 +1380,9 @@ skipped-tests: # https://github.com/fpco/stackage/issues/669 - linear + # Test suite needs a running neo4j server with auth disabled + - haskell-neo4j-client + # Tests which we should build and run, but which are expected to fail. We # should not fail a build based on a test failure for one of these packages. expected-test-failures: From dd6da2c2b667e6074b2f4ccbac7b2061824950e4 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 23 Jul 2015 07:58:27 -0700 Subject: [PATCH 541/933] Revert "disable yesod-table per #704" This reverts commit f000ed70132bd9714fc89ed639ed81598e08cfe0. --- build-constraints.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 38642938..cee50898 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -447,9 +447,7 @@ packages: - foldl "Andrew Thaddeus Martin ": - [] - # https://github.com/fpco/stackage/issues/704 - # - yesod-table GHC 7.10 + - yesod-table "Arash Rouhani ": - yesod-text-markdown From ec66551ea30ec78de7e0655647a983ed89e2a888 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 23 Jul 2015 20:58:04 -0700 Subject: [PATCH 542/933] @DanBurton +lambdabot I'm curious to see how much work Travis says needs to be done to get lambdabot in here. --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index cee50898..bfbf5371 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -429,6 +429,7 @@ packages: - runmemo - tardis - lens-family-th + - lambdabot "Daniel Díaz dhelta.diaz@gmail.com @Daniel-Diaz": - HaTeX From 82d0d7abe743c277ad96558b2aa3bc5c8172c185 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 23 Jul 2015 21:44:26 -0700 Subject: [PATCH 543/933] reflection bound can be lifted with lens bound. #686; closes #672 --- build-constraints.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index cee50898..743dd27f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1223,14 +1223,12 @@ packages: # https://github.com/fpco/stackage/issues/669 - linear < 1.19 - # https://github.com/fpco/stackage/issues/672 - - reflection < 2 - # https://github.com/fpco/stackage/issues/682 - vector < 0.11 # https://github.com/fpco/stackage/issues/686 - lens < 4.12 + - reflection < 2 # https://github.com/fpco/stackage/issues/703 - warp < 3.1 From 19e752b05e5880be0309504f46d9139af45763c1 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 23 Jul 2015 22:09:16 -0700 Subject: [PATCH 544/933] Add upper bound: extra < 1.4 per #706 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 743dd27f..932fc435 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1234,6 +1234,9 @@ packages: - warp < 3.1 - warp-tls < 3.1 + # https://github.com/fpco/stackage/issues/706 + - extra < 1.4 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 1bc2552cd8464e3aa1c186b798bb8e9b83c36519 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 23 Jul 2015 22:10:39 -0700 Subject: [PATCH 545/933] Remove upper bound on gtk, it appears gtk2hs/gtk2hs#109 has been fixed --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 932fc435..f0d50f7c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1211,9 +1211,6 @@ packages: - aeson < 0.8.1.0 - smoothie < 0.3.2 - # https://github.com/gtk2hs/gtk2hs/issues/109 - - gtk < 0.13.8 - # https://github.com/fpco/stackage/issues/654 - generic-deriving < 1.8 From 65b04b9b16f72b433e5fd8223a59003f5c839765 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Fri, 24 Jul 2015 08:40:05 -0700 Subject: [PATCH 546/933] Revert "Add upper bound: extra < 1.4 per #706" This reverts commit 19e752b05e5880be0309504f46d9139af45763c1. --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f0d50f7c..36ddabdd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1231,9 +1231,6 @@ packages: - warp < 3.1 - warp-tls < 3.1 - # https://github.com/fpco/stackage/issues/706 - - extra < 1.4 - # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 37906aa3a7f7cf42293c835ba98af5d648d34a4b Mon Sep 17 00:00:00 2001 From: Alexey Khudyakov Date: Fri, 24 Jul 2015 18:46:30 +0300 Subject: [PATCH 547/933] Add Alexey Khudyakov's packages Also histogram-fill moved from FP Complete to me --- build-constraints.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f0d50f7c..44938554 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -82,7 +82,6 @@ packages: #- fpco-api - gtk2hs-buildtools - happy - - histogram-fill - hmatrix - hmatrix-gsl - hxt @@ -1202,6 +1201,12 @@ packages: # package name is haskell-neo4j-client github name is haskell-neo4j-rest-client - haskell-neo4j-client + "Alexey Khudyakov @Shimuuar": + - histogram-fill + - fixed-vector + - fixed-vector-hetero + - type-level-numbers + "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 From 62d4f5cf6e70c5c72ea86aa37b5066b6f43ff5b3 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Fri, 24 Jul 2015 08:48:45 -0700 Subject: [PATCH 548/933] Remove constraint "smoothie < 0.3.2" #572 #669 --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 36ddabdd..7b376808 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1209,7 +1209,6 @@ packages: # https://github.com/fpco/stackage/issues/572 - attoparsec < 0.13 - aeson < 0.8.1.0 - - smoothie < 0.3.2 # https://github.com/fpco/stackage/issues/654 - generic-deriving < 1.8 From 9d77b7cff03f67365ac87f7f2a1982dafa36ef13 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Fri, 24 Jul 2015 08:51:27 -0700 Subject: [PATCH 549/933] Remove constraint "linear < 1.19", closes #669 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7b376808..e84024f2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1216,9 +1216,6 @@ packages: # https://github.com/fpco/stackage/issues/666 - tar < 0.4.2 - # https://github.com/fpco/stackage/issues/669 - - linear < 1.19 - # https://github.com/fpco/stackage/issues/682 - vector < 0.11 From 35cd959dc8978d1768c34a3f0d3ec6a43cd3bc40 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Fri, 24 Jul 2015 09:45:12 -0700 Subject: [PATCH 550/933] unskip linear tests #622 #669 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e84024f2..2117a3a8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1366,9 +1366,6 @@ skipped-tests: # https://github.com/fpco/stackage/issues/668 - second-transfer - # https://github.com/fpco/stackage/issues/669 - - linear - # Test suite needs a running neo4j server with auth disabled - haskell-neo4j-client From 9dfbc5ce39d4d75a7833572b713858a1b6f10705 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Fri, 24 Jul 2015 10:15:18 -0700 Subject: [PATCH 551/933] Disable fixed-vector test suite due to dep on old doctest #622 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ecd4c58b..ecd95dee 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1364,6 +1364,7 @@ skipped-tests: - hyphenation - machines - semigroupoids + - fixed-vector # https://github.com/kaizhang/clustering/issues/2 - clustering From c2b456a01adf9e6995f6d4e9a7e7389f8993b505 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Fri, 24 Jul 2015 12:10:19 -0700 Subject: [PATCH 552/933] restore git-annex #638 --- build-constraints.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ecd95dee..2a1244da 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -555,9 +555,7 @@ packages: #- hopenpgp-tools GHC 7.10, via syb-with-class "Joey Hess ": - [] - # https://github.com/fpco/stackage/issues/638 - # - git-annex + - git-annex # https://github.com/fpco/stackage/issues/160 "Ketil Malde": From bc7fa926a843cac1e285e28768b0ae88ae0db388 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sat, 25 Jul 2015 10:56:07 -0700 Subject: [PATCH 553/933] Remove constraint "generic-deriving < 1.8", closes #654 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index da8c40b0..412a757a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1214,9 +1214,6 @@ packages: - attoparsec < 0.13 - aeson < 0.8.1.0 - # https://github.com/fpco/stackage/issues/654 - - generic-deriving < 1.8 - # https://github.com/fpco/stackage/issues/666 - tar < 0.4.2 From c9c6e7f40bcdc16d3f85c5f6502ee0259408e14a Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sat, 25 Jul 2015 11:23:36 -0700 Subject: [PATCH 554/933] Remove constraint "tar < 0.4.2", closes #666 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 412a757a..0ef4c60d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1214,9 +1214,6 @@ packages: - attoparsec < 0.13 - aeson < 0.8.1.0 - # https://github.com/fpco/stackage/issues/666 - - tar < 0.4.2 - # https://github.com/fpco/stackage/issues/682 - vector < 0.11 From d3752582851fb4cc0134ff94dcf027d41465a484 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sat, 25 Jul 2015 11:34:34 -0700 Subject: [PATCH 555/933] move haskell-neo4j-client tests from "skipped" to "expected failure" #700 --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0ef4c60d..aaf2f4ab 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1365,9 +1365,6 @@ skipped-tests: # https://github.com/fpco/stackage/issues/668 - second-transfer - # Test suite needs a running neo4j server with auth disabled - - haskell-neo4j-client - # Tests which we should build and run, but which are expected to fail. We # should not fail a build based on a test failure for one of these packages. expected-test-failures: @@ -1617,6 +1614,9 @@ expected-test-failures: # https://github.com/rcallahan/xlsior/issues/1 - xlsior + # Test suite needs a running neo4j server with auth disabled + - haskell-neo4j-client + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From d79453271b3118edfe9fbfaf621d963a712d6a4d Mon Sep 17 00:00:00 2001 From: RyanGlScott Date: Sat, 25 Jul 2015 16:45:27 -0500 Subject: [PATCH 556/933] Add base-orphans, invariant, keycode, text-show --- build-constraints.yaml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index aaf2f4ab..f1ff7f5a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -956,7 +956,6 @@ packages: "Noam Lewis @sinelaw": - xml-to-json - xml-to-json-fast - - base-orphans - digits "Tim Baumann @timjb": @@ -1198,7 +1197,7 @@ packages: # 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 # package name is haskell-neo4j-client github name is haskell-neo4j-rest-client - - haskell-neo4j-client + - haskell-neo4j-client "Alexey Khudyakov @Shimuuar": - histogram-fill @@ -1206,6 +1205,12 @@ packages: - fixed-vector-hetero - type-level-numbers + "Ryan Scott @RyanGlScott": + - base-orphans + - invariant + - keycode + - text-show + "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 From 82e5ae65be5dcbe0f754da0fc0adb1c6662d0b13 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sat, 25 Jul 2015 15:22:19 -0700 Subject: [PATCH 557/933] Add upper bound: fsmotify < 0.2 per #710 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index aaf2f4ab..84021792 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1225,6 +1225,9 @@ packages: - warp < 3.1 - warp-tls < 3.1 + # https://github.com/fpco/stackage/issues/710 + - fsnotify < 0.2 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 351a4294bc3143a67c9f85d3b0781bf587bbf680 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sat, 25 Jul 2015 15:35:35 -0700 Subject: [PATCH 558/933] Restore serversession-frontent-wai --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 84021792..a1797818 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -402,8 +402,7 @@ packages: - serversession-backend-persistent - serversession-backend-redis - serversession-frontend-snap - # - # - serversession-frontend-wai + - serversession-frontend-wai - serversession-frontend-yesod - thumbnail-plus - yesod-fb From 08dd69871d746af3627322bca136158b8a8769f0 Mon Sep 17 00:00:00 2001 From: Matthew Pickering Date: Sun, 26 Jul 2015 16:56:52 +0200 Subject: [PATCH 559/933] Add refact, servant-pandoc --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7117bd67..8dfb7d63 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1210,6 +1210,10 @@ packages: - keycode - text-show + "Matthew Pickering @mpickering": + - refact + - servant-pandoc + "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 From a8cc1a60b55f919da6d47a1df0076271969f7e76 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sun, 26 Jul 2015 10:17:06 -0700 Subject: [PATCH 560/933] Removed constraints "lens < 4.12" and "reflection < 2", closes #686 --- build-constraints.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7117bd67..ef688440 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1221,10 +1221,6 @@ packages: # https://github.com/fpco/stackage/issues/682 - vector < 0.11 - # https://github.com/fpco/stackage/issues/686 - - lens < 4.12 - - reflection < 2 - # https://github.com/fpco/stackage/issues/703 - warp < 3.1 - warp-tls < 3.1 From c099a2454ee9440f7742cc16686502b077f5ff6e Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sun, 26 Jul 2015 10:26:51 -0700 Subject: [PATCH 561/933] Restore Chart-diagrams, see #541 --- build-constraints.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ef688440..ed9f0657 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -63,10 +63,7 @@ packages: - cairo - cassava - Chart - - # https://github.com/fpco/stackage/issues/541 - # - Chart-diagrams - + - Chart-diagrams - compdata - configurator - convertible From d37ad141b664e90280f148802d86f70b32c90a19 Mon Sep 17 00:00:00 2001 From: Kirill Zaborsky Date: Sun, 26 Jul 2015 22:49:53 +0300 Subject: [PATCH 562/933] Taken over authorship of xlsx package --- build-constraints.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ed9f0657..1c0a1ba9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1187,7 +1187,6 @@ packages: "Scott Murphy scott.murphy@plowtech.net @smurphy8": - binary-search - - xlsx "Antoni Silvestre @asilvestre": # Test suite needs a running neo4j server with auth disabled @@ -1206,6 +1205,9 @@ packages: - invariant - keycode - text-show + + "Kirill Zaborsky @qrilka" + - xlsx "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 From 3b8df22e63cea3e7804adfddab53e1bc64cb2039 Mon Sep 17 00:00:00 2001 From: Alexander Thiemann Date: Mon, 27 Jul 2015 00:24:50 +0200 Subject: [PATCH 563/933] add hvect, highjson, validate-input, users-persistent --- build-constraints.yaml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ed9f0657..26a88851 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -708,14 +708,18 @@ packages: - prefix-units "Alexander Thiemann ": - - graph-core - - reroute - Spock - Spock-digestive - Spock-worker + - graph-core + - highjson + - hvect + - reroute - users - - users-test + - users-persistent - users-postgresql-simple + - users-test + - validate-input "Joey Eremondi ": - aeson-pretty From 3f15cec85b30a14df01a01a8bc31f27501a60c8a Mon Sep 17 00:00:00 2001 From: Kirill Zaborsky Date: Mon, 27 Jul 2015 08:32:48 +0300 Subject: [PATCH 564/933] Added missing colon --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1c0a1ba9..20880af3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1206,7 +1206,7 @@ packages: - keycode - text-show - "Kirill Zaborsky @qrilka" + "Kirill Zaborsky @qrilka": - xlsx "Stackage upper bounds": From a0071dc07df009d7d0204bb15770518f4e1e6131 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 28 Jul 2015 00:16:20 +0900 Subject: [PATCH 565/933] restrict reroute < 0.3 (#714) reroute 0.3 no longer exports Data.HVect which breaks Spock --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 26a88851..0bb64032 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -714,7 +714,8 @@ packages: - graph-core - highjson - hvect - - reroute + # https://github.com/fpco/stackage/issues/714 + - reroute < 0.3 - users - users-persistent - users-postgresql-simple From 8287a5c35d7956cd9d4bb9ccac1b5099e385bc9f Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 28 Jul 2015 01:16:14 +0900 Subject: [PATCH 566/933] Revert "restrict reroute < 0.3 (#714)" should be fixed with Spock-0.7.11 This reverts commit a0071dc07df009d7d0204bb15770518f4e1e6131. --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0bb64032..26a88851 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -714,8 +714,7 @@ packages: - graph-core - highjson - hvect - # https://github.com/fpco/stackage/issues/714 - - reroute < 0.3 + - reroute - users - users-persistent - users-postgresql-simple From 6a4d2212c86ec84dd777356fc7bae75b5fdc9280 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Mon, 27 Jul 2015 12:27:43 -0700 Subject: [PATCH 567/933] Added constraint "postgresql-libpq < 0.9.1" per #715 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 26a88851..e2868a5d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1229,6 +1229,9 @@ packages: # https://github.com/fpco/stackage/issues/710 - fsnotify < 0.2 + # https://github.com/fpco/stackage/issues/715 + - postgresql-libpq < 0.9.1 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 005bc2267912d5d7db28a4c9f8735b4ffcfc3525 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 28 Jul 2015 11:24:29 +0900 Subject: [PATCH 568/933] Revert: Added constraint "postgresql-libpq < 0.9.1" per #715 postgresql-libpq-0.9.1.1 should fix this This reverts commit 6a4d2212c86ec84dd777356fc7bae75b5fdc9280. --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e2868a5d..26a88851 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1229,9 +1229,6 @@ packages: # https://github.com/fpco/stackage/issues/710 - fsnotify < 0.2 - # https://github.com/fpco/stackage/issues/715 - - postgresql-libpq < 0.9.1 - # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From e7185bf70bb5ccb27710cd96f5f73198d871eaea Mon Sep 17 00:00:00 2001 From: Kostiantyn Rybnikov Date: Tue, 28 Jul 2015 22:17:22 +0300 Subject: [PATCH 569/933] Add few packages --- build-constraints.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4bf5099e..ccb444b0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1141,6 +1141,13 @@ packages: - protocol-buffers - hprotoc - protocol-buffers-descriptor + - ekg-core + - digits + - hbeanstalk + - iso3166-country-codes + - iso639 + - murmur-hash + - monoidal-containers "Rob O'Callahan ropoctl@gmail.com": - pipes-fastx From b9e7abf07735741b3642c713f909ee7d7c99be51 Mon Sep 17 00:00:00 2001 From: Kostiantyn Rybnikov Date: Tue, 28 Jul 2015 22:40:46 +0300 Subject: [PATCH 570/933] Removed monoidal-containers --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ccb444b0..1a4a95fe 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1147,7 +1147,6 @@ packages: - iso3166-country-codes - iso639 - murmur-hash - - monoidal-containers "Rob O'Callahan ropoctl@gmail.com": - pipes-fastx From 8deb11f33c656d45fba755cda3cf605db44164f2 Mon Sep 17 00:00:00 2001 From: Kostiantyn Rybnikov Date: Tue, 28 Jul 2015 23:00:19 +0300 Subject: [PATCH 571/933] Add back monoidal-containers It should build now (new release pushed to hackage) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1a4a95fe..ccb444b0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1147,6 +1147,7 @@ packages: - iso3166-country-codes - iso639 - murmur-hash + - monoidal-containers "Rob O'Callahan ropoctl@gmail.com": - pipes-fastx From e361be1e185e465df212208c03611413f817a4df Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 29 Jul 2015 13:40:45 +0900 Subject: [PATCH 572/933] keter-1.4.3 depends on fsnotify-0.2.0.2 (#717) --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4bf5099e..a2bd196a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -10,7 +10,8 @@ packages: - conduit-combinators - conduit-extra - hebrew-time - - keter + # https://github.com/fpco/stackage/issues/717 + - keter < 0.4.3 - markdown - mime-mail - mime-mail-ses From 7a099ea7235c8aad42ef6f7f4122581fc635783f Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 29 Jul 2015 13:49:33 +0900 Subject: [PATCH 573/933] Revert "keter-1.4.3 depends on fsnotify-0.2.0.2 (#717)" This reverts commit e361be1e185e465df212208c03611413f817a4df. --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a2bd196a..4bf5099e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -10,8 +10,7 @@ packages: - conduit-combinators - conduit-extra - hebrew-time - # https://github.com/fpco/stackage/issues/717 - - keter < 0.4.3 + - keter - markdown - mime-mail - mime-mail-ses From 046cd14f188fe7f750004f51d246057c459cebd6 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 29 Jul 2015 14:19:42 +0900 Subject: [PATCH 574/933] temporarily disable keter (#717) --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4bf5099e..007cbe83 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -10,7 +10,8 @@ packages: - conduit-combinators - conduit-extra - hebrew-time - - keter + # https://github.com/fpco/stackage/issues/717 + #- keter - markdown - mime-mail - mime-mail-ses From 538d47812041128c566c30d909f2f8b60fd2ccc6 Mon Sep 17 00:00:00 2001 From: Christopher Reichert Date: Wed, 29 Jul 2015 01:45:22 -0500 Subject: [PATCH 575/933] Set `system-filepath` flag to true for Keter. * Re-enable keter. --- build-constraints.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 007cbe83..c9769f6c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -10,8 +10,7 @@ packages: - conduit-combinators - conduit-extra - hebrew-time - # https://github.com/fpco/stackage/issues/717 - #- keter + - keter - markdown - mime-mail - mime-mail-ses @@ -1286,6 +1285,9 @@ package-flags: NineP: bytestring-in-base: false + keter: + system-filepath: true + # Used for packages that cannot be built on Linux skipped-builds: - hfsevents From bad0b32c1b89df0b47277f00bb1e2143b85b713f Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 29 Jul 2015 18:58:08 +0900 Subject: [PATCH 576/933] shelly preserve pipe test failing (#701) Also https://github.com/yesodweb/Shelly.hs/issues/106 --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index b889862d..21d271f5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1385,6 +1385,10 @@ skipped-tests: # https://github.com/fpco/stackage/issues/668 - second-transfer + # https://github.com/fpco/stackage/issues/701 + # https://github.com/yesodweb/Shelly.hs/issues/106 + - shelly + # Tests which we should build and run, but which are expected to fail. We # should not fail a build based on a test failure for one of these packages. expected-test-failures: From 91bbe8b87db13ab6aeb41a3c75cda4b7611d0367 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 29 Jul 2015 19:06:36 +0900 Subject: [PATCH 577/933] run shelly tests but allow failure (#701) --- build-constraints.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 21d271f5..a551ee2f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1385,10 +1385,6 @@ skipped-tests: # https://github.com/fpco/stackage/issues/668 - second-transfer - # https://github.com/fpco/stackage/issues/701 - # https://github.com/yesodweb/Shelly.hs/issues/106 - - shelly - # Tests which we should build and run, but which are expected to fail. We # should not fail a build based on a test failure for one of these packages. expected-test-failures: @@ -1641,6 +1637,10 @@ expected-test-failures: # Test suite needs a running neo4j server with auth disabled - haskell-neo4j-client + # https://github.com/fpco/stackage/issues/701 + # https://github.com/yesodweb/Shelly.hs/issues/106 + - shelly + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 8738de8b03637642cd34d35e4669d4a692510d9d Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 29 Jul 2015 19:07:15 +0900 Subject: [PATCH 578/933] allow wai-logger tests to fail --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index a551ee2f..69751408 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1641,6 +1641,9 @@ expected-test-failures: # https://github.com/yesodweb/Shelly.hs/issues/106 - shelly + # https://github.com/kazu-yamamoto/logger/issues/42 + - wai-logger + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From d239f9261228bcca1eea726b1f058a04ebc1d8ae Mon Sep 17 00:00:00 2001 From: Kostiantyn Rybnikov Date: Wed, 29 Jul 2015 16:26:39 +0300 Subject: [PATCH 579/933] Add regex-pcre, string-class, string-combinators regex-pcre, string-class, string-combinators --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 69751408..a7a5e9b2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1148,6 +1148,9 @@ packages: - iso639 - murmur-hash - monoidal-containers + - regex-pcre + - string-class + - string-combinators "Rob O'Callahan ropoctl@gmail.com": - pipes-fastx From 7ee883b0b9225f211b3942a7dfff3aebd967b9c8 Mon Sep 17 00:00:00 2001 From: Kostiantyn Rybnikov Date: Wed, 29 Jul 2015 17:50:21 +0300 Subject: [PATCH 580/933] Add SHA, data-ordlist, cron --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index a7a5e9b2..4121db0c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1151,6 +1151,9 @@ packages: - regex-pcre - string-class - string-combinators + - SHA + - data-ordlist + - cron "Rob O'Callahan ropoctl@gmail.com": - pipes-fastx From 6592ff08d4ba7786d41d1d6be1e706be9f090555 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 29 Jul 2015 20:55:36 +0300 Subject: [PATCH 581/933] Docker: upgrade to 7.10.2 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1b7d3066..c0c445d0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,9 +14,9 @@ ADD debian-bootstrap.sh /tmp/debian-bootstrap.sh RUN DEBIAN_FRONTEND=noninteractive bash /tmp/debian-bootstrap.sh RUN rm /tmp/debian-bootstrap.sh -RUN DEBIAN_FRONTEND=noninteractive apt-get install -y cabal-install-1.22 ghc-7.10.1 ghc-7.10.1-htmldocs alex-3.1.3 happy-1.19.4 sudo +RUN DEBIAN_FRONTEND=noninteractive apt-get install -y cabal-install-1.22 ghc-7.10.2 ghc-7.10.2-htmldocs alex-3.1.3 happy-1.19.4 sudo -ENV PATH /home/stackage/.cabal/bin:/usr/local/sbin:/usr/local/bin:/opt/ghc/7.10.1/bin:/opt/cabal/1.22/bin:/opt/alex/3.1.3/bin:/opt/happy/1.19.4/bin:/usr/sbin:/usr/bin:/sbin:/bin +ENV PATH /home/stackage/.cabal/bin:/usr/local/sbin:/usr/local/bin:/opt/ghc/7.10.2/bin:/opt/cabal/1.22/bin:/opt/alex/3.1.3/bin:/opt/happy/1.19.4/bin:/usr/sbin:/usr/bin:/sbin:/bin RUN cabal update RUN cabal install hscolour cabal-install && cp $HOME/.cabal/bin/* /usr/local/bin && rm -rf $HOME/.cabal $HOME/.ghc /tmp/stackage From bd55548fa131e5a59acf29357098506bed56aac1 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 31 Jul 2015 17:52:39 +0900 Subject: [PATCH 582/933] drop wai/wai-tls bounds (#703) --- build-constraints.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 69751408..2bcfb2b0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1235,10 +1235,6 @@ packages: # https://github.com/fpco/stackage/issues/682 - vector < 0.11 - # https://github.com/fpco/stackage/issues/703 - - warp < 3.1 - - warp-tls < 3.1 - # https://github.com/fpco/stackage/issues/710 - fsnotify < 0.2 From a32d47a728cd06cff48a1bd27af803a0db2fc0a6 Mon Sep 17 00:00:00 2001 From: Emanuel Borsboom Date: Fri, 31 Jul 2015 10:26:25 -0700 Subject: [PATCH 583/933] Remove git-embed (deprecated in favour of gitrev) --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2bcfb2b0..f4952c58 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -666,7 +666,6 @@ packages: - data-accessor-mtl - file-location - fuzzcheck - - git-embed - haddock-api - here - hlibgit2 From 8f067e33a160f4f30a496447771b67cdc08a1d1b Mon Sep 17 00:00:00 2001 From: James Cook Date: Fri, 31 Jul 2015 15:04:03 -0700 Subject: [PATCH 584/933] Added myself and some of my packages For now, these are the packages of mine that I'm aware that lambdabot depends on. --- build-constraints.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f4952c58..7fa1a132 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1223,6 +1223,14 @@ packages: - refact - servant-pandoc + "James Cook @mokus0": + - dependent-sum + - dependent-sum-template + - dependent-map + - dice + - hstatsd + - misfortune + "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 From 2949c5a76f9bbab819597159110030fc0502d14d Mon Sep 17 00:00:00 2001 From: Andrew Gibiansky Date: Sat, 1 Aug 2015 11:42:06 -0700 Subject: [PATCH 585/933] Add IHaskell and other related packages. --- build-constraints.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f4952c58..ec1d1ebd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1222,6 +1222,19 @@ packages: "Matthew Pickering @mpickering": - refact - servant-pandoc + + "Andrew Gibiansky @gibiansky": + - ihaskell + - ihaskell-aeson + - ihaskell-basic + - ihaskell-blaze + - ihaskell-charts + - ihaskell-diagrams + - ihaskell-hatex + - ihaskell-juicypixels + - ihaskell-magic + - ihaskell-rlangqq + - ihaskell-static-canvas "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 From a87ab402238ca2215474d5b5b7ccb55ad84a6e6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Sicard-Ram=C3=ADrez?= Date: Fri, 31 Jul 2015 10:00:14 -0500 Subject: [PATCH 586/933] Added Agda. @nomeata suggested to add Agda in https://code.google.com/p/agda/issues/detail?id=1479. --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f4952c58..27f85fc0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1223,6 +1223,9 @@ packages: - refact - servant-pandoc + "Andrés Sicard-Ramírez @asr": + - Agda + "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 From 9e0d0cd18a2870ebe0301b3a7f9782647ea16066 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 2 Aug 2015 22:28:31 +0900 Subject: [PATCH 587/933] wait with hakyll-4.7.2.1 (#710) --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7fa1a132..4adaa49b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -187,7 +187,8 @@ packages: "Jasper Van der Jeugt": - blaze-html - blaze-markup - - hakyll + # https://github.com/fpco/stackage/issues/710 + - hakyll < 4.7.2.1 - stylish-haskell - psqueues - websockets From 84840a4b73dde3f066319e551d7dc5869e5e3b95 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 2 Aug 2015 22:33:39 +0900 Subject: [PATCH 588/933] gtk3-0.14 breaks plot-gtk3 (#725) --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4adaa49b..91cd0840 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1662,7 +1662,8 @@ expected-haddock-failures: # Requires build before haddock, which doesn't always happen in incremental # builds. Could consider special-casing this requirement. - gtk - - gtk3 + # https://github.com/fpco/stackage/issues/725 + - gtk3 < 0.14 # Not sure why, but it's a temporary package anyway - Cabal-ide-backend From 395f0e2599a6168a550d8aa59c509f0754725b37 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 2 Aug 2015 22:54:33 +0900 Subject: [PATCH 589/933] put gtk3 < 0.14 in stackage upperbounds (#725) --- build-constraints.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 91cd0840..5cb06074 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1246,6 +1246,9 @@ packages: # https://github.com/fpco/stackage/issues/710 - fsnotify < 0.2 + # https://github.com/fpco/stackage/issues/725 + - gtk3 < 0.14 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: @@ -1662,8 +1665,7 @@ expected-haddock-failures: # Requires build before haddock, which doesn't always happen in incremental # builds. Could consider special-casing this requirement. - gtk - # https://github.com/fpco/stackage/issues/725 - - gtk3 < 0.14 + - gtk3 # Not sure why, but it's a temporary package anyway - Cabal-ide-backend From 5d444fb85f40a25bf728733a2963b689e4da302b Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 2 Aug 2015 23:43:17 +0900 Subject: [PATCH 590/933] allow getopt-generics tests to fail (getopt-generics/issues#47) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5cb06074..61f08edc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1651,6 +1651,9 @@ expected-test-failures: # https://github.com/kazu-yamamoto/logger/issues/42 - wai-logger + # https://github.com/zalora/getopt-generics/issues/47 + - getopt-generics + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 314dd526153245814373c0a16741850f671a0dcb Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 3 Aug 2015 09:21:54 +0900 Subject: [PATCH 591/933] allow gtk3-0.14 (#725) --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 61f08edc..a6f3240e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1246,9 +1246,6 @@ packages: # https://github.com/fpco/stackage/issues/710 - fsnotify < 0.2 - # https://github.com/fpco/stackage/issues/725 - - gtk3 < 0.14 - # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From a15159657976d7ffe5b99b4b6c4f902d743487c5 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 3 Aug 2015 10:17:05 +0900 Subject: [PATCH 592/933] git-annex-5.20150731 failing to install setup: /home/stackage/.local: permission denied --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a6f3240e..bbf0e631 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -553,7 +553,7 @@ packages: #- hopenpgp-tools GHC 7.10, via syb-with-class "Joey Hess ": - - git-annex + - git-annex < 5.20150731 # https://github.com/fpco/stackage/issues/160 "Ketil Malde": From 05a70bd7883e29fd7363970048734ebcb1b4520d Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 4 Aug 2015 11:17:59 +0900 Subject: [PATCH 593/933] allow HList testsuite fail (#728) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ae0a658a..c5de9433 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1654,6 +1654,9 @@ expected-test-failures: # https://github.com/zalora/getopt-generics/issues/47 - getopt-generics + # https://github.com/fpco/stackage/issues/728 + - HList + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 0e3bb60f806f16e23e057f7ab51ca11b00e3ba7e Mon Sep 17 00:00:00 2001 From: Oleg Grenrus Date: Tue, 4 Aug 2015 20:39:34 +0300 Subject: [PATCH 594/933] Add purescript and it's dependencies --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index c5de9433..11f8f5a4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -855,6 +855,10 @@ packages: - waitra - spdx - postgresql-simple-url + - purescript + - bower-json + - boxes + - pattern-arrows "Adam C. Foltzer acfoltzer@galois.com @acfoltzer": - cryptol From 3ab639eee307c6f3d8a1cd05fc367a328455ca83 Mon Sep 17 00:00:00 2001 From: Timo von Holtz Date: Wed, 5 Aug 2015 10:54:41 +1000 Subject: [PATCH 595/933] Add servant-JuicyPixels --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index c5de9433..6746526e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1235,6 +1235,9 @@ packages: - hstatsd - misfortune + "Timo von Holtz @tvh": + - servant-JuicyPixels + "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 From 17b63c68b33012ccdbf13099f7e110cb659bc2bb Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 5 Aug 2015 17:46:57 +0900 Subject: [PATCH 596/933] allow http-media tests to fail (zmthy/http-media#16) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index c5de9433..8b5239cd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1657,6 +1657,9 @@ expected-test-failures: # https://github.com/fpco/stackage/issues/728 - HList + # https://github.com/zmthy/http-media/issues/16 + - http-media + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 1c008544fa7f6337dba2ccf7ed7942fed802ff04 Mon Sep 17 00:00:00 2001 From: Artyom Date: Wed, 5 Aug 2015 17:10:12 +0300 Subject: [PATCH 597/933] Add microlens* and shortcut-links --- build-constraints.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index a2d558ad..ca476905 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1242,6 +1242,12 @@ packages: "Timo von Holtz @tvh": - servant-JuicyPixels + "Artyom ": + - microlens + - microlens-mtl + - microlens-th + - shortcut-links + "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 From fe56d8afb37ba4dcc26a2962c88f537f0eae79c3 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 6 Aug 2015 09:35:18 +0900 Subject: [PATCH 598/933] allow purescript testsuite fails (purescript/purescript#1336) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ca476905..6e209247 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1673,6 +1673,9 @@ expected-test-failures: # https://github.com/zmthy/http-media/issues/16 - http-media + # https://github.com/purescript/purescript/issues/1336 + - purescript + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 41baf2194623c7181c1ea09db076c36b6b1dce36 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 6 Aug 2015 09:46:51 +0900 Subject: [PATCH 599/933] disable nested-routes temporarily for ghc-7.10.2 (athanclark/nested-routes#9) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It uses -Wall and getting a lot of warnings like The import of ‘Data.Foldable’ is redundant except perhaps to import instances from ‘Data.Foldable’ To import instances alone, use: import Data.Foldable() with ghc-7.10.2 --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6e209247..ce6fbd6a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1027,7 +1027,8 @@ packages: - clash-ghc "Athan Clark @athanclark": - - nested-routes + # https://github.com/athanclark/nested-routes/issues/9 + #- nested-routes - urlpath - markup - webpage From 62ee1a64001899da9a580d29c6c342d207a85af8 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 6 Aug 2015 10:23:39 +0900 Subject: [PATCH 600/933] ide-backend-0.10.0 testsuite failures (#733) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ce6fbd6a..96d9e99b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1677,6 +1677,9 @@ expected-test-failures: # https://github.com/purescript/purescript/issues/1336 - purescript + # https://github.com/fpco/stackage/issues/733 + - ide-backend + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From d78f7d4ba767c245956c5edf2c07f8247cbb3daa Mon Sep 17 00:00:00 2001 From: Matthew Pickering Date: Thu, 6 Aug 2015 11:51:14 +0200 Subject: [PATCH 601/933] Add ghc-exactprint --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 96d9e99b..857bb8b1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1228,6 +1228,7 @@ packages: "Matthew Pickering @mpickering": - refact - servant-pandoc + - ghc-exactprint "Andrés Sicard-Ramírez @asr": - Agda From 43383159a1c5208136ffe1721e822d173e9272cb Mon Sep 17 00:00:00 2001 From: takano-akio Date: Thu, 6 Aug 2015 20:41:17 +0900 Subject: [PATCH 602/933] Add fast-builder and filelock This adds two packages, fast-builder and filelock. --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 96d9e99b..ae599cdc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1249,6 +1249,10 @@ packages: - microlens-th - shortcut-links + "Takano Akio aljee@hyper.cx @takano-akio": + - fast-builder + - filelock + "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 From 6e9a2760090ee30c2cfc80cc1dc1629ba7c317c6 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 7 Aug 2015 12:50:54 +0900 Subject: [PATCH 603/933] hinotify-0.3.8 failing (kolmodin/hinotify#15) --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ae599cdc..7247e944 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -147,7 +147,8 @@ packages: - monad-logger-syslog - fsnotify - - hinotify + # https://github.com/kolmodin/hinotify/issues/15 + - hinotify < 0.3.8 - hfsevents - Win32-notify From aa4c69cfc98db67b8f0af015b1105451162ffd30 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 7 Aug 2015 07:19:24 +0300 Subject: [PATCH 604/933] Remove expected test failure BioHaskell/octree#4 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7247e944..c0355d5e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1485,9 +1485,6 @@ expected-test-failures: # Not sure why... - singletons - # https://github.com/BioHaskell/octree/issues/4 - - Octree - # https://github.com/jmillikin/haskell-filesystem/issues/3 - system-filepath From 9362d0a9853eb1891c2dd384bf9252f4d406fcc1 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 7 Aug 2015 13:49:14 +0900 Subject: [PATCH 605/933] disable benchmark for fast-builder (liyang/true-name#2) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index c0355d5e..00804553 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1741,6 +1741,9 @@ skipped-benchmarks: # https://github.com/kaizhang/clustering/issues/2 - clustering + # https://github.com/liyang/true-name/issues/2 + - fast-builder + skipped-profiling: # https://github.com/nomeata/ghc-heap-view/commit/8d198eb8fbbad2ce0c4527c781659f35b8909c04#diff-8288955e209cfbead5b318a8598be9c0R10 - ghc-heap-view From 36468f66f611777a6223999b0c9ba2cc8ffba677 Mon Sep 17 00:00:00 2001 From: Kostiantyn Rybnikov Date: Fri, 7 Aug 2015 09:24:05 +0300 Subject: [PATCH 606/933] Change for travis --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4121db0c..b31380ac 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1149,8 +1149,8 @@ packages: - murmur-hash - monoidal-containers - regex-pcre - - string-class - string-combinators + - string-class - SHA - data-ordlist - cron From 004c1bbb3b42f5b079636482568375c685a34962 Mon Sep 17 00:00:00 2001 From: Artyom Date: Fri, 7 Aug 2015 11:09:34 +0300 Subject: [PATCH 607/933] Add microlens-ghc --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 00804553..a1f7fdf8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1248,6 +1248,7 @@ packages: - microlens - microlens-mtl - microlens-th + - microlens-ghc - shortcut-links "Takano Akio aljee@hyper.cx @takano-akio": From c66ea71e1bcc406c24775ecadc755f719d6470f2 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sat, 8 Aug 2015 14:32:20 +0900 Subject: [PATCH 608/933] Revert "Add ghc-exactprint" --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index fbd68784..fa9358fd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1235,7 +1235,6 @@ packages: "Matthew Pickering @mpickering": - refact - servant-pandoc - - ghc-exactprint "Andrés Sicard-Ramírez @asr": - Agda From ceeea33ca7336c2373cae099269d00d4d72a0606 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sat, 8 Aug 2015 16:54:03 +0900 Subject: [PATCH 609/933] Reverting "hinotify-0.3.8 failing (kolmodin/hinotify#15)" This reverts commit 6e9a2760090ee30c2cfc80cc1dc1629ba7c317c6. should be fixed with hinotify-0.3.8.1 --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index fa9358fd..0481a8b1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -147,8 +147,7 @@ packages: - monad-logger-syslog - fsnotify - # https://github.com/kolmodin/hinotify/issues/15 - - hinotify < 0.3.8 + - hinotify - hfsevents - Win32-notify From 969f021c2f756cb6c3e881abca4dcf90a19c57d2 Mon Sep 17 00:00:00 2001 From: Ashley Moni Date: Sun, 9 Aug 2015 17:19:51 -0400 Subject: [PATCH 610/933] Adding myself to stackage. --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index aebf3f3c..60221c9c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1273,6 +1273,9 @@ packages: - fast-builder - filelock + "Ashley Moni ashley.moni1@gmail.com @AshleyMoni": + - quadtree + "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 From c2be7fe3246e5edf5a415e1722a260e953bd9ea1 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 10 Aug 2015 12:13:53 +0900 Subject: [PATCH 611/933] disable ihaskell since it fails to build (gibiansky/IHaskell#547) --- build-constraints.yaml | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index aebf3f3c..040d6e0d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1234,19 +1234,20 @@ packages: "Matthew Pickering @mpickering": - refact - servant-pandoc - + "Andrew Gibiansky @gibiansky": - - ihaskell - - ihaskell-aeson - - ihaskell-basic - - ihaskell-blaze - - ihaskell-charts - - ihaskell-diagrams - - ihaskell-hatex - - ihaskell-juicypixels - - ihaskell-magic - - ihaskell-rlangqq - - ihaskell-static-canvas + # https://github.com/gibiansky/IHaskell/issues/547 + #- ihaskell + #- ihaskell-aeson + #- ihaskell-basic + #- ihaskell-blaze + #- ihaskell-charts + #- ihaskell-diagrams + #- ihaskell-hatex + #- ihaskell-juicypixels + #- ihaskell-magic + #- ihaskell-rlangqq + #- ihaskell-static-canvas "Andrés Sicard-Ramírez @asr": - Agda From 8749a2870377bb1d13bdff339d6bac0326b41ff1 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 10 Aug 2015 12:19:17 +0900 Subject: [PATCH 612/933] one more ihaskell disable tweak --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2ba57769..dfad7bb4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1235,7 +1235,7 @@ packages: - refact - servant-pandoc - "Andrew Gibiansky @gibiansky": + #"Andrew Gibiansky @gibiansky": # https://github.com/gibiansky/IHaskell/issues/547 #- ihaskell #- ihaskell-aeson From 254e56dff46afc768da41ad0b7856cb2ad787e0c Mon Sep 17 00:00:00 2001 From: Andrew Gibiansky Date: Mon, 10 Aug 2015 00:03:58 -0700 Subject: [PATCH 613/933] Fixing IHaskell; adding other IHaskell dependencies --- build-constraints.yaml | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index dfad7bb4..bd000906 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1235,19 +1235,20 @@ packages: - refact - servant-pandoc - #"Andrew Gibiansky @gibiansky": - # https://github.com/gibiansky/IHaskell/issues/547 - #- ihaskell - #- ihaskell-aeson - #- ihaskell-basic - #- ihaskell-blaze - #- ihaskell-charts - #- ihaskell-diagrams - #- ihaskell-hatex - #- ihaskell-juicypixels - #- ihaskell-magic - #- ihaskell-rlangqq - #- ihaskell-static-canvas + "Andrew Gibiansky @gibiansky": + - ihaskell + - ihaskell-aeson + - ihaskell-basic + - ihaskell-blaze + - ihaskell-charts + - ihaskell-diagrams + - ihaskell-hatex + - ihaskell-juicypixels + - ihaskell-magic + - ihaskell-rlangqq + - ihaskell-static-canvas + - ghc-parser + - ipython-kernel "Andrés Sicard-Ramírez @asr": - Agda From c33968af6567fbe0c4ddaca4aafb98473782521f Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 10 Aug 2015 11:48:21 +0300 Subject: [PATCH 614/933] Add libmagic-dev, pinging @borsboom, fixes #741 --- debian-bootstrap.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index 61b853af..07a76746 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -58,6 +58,7 @@ apt-get install -y \ libopenal-dev \ libhidapi-dev \ libzmq3-dev \ + libmagic-dev \ libpcap0.8-dev mkdir /tmp/nettle-build From fe6a2f1e211b593bb1fdf03397beac009d0d85bc Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 11 Aug 2015 09:46:52 +0900 Subject: [PATCH 615/933] diagrams-lib-1.3.0.3 requires fsnotify-0.2.1 (#743) --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index bd000906..8b0c47d9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -364,7 +364,8 @@ packages: - diagrams-haddock - diagrams-contrib - diagrams-core - - diagrams-lib + # https://github.com/fpco/stackage/issues/743 + - diagrams-lib < 1.3.0.3 - diagrams-postscript - diagrams-svg - dual-tree From f03889abdb2f831fa763d6a731ceda71e96e089b Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 11 Aug 2015 10:09:04 +0900 Subject: [PATCH 616/933] disable ihaskell-magic since magic failing (#741) --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8b0c47d9..d1583788 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1245,7 +1245,8 @@ packages: - ihaskell-diagrams - ihaskell-hatex - ihaskell-juicypixels - - ihaskell-magic + # https://github.com/fpco/stackage/issues/741 + #- ihaskell-magic - ihaskell-rlangqq - ihaskell-static-canvas - ghc-parser From 41618713a310e55477621432eff699be345a0a7c Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 11 Aug 2015 11:32:59 +0900 Subject: [PATCH 617/933] ihaskell failing to build (/gibiansky/IHaskell#548) --- build-constraints.yaml | 31 ++++++++++++++++--------------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d1583788..c24427cb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1236,21 +1236,22 @@ packages: - refact - servant-pandoc - "Andrew Gibiansky @gibiansky": - - ihaskell - - ihaskell-aeson - - ihaskell-basic - - ihaskell-blaze - - ihaskell-charts - - ihaskell-diagrams - - ihaskell-hatex - - ihaskell-juicypixels - # https://github.com/fpco/stackage/issues/741 - #- ihaskell-magic - - ihaskell-rlangqq - - ihaskell-static-canvas - - ghc-parser - - ipython-kernel + # https://github.com/gibiansky/IHaskell/issues/548 + #"Andrew Gibiansky @gibiansky": + #- ihaskell + #- ihaskell-aeson + #- ihaskell-basic + #- ihaskell-blaze + #- ihaskell-charts + #- ihaskell-diagrams + #- ihaskell-hatex + #- ihaskell-juicypixels + ## https://github.com/fpco/stackage/issues/741 + ##- ihaskell-magic + #- ihaskell-rlangqq + #- ihaskell-static-canvas + #- ghc-parser + #- ipython-kernel "Andrés Sicard-Ramírez @asr": - Agda From 860ffd967edc86765751dcc12d1ba806c11e61eb Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 11 Aug 2015 11:44:04 +0900 Subject: [PATCH 618/933] enable fsnotify-0.2 (#710,#743) --- build-constraints.yaml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c24427cb..d246c495 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -187,8 +187,7 @@ packages: "Jasper Van der Jeugt": - blaze-html - blaze-markup - # https://github.com/fpco/stackage/issues/710 - - hakyll < 4.7.2.1 + - hakyll - stylish-haskell - psqueues - websockets @@ -364,8 +363,7 @@ packages: - diagrams-haddock - diagrams-contrib - diagrams-core - # https://github.com/fpco/stackage/issues/743 - - diagrams-lib < 1.3.0.3 + - diagrams-lib - diagrams-postscript - diagrams-svg - dual-tree @@ -1292,9 +1290,6 @@ packages: # https://github.com/fpco/stackage/issues/682 - vector < 0.11 - # https://github.com/fpco/stackage/issues/710 - - fsnotify < 0.2 - # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From e72c0e4e49e4bcd12a185710d5eb99483224bdfb Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 11 Aug 2015 12:09:46 +0900 Subject: [PATCH 619/933] Revert "enable fsnotify-0.2" (#710) keter-1.4.3.1 failed to use it. This reverts commit 860ffd967edc86765751dcc12d1ba806c11e61eb. --- build-constraints.yaml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d246c495..1c5de648 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -187,7 +187,8 @@ packages: "Jasper Van der Jeugt": - blaze-html - blaze-markup - - hakyll + # https://github.com/fpco/stackage/issues/710 + - hakyll < 4.7.2.1 - stylish-haskell - psqueues - websockets @@ -363,7 +364,8 @@ packages: - diagrams-haddock - diagrams-contrib - diagrams-core - - diagrams-lib + # https://github.com/fpco/stackage/issues/710 + - diagrams-lib < 1.3.0.3 - diagrams-postscript - diagrams-svg - dual-tree @@ -1290,6 +1292,9 @@ packages: # https://github.com/fpco/stackage/issues/682 - vector < 0.11 + # https://github.com/fpco/stackage/issues/710 + - fsnotify < 0.2 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 068ea32addc2406327d5cdcd923862c6b463999a Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 11 Aug 2015 06:39:19 +0300 Subject: [PATCH 620/933] Enable fsnotify 0.2 and close #710 --- build-constraints.yaml | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1c5de648..6980bbc0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -187,8 +187,7 @@ packages: "Jasper Van der Jeugt": - blaze-html - blaze-markup - # https://github.com/fpco/stackage/issues/710 - - hakyll < 4.7.2.1 + - hakyll - stylish-haskell - psqueues - websockets @@ -364,8 +363,7 @@ packages: - diagrams-haddock - diagrams-contrib - diagrams-core - # https://github.com/fpco/stackage/issues/710 - - diagrams-lib < 1.3.0.3 + - diagrams-lib - diagrams-postscript - diagrams-svg - dual-tree @@ -1292,9 +1290,6 @@ packages: # https://github.com/fpco/stackage/issues/682 - vector < 0.11 - # https://github.com/fpco/stackage/issues/710 - - fsnotify < 0.2 - # Package flags are applied to individual packages, and override the values of # global-flags package-flags: @@ -1345,9 +1340,6 @@ package-flags: NineP: bytestring-in-base: false - keter: - system-filepath: true - # Used for packages that cannot be built on Linux skipped-builds: - hfsevents From 9225568ad0adcd53ba4eebb48d6c99cc6a3e9f56 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 11 Aug 2015 14:15:29 +0900 Subject: [PATCH 621/933] hakyll-4.7.2.2 testsuite failing to build (jaspervdj/hakyll#364) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6980bbc0..583562d3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1720,6 +1720,9 @@ expected-haddock-failures: # Not sure why, but it's a temporary package anyway - Cabal-ide-backend + # https://github.com/jaspervdj/hakyll/issues/364 + - hakyll + # Benchmarks which should not be built. Note that Stackage does *not* generally # build benchmarks. The difference here will be whether dependencies for these # benchmarks are included or not. From bab967adf89fdc5600ae00990af8253a179c7acb Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 11 Aug 2015 15:15:20 +0900 Subject: [PATCH 622/933] disable hakyll tests in right place --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 583562d3..88d6a554 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1701,6 +1701,9 @@ expected-test-failures: # https://github.com/fpco/stackage/issues/733 - ide-backend + # https://github.com/jaspervdj/hakyll/issues/364 + - hakyll + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 @@ -1720,9 +1723,6 @@ expected-haddock-failures: # Not sure why, but it's a temporary package anyway - Cabal-ide-backend - # https://github.com/jaspervdj/hakyll/issues/364 - - hakyll - # Benchmarks which should not be built. Note that Stackage does *not* generally # build benchmarks. The difference here will be whether dependencies for these # benchmarks are included or not. From 195aa42257979457147f6bfd737b75816b8f27f3 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 11 Aug 2015 18:05:50 +0900 Subject: [PATCH 623/933] Reenable ihaskell again (#741, gibiansky/IHaskell#548) --- build-constraints.yaml | 30 ++++++++++++++---------------- 1 file changed, 14 insertions(+), 16 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 88d6a554..959adc9c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1234,22 +1234,20 @@ packages: - refact - servant-pandoc - # https://github.com/gibiansky/IHaskell/issues/548 - #"Andrew Gibiansky @gibiansky": - #- ihaskell - #- ihaskell-aeson - #- ihaskell-basic - #- ihaskell-blaze - #- ihaskell-charts - #- ihaskell-diagrams - #- ihaskell-hatex - #- ihaskell-juicypixels - ## https://github.com/fpco/stackage/issues/741 - ##- ihaskell-magic - #- ihaskell-rlangqq - #- ihaskell-static-canvas - #- ghc-parser - #- ipython-kernel + "Andrew Gibiansky @gibiansky": + - ihaskell + - ihaskell-aeson + - ihaskell-basic + - ihaskell-blaze + - ihaskell-charts + - ihaskell-diagrams + - ihaskell-hatex + - ihaskell-juicypixels + - ihaskell-magic + - ihaskell-rlangqq + - ihaskell-static-canvas + - ghc-parser + - ipython-kernel "Andrés Sicard-Ramírez @asr": - Agda From b1290091dafcffbd595caa7efa84ffab1725c0ed Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 11 Aug 2015 16:40:58 +0300 Subject: [PATCH 624/933] Skip hPDB-examples #746 --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 959adc9c..cfec2752 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -486,7 +486,8 @@ packages: - Octree - FenwickTree - hPDB - - hPDB-examples + # Build failure with GHC 7.10.2, see: https://ghc.haskell.org/trac/ghc/ticket/10565 + # - hPDB-examples - wordpass - json-autotype From ba969f6b0392ba3ae572aff3fc8681ce1adfce8c Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 11 Aug 2015 16:43:11 +0300 Subject: [PATCH 625/933] Comment about wiping out cache #746 --- CURATORS.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CURATORS.md b/CURATORS.md index 8855852a..f20ef46b 100644 --- a/CURATORS.md +++ b/CURATORS.md @@ -52,6 +52,10 @@ docker rm $(docker ps -a -q) docker rmi $(docker images -q) ``` +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/fpco/stackage/issues/746). + ## stackage-build server You'll need to get your SSH public key added to the machine. ~/.ssh/config info: From 05a84cf98c996d3fe755945039582d457ae22baf Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 12 Aug 2015 12:14:25 +0900 Subject: [PATCH 626/933] bustle failing to build with ghc-7.10.2 (#746) --- build-constraints.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index cfec2752..e4227d2b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1176,7 +1176,9 @@ packages: - b9 "Will Thompson @wjt": - - bustle + [] + # https://github.com/fpco/stackage/issues/746 + #- bustle "Jakub Fijałkowski kuba@codinginfinity.me @Fiolek_": - hlibsass From 3a14adc2df588639e6d9e83ff1d462120eaa1388 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 12 Aug 2015 12:20:52 +0900 Subject: [PATCH 627/933] allow ihaskell test failures (gibiansky/IHaskell#551) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index e4227d2b..6c28c108 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1705,6 +1705,9 @@ expected-test-failures: # https://github.com/jaspervdj/hakyll/issues/364 - hakyll + # https://github.com/gibiansky/IHaskell/issues/551 + - ihaskell + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 4fae0e36b12c460c2d7f958166485b328b09ca08 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 12 Aug 2015 12:32:44 +0900 Subject: [PATCH 628/933] lzma-conduit test failing --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6c28c108..2caa74ca 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1708,6 +1708,9 @@ expected-test-failures: # https://github.com/gibiansky/IHaskell/issues/551 - ihaskell + # https://github.com/alphaHeavy/lzma-conduit/issues/5 + - lzma-conduit + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 7762ee4688c7ebe76d67d717653c686a578f427e Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 12 Aug 2015 12:02:05 +0300 Subject: [PATCH 629/933] Use stack for downloading GHC #734 --- .travis.yml | 34 ++++++++++++++++++---------------- 1 file changed, 18 insertions(+), 16 deletions(-) diff --git a/.travis.yml b/.travis.yml index e05d22b2..e0c84415 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,25 +1,27 @@ sudo: false -addons: - apt: - sources: - - hvr-ghc - packages: - - ghc-7.10.1 - - cabal-install-1.22 - -# Note: the distinction between `before_install` and `install` is not important. -before_install: - - export PATH=/opt/ghc/7.10.1/bin:/opt/cabal/1.22/bin:$PATH +language: haskell install: - - cabal --version - - echo "$(ghc --version) [$(ghc --print-project-git-commit-id 2> /dev/null || echo '?')]" - - travis_retry cabal update + # Get stackage-curator - wget https://s3.amazonaws.com/stackage-travis/stackage-curator/stackage-curator.bz2 - bunzip2 stackage-curator.bz2 - chmod +x stackage-curator -# Here starts the actual work to be performed for the package under test; any command which exits with a non-zero exit code causes the build to fail. + # Get stack + - travis_retry curl -L https://github.com/commercialhaskell/stack/releases/download/v0.1.3.0/stack-0.1.3.0-x86_64-linux-gmp4.gz | gunzip > stack + - chmod +x stack + + # Install GHC and cabal-install + - ./stack setup 7.10 + - ./stack --resolver nightly-2015-08-12 build cabal-install + + # Update the index + - travis_retry ./stack exec cabal update + script: - - ./stackage-curator check + - ./stack --resolver 7.10 exec ./stackage-curator check + +cache: + directories: + - $HOME/.stack From 9afda43de2ae662ec0c423e47180331b8d7f400f Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 12 Aug 2015 12:57:14 +0300 Subject: [PATCH 630/933] Use stackage-update instead of cabal update --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index e0c84415..581fc429 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,10 +14,10 @@ install: # Install GHC and cabal-install - ./stack setup 7.10 - - ./stack --resolver nightly-2015-08-12 build cabal-install + - ./stack --resolver ghc-7.10 build stackage-update # Update the index - - travis_retry ./stack exec cabal update + - travis_retry ./stack exec stackage-update script: - ./stack --resolver 7.10 exec ./stackage-curator check From 6be280cc83959b006e96c34ffb8b68ac434f93a4 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 12 Aug 2015 13:19:25 +0300 Subject: [PATCH 631/933] Add missing --resolver --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 581fc429..273f9e0d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,10 +17,10 @@ install: - ./stack --resolver ghc-7.10 build stackage-update # Update the index - - travis_retry ./stack exec stackage-update + - travis_retry ./stack --resolver ghc-7.10 exec stackage-update script: - - ./stack --resolver 7.10 exec ./stackage-curator check + - ./stack --resolver ghc-7.10 exec ./stackage-curator check cache: directories: From 6dbb00c936c4603b10591aafb740ca17c0a99895 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 12 Aug 2015 13:32:47 +0300 Subject: [PATCH 632/933] Revert "Revert "Add ghc-exactprint"" This reverts commit c66ea71e1bcc406c24775ecadc755f719d6470f2. --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2caa74ca..5bc712b3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1236,6 +1236,7 @@ packages: "Matthew Pickering @mpickering": - refact - servant-pandoc + - ghc-exactprint "Andrew Gibiansky @gibiansky": - ihaskell From a975b56f73735f9bf5feaabffc2b04d3fa10e442 Mon Sep 17 00:00:00 2001 From: Clint Adams Date: Wed, 12 Aug 2015 17:25:04 +0200 Subject: [PATCH 633/933] Re-enable packages which should have worked around problems --- build-constraints.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5bc712b3..dedfeee4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -545,12 +545,12 @@ packages: "Aditya Bhargava ": - #- hOpenPGP GHC 7.10, via syb-with-class + "Clint Adams @clinty": + - hOpenPGP - openpgp-asciiarmor - # - MusicBrainz GHC 7.10, time 1.5 + - MusicBrainz - DAV - #- hopenpgp-tools GHC 7.10, via syb-with-class + - hopenpgp-tools "Joey Hess ": - git-annex < 5.20150731 From 3ffeb486fca1fbc11772975e2dc400b594adee72 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 13 Aug 2015 07:27:47 +0300 Subject: [PATCH 634/933] Expect test failure well-typed/ixset-typed#2 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index dedfeee4..8a0ffcc2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1712,6 +1712,9 @@ expected-test-failures: # https://github.com/alphaHeavy/lzma-conduit/issues/5 - lzma-conduit + # https://github.com/well-typed/ixset-typed/issues/2 + - ixset-typed + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From d10cb90f14a92935bf981c82a01ab0c0517f568b Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 13 Aug 2015 07:31:43 +0300 Subject: [PATCH 635/933] Block hopenpgp-tools due to graphviz #749 --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8a0ffcc2..4da3ed70 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -550,7 +550,8 @@ packages: - openpgp-asciiarmor - MusicBrainz - DAV - - hopenpgp-tools + # https://github.com/fpco/stackage/issues/749 + # - hopenpgp-tools "Joey Hess ": - git-annex < 5.20150731 From 85b2c4c3d8c7250fc4f25d97dc94e6afb523453c Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 13 Aug 2015 10:52:46 +0300 Subject: [PATCH 636/933] Expect test failure alanz/ghc-exactprint#23 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4da3ed70..90687b46 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1716,6 +1716,9 @@ expected-test-failures: # https://github.com/well-typed/ixset-typed/issues/2 - ixset-typed + # https://github.com/alanz/ghc-exactprint/issues/23 + - ghc-exactprint + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 5ed7a71681f99532c997b70e7416a058a4079ff9 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 13 Aug 2015 10:56:14 +0300 Subject: [PATCH 637/933] Block hOpenPGP #750 --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 90687b46..d6b80270 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -546,7 +546,8 @@ packages: - HandsomeSoup "Clint Adams @clinty": - - hOpenPGP + # https://github.com/fpco/stackage/issues/750 + # - hOpenPGP - openpgp-asciiarmor - MusicBrainz - DAV From 403eba7970e392c0a04c4adaf0f17b04978a3695 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 13 Aug 2015 11:17:28 +0300 Subject: [PATCH 638/933] Revert "Expect test failure alanz/ghc-exactprint#23" This reverts commit 85b2c4c3d8c7250fc4f25d97dc94e6afb523453c. --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d6b80270..938098a1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1717,9 +1717,6 @@ expected-test-failures: # https://github.com/well-typed/ixset-typed/issues/2 - ixset-typed - # https://github.com/alanz/ghc-exactprint/issues/23 - - ghc-exactprint - # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From aae784407b9a33a5ccbb5a6eadf9859b04065dff Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 13 Aug 2015 12:26:19 +0300 Subject: [PATCH 639/933] Remove blocked package and close #750 --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 938098a1..4da3ed70 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -546,8 +546,7 @@ packages: - HandsomeSoup "Clint Adams @clinty": - # https://github.com/fpco/stackage/issues/750 - # - hOpenPGP + - hOpenPGP - openpgp-asciiarmor - MusicBrainz - DAV From 5404a2734dbdec7aa2888f3003f3e48a8b1250e9 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 14 Aug 2015 13:19:24 +0300 Subject: [PATCH 640/933] Expect test failure jgm/pandoc-citeproc#158 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4da3ed70..da67bf56 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1716,6 +1716,9 @@ expected-test-failures: # https://github.com/well-typed/ixset-typed/issues/2 - ixset-typed + # https://github.com/jgm/pandoc-citeproc/issues/158 + - pandoc-citeproc + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 0c3dca6c5bfadccb12cdae2791c0bd57aa5b3a04 Mon Sep 17 00:00:00 2001 From: Jonathan Daugherty Date: Fri, 14 Aug 2015 10:17:05 -0700 Subject: [PATCH 641/933] Add brick, text-zipper, vty, and dbmigrations --- build-constraints.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index da67bf56..5f701140 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -231,6 +231,12 @@ packages: - vhd - xenstore + "Jonathan Daugherty ": + - brick + - dbmigrations + - text-zipper + - vty + "Chris Done": - ace - check-email @@ -1296,6 +1302,9 @@ packages: # Package flags are applied to individual packages, and override the values of # global-flags package-flags: + brick: + demos: true + mersenne-random-pure64: small_base: false @@ -1351,6 +1360,7 @@ skipped-builds: # By skipping a test suite, we do not pull in the build dependencies skipped-tests: + - dbmigrations - ReadArgs # old version of hspec - ersatz # old QuickCheck - punycode # pulls in encoding From fbdb2d88f921acb619026507f0a7e888f0daa84b Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sat, 15 Aug 2015 21:23:51 +0300 Subject: [PATCH 642/933] Remove expected test failure jgm/pandoc-citeproc#158 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5f701140..a34057c7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1726,9 +1726,6 @@ expected-test-failures: # https://github.com/well-typed/ixset-typed/issues/2 - ixset-typed - # https://github.com/jgm/pandoc-citeproc/issues/158 - - pandoc-citeproc - # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From a01fe32fccb56b3832a15607c0627309a685a9ae Mon Sep 17 00:00:00 2001 From: Brendan Hay Date: Sat, 8 Aug 2015 14:50:58 +0200 Subject: [PATCH 643/933] Adding additional amazonka-* libraries * CodeCommit * CodePipeline * DeviceFarm * DirectoryService * DynamoDBStreams * ElasticFileSystem --- build-constraints.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index a34057c7..68fb7b4a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -887,15 +887,21 @@ packages: - amazonka-cloudtrail - amazonka-cloudwatch-logs - amazonka-cloudwatch + - amazonka-codecommit - amazonka-codedeploy + - amazonka-codepipeline - amazonka-cognito-identity - amazonka-cognito-sync - amazonka-config - amazonka-datapipeline + - amazonka-devicefarm - amazonka-directconnect + - amazonka-ds + - amazonka-dynamodb-streams - amazonka-dynamodb - amazonka-ec2 - amazonka-ecs + - amazonka-efs - amazonka-elasticache - amazonka-elasticbeanstalk - amazonka-elastictranscoder From f150289eeb93324c15086b4a186597d6555c91aa Mon Sep 17 00:00:00 2001 From: Brendan Hay Date: Sun, 16 Aug 2015 18:04:35 +0200 Subject: [PATCH 644/933] Adding amazonka service libraries to skipped-tests section --- build-constraints.yaml | 54 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 68fb7b4a..030a1c3c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1449,6 +1449,60 @@ skipped-tests: # https://github.com/fpco/stackage/issues/668 - second-transfer + # https://github.com/brendanhay/amazonka/issues/170 + - amazonka-autoscaling + - amazonka-cloudformation + - amazonka-cloudfront + - amazonka-cloudhsm + - amazonka-cloudsearch-domains + - amazonka-cloudsearch + - amazonka-cloudtrail + - amazonka-cloudwatch-logs + - amazonka-cloudwatch + - amazonka-codecommit + - amazonka-codedeploy + - amazonka-codepipeline + - amazonka-cognito-identity + - amazonka-cognito-sync + - amazonka-config + - amazonka-datapipeline + - amazonka-devicefarm + - amazonka-directconnect + - amazonka-ds + - amazonka-dynamodb-streams + - amazonka-dynamodb + - amazonka-ec2 + - amazonka-ecs + - amazonka-efs + - amazonka-elasticache + - amazonka-elasticbeanstalk + - amazonka-elastictranscoder + - amazonka-elb + - amazonka-emr + - amazonka-glacier + - amazonka-iam + - amazonka-importexport + - amazonka-kinesis + - amazonka-kms + - amazonka-lambda + - amazonka-ml + - amazonka-opsworks + - amazonka-rds + - amazonka-redshift + - amazonka-route53-domains + - amazonka-route53 + - amazonka-s3 + - amazonka-sdb + - amazonka-ses + - amazonka-sns + - amazonka-sqs + - amazonka-ssm + - amazonka-storagegateway + - amazonka-sts + - amazonka-support + - amazonka-swf + - amazonka-workspaces + # Tests which we should build and run, but which are expected to fail. We # should not fail a build based on a test failure for one of these packages. expected-test-failures: From 4575b92a9ead94634e8e5ac20e27f005a09a562f Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 17 Aug 2015 08:25:17 +0300 Subject: [PATCH 645/933] Add back MFlow agocorona/MFlow#60 --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 030a1c3c..a2c44f7a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -265,8 +265,7 @@ packages: - RefSerialize - TCache - Workflow - # https://github.com/agocorona/MFlow/issues/60 GHC 7.10 - # - MFlow + - MFlow "Edward Kmett ": - ad From 5d660a582400e9c3fe0f476cbaefae70da390d66 Mon Sep 17 00:00:00 2001 From: Sebastian Graf Date: Mon, 17 Aug 2015 16:03:37 +0200 Subject: [PATCH 646/933] Added the GLFW bindings of Brian Lewis I hope @bsl doesn't mind me proposing these two packages for inclusion. Is this already enough to appear on Stackage Nightly? --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index a2c44f7a..1c04b018 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1292,6 +1292,10 @@ packages: "Ashley Moni ashley.moni1@gmail.com @AshleyMoni": - quadtree + + "Brian Lewis brian@lorg.org @bsl": + - bindings-glfw + - glfw-b "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 From 756442574346dc4b966b07b460fd06eac51ee4b6 Mon Sep 17 00:00:00 2001 From: Sebastian Graf Date: Mon, 17 Aug 2015 16:05:26 +0200 Subject: [PATCH 647/933] Fixed a typo in Brians mail address --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1c04b018..0b23aa10 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1293,7 +1293,7 @@ packages: "Ashley Moni ashley.moni1@gmail.com @AshleyMoni": - quadtree - "Brian Lewis brian@lorg.org @bsl": + "Brian Lewis brian@lorf.org @bsl": - bindings-glfw - glfw-b From 09b85591a40082f21d16aa097af4f3f84c682a30 Mon Sep 17 00:00:00 2001 From: Sebastian Graf Date: Mon, 17 Aug 2015 16:25:14 +0200 Subject: [PATCH 648/933] Correct casing for package names I didn't realize package names are case-sensitive. --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0b23aa10..f4ac7755 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1294,8 +1294,8 @@ packages: - quadtree "Brian Lewis brian@lorf.org @bsl": - - bindings-glfw - - glfw-b + - bindings-GLFW + - GLFW-b "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 From f9a087260bc564233513597f97510c1100b4113f Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 18 Aug 2015 08:12:16 +0300 Subject: [PATCH 649/933] Upper bound for #754 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f4ac7755..197783cc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1308,6 +1308,9 @@ packages: # https://github.com/fpco/stackage/issues/682 - vector < 0.11 + # https://github.com/fpco/stackage/issues/754 + - messagepack < 0.5 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 5a9799d6487b8156a2cef53f78aef211106f16b3 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 18 Aug 2015 10:38:25 +0300 Subject: [PATCH 650/933] Expect test failure --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 197783cc..3c32b369 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1792,6 +1792,10 @@ expected-test-failures: # https://github.com/well-typed/ixset-typed/issues/2 - ixset-typed + # Expects running X server + - bindings-GLFW + - GLFW-b + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 787b8a62786c414f5a6b09c6f6116e90e35eb751 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 18 Aug 2015 15:16:08 +0300 Subject: [PATCH 651/933] Add back bustle #746 --- build-constraints.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3c32b369..b1a729d2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1188,9 +1188,7 @@ packages: - b9 "Will Thompson @wjt": - [] - # https://github.com/fpco/stackage/issues/746 - #- bustle + - bustle "Jakub Fijałkowski kuba@codinginfinity.me @Fiolek_": - hlibsass From e6ac3d699b5a81a4abb7f094076698c2a3952efb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niklas=20Hamb=C3=BCchen?= Date: Wed, 19 Aug 2015 03:29:37 +0200 Subject: [PATCH 652/933] Add iso8601-time --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index b1a729d2..0d05f839 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1295,6 +1295,9 @@ packages: - bindings-GLFW - GLFW-b + "Niklas Hambüchen mail@nh2.me @nh2": + - iso8601-time + "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 From 8dfed29b6c5087417eedc442624473a403fdfe9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niklas=20Hamb=C3=BCchen?= Date: Wed, 19 Aug 2015 04:15:18 +0200 Subject: [PATCH 653/933] Add hidapi. Needs the `libudev-dev` package (on Ubuntu/Debian). --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0d05f839..71181b41 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1296,6 +1296,7 @@ packages: - GLFW-b "Niklas Hambüchen mail@nh2.me @nh2": + - hidapi - iso8601-time "Stackage upper bounds": From 7db19ad5ade45908eda17fd3f1ea0e1c88bd2c87 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 19 Aug 2015 09:39:38 +0300 Subject: [PATCH 654/933] Temporarily block hidapi --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 71181b41..e8dcb344 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1296,7 +1296,8 @@ packages: - GLFW-b "Niklas Hambüchen mail@nh2.me @nh2": - - hidapi + # Temporary: missing C library + # - hidapi - iso8601-time "Stackage upper bounds": From fb552c43ebd5341c170e338f75e2fe168d00af2f Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 19 Aug 2015 09:40:44 +0300 Subject: [PATCH 655/933] Add back hidapi and include libudev-dev (pinging @borsboom) --- build-constraints.yaml | 3 +-- debian-bootstrap.sh | 1 + 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e8dcb344..71181b41 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1296,8 +1296,7 @@ packages: - GLFW-b "Niklas Hambüchen mail@nh2.me @nh2": - # Temporary: missing C library - # - hidapi + - hidapi - iso8601-time "Stackage upper bounds": diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index 07a76746..5f6fd1f7 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -59,6 +59,7 @@ apt-get install -y \ libhidapi-dev \ libzmq3-dev \ libmagic-dev \ + libudev-dev \ libpcap0.8-dev mkdir /tmp/nettle-build From fe74ffac3faf7ef14cb7cd3382a61b733e060f59 Mon Sep 17 00:00:00 2001 From: Oleg Grenrus Date: Wed, 19 Aug 2015 21:52:29 +0300 Subject: [PATCH 656/933] Add regex-applicative-text --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 71181b41..0f96bff3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -865,6 +865,7 @@ packages: - bower-json - boxes - pattern-arrows + - regex-applicative-text "Adam C. Foltzer acfoltzer@galois.com @acfoltzer": - cryptol From 3d4ee6739884b2e44d9461a3ee1bda46bd17ab21 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 19 Aug 2015 22:26:08 +0300 Subject: [PATCH 657/933] Reenable semigroupoids tests ekmett/semigroupoids#34 --- build-constraints.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 71181b41..f4453999 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1448,7 +1448,6 @@ skipped-tests: - heaps - hyphenation - machines - - semigroupoids - fixed-vector # https://github.com/kaizhang/clustering/issues/2 @@ -1720,9 +1719,6 @@ expected-test-failures: - bitcoin-api - bitcoin-api-extra - # https://github.com/ekmett/semigroupoids/issues/34 - - semigroupoids - # https://github.com/kazu-yamamoto/dns/issues/29 - dns From 054da8c9fa81ef946cf7b49ead5fbd92d3347374 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 20 Aug 2015 08:24:03 +0300 Subject: [PATCH 658/933] Upper bound for #758 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index eea02e60..757b4cce 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1314,6 +1314,9 @@ packages: # https://github.com/fpco/stackage/issues/754 - messagepack < 0.5 + # https://github.com/fpco/stackage/issues/758 + - acid-state < 0.13 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From a8d8b6b7a6e78e07123a525c3634389ce4b91521 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 20 Aug 2015 18:05:22 +0300 Subject: [PATCH 659/933] Add back hybrid-vectors ekmett/hybrid-vectors#1 --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 757b4cce..68976da4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -83,8 +83,7 @@ packages: - hmatrix-gsl - hxt - hxt-relaxng - # https://github.com/ekmett/hybrid-vectors/issues/1 - # - hybrid-vectors GHC 7.10 + - hybrid-vectors - indents - language-c - lhs2tex From d7b8600c575e4ec74fb50eab30c8c42bedcad99a Mon Sep 17 00:00:00 2001 From: Brandon Martin Date: Thu, 20 Aug 2015 20:59:25 -0600 Subject: [PATCH 660/933] Add engine-io-wai package to Stackage --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 68976da4..011c0d84 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1298,6 +1298,9 @@ packages: "Niklas Hambüchen mail@nh2.me @nh2": - hidapi - iso8601-time + + "Brandon Martin @codedmart": + - engine-io-wai "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 From bd9bce6ddb8a2d5e21788d9c28828012b609830b Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 21 Aug 2015 07:53:51 +0300 Subject: [PATCH 661/933] Upper bounds for #760 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 68976da4..dbbbe233 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1316,6 +1316,9 @@ packages: # https://github.com/fpco/stackage/issues/758 - acid-state < 0.13 + # https://github.com/fpco/stackage/issues/760 + - yesod-test < 1.5 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From ea73681c73650e2f39b815f5c92cf0f2205b2882 Mon Sep 17 00:00:00 2001 From: Brandon Martin Date: Fri, 21 Aug 2015 16:18:31 -0600 Subject: [PATCH 662/933] Add rethinkdb package to Stackage --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ad652c2e..d35ebc71 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1301,6 +1301,7 @@ packages: "Brandon Martin @codedmart": - engine-io-wai + - rethinkdb "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 From 0f74234ee3695ccd04a1662148709050be129aad Mon Sep 17 00:00:00 2001 From: Michael Walker Date: Sat, 22 Aug 2015 12:55:36 +0100 Subject: [PATCH 663/933] Add both package --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ad652c2e..b42f0aa4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1302,6 +1302,9 @@ packages: "Brandon Martin @codedmart": - engine-io-wai + "Michael Walker @barrucadu": + - both + "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 From c67da784bea513530f5f755c32a547aae58a8e8f Mon Sep 17 00:00:00 2001 From: Alexander Thiemann Date: Sat, 22 Aug 2015 21:50:57 +0200 Subject: [PATCH 664/933] add ignore and elm-bridge package --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ad652c2e..b8634be5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -725,6 +725,8 @@ packages: - users-postgresql-simple - users-test - validate-input + - ignore + - elm-bridge "Joey Eremondi ": - aeson-pretty From b6b402f3778364b3c5abb550dc77c46d2553d1cb Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 23 Aug 2015 11:04:10 +0300 Subject: [PATCH 665/933] Upper bounds for #765 #766 #767 --- build-constraints.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ad652c2e..54d73e67 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1322,6 +1322,19 @@ packages: # https://github.com/fpco/stackage/issues/760 - yesod-test < 1.5 + # https://github.com/fpco/stackage/issues/765 + - hspec < 2.2 + - hspec-core < 2.2 + - hspec-discover < 2.2 + - hspec-expectations < 0.7.2 + + # https://github.com/fpco/stackage/issues/766 + - tasty-hspec < 1.1.1 + + # https://github.com/fpco/stackage/issues/767 + - dependent-map == 0.1.* + - dependent-sum == 0.2.* + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 846cd2f2d0670003def6d5e00a2c6db7f8209451 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 23 Aug 2015 11:10:46 +0300 Subject: [PATCH 666/933] Upper bound for #768 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 54d73e67..8ff7defe 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1335,6 +1335,9 @@ packages: - dependent-map == 0.1.* - dependent-sum == 0.2.* + # https://github.com/fpco/stackage/issues/768 + - HUnit < 1.3 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 8a77ec8d1a5a0922446cb94d32c808a52a8ce1e4 Mon Sep 17 00:00:00 2001 From: Alexander Thiemann Date: Sun, 23 Aug 2015 15:49:11 +0200 Subject: [PATCH 667/933] add hackmanager --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7ed1fc35..0e2438f0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -727,6 +727,7 @@ packages: - validate-input - ignore - elm-bridge + - hackmanager "Joey Eremondi ": - aeson-pretty From b9656a742274585515142ec031eb68182ee69d1d Mon Sep 17 00:00:00 2001 From: Alexander Thiemann Date: Sun, 23 Aug 2015 17:37:54 +0200 Subject: [PATCH 668/933] add digestive-bootstrap and blaze-bootstrap --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0e2438f0..bcf6285d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -728,6 +728,8 @@ packages: - ignore - elm-bridge - hackmanager + - digestive-bootstrap + - blaze-bootstrap "Joey Eremondi ": - aeson-pretty From a71c56fe8ba90e99eaa8a1921301da8a963f8eba Mon Sep 17 00:00:00 2001 From: Greg Date: Sun, 23 Aug 2015 21:10:06 +0300 Subject: [PATCH 669/933] Add more packages by @myfreeweb http-link-header, microformats2-parser, hspec-expectations-pretty-diff --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index bcf6285d..545443e9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -850,6 +850,9 @@ packages: "Greg V greg@unrelenting.technology @myfreeweb": - gitson - pcre-heavy + - http-link-header + - microformats2-parser + - hspec-expectations-pretty-diff "Francesco Mazzoli f@mazzo.li @bitonic": - language-c-quote From 1aa9f4e0d1d1812dc991820bc73cb18181b309c6 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 23 Aug 2015 21:41:52 +0300 Subject: [PATCH 670/933] Expect test failure: rethinkdb --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 545443e9..366af130 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1831,6 +1831,9 @@ expected-test-failures: - bindings-GLFW - GLFW-b + # Requires running server + - rethinkdb + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From b7e07775d2629adffe11d3d98a573a784931607a Mon Sep 17 00:00:00 2001 From: Trevor Elliott Date: Sun, 23 Aug 2015 19:57:51 -0700 Subject: [PATCH 671/933] Register to maintain the `irc` package --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 366af130..702c4940 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1314,6 +1314,9 @@ packages: "Michael Walker @barrucadu": - both + "Trevor Elliott @elliottt": + - irc + "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 From 8f1a1d53853e51926bf9977ade3e391c998f4b9d Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 24 Aug 2015 09:44:39 +0300 Subject: [PATCH 672/933] Some expected test failures --- build-constraints.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 702c4940..1c324816 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1837,6 +1837,12 @@ expected-test-failures: # Requires running server - rethinkdb + # https://github.com/ddssff/cabal-debian/issues/50 + - cabal-debian + + # https://github.com/myfreeweb/microformats2-parser/issues/3 + - microformats2-parser + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 22fef158f6d45ac46d3bfdca74c12a08c7d756f5 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 24 Aug 2015 12:39:44 +0300 Subject: [PATCH 673/933] Remove expected test failure myfreeweb/microformats2-parser#3 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1c324816..3f6af0f3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1840,9 +1840,6 @@ expected-test-failures: # https://github.com/ddssff/cabal-debian/issues/50 - cabal-debian - # https://github.com/myfreeweb/microformats2-parser/issues/3 - - microformats2-parser - # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 210a5a805d849614de08cd716c8c128b29da00e9 Mon Sep 17 00:00:00 2001 From: Oleg Grenrus Date: Tue, 25 Aug 2015 07:20:05 +0300 Subject: [PATCH 674/933] Sort phadej's list --- build-constraints.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3f6af0f3..887c7423 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -863,16 +863,16 @@ packages: - string-conversions "Oleg Grenrus oleg.grenrus@iki.fi @phadej": - - edit-distance - - lattices - - waitra - - spdx - - postgresql-simple-url - - purescript - bower-json - boxes + - edit-distance + - lattices - pattern-arrows + - postgresql-simple-url + - purescript - regex-applicative-text + - spdx + - waitra "Adam C. Foltzer acfoltzer@galois.com @acfoltzer": - cryptol From 9b552864eca81e19779f5058f2da85b1c83b9300 Mon Sep 17 00:00:00 2001 From: Oleg Grenrus Date: Tue, 25 Aug 2015 07:21:00 +0300 Subject: [PATCH 675/933] Add these --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 887c7423..cede02d2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -872,6 +872,7 @@ packages: - purescript - regex-applicative-text - spdx + - these - waitra "Adam C. Foltzer acfoltzer@galois.com @acfoltzer": From 56537f76626fd30863a266bdcb95de4e61db478b Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Tue, 25 Aug 2015 09:36:30 +0200 Subject: [PATCH 676/933] Strip whitespace --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index cede02d2..87723ce2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1248,7 +1248,7 @@ packages: - invariant - keycode - text-show - + "Kirill Zaborsky @qrilka": - xlsx @@ -1299,7 +1299,7 @@ packages: "Ashley Moni ashley.moni1@gmail.com @AshleyMoni": - quadtree - + "Brian Lewis brian@lorf.org @bsl": - bindings-GLFW - GLFW-b @@ -1307,7 +1307,7 @@ packages: "Niklas Hambüchen mail@nh2.me @nh2": - hidapi - iso8601-time - + "Brandon Martin @codedmart": - engine-io-wai - rethinkdb From eeadcbe1d27e55bc176f7b195cf350588ea04756 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Tue, 25 Aug 2015 09:36:52 +0200 Subject: [PATCH 677/933] Re-enable ghc-heap-view (http://matrix.hackage.haskell.org/package/ghc-heap-view) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 87723ce2..aa23930f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -540,7 +540,7 @@ packages: "Joachim Breitner ": - circle-packing - arbtt - # - ghc-heap-view GHC 7.10 + - ghc-heap-view - tttool - gipeda - list-fusion-probe From b46e848337d14f66dc7b346d5e63992d5f898094 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Tue, 25 Aug 2015 09:54:40 +0200 Subject: [PATCH 678/933] Re-enable JuicyPixels-repa using an older version --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index aa23930f..adb19278 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -45,7 +45,7 @@ packages: - repa-io - repa-algorithms - repa-devil - #- JuicyPixels-repa GHC 7.10 + - JuicyPixels-repa < 0.6.1 || > 0.7 # GHC 7.10 (e-mail sent by @bergmark) - cereal-conduit - binary-conduit - lzma-conduit From 8acbcd1bd743b327e48d5ae030236a6b4a1129d6 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Tue, 25 Aug 2015 11:22:36 +0200 Subject: [PATCH 679/933] Clarify some disabled packages, and re-enable a few --- build-constraints.yaml | 25 ++++++++++++------------- 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index adb19278..2115b2a4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -247,7 +247,7 @@ packages: - lucid - osdkeys - pdfinfo - #- present GHC 7.10, via atto-lisp + #- present GHC 7.10, via https://github.com/nominolo/atto-lisp/issues/18 - pure-io # https://github.com/jgoerzen/testpack/issues/11 #- scrobble GHC 7.10, for QuickCheck 2.8 via testpack @@ -499,7 +499,8 @@ packages: "Dominic Steinitz ": [] - # - yarr GHC 7.10 + # GHC 7.10 https://github.com/leventov/yarr/pull/7 + # - yarr "Roman Cheplyaka ": - action-permutations @@ -560,7 +561,6 @@ packages: "Joey Hess ": - git-annex < 5.20150731 - # https://github.com/fpco/stackage/issues/160 "Ketil Malde": - biocore - biofasta @@ -569,8 +569,10 @@ packages: - blastxml - bioace # https://github.com/BioHaskell/biophd/issues/3 - # - biophd - - biopsl # https://github.com/ingolia/SamTools/issues/3 samtools + - biophd < 0.0.5 || > 0.0.8 + - biopsl + # https://github.com/ingolia/SamTools/issues/3 + # - samtools - seqloc - bioalign - BlastHTTP @@ -781,8 +783,7 @@ packages: "Alexandr Ruchkin voidex@live.com @mvoidex": - hdocs - # https://github.com/kazu-yamamoto/ghc-mod/issues/437 GHC 7.10 - # - hsdev + - hsdev "Aleksey Kliger aleksey@lambdageek.org @lambdageek": - unbound-generics @@ -959,11 +960,9 @@ packages: - maximal-cliques "Alexander Bondarenko @wiz": - [] - # GHC 7.10, via iconv - #- soap - #- soap-tls - #- soap-openssl + - soap + - soap-tls + - soap-openssl "Andres Löh @kosmikus": - generics-sop @@ -1120,7 +1119,7 @@ packages: - nationstates "Mathieu Boespflug @mboes": - # https://github.com/fpco/stackage/issues/590 + # profunctors https://github.com/fpco/stackage/issues/590 # netwire - th-lift From 8038872d2e16f85dee0cb16f5b0e634302af2daa Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Tue, 25 Aug 2015 13:09:44 +0200 Subject: [PATCH 680/933] Remove upper bound and close #766 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2115b2a4..f9a16504 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1343,9 +1343,6 @@ packages: - hspec-discover < 2.2 - hspec-expectations < 0.7.2 - # https://github.com/fpco/stackage/issues/766 - - tasty-hspec < 1.1.1 - # https://github.com/fpco/stackage/issues/767 - dependent-map == 0.1.* - dependent-sum == 0.2.* From 50677ab9ed7fa0c6c00b7db38e9dc010054f387e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Vion?= Date: Tue, 25 Aug 2015 18:46:52 +0200 Subject: [PATCH 681/933] add OpenGL and related packages --- build-constraints.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f9a16504..519c6ffb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -191,6 +191,13 @@ packages: - psqueues - websockets + "haskell-opengl": + - OpenGL + - GLURaw + - GLUT + - OpenGLRaw + - StateVar + "Antoine Latter": - byteorder - uuid @@ -1931,3 +1938,9 @@ github-users: - meteficha analytics: - ekmett + haskell-opengl: + - dagit + - elliottt + - jmcarthur + - svenpanne + From 7711900ea38f6819cf7ac05a64b9433b4a895fc8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Vion?= Date: Tue, 25 Aug 2015 19:01:48 +0200 Subject: [PATCH 682/933] remove dagit from potential haskell-opengl maintainer list --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 519c6ffb..5e3974d3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1939,7 +1939,6 @@ github-users: analytics: - ekmett haskell-opengl: - - dagit - elliottt - jmcarthur - svenpanne From 437e4775e7489f28b8540a2179b06c87ce3bc60c Mon Sep 17 00:00:00 2001 From: Michael Walker Date: Tue, 25 Aug 2015 19:46:05 +0100 Subject: [PATCH 683/933] Add irc-ctcp, irc-conduit, and irc-client. Depends on stackage >= nightly-2015-08-25 (on irc package). Furthermore, packages depend on each other: irc-ctcp <- irc-conduit <- irc-client --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f9a16504..1f8db319 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1313,6 +1313,9 @@ packages: "Michael Walker @barrucadu": - both + - irc-ctcp + - irc-conduit + - irc-client "Trevor Elliott @elliottt": - irc From f1e86d1139a8b9be99a0542a6d6eaf7337829498 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Vion?= Date: Wed, 26 Aug 2015 00:18:41 +0200 Subject: [PATCH 684/933] add ekmett to haskell-opengl maintenance group, and comment others --- build-constraints.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5e3974d3..1e381435 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1939,7 +1939,8 @@ github-users: analytics: - ekmett haskell-opengl: - - elliottt - - jmcarthur - - svenpanne + - ekmett + # - svenpanne + # - elliottt + # - jmcarthur From 7928493cc50d226c98bee6bb62ff4a2ca4cd67da Mon Sep 17 00:00:00 2001 From: "(cdep)illabout" Date: Wed, 26 Aug 2015 11:47:18 +0900 Subject: [PATCH 685/933] Add `ig` package. --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f9a16504..32475e01 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1317,6 +1317,9 @@ packages: "Trevor Elliott @elliottt": - irc + "Dennis Gosnell @cdepillabout": + - ig + "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 From 020d5929e5e9da96b4a8462b437de059a37afa85 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 26 Aug 2015 09:57:08 +0300 Subject: [PATCH 686/933] Remove expected test failure ekmett/machines#44 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index eb9a80b6..34f62595 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1756,9 +1756,6 @@ expected-test-failures: # https://github.com/haskell/haddock/issues/390 GHC 7.10 - haddock-library - # https://github.com/ekmett/machines/issues/44 - - machines - # https://github.com/haskell/ghc-events/issues/9 - ghc-events From 12692358a1b80ecba237df0a0e4646cec4583c89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Vion?= Date: Wed, 26 Aug 2015 12:17:22 +0200 Subject: [PATCH 687/933] add ObjectName under haskell-opengl maintenance following comment from https://github.com/fpco/stackage/pull/774 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 34f62595..3e6398a5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -197,6 +197,7 @@ packages: - GLUT - OpenGLRaw - StateVar + - ObjectName "Antoine Latter": - byteorder From bbb0fad69bd3f4d0be72d8692af95ac9ac44d0d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Vion?= Date: Wed, 26 Aug 2015 12:17:58 +0200 Subject: [PATCH 688/933] add @svenpanne to haskell-opengl maintainer group --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3e6398a5..60ff9efd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1944,7 +1944,7 @@ github-users: - ekmett haskell-opengl: - ekmett - # - svenpanne + - svenpanne # - elliottt # - jmcarthur From 24c5c48180be1f2a8eac791d5685a6850911dca8 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Wed, 26 Aug 2015 12:29:40 +0200 Subject: [PATCH 689/933] Don't use deprecated version of cabal-helper --- build-constraints.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 34f62595..aa8a3a26 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1363,6 +1363,9 @@ packages: # https://github.com/fpco/stackage/issues/768 - HUnit < 1.3 + # 0.5.2.0 is deprecated + - cabal-helper < 0.5.2.0 || > 0.5.2.0 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: @@ -1946,4 +1949,3 @@ github-users: # - svenpanne # - elliottt # - jmcarthur - From 0cac43dc3a14fec2a4e6a757b3f3dd41aee83dd1 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Wed, 26 Aug 2015 12:41:00 +0200 Subject: [PATCH 690/933] Disable hsdev again due to cabal-helper build failure (#778) --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index aa8a3a26..624d524b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -790,7 +790,8 @@ packages: "Alexandr Ruchkin voidex@live.com @mvoidex": - hdocs - - hsdev + # https://github.com/fpco/stackage/issues/778 + # - hsdev "Aleksey Kliger aleksey@lambdageek.org @lambdageek": - unbound-generics From 7c63fd0b402764a47c43256dc353782d81d078e5 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Wed, 26 Aug 2015 12:45:17 +0200 Subject: [PATCH 691/933] Remove upper bound on cabal-helper to exclude it from build (#778) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 624d524b..5b4d0ece 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1365,7 +1365,7 @@ packages: - HUnit < 1.3 # 0.5.2.0 is deprecated - - cabal-helper < 0.5.2.0 || > 0.5.2.0 + # - cabal-helper < 0.5.2.0 || > 0.5.2.0 # Package flags are applied to individual packages, and override the values of # global-flags From 3244cc78d82e6d4a03ab3df9cb4837550da321d2 Mon Sep 17 00:00:00 2001 From: Franklin Chen Date: Wed, 26 Aug 2015 16:20:43 -0400 Subject: [PATCH 692/933] Add Ebnf2ps. --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7ddc9732..08c93f3d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1332,6 +1332,9 @@ packages: "Dennis Gosnell @cdepillabout": - ig + "Franklin Chen @FranklinChen": + - Ebnf2ps + "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 From dcb668e503bf6185e1dd3900285f1f787c22f92c Mon Sep 17 00:00:00 2001 From: Mateusz Kowalczyk Date: Thu, 27 Aug 2015 00:23:12 +0100 Subject: [PATCH 693/933] Update maintainer for aeson-schema --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 08c93f3d..31243bbd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -991,7 +991,7 @@ packages: - xml-to-json-fast - digits - "Tim Baumann @timjb": + "Mateusz Kowalczyk @Fuuzetsu": - aeson-schema "David Fox @ddssff": From c51d98b2489e30af0d4740d2c4ddd98001d5581f Mon Sep 17 00:00:00 2001 From: Michael Walker Date: Thu, 27 Aug 2015 14:32:10 +0100 Subject: [PATCH 694/933] Add dejafu, a concurrency testing library for Haskell. --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 31243bbd..476ec215 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1322,6 +1322,7 @@ packages: "Michael Walker @barrucadu": - both + - dejafu - irc-ctcp - irc-conduit - irc-client From 6f4cfd086a79f4e64b89348e4a705c69e29f2ec3 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Fri, 28 Aug 2015 02:35:00 +0200 Subject: [PATCH 695/933] Travis: Use GHC-7.10.2 instead of 7.10.1 --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 273f9e0d..a53f3231 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,7 +13,7 @@ install: - chmod +x stack # Install GHC and cabal-install - - ./stack setup 7.10 + - ./stack setup 7.10.2 - ./stack --resolver ghc-7.10 build stackage-update # Update the index From 47aaf079a69319fc2d15bea387560d63f7bd9ec1 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 28 Aug 2015 10:09:16 +0300 Subject: [PATCH 696/933] Add back stackage-curator --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 476ec215..9d504c22 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -96,8 +96,7 @@ packages: - smtLib - stack < 9.9.9 - stackage - # Temporary block while system-filepath issues worked out - # - stackage-curator + - stackage-curator - stackage-types - stackage-update - stackage-upload From 60bfab3dd4c732f2460f8abe0e766e36f6f1a84b Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Fri, 28 Aug 2015 16:56:56 +0200 Subject: [PATCH 697/933] Re-enable passing test suites --- build-constraints.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9d504c22..a78f9ebb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1648,7 +1648,6 @@ expected-test-failures: # Requires a running webdriver server - webdriver - webdriver-snoy - - hspec-webdriver - webdriver-angular # Weird conflicts with sandboxing @@ -1833,9 +1832,6 @@ expected-test-failures: # https://github.com/fpco/stackage/issues/733 - ide-backend - # https://github.com/jaspervdj/hakyll/issues/364 - - hakyll - # https://github.com/gibiansky/IHaskell/issues/551 - ihaskell From b604dda974bf1656bcd6880d9dbbc42b003ef7dc Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Fri, 28 Aug 2015 16:57:51 +0200 Subject: [PATCH 698/933] Disable dejafu test-suite --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index a78f9ebb..538728f0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1851,6 +1851,9 @@ expected-test-failures: # https://github.com/ddssff/cabal-debian/issues/50 - cabal-debian + # https://github.com/barrucadu/dejafu/issues/14 + - dejafu + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 6a88e941709ad4519b76457809506ebffc62ff0d Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Fri, 28 Aug 2015 17:00:09 +0200 Subject: [PATCH 699/933] Disable amazonka-core test-suite --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 538728f0..7b19fc61 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1854,6 +1854,9 @@ expected-test-failures: # https://github.com/barrucadu/dejafu/issues/14 - dejafu + # Fixed on master + - amazonka-core + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 05df37d8cdc8d9992dbb690c0a3216f4637a9eb1 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Fri, 28 Aug 2015 23:06:54 +0200 Subject: [PATCH 700/933] Re-enable amazonka-core test-suite --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7b19fc61..538728f0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1854,9 +1854,6 @@ expected-test-failures: # https://github.com/barrucadu/dejafu/issues/14 - dejafu - # Fixed on master - - amazonka-core - # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 4d0a1b8cef6f26c3499a7b559ef52d63f98e2288 Mon Sep 17 00:00:00 2001 From: Ben Gamari Date: Sat, 29 Aug 2015 09:06:29 +0200 Subject: [PATCH 701/933] Add vector-fftw --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7b19fc61..22b14ea4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -509,6 +509,9 @@ packages: # GHC 7.10 https://github.com/leventov/yarr/pull/7 # - yarr + "Ben Gamari ": + - vector-fftw + "Roman Cheplyaka ": - action-permutations - amqp From 9538ffbc3f4e79e37b936b1b0aaa7fdff32eec3e Mon Sep 17 00:00:00 2001 From: Brendan Hay Date: Sat, 29 Aug 2015 08:35:42 +0200 Subject: [PATCH 702/933] Adding amazonka-test library depepdency to re-enable amazonka* tests --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 538728f0..49b92134 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -895,6 +895,7 @@ packages: "Brendan Hay brendan.g.hay@gmail.com @brendanhay": - amazonka - amazonka-core + - amazonka-test - amazonka-autoscaling - amazonka-cloudformation - amazonka-cloudfront From 4b0ff6feb0fc6afa63086fbc6bbdfd16246af669 Mon Sep 17 00:00:00 2001 From: Brendan Hay Date: Sat, 29 Aug 2015 08:36:08 +0200 Subject: [PATCH 703/933] Re-enabling all amazonka-* library tests --- build-constraints.yaml | 54 ------------------------------------------ 1 file changed, 54 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 49b92134..f5c1ea06 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1515,60 +1515,6 @@ skipped-tests: # https://github.com/fpco/stackage/issues/668 - second-transfer - # https://github.com/brendanhay/amazonka/issues/170 - - amazonka-autoscaling - - amazonka-cloudformation - - amazonka-cloudfront - - amazonka-cloudhsm - - amazonka-cloudsearch-domains - - amazonka-cloudsearch - - amazonka-cloudtrail - - amazonka-cloudwatch-logs - - amazonka-cloudwatch - - amazonka-codecommit - - amazonka-codedeploy - - amazonka-codepipeline - - amazonka-cognito-identity - - amazonka-cognito-sync - - amazonka-config - - amazonka-datapipeline - - amazonka-devicefarm - - amazonka-directconnect - - amazonka-ds - - amazonka-dynamodb-streams - - amazonka-dynamodb - - amazonka-ec2 - - amazonka-ecs - - amazonka-efs - - amazonka-elasticache - - amazonka-elasticbeanstalk - - amazonka-elastictranscoder - - amazonka-elb - - amazonka-emr - - amazonka-glacier - - amazonka-iam - - amazonka-importexport - - amazonka-kinesis - - amazonka-kms - - amazonka-lambda - - amazonka-ml - - amazonka-opsworks - - amazonka-rds - - amazonka-redshift - - amazonka-route53-domains - - amazonka-route53 - - amazonka-s3 - - amazonka-sdb - - amazonka-ses - - amazonka-sns - - amazonka-sqs - - amazonka-ssm - - amazonka-storagegateway - - amazonka-sts - - amazonka-support - - amazonka-swf - - amazonka-workspaces - # Tests which we should build and run, but which are expected to fail. We # should not fail a build based on a test failure for one of these packages. expected-test-failures: From a53902a7a70ab4e37b002447da99d9b1e88b6a2b Mon Sep 17 00:00:00 2001 From: Gabriel Gonzalez Date: Sat, 29 Aug 2015 08:02:16 -0700 Subject: [PATCH 704/933] Add `morte` to Stackage --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 538728f0..72edda55 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -452,6 +452,7 @@ packages: - pipes-safe - turtle - foldl + - morte "Andrew Thaddeus Martin ": - yesod-table From 6facdaf38f231e2d217cd0d5a07ddeba2c77e5ea Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sat, 29 Aug 2015 21:06:17 +0300 Subject: [PATCH 705/933] Add variables for new amazonka release --- automated/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automated/build.sh b/automated/build.sh index da6a9b60..9b7fbc0e 100755 --- a/automated/build.sh +++ b/automated/build.sh @@ -73,7 +73,7 @@ chmod +x stackage-curator ARGS_COMMON="--rm -u $USER -v $WORKDIR:/home/stackage/work -w /home/stackage/work -v $BINDIR/stackage-curator:/usr/local/bin/stackage-curator:ro -v /etc/passwd:/etc/passwd:ro -v /etc/group:/etc/group:ro" ARGS_PREBUILD="$ARGS_COMMON -v $CABAL_DIR:/home/stackage/.cabal -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 $GHC_DIR:/home/stackage/.ghc:ro" -ARGS_UPLOAD="$ARGS_COMMON -e AWS_ACCESS_KEY=$AWS_ACCESS_KEY -e AWS_SECRET_KEY=$AWS_SECRET_KEY -v $AUTH_TOKEN:/auth-token:ro -v $HACKAGE_CREDS:/hackage-creds:ro -v $DOT_STACKAGE_DIR:/home/stackage/.stackage -v $SSH_DIR:/home/ubuntu/.ssh:ro -v $GITCONFIG:/home/stackage/.gitconfig:ro -v $CABAL_DIR:/home/stackage/.cabal:ro" +ARGS_UPLOAD="$ARGS_COMMON -e AWS_ACCESS_KEY=$AWS_ACCESS_KEY -e AWS_ACCESS_KEY_ID=$AWS_ACCESS_KEY -e AWS_SECRET_KEY=$AWS_SECRET_KEY -e AWS_SECRET_ACCESS_KEY=$AWS_SECRET_KEY -v $AUTH_TOKEN:/auth-token:ro -v $HACKAGE_CREDS:/hackage-creds:ro -v $DOT_STACKAGE_DIR:/home/stackage/.stackage -v $SSH_DIR:/home/ubuntu/.ssh:ro -v $GITCONFIG:/home/stackage/.gitconfig:ro -v $CABAL_DIR:/home/stackage/.cabal:ro" # Use cabal update first to initialize ~/.cabal.config, then use stackage-curator update to get it securely docker run $ARGS_UPLOAD $IMAGE /bin/bash -c "stackage-curator check-target-available --target $TARGET" From 845d207a873582e5ecd092e2c123f6de1ed3ea2c Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sat, 29 Aug 2015 21:11:51 +0300 Subject: [PATCH 706/933] Add system library for #785 (pinging @borsboom) --- debian-bootstrap.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index 5f6fd1f7..20566327 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -60,6 +60,7 @@ apt-get install -y \ libzmq3-dev \ libmagic-dev \ libudev-dev \ + libfftw3-dev \ libpcap0.8-dev mkdir /tmp/nettle-build From 312e5b6f3ade6b2fc3555c3ced00de8abfc59262 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sun, 30 Aug 2015 18:10:15 +0200 Subject: [PATCH 707/933] Remove aeson & attoparsec upper bound (closes #572) --- build-constraints.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ad4c1042..94d0d70d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1343,10 +1343,6 @@ packages: # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 - # https://github.com/fpco/stackage/issues/572 - - attoparsec < 0.13 - - aeson < 0.8.1.0 - # https://github.com/fpco/stackage/issues/682 - vector < 0.11 From 400232b158847bfc70478c4409666c7df3261835 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sun, 30 Aug 2015 18:14:24 +0200 Subject: [PATCH 708/933] Re-enable two test suites (#622) --- build-constraints.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 94d0d70d..1008fdd7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1501,12 +1501,10 @@ skipped-tests: - aws # https://github.com/fpco/stackage/issues/622 - - ad - bound - heaps - hyphenation - machines - - fixed-vector # https://github.com/kaizhang/clustering/issues/2 - clustering From 4c1bf8ee67d91462ce819a58ec9845069bd80f83 Mon Sep 17 00:00:00 2001 From: Oleg Grenrus Date: Mon, 31 Aug 2015 06:35:33 +0300 Subject: [PATCH 709/933] Add universe package family --- build-constraints.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1008fdd7..82ce9777 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -886,6 +886,12 @@ packages: - regex-applicative-text - spdx - these + - universe + - universe-base + - universe-instances-base + - universe-instances-extended + - universe-instances-trans + - universe-reverse-instances - waitra "Adam C. Foltzer acfoltzer@galois.com @acfoltzer": From d4a9a04e5b5fc70aed3178ab129ae1ca7b2a890c Mon Sep 17 00:00:00 2001 From: Mitchell Rosen Date: Sun, 30 Aug 2015 22:05:30 -0700 Subject: [PATCH 710/933] Update build-constraints.yaml --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1008fdd7..b8d6bb2b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1046,6 +1046,7 @@ packages: - aeson-better-errors "Mitchell Rosen @christiaanb": From 0f967405a495bd5c1c06b17130a8e6a923d13222 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 31 Aug 2015 16:35:30 +0200 Subject: [PATCH 711/933] Disable language-lua2 due to build failure #778 --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8589cdc4..98ef17df 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1052,7 +1052,8 @@ packages: - aeson-better-errors "Mitchell Rosen @christiaanb": From 438b9cd63b973a6bfa61ae5c0ce6eec26619d24a Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 31 Aug 2015 16:42:40 +0200 Subject: [PATCH 712/933] Allow broken cron test-suite to fail --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 98ef17df..0f3ae64a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1860,6 +1860,9 @@ expected-test-failures: # https://github.com/barrucadu/dejafu/issues/14 - dejafu + # https://github.com/MichaelXavier/cron/issues/22 + - cron + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 28c3e6192805c7a4006a2dc2a2cc556d0bb4bf7c Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 31 Aug 2015 16:52:31 +0200 Subject: [PATCH 713/933] Allow waitra test-suite to fail --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0f3ae64a..ccd1362a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1925,6 +1925,9 @@ skipped-benchmarks: # https://github.com/liyang/true-name/issues/2 - fast-builder + # https://github.com/futurice/waitra/issues/4 + - waitra + skipped-profiling: # https://github.com/nomeata/ghc-heap-view/commit/8d198eb8fbbad2ce0c4527c781659f35b8909c04#diff-8288955e209cfbead5b318a8598be9c0R10 - ghc-heap-view From 12bea2c54388b93e89a1429ee02f638ecf594d51 Mon Sep 17 00:00:00 2001 From: Mitchell Rosen Date: Mon, 31 Aug 2015 08:22:02 -0700 Subject: [PATCH 714/933] Add `language-lua2`, take 2 --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ccd1362a..0320e680 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1052,8 +1052,7 @@ packages: - aeson-better-errors "Mitchell Rosen @christiaanb": From d5986d5bbf0b74fabef0974bd86440ae4d87c3ce Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 31 Aug 2015 17:31:37 +0200 Subject: [PATCH 715/933] Move waitra test suite exclusion to the right place --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ccd1362a..9bd83ae4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1863,6 +1863,9 @@ expected-test-failures: # https://github.com/MichaelXavier/cron/issues/22 - cron + # https://github.com/futurice/waitra/issues/4 + - waitra + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 @@ -1925,9 +1928,6 @@ skipped-benchmarks: # https://github.com/liyang/true-name/issues/2 - fast-builder - # https://github.com/futurice/waitra/issues/4 - - waitra - skipped-profiling: # https://github.com/nomeata/ghc-heap-view/commit/8d198eb8fbbad2ce0c4527c781659f35b8909c04#diff-8288955e209cfbead5b318a8598be9c0R10 - ghc-heap-view From 3ffb98f27bea9dc59f07a47d9c34c5b03735a5c2 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 31 Aug 2015 21:05:57 +0200 Subject: [PATCH 716/933] Allow language-lua2 test-suite to fail #790 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 448fd972..61e92283 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1865,6 +1865,9 @@ expected-test-failures: # https://github.com/futurice/waitra/issues/4 - waitra + # https://github.com/fpco/stackage/pull/790 + - language-lua2 + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 892dd565a17d91ba040ac617f91e9c8830d6869c Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 31 Aug 2015 21:21:08 +0200 Subject: [PATCH 717/933] Re-enable tests for language-lua2 #790 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 61e92283..448fd972 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1865,9 +1865,6 @@ expected-test-failures: # https://github.com/futurice/waitra/issues/4 - waitra - # https://github.com/fpco/stackage/pull/790 - - language-lua2 - # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 24ccbb07206b44f987c0dd45eede6d200a859000 Mon Sep 17 00:00:00 2001 From: Dmitry Ivanov Date: Tue, 1 Sep 2015 17:33:11 +0600 Subject: [PATCH 718/933] Add yi and its dependencies --- build-constraints.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 448fd972..2da87978 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1346,6 +1346,21 @@ packages: "Franklin Chen @FranklinChen": - Ebnf2ps + "Dmitry Ivanov @ethercrow": + - charsetdetect-ae + - docopt + - dynamic-state + - dyre + - io-storage + - oo-prototypes + - pointedlist + - word-trie + - xdg-basedir + - yi + - yi-fuzzy-open + - yi-language + - yi-rope + "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 From a549719d5043a195ae0426a37a71f3a7401ccc84 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Tue, 1 Sep 2015 08:58:50 -0700 Subject: [PATCH 719/933] Re-enable waitra test suite --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 448fd972..9a8e1a09 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1862,9 +1862,6 @@ expected-test-failures: # https://github.com/MichaelXavier/cron/issues/22 - cron - # https://github.com/futurice/waitra/issues/4 - - waitra - # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 275a49fadb3044b190de10de049e790c62b59118 Mon Sep 17 00:00:00 2001 From: tobbebex Date: Tue, 1 Sep 2015 22:17:16 +0200 Subject: [PATCH 720/933] Added GPipe and GPipe-GLFW --- build-constraints.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ccfed2fb..6b394ea8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1360,6 +1360,12 @@ packages: - yi-fuzzy-open - yi-language - yi-rope + + "Tobias Bexelius @tobbebex": + - GPipe + + "Patrick Redmond @plredmond": + - GPipe-GLFW "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 From b67d55ffde02905bddba22f3360bacdd4daf663d Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Tue, 1 Sep 2015 22:17:55 -0700 Subject: [PATCH 721/933] Disable yi-fuzzy-open due to build failure. #793 --- build-constraints.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6b394ea8..b2e402bc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1357,13 +1357,14 @@ packages: - word-trie - xdg-basedir - yi - - yi-fuzzy-open + # https://github.com/fpco/stackage/issues/793 + # - yi-fuzzy-open - yi-language - yi-rope - + "Tobias Bexelius @tobbebex": - GPipe - + "Patrick Redmond @plredmond": - GPipe-GLFW From 5f3a5d33353220f9bd13a6b17c1c5fcbdb185e56 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Tue, 1 Sep 2015 22:34:51 -0700 Subject: [PATCH 722/933] Disable docopt due to test suite build failure. #794 --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b2e402bc..de447002 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1348,7 +1348,8 @@ packages: "Dmitry Ivanov @ethercrow": - charsetdetect-ae - - docopt + # https://github.com/fpco/stackage/issues/794 + # - docopt - dynamic-state - dyre - io-storage From e3b864d3570a1edd9f7e2ef74ba38823c0d0aa15 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 2 Sep 2015 09:17:40 -0700 Subject: [PATCH 723/933] Re-enable yi-fuzzy-open per #793. --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index de447002..ebe0a9e2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1358,8 +1358,7 @@ packages: - word-trie - xdg-basedir - yi - # https://github.com/fpco/stackage/issues/793 - # - yi-fuzzy-open + - yi-fuzzy-open - yi-language - yi-rope From 3c0144726dc14127f773aecebbd6a776e71c0cc7 Mon Sep 17 00:00:00 2001 From: Spencer Janssen Date: Wed, 2 Sep 2015 13:15:58 -0500 Subject: [PATCH 724/933] Added Xauth --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9260d4ab..f807f646 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1369,6 +1369,9 @@ packages: "Patrick Redmond @plredmond": - GPipe-GLFW + "Spencer Janssen ": + - Xauth + "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 From 99104760e34e8f281f28885c0baefabb1b14ef96 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 3 Sep 2015 18:42:50 +0300 Subject: [PATCH 725/933] Add libxau-dev #795 pinging @borsboom --- debian-bootstrap.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index 20566327..c18f75b7 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -61,6 +61,7 @@ apt-get install -y \ libmagic-dev \ libudev-dev \ libfftw3-dev \ + libxau-dev \ libpcap0.8-dev mkdir /tmp/nettle-build From 4ea6f22dbc2e786bf690bbe4bd4c6287f35eacd5 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 3 Sep 2015 08:53:03 -0700 Subject: [PATCH 726/933] Added constraint "hpc-coveralls < 1" per #798 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9260d4ab..d2ea6510 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1398,6 +1398,9 @@ packages: # https://github.com/fpco/stackage/issues/768 - HUnit < 1.3 + # https://github.com/fpco/stackage/issues/798 + - hpc-coveralls < 1 + # 0.5.2.0 is deprecated # - cabal-helper < 0.5.2.0 || > 0.5.2.0 From 46b9e5cf3439cc5ea7040f32558113a72b637475 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 3 Sep 2015 09:14:26 -0700 Subject: [PATCH 727/933] Add constraint "pcre-heavy < 1" per #797 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d2ea6510..294156cb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1398,6 +1398,9 @@ packages: # https://github.com/fpco/stackage/issues/768 - HUnit < 1.3 + # https://github.com/fpco/stackage/issues/797 + - pcre-heavy < 1 + # https://github.com/fpco/stackage/issues/798 - hpc-coveralls < 1 From 0ee212beb208838b29b396f884d0594f5d881f93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niklas=20Hamb=C3=BCchen?= Date: Thu, 3 Sep 2015 20:23:06 +0200 Subject: [PATCH 728/933] Add reinterpret-cast --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 71181b41..676f90c7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1298,6 +1298,7 @@ packages: "Niklas Hambüchen mail@nh2.me @nh2": - hidapi - iso8601-time + - reinterpret-cast "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 From 7057e9e636b67f13284dacf67fafb64c2e1c0907 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niklas=20Hamb=C3=BCchen?= Date: Thu, 3 Sep 2015 21:57:50 +0200 Subject: [PATCH 729/933] Add network-house --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 676f90c7..0aac01b2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1298,6 +1298,7 @@ packages: "Niklas Hambüchen mail@nh2.me @nh2": - hidapi - iso8601-time + - network-house - reinterpret-cast "Stackage upper bounds": From 08c08ccc1461e9e0e262456810a3cb5957898ac0 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 3 Sep 2015 17:40:51 -0700 Subject: [PATCH 730/933] Remove constraint "pcre-heavy < 1" per #797 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f0098b1e..7b3b77db 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1404,9 +1404,6 @@ packages: # https://github.com/fpco/stackage/issues/768 - HUnit < 1.3 - # https://github.com/fpco/stackage/issues/797 - - pcre-heavy < 1 - # https://github.com/fpco/stackage/issues/798 - hpc-coveralls < 1 From e61c7ccd651255e9365a88f3a430ddfcf4ef33ae Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 3 Sep 2015 22:21:48 -0700 Subject: [PATCH 731/933] Add constraint "stack < 0.1.4" per #802 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7b3b77db..3f4b015c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1407,6 +1407,9 @@ packages: # https://github.com/fpco/stackage/issues/798 - hpc-coveralls < 1 + # https://github.com/fpco/stackage/issues/802 + - stack < 0.1.4 + # 0.5.2.0 is deprecated # - cabal-helper < 0.5.2.0 || > 0.5.2.0 From 6751ed49a9ec95959a4b4d8e46593391c65803b0 Mon Sep 17 00:00:00 2001 From: ZjMNZHgG5jMXw Date: Fri, 4 Sep 2015 12:42:45 +0200 Subject: [PATCH 732/933] Update build-constraints.yaml --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3f4b015c..bfe66c7e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1374,6 +1374,9 @@ packages: "Spencer Janssen ": - Xauth + + "Stefan Berthold": + - smallcaps "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 From 156a00d6158743c4f3b57b3ea3ad82b791116c07 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Fri, 4 Sep 2015 10:34:17 -0700 Subject: [PATCH 733/933] Revert "Add constraint "stack < 0.1.4" per #802" This reverts commit e61c7ccd651255e9365a88f3a430ddfcf4ef33ae. --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index bfe66c7e..d21316b4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1410,9 +1410,6 @@ packages: # https://github.com/fpco/stackage/issues/798 - hpc-coveralls < 1 - # https://github.com/fpco/stackage/issues/802 - - stack < 0.1.4 - # 0.5.2.0 is deprecated # - cabal-helper < 0.5.2.0 || > 0.5.2.0 From 72949de8bcadcfeed777dd7dc81e35bfb39613f5 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Fri, 4 Sep 2015 10:40:45 -0700 Subject: [PATCH 734/933] Remove constraint "yesod-test < 1.5" per #760 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d21316b4..a1184b2a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1391,9 +1391,6 @@ packages: # https://github.com/fpco/stackage/issues/758 - acid-state < 0.13 - # https://github.com/fpco/stackage/issues/760 - - yesod-test < 1.5 - # https://github.com/fpco/stackage/issues/765 - hspec < 2.2 - hspec-core < 2.2 From 2584df95faacc6b149d68afd05762cbd6a71a9a6 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 3 Sep 2015 11:15:19 -0700 Subject: [PATCH 735/933] Add nodejs and npm #736 --- debian-bootstrap.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index c18f75b7..61bd9a50 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -62,6 +62,8 @@ apt-get install -y \ libudev-dev \ libfftw3-dev \ libxau-dev \ + nodejs \ + npm \ libpcap0.8-dev mkdir /tmp/nettle-build From e60e73763ae762a68e611a0a40632e430a96cc67 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Fri, 4 Sep 2015 20:14:29 -0700 Subject: [PATCH 736/933] Remove constraint "acid-state < 0.13" per #758 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a1184b2a..eee403b9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1388,9 +1388,6 @@ packages: # https://github.com/fpco/stackage/issues/754 - messagepack < 0.5 - # https://github.com/fpco/stackage/issues/758 - - acid-state < 0.13 - # https://github.com/fpco/stackage/issues/765 - hspec < 2.2 - hspec-core < 2.2 From f929592b7a6255058e20e32c4602ea2e73a1a553 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sat, 5 Sep 2015 10:21:28 -0700 Subject: [PATCH 737/933] Revert "Added constraint "hpc-coveralls < 1" per #798" This reverts commit 4ea6f22dbc2e786bf690bbe4bd4c6287f35eacd5. --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index eee403b9..aed6b1cc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1401,9 +1401,6 @@ packages: # https://github.com/fpco/stackage/issues/768 - HUnit < 1.3 - # https://github.com/fpco/stackage/issues/798 - - hpc-coveralls < 1 - # 0.5.2.0 is deprecated # - cabal-helper < 0.5.2.0 || > 0.5.2.0 From a768baa7c50dd40854aebb1c4c44a009c9c2ab8b Mon Sep 17 00:00:00 2001 From: Tomas Carnecky Date: Sun, 6 Sep 2015 11:52:24 +0200 Subject: [PATCH 738/933] Add more packages owned by Tomas Carnecky --- build-constraints.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index aed6b1cc..fa6f77af 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -827,6 +827,16 @@ packages: - pipes-network "Tomas Carnecky": + - avers + - css-syntax + - etcd + - github-types + - github-webhook-handler + - github-webhook-handler-snap + - google-cloud + - kraken + - mole + - publicsuffix - rethinkdb-client-driver "Alexandr Kurilin alex@kurilin.net @alex_kurilin": From 5d096b82251291ce13ab30da9331c9c9e98926e4 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 7 Sep 2015 12:05:35 +0900 Subject: [PATCH 739/933] add cabal-sort --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index fa6f77af..f575bdba 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -818,6 +818,7 @@ packages: "Jens Petersen juhpetersen@gmail.com @juhp": - cabal-rpm + - cabal-sort "Renzo Carbonara renzocarbonara@gmail.com @k0001": - network-simple From b11d2d706c52d0ac40f79032416663371b4a8fd9 Mon Sep 17 00:00:00 2001 From: Oleg Grenrus Date: Mon, 7 Sep 2015 07:31:00 +0300 Subject: [PATCH 740/933] Add binary-orphans --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index fa6f77af..b3fdb537 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -886,6 +886,7 @@ packages: - string-conversions "Oleg Grenrus oleg.grenrus@iki.fi @phadej": + - binary-orphans - bower-json - boxes - edit-distance From 49ad2954559dd2c063f70c634d942894bc17f6b3 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 7 Sep 2015 08:33:35 +0300 Subject: [PATCH 741/933] Remove expected test failure haskell/network-uri#10 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index fa6f77af..1163730a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1665,9 +1665,6 @@ expected-test-failures: # https://github.com/haskell/cabal/pull/2277 - cabal-install - # https://github.com/haskell/network-uri/issues/10 - - network-uri - # https://github.com/fpco/stackage/issues/376 - rematch From ea90b4eb9d3fcfd24995f7e2822fb1334646841d Mon Sep 17 00:00:00 2001 From: Gabriel Gonzalez Date: Mon, 7 Sep 2015 12:07:32 -0700 Subject: [PATCH 742/933] Add `pipes-extras` to Stackage --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index b625fe82..25d3daab 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -447,6 +447,7 @@ packages: "Gabriel Gonzalez ": - pipes + - pipes-extras - pipes-parse - pipes-concurrency - pipes-safe From 9923ae1bb78d8d2940c19ade6183b97dd1a1609f Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 8 Sep 2015 11:27:43 +0900 Subject: [PATCH 743/933] fix up CURATORS.md link to issue 746 --- CURATORS.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CURATORS.md b/CURATORS.md index f20ef46b..1f02a3cb 100644 --- a/CURATORS.md +++ b/CURATORS.md @@ -53,8 +53,7 @@ docker rmi $(docker images -q) ``` 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/fpco/stackage/issues/746). +force all packages to be rebuilt. See: [issue#746](https://github.com/fpco/stackage/issues/746). ## stackage-build server From c394f2f45f94b2d938648b821bbb9ca024d33ce9 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 8 Sep 2015 07:25:59 +0300 Subject: [PATCH 744/933] Remove expected test failure ekmett/parsers#47 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b625fe82..5c2930bd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1752,9 +1752,6 @@ expected-test-failures: # https://github.com/haskell/ghc-events/issues/9 - ghc-events - # https://github.com/ekmett/parsers/issues/47 - - parsers - # Requires a running server - bitcoin-api - bitcoin-api-extra From 5d89b118d62142263f7a7b22caeaa129c5b8f9d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Gr=C3=B6ber?= Date: Mon, 7 Sep 2015 09:20:46 +0200 Subject: [PATCH 745/933] ghc-mod works with GHC 7.10 now --- build-constraints.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index fa6f77af..a95052c0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -639,12 +639,14 @@ packages: - ghc-syb-utils "Boris Buliga ": - # https://github.com/kazu-yamamoto/ghc-mod/issues/437 GHC 7.10 - # - ghc-mod - io-choice # https://github.com/d12frosted/CanonicalPath/issues/5 # - system-canonicalpath + "Daniel Gröber ": + - ghc-mod + - cabal-helper == 0.5.3.0 + "Yann Esposito ": - holy-project @@ -1638,7 +1640,6 @@ expected-test-failures: - webdriver-angular # Weird conflicts with sandboxing - - ghc-mod - ghcid # Requires locally running server From 01ecbdce1d07f1d5607b4240569c742369c3e1c7 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 8 Sep 2015 17:31:56 +0900 Subject: [PATCH 746/933] CURATORS.md: adding Debian packages to the build docker image --- CURATORS.md | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/CURATORS.md b/CURATORS.md index 1f02a3cb..59bc0a57 100644 --- a/CURATORS.md +++ b/CURATORS.md @@ -38,12 +38,20 @@ to refer to the issue for workarounds added to that file. * __Skipping tests and benchmarks__ If the upper bound is only in a test suite or benchmark, you can add the relevant package to skipped-tests or skipped-benchmarks. For example, if conduit had an upper bound on criterion for a benchmark, you could added conduit as a skipped benchmark. * __Excluding packages__ In an extreme case of a non-responsive maintainer, you can remove the package entirely from Stackage. We try to avoid that whenever possible -## Upgrading GHC versions +## Updating the content of the Docker image used for building +### Adding Debian packages for required system tools or libraries +Additional (non-Haskell) system libraries or tools should be added to `stackage/debian-bootstrap.sh`. +Committing the changes should trigger a DOckerHub. Normally only the master branch needs to be updated +since new packages are not added to the current lts release. + +### Upgrading GHC version The Dockerfile contains information on which GHC versions should be used. You can modify it and push it to Github to trigger a DockerHub build. The master -branch is used for nightlies, and the lts branch for LTS. Once a new Docker -image is available, you'll need to pull it onto the stackage-build server (see +branch is used for nightlies, and the lts branch for 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 delete all of the old images and let the new ones get downloaded: @@ -52,7 +60,7 @@ docker rm $(docker ps -a -q) docker rmi $(docker images -q) ``` -You should also delete the cache directories on the stackage-build server to +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/fpco/stackage/issues/746). ## stackage-build server From 491c2376bf36edc16b748a13161fd16f6ad91e7b Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 8 Sep 2015 18:30:47 +0900 Subject: [PATCH 747/933] Revert "Disable docopt due to test suite build failure. #794" should be fixed with docopt-0.7.0.3 This reverts commit 5f3a5d33353220f9bd13a6b17c1c5fcbdb185e56. --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ce3dd324..41d753c5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1365,8 +1365,7 @@ packages: "Dmitry Ivanov @ethercrow": - charsetdetect-ae - # https://github.com/fpco/stackage/issues/794 - # - docopt + - docopt - dynamic-state - dyre - io-storage From a6ed4bafb1078139ac4a4c4d96d82669d09c5d18 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 8 Sep 2015 18:42:46 +0900 Subject: [PATCH 748/933] allow etcd testsuite to fail (#811) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 41d753c5..f77738d9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1840,6 +1840,9 @@ expected-test-failures: # https://github.com/MichaelXavier/cron/issues/22 - cron + # https://github.com/fpco/stackage/issues/811 + - etcd + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 396fbbfe8fe801c66e5efa4271d79d3d70fb613a Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 8 Sep 2015 19:10:40 +0900 Subject: [PATCH 749/933] allow x509-validation haddock to fail (vincenthz/hs-certificate#63) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f77738d9..69b7ffc5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1862,6 +1862,9 @@ expected-haddock-failures: # Not sure why, but it's a temporary package anyway - Cabal-ide-backend + # https://github.com/vincenthz/hs-certificate/issues/63 + - x509-validation + # Benchmarks which should not be built. Note that Stackage does *not* generally # build benchmarks. The difference here will be whether dependencies for these # benchmarks are included or not. From f3fd339f849858e48ecc783a48b399e6bb7f8a9e Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 8 Sep 2015 19:15:28 +0900 Subject: [PATCH 750/933] remove linear from expected test fails (ekmett/linear#75) --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 69b7ffc5..ea0473f6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1743,9 +1743,6 @@ expected-test-failures: # https://github.com/acid-state/safecopy/issues/25 GHC 7.10 - safecopy - # https://github.com/ekmett/linear/issues/75 GHC 7.10 - - linear - # https://github.com/haskell/haddock/issues/390 GHC 7.10 - haddock-library From baf652dc566ead90a3c20fbea7de99c06d2aa2d2 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 8 Sep 2015 19:17:59 +0900 Subject: [PATCH 751/933] Revert "allow x509-validation haddock to fail (vincenthz/hs-certificate#63)" See vincenthz/hs-certificate#62 This reverts commit 396fbbfe8fe801c66e5efa4271d79d3d70fb613a. --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ea0473f6..8c92725d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1859,9 +1859,6 @@ expected-haddock-failures: # Not sure why, but it's a temporary package anyway - Cabal-ide-backend - # https://github.com/vincenthz/hs-certificate/issues/63 - - x509-validation - # Benchmarks which should not be built. Note that Stackage does *not* generally # build benchmarks. The difference here will be whether dependencies for these # benchmarks are included or not. From ff376903a50db928b8a1ccf916d05baabf5049a4 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 8 Sep 2015 19:38:30 +0900 Subject: [PATCH 752/933] Disable docopt again due to testsuite failure (#794) This reverts commit 491c2376bf36edc16b748a13161fd16f6ad91e7b. --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8c92725d..c8e619c6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1365,7 +1365,8 @@ packages: "Dmitry Ivanov @ethercrow": - charsetdetect-ae - - docopt + # https://github.com/fpco/stackage/issues/794 + # - docopt - dynamic-state - dyre - io-storage From 06c887c505ffa603495caa2b99bc3dc2401a48be Mon Sep 17 00:00:00 2001 From: Mateusz Kowalczyk Date: Tue, 8 Sep 2015 14:40:17 +0100 Subject: [PATCH 753/933] Add inline-r and H --- build-constraints.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c8e619c6..5327f72b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1016,6 +1016,8 @@ packages: "Mateusz Kowalczyk @Fuuzetsu": - aeson-schema + - inline-r + - H "David Fox @ddssff": - debian @@ -1387,7 +1389,7 @@ packages: "Spencer Janssen ": - Xauth - + "Stefan Berthold": - smallcaps From 12116cd2cdfd8f6df9017cc7432bc04db409cb06 Mon Sep 17 00:00:00 2001 From: Oleg Grenrus Date: Tue, 8 Sep 2015 18:39:35 +0300 Subject: [PATCH 754/933] Add binary-tagged --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index c8e619c6..b75ab45e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -889,6 +889,7 @@ packages: "Oleg Grenrus oleg.grenrus@iki.fi @phadej": - binary-orphans + - binary-tagged - bower-json - boxes - edit-distance From b5cffc5d0868844f3833c414bfaab8d2c9b67c9a Mon Sep 17 00:00:00 2001 From: Gregory Collins Date: Tue, 8 Sep 2015 17:16:58 -0700 Subject: [PATCH 755/933] Add some of my packages to stackage io-streams by @DanBurton's request, also hashtables and openssl-streams. --- build-constraints.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index c8e619c6..5fa3ab86 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1391,6 +1391,11 @@ packages: "Stefan Berthold": - smallcaps + "Gregory Collins ": + - hashtables + - io-streams + - openssl-streams + "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 From 43cdd80c913ebcc66c675f5a3e37517dc9cfa60a Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 9 Sep 2015 10:52:33 +0900 Subject: [PATCH 756/933] Revert "Block hopenpgp-tools due to graphviz #749" should be fixed by graphviz-2999.18.0.0 This reverts commit d10cb90f14a92935bf981c82a01ab0c0517f568b. --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c8e619c6..56df8a2b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -567,8 +567,7 @@ packages: - openpgp-asciiarmor - MusicBrainz - DAV - # https://github.com/fpco/stackage/issues/749 - # - hopenpgp-tools + - hopenpgp-tools "Joey Hess ": - git-annex < 5.20150731 From cbe76b7ea3a8cc46abd84c0c74c6a17f4cd8e7fd Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 9 Sep 2015 11:26:43 +0900 Subject: [PATCH 757/933] drop hspec upperbounds (#765) --- build-constraints.yaml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 56df8a2b..e68b81fd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1400,12 +1400,6 @@ packages: # https://github.com/fpco/stackage/issues/754 - messagepack < 0.5 - # https://github.com/fpco/stackage/issues/765 - - hspec < 2.2 - - hspec-core < 2.2 - - hspec-discover < 2.2 - - hspec-expectations < 0.7.2 - # https://github.com/fpco/stackage/issues/767 - dependent-map == 0.1.* - dependent-sum == 0.2.* From bc3990cb1ee5947edd1b97687e17eb791265a37e Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 9 Sep 2015 11:39:15 +0900 Subject: [PATCH 758/933] formatting - add a missing newline --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index e68b81fd..969c9174 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1145,6 +1145,7 @@ packages: "Anupam Jain ": - wai-routes + "Daniel Patterson ": - hspec-snap From 6c2ebbe4cf28f760d1e2605c7d990a8a8d9ddd06 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 9 Sep 2015 11:39:41 +0900 Subject: [PATCH 759/933] tasty < 0.11 (#817) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 969c9174..674258cb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -526,7 +526,7 @@ packages: - regex-applicative - lexer-applicative - smallcheck - - tasty + - tasty < 0.11 - tasty-golden - tasty-hunit - tasty-quickcheck From 8e587502cf9932b6ab3797c535a09223cf02a991 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 9 Sep 2015 16:04:12 +0900 Subject: [PATCH 760/933] CURATORS.md: mention docker pull command --- CURATORS.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CURATORS.md b/CURATORS.md index 59bc0a57..a3909316 100644 --- a/CURATORS.md +++ b/CURATORS.md @@ -42,7 +42,7 @@ to refer to the issue for workarounds added to that file. ### Adding Debian packages for required system tools or libraries Additional (non-Haskell) system libraries or tools should be added to `stackage/debian-bootstrap.sh`. -Committing the changes should trigger a DOckerHub. Normally only the master branch needs to be updated +Committing the changes should trigger a DockerHub. Normally only the master branch needs to be updated since new packages are not added to the current lts release. ### Upgrading GHC version @@ -60,6 +60,8 @@ docker rm $(docker ps -a -q) docker rmi $(docker images -q) ``` +but `docker pull snoyberg/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/fpco/stackage/issues/746). From 432398e983dd74e5415112e982d125c4e0e0c9bc Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 9 Sep 2015 16:08:15 +0900 Subject: [PATCH 761/933] temporarily disable range and objective (#812) until we work out why using safe leads to: Control.Monad.Free: Can't be safely imported! The module itself isn't safe. --- build-constraints.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 674258cb..b43b82ef 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1094,7 +1094,8 @@ packages: "Fumiaki Kinoshita @fumieval": - control-bool - monad-skeleton - - objective + # https://github.com/fpco/stackage/issues/812 + #- objective - witherable - xml-lens @@ -1237,7 +1238,9 @@ packages: - hsass "Robert Massaioli robertmassaioli@gmail.com": - - range + {} + # https://github.com/fpco/stackage/issues/812 + #- range "Index Int ": - transformers-lift From ac3f160c6cac7cacc7d05be92dcdbecb4f7e2921 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 9 Sep 2015 16:59:47 +0900 Subject: [PATCH 762/933] fix disabling of range (#812) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b43b82ef..7be59c86 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1238,7 +1238,7 @@ packages: - hsass "Robert Massaioli robertmassaioli@gmail.com": - {} + [] # https://github.com/fpco/stackage/issues/812 #- range From 4f029ffe5a02584b26e754ca18e2aac72f82ce29 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 9 Sep 2015 18:25:55 +0900 Subject: [PATCH 763/933] Revert "temporarily disable range and objective (#812)" This reverts commit 432398e983dd74e5415112e982d125c4e0e0c9bc. --- build-constraints.yaml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7be59c86..674258cb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1094,8 +1094,7 @@ packages: "Fumiaki Kinoshita @fumieval": - control-bool - monad-skeleton - # https://github.com/fpco/stackage/issues/812 - #- objective + - objective - witherable - xml-lens @@ -1238,9 +1237,7 @@ packages: - hsass "Robert Massaioli robertmassaioli@gmail.com": - [] - # https://github.com/fpco/stackage/issues/812 - #- range + - range "Index Int ": - transformers-lift From c3a51a5c8eb6c81a910cd03451a8c4685fdb2c07 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 9 Sep 2015 18:27:05 +0900 Subject: [PATCH 764/933] prelude-extras-0.4.0.1 seems to make free unsafe (#812) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 674258cb..6451cef2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -321,7 +321,7 @@ packages: - numeric-extras - parsers - pointed - - prelude-extras + - prelude-extras < 0.4.0.1 - profunctor-extras - profunctors - reducers From 949408f4b7c3fe7680d82a51a361997549bfa00a Mon Sep 17 00:00:00 2001 From: Joachim Breitner Date: Wed, 9 Sep 2015 12:32:28 +0200 Subject: [PATCH 765/933] Add tasty-expected-failure --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6451cef2..f34c0535 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -558,6 +558,7 @@ packages: - gipeda - list-fusion-probe - haskell-spacegoo + - tasty-expected-failure "Aditya Bhargava Date: Thu, 10 Sep 2015 11:10:13 +0900 Subject: [PATCH 766/933] Revert "prelude-extras-0.4.0.1 seems to make free unsafe (#812)" should be fixed by 0.4.0.2 This reverts commit c3a51a5c8eb6c81a910cd03451a8c4685fdb2c07. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index dc4524b5..0c7b7745 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -321,7 +321,7 @@ packages: - numeric-extras - parsers - pointed - - prelude-extras < 0.4.0.1 + - prelude-extras - profunctor-extras - profunctors - reducers From 9820307d9a2f6452f8100cf5929ed6568f8707a2 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 10 Sep 2015 11:39:48 +0900 Subject: [PATCH 767/933] shelly tests should pass again with 1.6.3.4 (yesodweb/Shelly.hs#106) --- build-constraints.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0c7b7745..b4bd04cc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1791,10 +1791,6 @@ expected-test-failures: # Test suite needs a running neo4j server with auth disabled - haskell-neo4j-client - # https://github.com/fpco/stackage/issues/701 - # https://github.com/yesodweb/Shelly.hs/issues/106 - - shelly - # https://github.com/kazu-yamamoto/logger/issues/42 - wai-logger From adbf8de006f421afe3021553c1e7d4c45a833945 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 10 Sep 2015 15:17:43 +0900 Subject: [PATCH 768/933] hopefully purescript tests will pass now with npm + nodejs (#736) --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b4bd04cc..2c6e5a7e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1803,9 +1803,6 @@ expected-test-failures: # https://github.com/zmthy/http-media/issues/16 - http-media - # https://github.com/purescript/purescript/issues/1336 - - purescript - # https://github.com/fpco/stackage/issues/733 - ide-backend From 1eaa8f826437754ef02384c7091f54b0c82b3b03 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 10 Sep 2015 17:17:33 +0900 Subject: [PATCH 769/933] Revert "hopefully purescript tests will pass now with npm + nodejs (#736)" I guess npm needs some user setup... This reverts commit adbf8de006f421afe3021553c1e7d4c45a833945. --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2c6e5a7e..b4bd04cc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1803,6 +1803,9 @@ expected-test-failures: # https://github.com/zmthy/http-media/issues/16 - http-media + # https://github.com/purescript/purescript/issues/1336 + - purescript + # https://github.com/fpco/stackage/issues/733 - ide-backend From 5d381dd257466e49822d9f22f77f3f8243df518c Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 10 Sep 2015 17:45:55 +0900 Subject: [PATCH 770/933] Revert "shelly tests should pass again with 1.6.3.4 (yesodweb/Shelly.hs#106)" still seeing "preserve pipe behaviour FAILED" (#701) This reverts commit 9820307d9a2f6452f8100cf5929ed6568f8707a2. --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index b4bd04cc..0c7b7745 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1791,6 +1791,10 @@ expected-test-failures: # Test suite needs a running neo4j server with auth disabled - haskell-neo4j-client + # https://github.com/fpco/stackage/issues/701 + # https://github.com/yesodweb/Shelly.hs/issues/106 + - shelly + # https://github.com/kazu-yamamoto/logger/issues/42 - wai-logger From 1fa8aac189eeaae881720e07ba9d1185198ce569 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 10 Sep 2015 21:26:45 +0900 Subject: [PATCH 771/933] pred-trie test failing (athanclark/pred-trie#1) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0c7b7745..e9fa48e8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1841,6 +1841,9 @@ expected-test-failures: # https://github.com/fpco/stackage/issues/811 - etcd + # https://github.com/athanclark/pred-trie/issues/1 + - pred-trie + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 7ffe87d834041f8d046b948d830733fff01454b2 Mon Sep 17 00:00:00 2001 From: Sean Hunt Date: Thu, 10 Sep 2015 09:21:17 -0400 Subject: [PATCH 772/933] Add cheapskate to stackage. --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index e9fa48e8..63477aba 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1397,6 +1397,9 @@ packages: - io-streams - openssl-streams + "Sean Hunt Date: Thu, 10 Sep 2015 12:58:52 -0700 Subject: [PATCH 773/933] Added forecast-io to Stackage build references --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index e9fa48e8..0690ddc9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1396,6 +1396,9 @@ packages: - hashtables - io-streams - openssl-streams + + "Devan Stormont ": + - forecast-io "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 From 494364190e5720ae7bc8b20b18e09158e319620d Mon Sep 17 00:00:00 2001 From: Ivan Lazar Miljenovic Date: Tue, 8 Sep 2015 21:21:49 +1000 Subject: [PATCH 774/933] Add ivanm's packages --- build-constraints.yaml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 887fb91b..5e64ec0b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -698,7 +698,6 @@ packages: - multimap - parallel-io - text-binary - - wl-pprint-text - Chart-cairo - ghc-events - monad-extras @@ -1388,7 +1387,7 @@ packages: "Spencer Janssen ": - Xauth - + "Stefan Berthold": - smallcaps @@ -1399,9 +1398,12 @@ packages: "Devan Stormont ": - forecast-io - + "Sean Hunt @ivan-m": + - wl-pprint-text + - graphviz "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 From 3107557478679e5ec659cfa85d167cbe946ead4c Mon Sep 17 00:00:00 2001 From: Ivan Lazar Miljenovic Date: Tue, 8 Sep 2015 21:23:19 +1000 Subject: [PATCH 775/933] Run tests for graphviz Now works with QC-2.8 and doesn't depend on dot to run tests --- build-constraints.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5e64ec0b..70aff01b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1541,7 +1541,6 @@ skipped-tests: - bson - cabal-install - exceptions - - graphviz - pandoc - testpack - vector @@ -1631,9 +1630,6 @@ expected-test-failures: # https://github.com/fpco/stackage/issues/226 - options - # Depends on a missing graphviz executable - - graphviz - # No AWS creds available - aws From 5ed2d4e4e0248ad89ccfef0f790c8e72476506ca Mon Sep 17 00:00:00 2001 From: Ivan Lazar Miljenovic Date: Tue, 8 Sep 2015 21:39:13 +1000 Subject: [PATCH 776/933] Take over fgl as well --- build-constraints.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 70aff01b..10a1e403 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -72,7 +72,6 @@ packages: - dimensional - executable-hash - executable-path - - fgl - fixed-list - foreign-store - formatting @@ -1402,8 +1401,10 @@ packages: "Sean Hunt @ivan-m": - - wl-pprint-text + - fgl + - fgl-arbitrary - graphviz + - wl-pprint-text "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 From fb685455862abfa33bae7147da1d3120e7aeea39 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sat, 12 Sep 2015 12:25:40 +0900 Subject: [PATCH 777/933] Revert "Disable docopt again due to testsuite failure (#794)" This reverts commit ff376903a50db928b8a1ccf916d05baabf5049a4. --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 887fb91b..a0b8dc31 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1366,8 +1366,7 @@ packages: "Dmitry Ivanov @ethercrow": - charsetdetect-ae - # https://github.com/fpco/stackage/issues/794 - # - docopt + - docopt - dynamic-state - dyre - io-storage From fcf7a45b7a6d3ce57a5c1669dbbf5b873ad90ff3 Mon Sep 17 00:00:00 2001 From: Sharif Olorin Date: Sat, 12 Sep 2015 06:43:21 +0000 Subject: [PATCH 778/933] Add quickcheck-text and nagios-check --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index a0b8dc31..d46659d8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1402,6 +1402,10 @@ packages: "Sean Hunt @olorin": + - quickcheck-text + - nagios-check + "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 From 76c759fd061e70b582efb7853661cf4353beeed0 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 10 Sep 2015 17:13:57 +0200 Subject: [PATCH 779/933] Register my Hackage projects with Stackage. --- build-constraints.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 251c2f21..b4c2c021 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1413,6 +1413,18 @@ packages: - quickcheck-text - nagios-check + "Peter Simons simons@cryp.to @peti": + - funcmp + - hackage-db + - hledger-interest + - hopenssl + - hsdns + - hsemail + - hsyslog + - language-nix + - nix-paths + - streamproc + "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 @@ -1486,6 +1498,9 @@ package-flags: NineP: bytestring-in-base: false + nix-paths: + allow-relative-paths: true + # Used for packages that cannot be built on Linux skipped-builds: - hfsevents From e7d25d214154651f3aa67cd67879a858c96f5212 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sun, 13 Sep 2015 17:23:15 +0200 Subject: [PATCH 780/933] Fix comment typo --- debian-bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index 61bd9a50..f33a8641 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -1,7 +1,7 @@ #!/bin/bash -ex # Work in progress: create a list of commands necessary to get Stackage -# up-and-running on a freshly installed Debian-based system (includin Ubuntu). +# up-and-running on a freshly installed Debian-based system (including Ubuntu). # Quick start: # wget -O - https://raw.github.com/fpco/stackage/master/debian-bootstrap.sh | bash -ex From 687478036bca023c948da669a40093f1945417ba Mon Sep 17 00:00:00 2001 From: Christoph Hegemann Date: Sun, 13 Sep 2015 23:35:46 +0200 Subject: [PATCH 781/933] Update build-constraints.yaml --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index b4c2c021..946380a7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1424,6 +1424,9 @@ packages: - language-nix - nix-paths - streamproc + + "Christoph Hegemann Date: Mon, 14 Sep 2015 00:01:34 +0200 Subject: [PATCH 782/933] Upper bounds for #827 --- build-constraints.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 946380a7..b4a74f5d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1424,7 +1424,7 @@ packages: - language-nix - nix-paths - streamproc - + "Christoph Hegemann 0.5.2.0 + # https://github.com/fpco/stackage/issues/827 + - semigroups < 0.17 + - reducers < 3.12 + - text-show < 2.1 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From b2e935a19a9e0d2ff6ac00c81bdde382f219ddef Mon Sep 17 00:00:00 2001 From: Athan Clark Date: Sun, 13 Sep 2015 22:34:27 -0600 Subject: [PATCH 783/933] sets package --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index b4a74f5d..09a5d866 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1093,6 +1093,7 @@ packages: - ltext - pred-trie - poly-arity + - sets "Fumiaki Kinoshita @fumieval": - control-bool From 3b607fb4b8fd3637330c1a50d7802ddb461e808e Mon Sep 17 00:00:00 2001 From: Athan Clark Date: Sun, 13 Sep 2015 22:37:45 -0600 Subject: [PATCH 784/933] commutative (dummy package) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 09a5d866..c24ae268 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1093,6 +1093,7 @@ packages: - ltext - pred-trie - poly-arity + - commutative - sets "Fumiaki Kinoshita @fumieval": From 6e791c42a1372b99025c8d6a4e01cd65d4111c89 Mon Sep 17 00:00:00 2001 From: Jinjing Wang Date: Mon, 14 Sep 2015 21:23:52 +0800 Subject: [PATCH 785/933] Add moesocks to stackage --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index b4a74f5d..72d9924c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1427,6 +1427,9 @@ packages: "Christoph Hegemann @nfjinjing": + - moesocks "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 From 3d5dc6a3fe34621bcf8b848cbc2ceae795b9a8fd Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 14 Sep 2015 17:19:43 +0200 Subject: [PATCH 786/933] Upper bound for #831 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index b4a74f5d..f67361da 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1453,6 +1453,9 @@ packages: - reducers < 3.12 - text-show < 2.1 + # https://github.com/fpco/stackage/issues/831 + - lens < 4.13 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 5542e1220b24ba587a594d168f47dacd79db6b7d Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 14 Sep 2015 17:23:51 +0200 Subject: [PATCH 787/933] Upper bounds for #832 --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f67361da..08b1c263 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1456,6 +1456,10 @@ packages: # https://github.com/fpco/stackage/issues/831 - lens < 4.13 + # https://github.com/fpco/stackage/issues/832 + - linear < 1.20 + - reflection < 2.1 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 75b786ad42435a17061a1dc3022f550bb085de16 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 14 Sep 2015 17:42:08 +0200 Subject: [PATCH 788/933] Remove some #827 upper bounds --- build-constraints.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c90bb5d9..b10671aa 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1429,7 +1429,7 @@ packages: "Christoph Hegemann @nfjinjing": - moesocks @@ -1455,8 +1455,6 @@ packages: # https://github.com/fpco/stackage/issues/827 - semigroups < 0.17 - - reducers < 3.12 - - text-show < 2.1 # https://github.com/fpco/stackage/issues/831 - lens < 4.13 From 35b6469cec65bcfdda7ae49772f21cb5bb70ee5b Mon Sep 17 00:00:00 2001 From: Felipe Lessa Date: Tue, 15 Sep 2015 09:25:15 -0300 Subject: [PATCH 789/933] Add yesod-auth-account-fork under @meteficha. --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b10671aa..4a46703f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -412,8 +412,9 @@ packages: - serversession-frontend-wai - serversession-frontend-yesod - thumbnail-plus - - yesod-fb + - yesod-auth-account-fork - yesod-auth-fb + - yesod-fb - yesod-mangopay "Alexander Altman ": From f7e58370e67e874bb7ec25c6c91202e02b060e3a Mon Sep 17 00:00:00 2001 From: Sebastian Meric de Bellefon Date: Tue, 15 Sep 2015 17:58:25 -0400 Subject: [PATCH 790/933] add wai-middleware-metrics --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4a46703f..44ee3323 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1393,6 +1393,9 @@ packages: "Spencer Janssen ": - Xauth + "Sebastian de Bellefon @Helkafen": + - wai-middleware-metrics + "Stefan Berthold": - smallcaps From 7dc09b97ddcc6e2e5bf2e778b08d1c7c08d41e77 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Wed, 16 Sep 2015 20:08:38 +0200 Subject: [PATCH 791/933] Remove strict dep on cabal-helper --- build-constraints.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 44ee3323..8c116c78 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -645,7 +645,7 @@ packages: "Daniel Gröber ": - ghc-mod - - cabal-helper == 0.5.3.0 + - cabal-helper "Yann Esposito ": - holy-project @@ -1454,9 +1454,6 @@ packages: # https://github.com/fpco/stackage/issues/768 - HUnit < 1.3 - # 0.5.2.0 is deprecated - # - cabal-helper < 0.5.2.0 || > 0.5.2.0 - # https://github.com/fpco/stackage/issues/827 - semigroups < 0.17 From 2130493568eccce77262a681c5ed9d1c765fde62 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 17 Sep 2015 03:09:41 +0300 Subject: [PATCH 792/933] Upper bound for #836 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8c116c78..449b6e0e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1464,6 +1464,9 @@ packages: - linear < 1.20 - reflection < 2.1 + # https://github.com/fpco/stackage/issues/836 + - singletons < 1.2 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From c636b8e4485a03870866bfa5c392267067ddedd8 Mon Sep 17 00:00:00 2001 From: Gregory Schwartz Date: Wed, 16 Sep 2015 20:41:07 -0400 Subject: [PATCH 793/933] Update build-constraints.yaml --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 449b6e0e..82dabc28 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1436,6 +1436,9 @@ packages: "Jinjing Wang @nfjinjing": - moesocks + + "Gregory W. Schwartz ": + - fasta "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 From 009af5e60bc8d425cfd72aeae80f40a729f8717f Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 17 Sep 2015 17:35:09 +0300 Subject: [PATCH 794/933] Upper bound for #839 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 449b6e0e..7cf9f417 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1467,6 +1467,9 @@ packages: # https://github.com/fpco/stackage/issues/836 - singletons < 1.2 + # https://github.com/fpco/stackage/issues/839 + - freenect < 1.2.1 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From c3101745424792f1637a9b17b40105a48b61e22d Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 17 Sep 2015 17:37:24 +0300 Subject: [PATCH 795/933] Temporary block for #840 --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7cf9f417..777ae6f9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1424,7 +1424,8 @@ packages: - hackage-db - hledger-interest - hopenssl - - hsdns + # https://github.com/fpco/stackage/issues/840 + # - hsdns - hsemail - hsyslog - language-nix From f4c75899a5e7fb61f87f134129fe55f91f007a8b Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 17 Sep 2015 18:23:06 +0300 Subject: [PATCH 796/933] Expect test failure peti/language-nix#1 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 777ae6f9..9543dfe9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1896,6 +1896,9 @@ expected-test-failures: # https://github.com/athanclark/pred-trie/issues/1 - pred-trie + # https://github.com/peti/language-nix/issues/1 + - language-nix + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 118908e75f044b9df01daf435cdfb27f9110aadc Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 17 Sep 2015 18:24:46 +0300 Subject: [PATCH 797/933] Upper bound for #841 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9543dfe9..e5c123d0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1471,6 +1471,9 @@ packages: # https://github.com/fpco/stackage/issues/839 - freenect < 1.2.1 + # https://github.com/fpco/stackage/issues/841 + - DAV < 1.1 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From ff9cf7833dfe8efe142d09d9643f08b9e4ad3821 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 17 Sep 2015 18:28:39 +0300 Subject: [PATCH 798/933] Temporarily block packages for amcphail/hmatrix-gsl-stats#10 --- build-constraints.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e5c123d0..a3caec95 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1001,9 +1001,10 @@ packages: - generics-sop "Vivian McPhail ": - - hmatrix-gsl-stats - - hstatistics - - hsignal + # https://github.com/amcphail/hmatrix-gsl-stats/issues/10 + # - hmatrix-gsl-stats + # - hsignal + # - hstatistics - plot - plot-gtk - plot-gtk3 From b75b62bfa137a212eee995b361f049f81ea190b4 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 17 Sep 2015 18:31:16 +0300 Subject: [PATCH 799/933] Block packages for amcphail/plot#13 --- build-constraints.yaml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a3caec95..91079ed1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1005,9 +1005,12 @@ packages: # - hmatrix-gsl-stats # - hsignal # - hstatistics - - plot - - plot-gtk - - plot-gtk3 + + # https://github.com/amcphail/plot/issues/13 + # - plot + # - plot-gtk + # - plot-gtk3 + - vector-buffer - hmatrix-repa From 30f9094ccd7b50bbf337f4153cf96765f2d520e2 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 17 Sep 2015 18:32:05 +0300 Subject: [PATCH 800/933] Temporary block for #842 --- build-constraints.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 91079ed1..5ba553ab 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1021,8 +1021,10 @@ packages: "Mateusz Kowalczyk @Fuuzetsu": - aeson-schema - - inline-r - - H + + # https://github.com/fpco/stackage/issues/842 + # - inline-r + # - H "David Fox @ddssff": - debian From 723439705d73c04109d516d7aebdac7ac6b3af37 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 17 Sep 2015 18:36:33 +0300 Subject: [PATCH 801/933] hmatrix upper bound --- build-constraints.yaml | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5ba553ab..5cf171d6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1001,15 +1001,12 @@ packages: - generics-sop "Vivian McPhail ": - # https://github.com/amcphail/hmatrix-gsl-stats/issues/10 - # - hmatrix-gsl-stats - # - hsignal - # - hstatistics - - # https://github.com/amcphail/plot/issues/13 - # - plot - # - plot-gtk - # - plot-gtk3 + - hmatrix-gsl-stats + - hsignal + - hstatistics + - plot + - plot-gtk + - plot-gtk3 - vector-buffer - hmatrix-repa @@ -1480,6 +1477,11 @@ packages: # https://github.com/fpco/stackage/issues/841 - DAV < 1.1 + # https://github.com/amcphail/hmatrix-gsl-stats/issues/10 + # https://github.com/amcphail/plot/issues/13 + # https://github.com/amcphail/hmatrix-repa/issues/2 + - hmatrix < 0.17 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 8183f0acf9635683010c3622c56f838d2b6abbf0 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 17 Sep 2015 18:39:15 +0300 Subject: [PATCH 802/933] Extra upper bound --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5cf171d6..75195d44 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1481,6 +1481,7 @@ packages: # https://github.com/amcphail/plot/issues/13 # https://github.com/amcphail/hmatrix-repa/issues/2 - hmatrix < 0.17 + - hmatrix-gsl < 0.17 # Package flags are applied to individual packages, and override the values of # global-flags From 94be383468fdc78b62f7be3c7bf04a71d8572b66 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 17 Sep 2015 18:46:02 +0300 Subject: [PATCH 803/933] Add expected cryptonite test failure (closes #35) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 75195d44..aa6a7b08 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1911,6 +1911,9 @@ expected-test-failures: # https://github.com/peti/language-nix/issues/1 - language-nix + # https://github.com/vincenthz/cryptonite/issues/35 + - cryptonite + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From ad883cb050e6c29147fab959bf4d18f16237cfd9 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 17 Sep 2015 18:58:04 +0300 Subject: [PATCH 804/933] Remove expected test failure for cryptonite --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index aa6a7b08..75195d44 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1911,9 +1911,6 @@ expected-test-failures: # https://github.com/peti/language-nix/issues/1 - language-nix - # https://github.com/vincenthz/cryptonite/issues/35 - - cryptonite - # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 1e8e593afbe9151663bca2902ba8d7a8e3eb5eb7 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 17 Sep 2015 19:01:27 +0300 Subject: [PATCH 805/933] Upper bound for athanclark/pred-trie#2 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 75195d44..84923ca5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1483,6 +1483,9 @@ packages: - hmatrix < 0.17 - hmatrix-gsl < 0.17 + # https://github.com/athanclark/pred-trie/issues/2 + - composition-extra < 1.3 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From d0f8868c0bc82859106b082a94d2c77c6212ba83 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 17 Sep 2015 20:16:02 +0300 Subject: [PATCH 806/933] Expect test failure kazu-yamamoto/ghc-mod#611 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 84923ca5..18f5e99e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1914,6 +1914,9 @@ expected-test-failures: # https://github.com/peti/language-nix/issues/1 - language-nix + # https://github.com/kazu-yamamoto/ghc-mod/issues/611 + - ghc-mod + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 8f1c1c38abfd0b2b211d21d782770d9ed441d87a Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 17 Sep 2015 21:22:26 +0300 Subject: [PATCH 807/933] Expect test failure meteficha/yesod-auth-account-fork#4 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 18f5e99e..f3d33259 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1917,6 +1917,9 @@ expected-test-failures: # https://github.com/kazu-yamamoto/ghc-mod/issues/611 - ghc-mod + # https://github.com/meteficha/yesod-auth-account-fork/issues/4 + - yesod-auth-account-fork + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 5a65ab04a7778de97ba16aa4789564ac1851618c Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Thu, 17 Sep 2015 22:43:21 +0200 Subject: [PATCH 808/933] debian-bootstrap: Add adns.h for hsdns (closes #840) --- debian-bootstrap.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index f33a8641..490c99cc 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -64,6 +64,7 @@ apt-get install -y \ libxau-dev \ nodejs \ npm \ + libadns1-dev \ libpcap0.8-dev mkdir /tmp/nettle-build From ff14d89ffaac6dc3b203dcfa8c5e1e688cb0ea2a Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Thu, 17 Sep 2015 23:30:20 +0200 Subject: [PATCH 809/933] Another upper bound for #832 --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 050a97ab..3b384af1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1440,7 +1440,7 @@ packages: "Jinjing Wang @nfjinjing": - moesocks - + "Gregory W. Schwartz ": - fasta @@ -1470,6 +1470,7 @@ packages: # https://github.com/fpco/stackage/issues/832 - linear < 1.20 - reflection < 2.1 + - diagrams-lib < 1.3.0.4 # https://github.com/fpco/stackage/issues/836 - singletons < 1.2 From e6e468e64583b9280f0ddf5a7318ac732edcffde Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 18 Sep 2015 11:42:39 +0300 Subject: [PATCH 810/933] Remove expected failure for meteficha/yesod-auth-account-fork#4 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3b384af1..c0399a25 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1921,9 +1921,6 @@ expected-test-failures: # https://github.com/kazu-yamamoto/ghc-mod/issues/611 - ghc-mod - # https://github.com/meteficha/yesod-auth-account-fork/issues/4 - - yesod-auth-account-fork - # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From e67cc495ac6c40179c2c23c3363d7f75c3903200 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Fri, 18 Sep 2015 11:53:02 +0200 Subject: [PATCH 811/933] Attempt to install pkg-config libR for inline-r (#842) --- debian-bootstrap.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index 490c99cc..3353407e 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -65,6 +65,7 @@ apt-get install -y \ nodejs \ npm \ libadns1-dev \ + r-base-dev \ libpcap0.8-dev mkdir /tmp/nettle-build From a24f752c259426f257d28d16714f6b9f18cd8c23 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Fri, 18 Sep 2015 11:56:46 +0200 Subject: [PATCH 812/933] Re-enable inline-r and H (closes #842) --- build-constraints.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c0399a25..1bd5cd63 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1018,10 +1018,8 @@ packages: "Mateusz Kowalczyk @Fuuzetsu": - aeson-schema - - # https://github.com/fpco/stackage/issues/842 - # - inline-r - # - H + - inline-r + - H "David Fox @ddssff": - debian From f544b06200ab5da48a6e8ccacd78a97ce4b067de Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Fri, 18 Sep 2015 12:09:25 +0200 Subject: [PATCH 813/933] Disable inline-r and H again (reopens #842) --- build-constraints.yaml | 6 ++++-- debian-bootstrap.sh | 1 - 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1bd5cd63..c0399a25 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1018,8 +1018,10 @@ packages: "Mateusz Kowalczyk @Fuuzetsu": - aeson-schema - - inline-r - - H + + # https://github.com/fpco/stackage/issues/842 + # - inline-r + # - H "David Fox @ddssff": - debian diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index 3353407e..490c99cc 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -65,7 +65,6 @@ apt-get install -y \ nodejs \ npm \ libadns1-dev \ - r-base-dev \ libpcap0.8-dev mkdir /tmp/nettle-build From 1fca1d304e5a563fc29ce6f102b8e9d2c504d3e5 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Fri, 18 Sep 2015 19:13:05 +0200 Subject: [PATCH 814/933] Disable yesod-auth-account-fork due to test suite build failure meteficha/yesod-auth-account-fork#5 --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c0399a25..8348ab99 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -412,7 +412,8 @@ packages: - serversession-frontend-wai - serversession-frontend-yesod - thumbnail-plus - - yesod-auth-account-fork + # meteficha/yesod-auth-account-fork#5 + # - yesod-auth-account-fork - yesod-auth-fb - yesod-fb - yesod-mangopay From fd18f6dc25b45ac8a7b7c03163e22fa965947d20 Mon Sep 17 00:00:00 2001 From: Athan Clark Date: Fri, 18 Sep 2015 18:27:19 -0600 Subject: [PATCH 815/933] tries --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3b384af1..04590067 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1095,7 +1095,9 @@ packages: - composition-extra - digestive-functors-lucid - ltext + - rose-trees - pred-trie + - tries - poly-arity - commutative - sets From 78b0210192cfbf40f15b9a922dba5ad26fcf3017 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sat, 19 Sep 2015 04:59:29 +0200 Subject: [PATCH 816/933] Upper bound for #845 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8348ab99..7ec381c9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1491,6 +1491,9 @@ packages: # https://github.com/athanclark/pred-trie/issues/2 - composition-extra < 1.3 + # https://github.com/fpco/stackage/issues/845 + - aeson < 0.10 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 0d3109aea6d6a5fafa2e49d84f40648a0a970a7e Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sat, 19 Sep 2015 05:03:48 +0200 Subject: [PATCH 817/933] Remove upper bound on composition-extra (athanclark/pred-trie#2) --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7ec381c9..16fecd81 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1488,9 +1488,6 @@ packages: - hmatrix < 0.17 - hmatrix-gsl < 0.17 - # https://github.com/athanclark/pred-trie/issues/2 - - composition-extra < 1.3 - # https://github.com/fpco/stackage/issues/845 - aeson < 0.10 From 287facee737863c8f3a9a9068403dfbdcd1248d2 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sat, 19 Sep 2015 10:05:48 +0200 Subject: [PATCH 818/933] Upper bound excluding latest MFlow (agocorona/MFlow#64) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 482ffdb2..3ee22e7a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1493,6 +1493,9 @@ packages: # https://github.com/fpco/stackage/issues/845 - aeson < 0.10 + # https://github.com/agocorona/MFlow/issues/64 + - MFlow < 0.4.5.11 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 5948d0a5710b4494131578e9c43be2bcbcc3c2b5 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sat, 19 Sep 2015 12:39:03 +0200 Subject: [PATCH 819/933] Remove upper bound --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3ee22e7a..482ffdb2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1493,9 +1493,6 @@ packages: # https://github.com/fpco/stackage/issues/845 - aeson < 0.10 - # https://github.com/agocorona/MFlow/issues/64 - - MFlow < 0.4.5.11 - # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From f25fbb82ffdccf9ec0b565fbc053b4e2f2aec5ae Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sat, 19 Sep 2015 12:41:41 +0200 Subject: [PATCH 820/933] Add upper bound for #846 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 482ffdb2..aec7ce9d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1493,6 +1493,9 @@ packages: # https://github.com/fpco/stackage/issues/845 - aeson < 0.10 + # https://github.com/fpco/stackage/issues/846 + - postgresql-simple < 0.5 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 12e1e8ff3d9ed2fa48865ed974403c376dc623be Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sun, 20 Sep 2015 02:43:36 +0200 Subject: [PATCH 821/933] Disable users-persistent test-suite (agrafix/users#3) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index aec7ce9d..77c5d7dd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1927,6 +1927,9 @@ expected-test-failures: # https://github.com/kazu-yamamoto/ghc-mod/issues/611 - ghc-mod + # https://github.com/agrafix/users/issues/3 + - users-persistent + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 108667a3af802ba7a0060233069df011a2e42edd Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sun, 20 Sep 2015 08:19:49 +0200 Subject: [PATCH 822/933] Fix alignment --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 77c5d7dd..58b2bd2b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1927,8 +1927,8 @@ expected-test-failures: # https://github.com/kazu-yamamoto/ghc-mod/issues/611 - ghc-mod - # https://github.com/agrafix/users/issues/3 - - users-persistent + # https://github.com/agrafix/users/issues/3 + - users-persistent # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: From 4cfec232dcc20b6f34d00912e3810c850c76ff94 Mon Sep 17 00:00:00 2001 From: William Casarin Date: Sun, 20 Sep 2015 16:17:52 -0700 Subject: [PATCH 823/933] Add my packages WilliamCasarin @jb55 --- build-constraints.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 58b2bd2b..a2dafdb0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1054,6 +1054,13 @@ packages: - scalpel - wai-middleware-prometheus + "William Casarin @jb55": + - bson-lens + - cased + - pipes-csv + - pipes-mongodb + - skeletons + "Smirnov Alexey @chemist": - snmp - agentx From 11b79bbece2781c9393aa55d58d015b82c09d763 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 21 Sep 2015 05:14:07 +0300 Subject: [PATCH 824/933] Try out inline-r again (#842) --- build-constraints.yaml | 6 ++---- debian-bootstrap.sh | 3 +++ 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 58b2bd2b..9ac6a4cb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1019,10 +1019,8 @@ packages: "Mateusz Kowalczyk @Fuuzetsu": - aeson-schema - - # https://github.com/fpco/stackage/issues/842 - # - inline-r - # - H + - inline-r + - H "David Fox @ddssff": - debian diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index 490c99cc..a83aa9f9 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -11,6 +11,7 @@ # http://www.stackage.org/install add-apt-repository -y ppa:zoogie/sdl2-snapshots +add-apt-repository -y ppa:marutter/rrutter apt-get update apt-get install -y \ @@ -65,6 +66,8 @@ apt-get install -y \ nodejs \ npm \ libadns1-dev \ + r-base \ + r-base-dev \ libpcap0.8-dev mkdir /tmp/nettle-build From 65753fadd780dc4f45f760b7640dc9d3b79ce4a8 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 21 Sep 2015 07:54:41 +0300 Subject: [PATCH 825/933] Expect test failure for pipes-mongodb --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7e03611a..22a5b965 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1935,6 +1935,9 @@ expected-test-failures: # https://github.com/agrafix/users/issues/3 - users-persistent + # Requires a running server + - pipes-mongodb + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 60c87e4f37376f5a3c29fa068bd9e4d4e6602f39 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 21 Sep 2015 08:02:04 +0300 Subject: [PATCH 826/933] Remove upper bound and close #841 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 22a5b965..e953675d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1486,9 +1486,6 @@ packages: # https://github.com/fpco/stackage/issues/839 - freenect < 1.2.1 - # https://github.com/fpco/stackage/issues/841 - - DAV < 1.1 - # https://github.com/amcphail/hmatrix-gsl-stats/issues/10 # https://github.com/amcphail/plot/issues/13 # https://github.com/amcphail/hmatrix-repa/issues/2 From fb1c87d6b9234fa89210fca8f194795e9ced858a Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 21 Sep 2015 13:39:07 +0300 Subject: [PATCH 827/933] Upper bound for phaazon/smoothie#10 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index e953675d..b1122ec5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1498,6 +1498,9 @@ packages: # https://github.com/fpco/stackage/issues/846 - postgresql-simple < 0.5 + # https://github.com/phaazon/smoothie/issues/10 + - smoothie < 0.4.2 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From f58b94f441857328e7fbf0700f3d4adb12d5e424 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 21 Sep 2015 14:53:34 +0300 Subject: [PATCH 828/933] Expected test failure for tweag/HaskellR#208 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index b1122ec5..5a161d20 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1938,6 +1938,9 @@ expected-test-failures: # Requires a running server - pipes-mongodb + # https://github.com/tweag/HaskellR/issues/208 + - R + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From e83cd1f8aa85c448b9941d630fb784de1e33b3dd Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 21 Sep 2015 15:31:56 +0300 Subject: [PATCH 829/933] Revert "Upper bound for phaazon/smoothie#10" This reverts commit fb1c87d6b9234fa89210fca8f194795e9ced858a. --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5a161d20..a864a86c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1498,9 +1498,6 @@ packages: # https://github.com/fpco/stackage/issues/846 - postgresql-simple < 0.5 - # https://github.com/phaazon/smoothie/issues/10 - - smoothie < 0.4.2 - # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 548cc7ae6bef71a235c645f6b6184b481b1765e4 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 21 Sep 2015 18:33:13 +0300 Subject: [PATCH 830/933] Upper bound for vincenthz/hs-certificate#64 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index a864a86c..1faf9eec 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1498,6 +1498,9 @@ packages: # https://github.com/fpco/stackage/issues/846 - postgresql-simple < 0.5 + # https://github.com/vincenthz/hs-certificate/issues/64 + - asn1-parse < 0.9.2 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From d7aab214415572d97a695f5d7056d996ac385311 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 21 Sep 2015 18:37:04 +0300 Subject: [PATCH 831/933] s/R/H --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1faf9eec..4b4d72df 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1939,7 +1939,7 @@ expected-test-failures: - pipes-mongodb # https://github.com/tweag/HaskellR/issues/208 - - R + - H # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: From 00cf56885ca36dade0b71eea18d9ffb1877b43f0 Mon Sep 17 00:00:00 2001 From: Gregory Schwartz Date: Mon, 21 Sep 2015 12:11:49 -0400 Subject: [PATCH 832/933] Add diversity and github account Requires stackage nightly in order to use the stackage fasta package: stack install --resolver nightly-2015-09-20 --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4b4d72df..a34adb34 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1449,8 +1449,9 @@ packages: "Jinjing Wang @nfjinjing": - moesocks - "Gregory W. Schwartz ": + "Gregory W. Schwartz @GregorySchwartz": - fasta + - diversity "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 From fb90093165d0b395f71cd303590f8ae6f91718d5 Mon Sep 17 00:00:00 2001 From: Noam Lewis Date: Mon, 21 Sep 2015 23:30:55 +0300 Subject: [PATCH 833/933] Update build-constraints.yaml --- build-constraints.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4b4d72df..0e3c0c69 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1016,6 +1016,11 @@ packages: - xml-to-json - xml-to-json-fast - digits + - unification-fd + - resolve-trivial-conflicts + - wl-pprint + - leveldb-haskell + - system-argv0 "Mateusz Kowalczyk @Fuuzetsu": - aeson-schema From 4227ce452b77aa46cdc3058a343e0dc0a11feaf8 Mon Sep 17 00:00:00 2001 From: Noam Lewis Date: Mon, 21 Sep 2015 23:35:03 +0300 Subject: [PATCH 834/933] Update build-constraints.yaml --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0e3c0c69..afc23bc1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1017,6 +1017,7 @@ packages: - xml-to-json-fast - digits - unification-fd + - logict - resolve-trivial-conflicts - wl-pprint - leveldb-haskell From 847935d9777945f3357bdff5ddeecd25cedcaf9a Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 22 Sep 2015 04:04:39 +0300 Subject: [PATCH 835/933] Remove upper bounds for vincenthz/hs-certificate#64 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4b4d72df..19c27ce9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1498,9 +1498,6 @@ packages: # https://github.com/fpco/stackage/issues/846 - postgresql-simple < 0.5 - # https://github.com/vincenthz/hs-certificate/issues/64 - - asn1-parse < 0.9.2 - # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 3973f46c2cb7d60a641ee699c8c1e16a2c3b600d Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 22 Sep 2015 10:41:16 +0200 Subject: [PATCH 836/933] Expect spurious failures from pandoc-citeproc-0.7.3.1's test suite. https://github.com/jgm/pandoc-citeproc/issues/172 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index c7cc883a..f444c7e3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1964,6 +1964,9 @@ expected-haddock-failures: # Not sure why, but it's a temporary package anyway - Cabal-ide-backend + # https://github.com/jgm/pandoc-citeproc/issues/172 + - pandoc-citeproc + # Benchmarks which should not be built. Note that Stackage does *not* generally # build benchmarks. The difference here will be whether dependencies for these # benchmarks are included or not. From c3e2a36d686f0f96507854182a00587fa72aeceb Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 19 Sep 2015 22:36:31 +0200 Subject: [PATCH 837/933] language-nix: expect the test suite to succeed Version 2.1 fixes the issues we've previously had. The update changes the package's API, but that's okay because it doesn't have any users in Stackage yet. --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c7cc883a..ebbf4025 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1930,9 +1930,6 @@ expected-test-failures: # https://github.com/athanclark/pred-trie/issues/1 - pred-trie - # https://github.com/peti/language-nix/issues/1 - - language-nix - # https://github.com/kazu-yamamoto/ghc-mod/issues/611 - ghc-mod From 4df1906076198bbe112bd6acfcf2de96d6fce2f5 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 22 Sep 2015 13:47:20 +0300 Subject: [PATCH 838/933] Temporary block for #854 --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 818c3404..bc8f50fb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1020,7 +1020,8 @@ packages: - logict - resolve-trivial-conflicts - wl-pprint - - leveldb-haskell + # https://github.com/fpco/stackage/issues/854 + # - leveldb-haskell - system-argv0 "Mateusz Kowalczyk @Fuuzetsu": From cdb61131629cd2d13083b71a913246e3ec674031 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 22 Sep 2015 13:50:16 +0300 Subject: [PATCH 839/933] Upper bound GaloisInc/cryptol#275 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index bc8f50fb..cb458aca 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1506,6 +1506,9 @@ packages: # https://github.com/fpco/stackage/issues/846 - postgresql-simple < 0.5 + # https://github.com/GaloisInc/cryptol/issues/275 + - cryptol < 5.0 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 37770ba78d255a855318355fafaf74a2480146a8 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 22 Sep 2015 13:53:26 +0300 Subject: [PATCH 840/933] leveldb C libraries (pinging @borsboom) --- debian-bootstrap.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index a83aa9f9..098e8924 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -12,6 +12,7 @@ add-apt-repository -y ppa:zoogie/sdl2-snapshots add-apt-repository -y ppa:marutter/rrutter +add-apt-repository -y ppa:openstack-ubuntu-testing/icehouse apt-get update apt-get install -y \ @@ -68,6 +69,8 @@ apt-get install -y \ libadns1-dev \ r-base \ r-base-dev \ + libleveldb-dev \ + libsnappy-dev \ libpcap0.8-dev mkdir /tmp/nettle-build From 3d0e1308185f918d1c8ebe7355f9aa95e1e4de50 Mon Sep 17 00:00:00 2001 From: Juan Pedro Villa Isaza Date: Wed, 23 Sep 2015 13:41:44 -0500 Subject: [PATCH 841/933] Add hapistrano --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index cb458aca..cffad954 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1268,6 +1268,7 @@ packages: - ether "Juan Pedro Villa Isaza jvilla@stackbuilders.com @jpvillaisaza": + - hapistrano - inflections - twitter-feed From 46557c5a4e0677f4d1a577678bfa1694ab2538ad Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 23 Sep 2015 21:49:30 +0300 Subject: [PATCH 842/933] Upper bound for #856 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index cb458aca..d5632797 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1509,6 +1509,9 @@ packages: # https://github.com/GaloisInc/cryptol/issues/275 - cryptol < 5.0 + # https://github.com/fpco/stackage/issues/856 + - syb < 0.6 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From a63d3cf98857a1c17b43091a8fe6907de64c94b6 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 23 Sep 2015 22:00:29 +0300 Subject: [PATCH 843/933] Fix upper bound: sbv instead of cryptol --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d5632797..1774dd84 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1507,7 +1507,7 @@ packages: - postgresql-simple < 0.5 # https://github.com/GaloisInc/cryptol/issues/275 - - cryptol < 5.0 + - sbv < 5.0 # https://github.com/fpco/stackage/issues/856 - syb < 0.6 From 816852bd398046b87128b9376a114b9e8068964a Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 24 Sep 2015 07:37:38 +0300 Subject: [PATCH 844/933] Upper bound for ajnsit/wai-routes#7 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1774dd84..a448e4ce 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1512,6 +1512,9 @@ packages: # https://github.com/fpco/stackage/issues/856 - syb < 0.6 + # https://github.com/ajnsit/wai-routes/issues/7 + - wai-routes < 0.9.1 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 9d919c04d92662942a9bff5d8a43eae1e7993214 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 24 Sep 2015 09:08:44 +0300 Subject: [PATCH 845/933] Expect test failure stackbuilders/hapistrano#31 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 20a7847c..d2ecc651 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1953,6 +1953,9 @@ expected-test-failures: # https://github.com/tweag/HaskellR/issues/208 - H + # https://github.com/stackbuilders/hapistrano/issues/31 + - hapistrano + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From ee9993ce85b2c990054e5f4953016f4dd3261625 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 24 Sep 2015 10:09:19 +0300 Subject: [PATCH 846/933] Revert "Upper bound for ajnsit/wai-routes#7" This reverts commit 816852bd398046b87128b9376a114b9e8068964a. --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d2ecc651..a59dcab3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1513,9 +1513,6 @@ packages: # https://github.com/fpco/stackage/issues/856 - syb < 0.6 - # https://github.com/ajnsit/wai-routes/issues/7 - - wai-routes < 0.9.1 - # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 868b691f4a9261fc5e8c0396afef75a652c76dcd Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 24 Sep 2015 10:59:33 +0300 Subject: [PATCH 847/933] Remove temporary block and close #854 --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a59dcab3..3c0856ce 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1020,8 +1020,7 @@ packages: - logict - resolve-trivial-conflicts - wl-pprint - # https://github.com/fpco/stackage/issues/854 - # - leveldb-haskell + - leveldb-haskell - system-argv0 "Mateusz Kowalczyk @Fuuzetsu": From 97d30aae3146529bf45f5569bbcc246d1e6a4599 Mon Sep 17 00:00:00 2001 From: Simon Marechal Date: Thu, 24 Sep 2015 10:41:45 +0200 Subject: [PATCH 848/933] Update build-constraints.yaml Add a few packages I maintain, plus `strict-base-types` that I don't, but that is required by `pcre-utils`. What is the policy on that front ? --- build-constraints.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3c0856ce..04906a1e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1459,6 +1459,13 @@ packages: "Gregory W. Schwartz @GregorySchwartz": - fasta - diversity + + "Simon Marechal @bartavelle": + - compactmap + - stateWriter + - filecache + - pcre-utils + - strict-base-types "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 From c7c228e6f62a8cddc2fdc414579d68b4a33ea248 Mon Sep 17 00:00:00 2001 From: Juan Pedro Villa Isaza Date: Thu, 24 Sep 2015 10:45:36 -0500 Subject: [PATCH 849/933] Enable tests for hapistrano --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 04906a1e..463a56bc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1956,9 +1956,6 @@ expected-test-failures: # https://github.com/tweag/HaskellR/issues/208 - H - # https://github.com/stackbuilders/hapistrano/issues/31 - - hapistrano - # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 From 2b3685b5b0c928441c649ce4aa3514383764ebaa Mon Sep 17 00:00:00 2001 From: mrkkrp Date: Fri, 25 Sep 2015 15:18:07 +0600 Subject: [PATCH 850/933] add megaparsec --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 463a56bc..c778f74d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1467,6 +1467,9 @@ packages: - pcre-utils - strict-base-types + "Mark Karpov @mrkkrp": + - megaparsec + "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 From 7ea73526ec4876f47c9ad45f6ba34c18eff129fa Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 25 Sep 2015 14:13:41 +0300 Subject: [PATCH 851/933] Upper bound for #860 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index c778f74d..66b0f3bf 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1522,6 +1522,9 @@ packages: # https://github.com/fpco/stackage/issues/856 - syb < 0.6 + # https://github.com/fpco/stackage/issues/860 + - optparse-applicative < 0.12 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 78218cd28acd5ebc525f8514cee0724f61b6d11e Mon Sep 17 00:00:00 2001 From: Simon Marechal Date: Sat, 26 Sep 2015 19:12:40 +0200 Subject: [PATCH 852/933] Update build-constraints.yaml --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 66b0f3bf..5b4d18a0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1466,6 +1466,9 @@ packages: - filecache - pcre-utils - strict-base-types + - stm-firehose + - hslogstash + - withdependencies "Mark Karpov @mrkkrp": - megaparsec From 24b6a11276bd3f702248792c9fa5acf750a42db7 Mon Sep 17 00:00:00 2001 From: tomberek Date: Sun, 27 Sep 2015 01:46:30 -0400 Subject: [PATCH 853/933] Add multiplate 0.0.2 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5b4d18a0..d660507e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1473,6 +1473,9 @@ packages: "Mark Karpov @mrkkrp": - megaparsec + "Thomas Bereknyei ": + - multiplate + "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 From 05e4febd7cf2ae168af89f647359110c296ab65b Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sun, 27 Sep 2015 16:09:09 +0200 Subject: [PATCH 854/933] Expect spurious failures from pandoc-citeproc-0.7.3.1's test suite some more. This patch fixes https://github.com/fpco/stackage/pull/853, which accidentally inserted the entry for pandoc-citeproc into the "haddock" section rather than the one for test suites failures. Sorry! --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5b4d18a0..7803925c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1965,6 +1965,9 @@ expected-test-failures: # https://github.com/tweag/HaskellR/issues/208 - H + # https://github.com/jgm/pandoc-citeproc/issues/172 + - pandoc-citeproc + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 @@ -1984,9 +1987,6 @@ expected-haddock-failures: # Not sure why, but it's a temporary package anyway - Cabal-ide-backend - # https://github.com/jgm/pandoc-citeproc/issues/172 - - pandoc-citeproc - # Benchmarks which should not be built. Note that Stackage does *not* generally # build benchmarks. The difference here will be whether dependencies for these # benchmarks are included or not. From 7186bbffd48f58757260d03a8b78d150325e2347 Mon Sep 17 00:00:00 2001 From: Sumit Sahrawat Date: Mon, 28 Sep 2015 22:50:52 +0530 Subject: [PATCH 855/933] Adding two of my packages (@sumitsahrawat) - plot-gtk-ui - calculator --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f19c8f77..a97a696a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1476,6 +1476,10 @@ packages: "Thomas Bereknyei ": - multiplate + "Sumit Sahrawat @sumitsahrawat": + - plot-gtk-ui + - calculator + "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 From 08711740183a9ed967e18c33c88f73ef6d045217 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Mon, 28 Sep 2015 22:52:56 -0700 Subject: [PATCH 856/933] comment explaining tasty upper bound #817 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f19c8f77..5b41a3cf 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -527,6 +527,7 @@ packages: - regex-applicative - lexer-applicative - smallcheck + # Upper bound per https://github.com/fpco/stackage/issues/817 - tasty < 0.11 - tasty-golden - tasty-hunit From aac165c1683e74c8ec40a0ac3d07388d2bb1318b Mon Sep 17 00:00:00 2001 From: Oleg Grenrus Date: Tue, 29 Sep 2015 14:27:02 +0300 Subject: [PATCH 857/933] Add aeson-extra --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4e4974e2..cc959b0d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -890,6 +890,7 @@ packages: - string-conversions "Oleg Grenrus oleg.grenrus@iki.fi @phadej": + - aeson-extra - binary-orphans - binary-tagged - bower-json From 88bae2eec7b0e7b4cef9aba05f8b6b6f4ad1d417 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 30 Sep 2015 01:17:00 -0700 Subject: [PATCH 858/933] disable calculator per #867 --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index cc959b0d..c3a650d0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1480,7 +1480,8 @@ packages: "Sumit Sahrawat @sumitsahrawat": - plot-gtk-ui - - calculator + # https://github.com/fpco/stackage/issues/867 + # - calculator "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 From 873df1cdf230ccbf6bccd4e3a4205f96a6b486e4 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 30 Sep 2015 01:26:23 -0700 Subject: [PATCH 859/933] Upper bound "scientific < 0.3.4" for #868 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index c3a650d0..91c7d4d3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1538,6 +1538,9 @@ packages: # https://github.com/fpco/stackage/issues/860 - optparse-applicative < 0.12 + # https://github.com/fpco/stackage/issues/868 + - scientific < 0.3.4 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From eb888e130d0dca81429493da243220f690b70d13 Mon Sep 17 00:00:00 2001 From: Liam O'Connor Date: Thu, 1 Oct 2015 00:59:52 +1000 Subject: [PATCH 860/933] Update build-constraints.yaml --- build-constraints.yaml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 91c7d4d3..420ee7bf 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -241,7 +241,7 @@ packages: - dbmigrations - text-zipper - vty - + "Chris Done": - ace - check-email @@ -424,7 +424,11 @@ packages: "Trevor L. McDonell ": - accelerate - + + "Liam O'Connor ": + - patches-vector + - composition-tree + "Dan Burton ": - hspec-jenkins - yesod-gitrev From 9f2710be8acd6f8e2aa7f1908bc00596390ad47f Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 30 Sep 2015 10:55:30 -0700 Subject: [PATCH 861/933] Revert "Upper bound "scientific < 0.3.4" for #868" This reverts commit 873df1cdf230ccbf6bccd4e3a4205f96a6b486e4. --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 91c7d4d3..c3a650d0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1538,9 +1538,6 @@ packages: # https://github.com/fpco/stackage/issues/860 - optparse-applicative < 0.12 - # https://github.com/fpco/stackage/issues/868 - - scientific < 0.3.4 - # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 932ba7002e7650d8a7af82da0366b63c6e87a518 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 30 Sep 2015 11:01:54 -0700 Subject: [PATCH 862/933] Revert "disable calculator per #867" This reverts commit 88bae2eec7b0e7b4cef9aba05f8b6b6f4ad1d417. --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c3a650d0..cc959b0d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1480,8 +1480,7 @@ packages: "Sumit Sahrawat @sumitsahrawat": - plot-gtk-ui - # https://github.com/fpco/stackage/issues/867 - # - calculator + - calculator "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 From 01bd274c686bc3a83fd600127b01325454c16b8f Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 30 Sep 2015 13:50:24 -0700 Subject: [PATCH 863/933] Mapping @lambdabot repo to ping @DanBurton and @mokus0 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index cc959b0d..cccc7732 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2076,3 +2076,6 @@ github-users: - svenpanne # - elliottt # - jmcarthur + lambdabot: + - DanBurton + - mokus0 From 98da6843bcd141624eebd864c196bd680b8e2db5 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 30 Sep 2015 13:53:35 -0700 Subject: [PATCH 864/933] Add github account for @DanBurton --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index cccc7732..83669c22 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -425,7 +425,7 @@ packages: "Trevor L. McDonell ": - accelerate - "Dan Burton ": + "Dan Burton @DanBurton": - hspec-jenkins - yesod-gitrev - basic-prelude From e4aaa402db5c5e9a8c13cd36fcc340aab229d240 Mon Sep 17 00:00:00 2001 From: Mark Fine Date: Wed, 30 Sep 2015 21:40:11 -0700 Subject: [PATCH 865/933] Add sbp and postgresql-schema to stackage. --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 83669c22..f7242cfc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1452,6 +1452,10 @@ packages: - nix-paths - streamproc + "Mark Fine @markfine": + - postgresql-schema + - sbp + "Christoph Hegemann Date: Fri, 2 Oct 2015 09:24:28 +0300 Subject: [PATCH 866/933] Include newer haddock executable fpco/stackage-curator#7 --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index c0c445d0..6458de08 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,3 +21,5 @@ ENV PATH /home/stackage/.cabal/bin:/usr/local/sbin:/usr/local/bin:/opt/ghc/7.10. RUN cabal update RUN cabal install hscolour cabal-install && cp $HOME/.cabal/bin/* /usr/local/bin && rm -rf $HOME/.cabal $HOME/.ghc /tmp/stackage RUN wget https://s3.amazonaws.com/stackage-travis/stackage-curator/stackage-curator.bz2 && bunzip2 stackage-curator.bz2 && chmod +x stackage-curator && mv stackage-curator /usr/local/bin +# Get new hyperlinked Haddocks +RUN wget https://s3.amazonaws.com/download.fpcomplete.com/michael/haddock-2015-10-02.bz2 && bunzip2 haddock-2015-10-02.bz2 && rm -f /opt/ghc/7.10.2/bin/haddock && mv haddock-2015-10-02 /opt/ghc/7.10.2/bin/haddock From 654e582882ed9b41fcad42c8e869b09e7a6c5404 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Fri, 2 Oct 2015 03:24:35 -0700 Subject: [PATCH 867/933] Disable sbp per #873 --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5eca17b8..68ca617f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1458,7 +1458,8 @@ packages: "Mark Fine @markfine": - postgresql-schema - - sbp + # https://github.com/fpco/stackage/issues/873 + # - sbp "Christoph Hegemann Date: Fri, 2 Oct 2015 17:23:50 +0200 Subject: [PATCH 868/933] Re-enable yesod-auth-account-fork According to meteficha/yesod-auth-account-fork#5 --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 68ca617f..065b7e65 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -412,8 +412,7 @@ packages: - serversession-frontend-wai - serversession-frontend-yesod - thumbnail-plus - # meteficha/yesod-auth-account-fork#5 - # - yesod-auth-account-fork + - yesod-auth-account-fork - yesod-auth-fb - yesod-fb - yesod-mangopay From c01794e883cb5acc624a70f5145f062947dcd405 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Fri, 2 Oct 2015 13:34:09 -0700 Subject: [PATCH 869/933] Add constraint "ig < 0.6" per #875 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 68ca617f..bfe50373 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1546,6 +1546,9 @@ packages: # https://github.com/fpco/stackage/issues/860 - optparse-applicative < 0.12 + # https://github.com/fpco/stackage/issues/875 + - ig < 0.6 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 3890d736a8eb245fd2157430548f510714512ba9 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Fri, 2 Oct 2015 16:43:07 -0700 Subject: [PATCH 870/933] Added constraints per #876 --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index c277329f..7109a603 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1548,6 +1548,10 @@ packages: # https://github.com/fpco/stackage/issues/875 - ig < 0.6 + # https://github.com/fpco/stackage/issues/876 + - ede < 0.2.8.3 + - feed < 0.3.10.2 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From e18bffb32b09dc2bd8c4f4f1bdf1b6b371a57af8 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Fri, 2 Oct 2015 17:21:38 -0700 Subject: [PATCH 871/933] Revert "Added constraints per #876" This reverts commit 3890d736a8eb245fd2157430548f510714512ba9. --- build-constraints.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7109a603..c277329f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1548,10 +1548,6 @@ packages: # https://github.com/fpco/stackage/issues/875 - ig < 0.6 - # https://github.com/fpco/stackage/issues/876 - - ede < 0.2.8.3 - - feed < 0.3.10.2 - # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 455c1d3008d2c8ec650eddb08fb85bb87f34396f Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Fri, 2 Oct 2015 17:40:48 -0700 Subject: [PATCH 872/933] trivial whitespace --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c277329f..d5309e01 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1469,7 +1469,7 @@ packages: "Gregory W. Schwartz @GregorySchwartz": - fasta - diversity - + "Simon Marechal @bartavelle": - compactmap - stateWriter From 06103b2dfd9f5550b50ca6fdcd07067e3f2fb2ad Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Fri, 2 Oct 2015 17:50:06 -0700 Subject: [PATCH 873/933] enabling tasty-0.11, disabling test suites requiring older tasty, per #817 --- build-constraints.yaml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d5309e01..5a931bd6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -530,8 +530,7 @@ packages: - regex-applicative - lexer-applicative - smallcheck - # Upper bound per https://github.com/fpco/stackage/issues/817 - - tasty < 0.11 + - tasty - tasty-golden - tasty-hunit - tasty-quickcheck @@ -1691,6 +1690,12 @@ skipped-tests: # https://github.com/fpco/stackage/issues/668 - second-transfer + # Require old tasty. + # https://github.com/fpco/stackage/issues/817 + - tar + - uuid + - uuid-types + # Tests which we should build and run, but which are expected to fail. We # should not fail a build based on a test failure for one of these packages. expected-test-failures: From 93f3c270b67f29737c8398ed981ff36ab32c7ea4 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Fri, 2 Oct 2015 17:57:13 -0700 Subject: [PATCH 874/933] More precise comments on disabled test suites. --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5a931bd6..6f66d550 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1678,6 +1678,7 @@ skipped-tests: # https://github.com/fpco/stackage/issues/602 - aws + # doctest < 0.10 # https://github.com/fpco/stackage/issues/622 - bound - heaps @@ -1690,7 +1691,7 @@ skipped-tests: # https://github.com/fpco/stackage/issues/668 - second-transfer - # Require old tasty. + # tasty < 0.11 # https://github.com/fpco/stackage/issues/817 - tar - uuid From 5d8ed0dd3a35a856c480d0c75dbc8280ab282a98 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Fri, 2 Oct 2015 17:58:50 -0700 Subject: [PATCH 875/933] Re-enable test suite on second-transfer #668 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6f66d550..d5dae740 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1688,9 +1688,6 @@ skipped-tests: # https://github.com/kaizhang/clustering/issues/2 - clustering - # https://github.com/fpco/stackage/issues/668 - - second-transfer - # tasty < 0.11 # https://github.com/fpco/stackage/issues/817 - tar From 5c7035a4e1a36c45ee99038bf4d7675112149e0b Mon Sep 17 00:00:00 2001 From: emmanueltouzery Date: Sat, 3 Oct 2015 14:54:49 +0200 Subject: [PATCH 876/933] add new packages hsexif & app-settings i'm the author & hackage uploader. --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2aca89f8..fb884147 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1489,6 +1489,10 @@ packages: "Sumit Sahrawat @sumitsahrawat": - plot-gtk-ui - calculator + + "Emmanuel Touzery @emmanueltouzery": + - hsexif + - app-settings "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 From cbb8b2673a2cd2dfb1522b0565ec0bb8fb247bb4 Mon Sep 17 00:00:00 2001 From: Emmanuel Touzery Date: Sat, 3 Oct 2015 16:23:06 +0200 Subject: [PATCH 877/933] let's take this step by step i guess, one at a time --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index fb884147..eee13547 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1489,9 +1489,8 @@ packages: "Sumit Sahrawat @sumitsahrawat": - plot-gtk-ui - calculator - + "Emmanuel Touzery @emmanueltouzery": - - hsexif - app-settings "Stackage upper bounds": From 18c2989c49dc73e2cc8aeadd2029558480413a2f Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sat, 3 Oct 2015 20:19:06 +0300 Subject: [PATCH 878/933] Make haddock executable --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6458de08..5da1c1d0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,4 +22,4 @@ RUN cabal update RUN cabal install hscolour cabal-install && cp $HOME/.cabal/bin/* /usr/local/bin && rm -rf $HOME/.cabal $HOME/.ghc /tmp/stackage RUN wget https://s3.amazonaws.com/stackage-travis/stackage-curator/stackage-curator.bz2 && bunzip2 stackage-curator.bz2 && chmod +x stackage-curator && mv stackage-curator /usr/local/bin # Get new hyperlinked Haddocks -RUN wget https://s3.amazonaws.com/download.fpcomplete.com/michael/haddock-2015-10-02.bz2 && bunzip2 haddock-2015-10-02.bz2 && rm -f /opt/ghc/7.10.2/bin/haddock && mv haddock-2015-10-02 /opt/ghc/7.10.2/bin/haddock +RUN wget https://s3.amazonaws.com/download.fpcomplete.com/michael/haddock-2015-10-02.bz2 && bunzip2 haddock-2015-10-02.bz2 && rm -f /opt/ghc/7.10.2/bin/haddock && mv haddock-2015-10-02 /opt/ghc/7.10.2/bin/haddock && chmod +x /opt/ghc/7.10.2/bin/haddock From 41e40f7c81ce8ba5e0580a14e3de8d9219fffaa2 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sat, 3 Oct 2015 22:39:04 +0300 Subject: [PATCH 879/933] Remove non-working haddock executable --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5da1c1d0..91076e49 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,4 +22,4 @@ RUN cabal update RUN cabal install hscolour cabal-install && cp $HOME/.cabal/bin/* /usr/local/bin && rm -rf $HOME/.cabal $HOME/.ghc /tmp/stackage RUN wget https://s3.amazonaws.com/stackage-travis/stackage-curator/stackage-curator.bz2 && bunzip2 stackage-curator.bz2 && chmod +x stackage-curator && mv stackage-curator /usr/local/bin # Get new hyperlinked Haddocks -RUN wget https://s3.amazonaws.com/download.fpcomplete.com/michael/haddock-2015-10-02.bz2 && bunzip2 haddock-2015-10-02.bz2 && rm -f /opt/ghc/7.10.2/bin/haddock && mv haddock-2015-10-02 /opt/ghc/7.10.2/bin/haddock && chmod +x /opt/ghc/7.10.2/bin/haddock +#RUN wget https://s3.amazonaws.com/download.fpcomplete.com/michael/haddock-2015-10-02.bz2 && bunzip2 haddock-2015-10-02.bz2 && rm -f /opt/ghc/7.10.2/bin/haddock && mv haddock-2015-10-02 /opt/ghc/7.10.2/bin/haddock && chmod +x /opt/ghc/7.10.2/bin/haddock From 5d841bc1f71d5a20b62e10b00f008376beb4e2a2 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 4 Oct 2015 09:29:54 +0300 Subject: [PATCH 880/933] New attempt at hyperlinked sources for Haddock --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 91076e49..c9322672 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,4 +22,4 @@ RUN cabal update RUN cabal install hscolour cabal-install && cp $HOME/.cabal/bin/* /usr/local/bin && rm -rf $HOME/.cabal $HOME/.ghc /tmp/stackage RUN wget https://s3.amazonaws.com/stackage-travis/stackage-curator/stackage-curator.bz2 && bunzip2 stackage-curator.bz2 && chmod +x stackage-curator && mv stackage-curator /usr/local/bin # Get new hyperlinked Haddocks -#RUN wget https://s3.amazonaws.com/download.fpcomplete.com/michael/haddock-2015-10-02.bz2 && bunzip2 haddock-2015-10-02.bz2 && rm -f /opt/ghc/7.10.2/bin/haddock && mv haddock-2015-10-02 /opt/ghc/7.10.2/bin/haddock && chmod +x /opt/ghc/7.10.2/bin/haddock +RUN mkdir -p /opt/haddock && cd /opt/haddock && wget https://s3.amazonaws.com/download.fpcomplete.com/michael/haddock-2.16.2.tar.gz && tar zxf haddock-2.16.2.tar.gz && rm -f /opt/ghc/7.10.2/bin/haddock && ln -s /opt/haddock/2.16.2/bin/haddock /opt/ghc/7.10.2/bin/haddock From f6505002d7ecd66b0fbcbb1aa921e80a72d5e27b Mon Sep 17 00:00:00 2001 From: Alcides Viamontes E Date: Sun, 4 Oct 2015 15:29:31 +0200 Subject: [PATCH 881/933] Test suite in second-transfer builds now by faking OpenSSL 1.0.2 symbols when older versions of the library are used --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2aca89f8..c0cd7844 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1900,9 +1900,6 @@ expected-test-failures: # https://github.com/kazu-yamamoto/http2/issues/4 - http2 - # https://github.com/alcidesv/second-transfer/issues/1 - - second-transfer - # https://github.com/prowdsponsor/mangopay/issues/30 - mangopay From 2074f9401b94d38ccd0f33ba27b8c92bd022f4ca Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 5 Oct 2015 12:07:16 +0900 Subject: [PATCH 882/933] CURATORS: Ubuntu Packages Search; mention nightly cronjob --- CURATORS.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/CURATORS.md b/CURATORS.md index a3909316..c6347852 100644 --- a/CURATORS.md +++ b/CURATORS.md @@ -45,6 +45,8 @@ Additional (non-Haskell) system libraries or tools should be added to `stackage/ Committing the changes should trigger a DockerHub. Normally only the master branch needs to be updated since new packages are not added to the current lts release. +Use [Ubuntu Package content search](http://packages.ubuntu.com/) to determine which package provides particular dev files (it defaults to trusty which is the same version as the server). + ### Upgrading GHC version The Dockerfile contains information on which GHC versions should be used. You can modify it and push it to Github to trigger a DockerHub build. The master @@ -107,8 +109,10 @@ develop this advice over time. For now: if you're not sure, ask Michael for guidance. ### Timing +A cronjob on the build server keeps trying to build nightly unless it has already succeeded. -Nightly builds should be run once a day. A common technique I use is, after a +(Nightly builds should be run once a day. A common technique I use is, after a build succeeds, write something like `sleep 20h; -/opt/stackage-build/stackage/automated/build.sh nightly-2015-01-02`. LTS minor -bumps typically are run on Sundays. +/opt/stackage-build/stackage/automated/build.sh nightly-2015-01-02`.) + +LTS minor bumps typically are run on Sundays. From 89c70b51774c2055f4ddb295ff5e47da66a70d2d Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 5 Oct 2015 12:41:56 +0900 Subject: [PATCH 883/933] debian-bootstrap.sh: add libusb-1.0-0-dev for freenect (#848) --- debian-bootstrap.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index 098e8924..1056a795 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -71,7 +71,8 @@ apt-get install -y \ r-base-dev \ libleveldb-dev \ libsnappy-dev \ - libpcap0.8-dev + libpcap0.8-dev \ + libusb-1.0-0-dev mkdir /tmp/nettle-build ( From 36c1c4544138d1af970de40befcdf87efff1255f Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 5 Oct 2015 12:44:00 +0900 Subject: [PATCH 884/933] debian-bootstrap.sh: sort the ubuntu packages lexically --- debian-bootstrap.sh | 94 ++++++++++++++++++++++----------------------- 1 file changed, 47 insertions(+), 47 deletions(-) diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index 1056a795..89838350 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -17,62 +17,62 @@ add-apt-repository -y ppa:openstack-ubuntu-testing/icehouse apt-get update apt-get install -y \ build-essential \ - libncurses-dev \ - git \ - wget \ - m4 \ - texlive-full \ - libgmp3-dev \ - zlib1g-dev \ - libedit2 \ - libedit-dev \ freeglut3-dev \ - libglu1-mesa-dev \ - libglib2.0-dev \ - libcairo2-dev \ - libpango1.0-dev \ - libgtk2.0-dev \ - zip \ - libdevil-dev \ - llvm \ - libbz2-dev \ - libjudy-dev \ - libsqlite3-dev \ - libmysqlclient-dev \ - libpq-dev \ - libicu-dev \ - libssl-dev \ - libgsl0-dev \ + git \ + libadns1-dev \ libblas-dev \ - liblapack-dev \ + libbz2-dev \ + libcairo2-dev \ libcurl4-openssl-dev \ - libfreenect-dev \ - libnotify-dev \ - libgd2-xpm-dev \ - libyaml-dev \ - liblzma-dev \ - libsdl2-dev \ - libxss-dev \ - libgtk-3-dev \ - libxml2-dev \ - libgsasl7-dev \ - libphash0-dev \ - libopenal-dev \ - libhidapi-dev \ - libzmq3-dev \ - libmagic-dev \ - libudev-dev \ + libdevil-dev \ + libedit-dev \ + libedit2 \ libfftw3-dev \ + libfreenect-dev \ + libgd2-xpm-dev \ + libglib2.0-dev \ + libglu1-mesa-dev \ + libgmp3-dev \ + libgsasl7-dev \ + libgsl0-dev \ + libgtk-3-dev \ + libgtk2.0-dev \ + libhidapi-dev \ + libicu-dev \ + libjudy-dev \ + liblapack-dev \ + libleveldb-dev \ + liblzma-dev \ + libmagic-dev \ + libmysqlclient-dev \ + libncurses-dev \ + libnotify-dev \ + libopenal-dev \ + libpango1.0-dev \ + libpcap0.8-dev \ + libphash0-dev \ + libpq-dev \ + libsdl2-dev \ + libsnappy-dev \ + libsqlite3-dev \ + libssl-dev \ + libudev-dev \ + libusb-1.0-0-dev \ libxau-dev \ + libxml2-dev \ + libxss-dev \ + libyaml-dev \ + libzmq3-dev \ + llvm \ + m4 \ nodejs \ npm \ - libadns1-dev \ r-base \ r-base-dev \ - libleveldb-dev \ - libsnappy-dev \ - libpcap0.8-dev \ - libusb-1.0-0-dev + texlive-full \ + wget \ + zip \ + zlib1g-dev mkdir /tmp/nettle-build ( From f63cfd6c18ab0ec2bdfc3823ca2e584c350a57f3 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 5 Oct 2015 12:55:47 +0900 Subject: [PATCH 885/933] Revert freenect "Upper bound for #839" let's see if libusb-1.0 helps This reverts commit 009af5e60bc8d425cfd72aeae80f40a729f8717f. --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index c0cd7844..b7c320d1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1521,6 +1521,7 @@ packages: # https://github.com/fpco/stackage/issues/836 - singletons < 1.2 +<<<<<<< HEAD # https://github.com/fpco/stackage/issues/839 - freenect < 1.2.1 @@ -1548,6 +1549,8 @@ packages: # https://github.com/fpco/stackage/issues/875 - ig < 0.6 +======= +>>>>>>> parent of 009af5e... Upper bound for #839 # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From acf3c3f70015fd10a82084184d36431aaaba8d49 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 5 Oct 2015 13:17:54 +0900 Subject: [PATCH 886/933] Revert freenect "Upper bound for #839" properly --- build-constraints.yaml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 480db5f6..751068cd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1524,10 +1524,6 @@ packages: # https://github.com/fpco/stackage/issues/836 - singletons < 1.2 -<<<<<<< HEAD - # https://github.com/fpco/stackage/issues/839 - - freenect < 1.2.1 - # https://github.com/amcphail/hmatrix-gsl-stats/issues/10 # https://github.com/amcphail/plot/issues/13 # https://github.com/amcphail/hmatrix-repa/issues/2 @@ -1552,8 +1548,6 @@ packages: # https://github.com/fpco/stackage/issues/875 - ig < 0.6 -======= ->>>>>>> parent of 009af5e... Upper bound for #839 # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 80611e7428636be1a70450fd29e06cb07f9ad637 Mon Sep 17 00:00:00 2001 From: "(cdep)illabout" Date: Tue, 6 Oct 2015 01:37:05 +0900 Subject: [PATCH 887/933] Remove version constraints on ig package. ig-0.6 required attoparsec < 0.13, but ig-0.6.1 removes the dependency on attoparsec. So ig-0.6.1 should build with the latest version of stackage. --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 676a0509..8ad66c48 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1545,9 +1545,6 @@ packages: # https://github.com/fpco/stackage/issues/860 - optparse-applicative < 0.12 - # https://github.com/fpco/stackage/issues/875 - - ig < 0.6 - # https://github.com/fpco/stackage/issues/880 - http-types < 0.9 From 6b1e5a921a9e328a1c34ae959a3b713aff0ddfa7 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 6 Oct 2015 14:37:07 +0900 Subject: [PATCH 888/933] http-types < 0.9 (#880) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 751068cd..1b57dd42 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1548,6 +1548,9 @@ packages: # https://github.com/fpco/stackage/issues/875 - ig < 0.6 + # https://github.com/fpco/stackage/issues/880 + - http-types < 0.9 + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: From 21a6529dcc37e1c2c0d9cca6c9b7d67c4876f842 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 6 Oct 2015 18:47:38 +0900 Subject: [PATCH 889/933] disable new app-settings since testsuite failing (#877) --- build-constraints.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1b57dd42..6ded0a76 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1491,7 +1491,10 @@ packages: - calculator "Emmanuel Touzery @emmanueltouzery": - - app-settings + [] + # https://github.com/fpco/stackage/pull/877 + # https://github.com/emmanueltouzery/app-settings/issues/6 + #- app-settings "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 From 8fc2882f68d2275f959578210e5f3742c0b66874 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 6 Oct 2015 19:08:32 +0900 Subject: [PATCH 890/933] allow second-transfer testsuit to fail (alcidesv/second-transfer#3) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6ded0a76..f1235c80 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2014,6 +2014,9 @@ expected-haddock-failures: # Not sure why, but it's a temporary package anyway - Cabal-ide-backend + # https://github.com/alcidesv/second-transfer/issues/3 + - second-transfer + # Benchmarks which should not be built. Note that Stackage does *not* generally # build benchmarks. The difference here will be whether dependencies for these # benchmarks are included or not. From 3056884685889981d590a343fc18eaeffa49826c Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 6 Oct 2015 19:11:36 +0900 Subject: [PATCH 891/933] Revert "disable new app-settings since testsuite failing (#877)" should be fixed in 0.2.0.7 This reverts commit 21a6529dcc37e1c2c0d9cca6c9b7d67c4876f842. --- build-constraints.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f1235c80..a85f1a48 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1491,10 +1491,7 @@ packages: - calculator "Emmanuel Touzery @emmanueltouzery": - [] - # https://github.com/fpco/stackage/pull/877 - # https://github.com/emmanueltouzery/app-settings/issues/6 - #- app-settings + - app-settings "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 From 09ef55f19a681f0e7ad964bd49884aed7e05e9b5 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 6 Oct 2015 20:07:19 +0900 Subject: [PATCH 892/933] put second-transfer test fail in right section (alcidesv/second-transfer#3) --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a85f1a48..676a0509 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1992,6 +1992,9 @@ expected-test-failures: # https://github.com/jgm/pandoc-citeproc/issues/172 - pandoc-citeproc + # https://github.com/alcidesv/second-transfer/issues/3 + - second-transfer + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 @@ -2011,9 +2014,6 @@ expected-haddock-failures: # Not sure why, but it's a temporary package anyway - Cabal-ide-backend - # https://github.com/alcidesv/second-transfer/issues/3 - - second-transfer - # Benchmarks which should not be built. Note that Stackage does *not* generally # build benchmarks. The difference here will be whether dependencies for these # benchmarks are included or not. From 74ab7cf2489580d495b6cacf80d21d8c1d3fc908 Mon Sep 17 00:00:00 2001 From: emmanueltouzery Date: Tue, 6 Oct 2015 16:50:11 +0200 Subject: [PATCH 893/933] add hsexif package I'm the author & hackage uploader --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 676a0509..18ff5d88 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1492,6 +1492,7 @@ packages: "Emmanuel Touzery @emmanueltouzery": - app-settings + - hsexif "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 From fc1659060eecd162e9bd00cf9f37cc1180de2ed3 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 7 Oct 2015 19:19:52 +0900 Subject: [PATCH 894/933] allow growler haddock to fail needs investigation --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 42bd9fb6..26e20f87 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2012,6 +2012,9 @@ expected-haddock-failures: # Not sure why, but it's a temporary package anyway - Cabal-ide-backend + # not sure why + - growler + # Benchmarks which should not be built. Note that Stackage does *not* generally # build benchmarks. The difference here will be whether dependencies for these # benchmarks are included or not. From 9ccf070395605d9e9699193008bff59fe8f37ba2 Mon Sep 17 00:00:00 2001 From: Nickolay Kudasov Date: Wed, 7 Oct 2015 17:15:22 +0300 Subject: [PATCH 895/933] Add http-api-data package --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 26e20f87..a5d328b4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1494,6 +1494,9 @@ packages: - app-settings - hsexif + "Nickolay Kudasov @fizruk": + - http-api-data + "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 From 0909d667dd109dc515c024d91e90e90654fca665 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 8 Oct 2015 10:49:39 +0900 Subject: [PATCH 896/933] persistent-mysql-2.3.0.1 haddock error (yesodweb/persistent/#488) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index a5d328b4..f35b4b0f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2018,6 +2018,9 @@ expected-haddock-failures: # not sure why - growler + # fedora/haskell/cabal-rpm/f23/ + - persistent-mysql + # Benchmarks which should not be built. Note that Stackage does *not* generally # build benchmarks. The difference here will be whether dependencies for these # benchmarks are included or not. From 8e0e01ec8f7c3c97c6a6691ce0fb73fafbd025a0 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 8 Oct 2015 10:50:56 +0900 Subject: [PATCH 897/933] add "end of" section comments to avoid confusion for skipped Several times I and others have mistakenly added packages to expected-haddock-failures instead of expected-test-failures for example - hopefully these section end comments will be agreeable and help avoid such problems. I added for all the long sections but not yet for the shortest ones (ie skipped-builds and skipped-profiling) though maybe they should have them too for consistency. --- build-constraints.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f35b4b0f..997cff95 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1552,6 +1552,9 @@ packages: # https://github.com/fpco/stackage/issues/880 - http-types < 0.9 +# end of packages + + # Package flags are applied to individual packages, and override the values of # global-flags package-flags: @@ -1608,12 +1611,16 @@ package-flags: nix-paths: allow-relative-paths: true +# end of package-flags + + # Used for packages that cannot be built on Linux skipped-builds: - hfsevents - Win32 - Win32-notify + # By skipping a test suite, we do not pull in the build dependencies skipped-tests: - dbmigrations @@ -1699,6 +1706,9 @@ skipped-tests: - uuid - uuid-types +# end of skipped-tests + + # Tests which we should build and run, but which are expected to fail. We # should not fail a build based on a test failure for one of these packages. expected-test-failures: @@ -1996,6 +2006,9 @@ expected-test-failures: # https://github.com/alcidesv/second-transfer/issues/3 - second-transfer +# end of expected-test-failures + + # Haddocks which are expected to fail. Same concept as expected test failures. expected-haddock-failures: # https://github.com/acw/bytestring-progress/issues/4 @@ -2021,6 +2034,9 @@ expected-haddock-failures: # fedora/haskell/cabal-rpm/f23/ - persistent-mysql +# end of expected-haddock-failures + + # Benchmarks which should not be built. Note that Stackage does *not* generally # build benchmarks. The difference here will be whether dependencies for these # benchmarks are included or not. @@ -2064,10 +2080,14 @@ skipped-benchmarks: # https://github.com/liyang/true-name/issues/2 - fast-builder +# end of skipped-benchmarks + + skipped-profiling: # https://github.com/nomeata/ghc-heap-view/commit/8d198eb8fbbad2ce0c4527c781659f35b8909c04#diff-8288955e209cfbead5b318a8598be9c0R10 - ghc-heap-view + # Mapping from Github account holding a package to the Github users who should # be pinged on failure. If no value is specified here, then the owning account # will be pinged. @@ -2104,3 +2124,5 @@ github-users: lambdabot: - DanBurton - mokus0 + +# end of github-users From 79a3f9ce5e8d593d2d3f34b3326799eb70be3968 Mon Sep 17 00:00:00 2001 From: Jared Tobin Date: Fri, 9 Oct 2015 18:45:55 +1300 Subject: [PATCH 898/933] Add several packages. * mwc-probability * mcmc-types * mighty-metropolis * speedy-slice * hasty-hamiltonian --- build-constraints.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 997cff95..75a12280 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1497,6 +1497,13 @@ packages: "Nickolay Kudasov @fizruk": - http-api-data + "Jared Tobin @jtobin": + - mwc-probability + - mcmc-types + - mighty-metropolis + - speedy-slice + - hasty-hamiltonian + "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 From 467a13d94bdf03e4c391fed18fd8b3c901758fab Mon Sep 17 00:00:00 2001 From: Liam O'Connor Date: Sat, 10 Oct 2015 05:31:50 +1100 Subject: [PATCH 899/933] Update build-constraints.yaml Add my dixi package. It has a lot of dependencies, but I got it building against the stackage snapshot --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 997cff95..beb33146 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -427,6 +427,7 @@ packages: "Liam O'Connor ": - patches-vector - composition-tree + - dixi "Dan Burton @DanBurton": - hspec-jenkins From 6344e048b4a8dd2abb6b2e8fb248283a9dd27a9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20D=C3=ADaz?= Date: Fri, 9 Oct 2015 14:34:50 -0400 Subject: [PATCH 900/933] More Daniel Diaz' packages. --- build-constraints.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 997cff95..bd87c470 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -448,6 +448,13 @@ packages: - haskintex - post-mess-age - include-file + - sorted-list + - grouped-list + - byteset + - hatex-guide + - pcre-light + - phantom-state + - bimap-server "Gabriel Gonzalez ": - pipes From dcfab97d50788b8835e976fa18a7b4d3a02ecc6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20D=C3=ADaz?= Date: Fri, 9 Oct 2015 15:14:12 -0400 Subject: [PATCH 901/933] Alphabetical order. --- build-constraints.yaml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index bd87c470..d79afd60 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -442,19 +442,19 @@ packages: - lambdabot "Daniel Díaz dhelta.diaz@gmail.com @Daniel-Diaz": - - HaTeX - - matrix + - bimap-server - binary-list - - haskintex - - post-mess-age - - include-file - - sorted-list - - grouped-list - byteset + - grouped-list + - haskintex + - HaTeX - hatex-guide + - include-file + - matrix - pcre-light - phantom-state - - bimap-server + - post-mess-age + - sorted-list "Gabriel Gonzalez ": - pipes From 0f3a5981d784b2a0ca827be13b3759ad21ed6dd5 Mon Sep 17 00:00:00 2001 From: Jared Tobin Date: Sat, 10 Oct 2015 10:37:05 +1300 Subject: [PATCH 902/933] Add the 'declarative' package. --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 75a12280..3db1385a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1503,6 +1503,7 @@ packages: - mighty-metropolis - speedy-slice - hasty-hamiltonian + - declarative "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 From bab0a2e90ee370efb02ffcbaad337feb4cdb5005 Mon Sep 17 00:00:00 2001 From: Alexander Vershilov Date: Sun, 11 Oct 2015 00:19:32 +0300 Subject: [PATCH 903/933] Add distributed-process back. --- build-constraints.yaml | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 997cff95..d4b7dd52 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -117,19 +117,18 @@ packages: - th-desugar - quickcheck-assertions - # Cloud Haskell not yet updated to GHC 7.10 - #- distributed-process-simplelocalnet + - distributed-process-simplelocalnet # cloud-haskell - #- rank1dynamic - #- distributed-static + - rank1dynamic + - distributed-static - network-transport - #- distributed-process - #- distributed-process-extras - #- distributed-process-async - #- distributed-process-client-server - #- distributed-process-supervisor - #- distributed-process-task - #- distributed-process-execution + - distributed-process + - distributed-process-extras + - distributed-process-async + - distributed-process-client-server + - distributed-process-supervisor + - distributed-process-task + - distributed-process-execution - kure From ea04823daa1bd77b3caf45923f045433adef6277 Mon Sep 17 00:00:00 2001 From: Alexander Vershilov Date: Sun, 11 Oct 2015 10:28:48 +0300 Subject: [PATCH 904/933] Change maintainer of distributed-process. --- build-constraints.yaml | 28 +++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d4b7dd52..0fbc9b33 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -117,19 +117,6 @@ packages: - th-desugar - quickcheck-assertions - - distributed-process-simplelocalnet - # cloud-haskell - - rank1dynamic - - distributed-static - - network-transport - - distributed-process - - distributed-process-extras - - distributed-process-async - - distributed-process-client-server - - distributed-process-supervisor - - distributed-process-task - - distributed-process-execution - - kure - ide-backend @@ -1496,6 +1483,21 @@ packages: "Nickolay Kudasov @fizruk": - http-api-data + "Facundo Domínguez @facundominguez": + + - distributed-process + - distributed-process-async + - distributed-process-client-server + - distributed-process-execution + - distributed-process-extras + - distributed-process-simplelocalnet + - distributed-process-supervisor + - distributed-process-task + - distributed-static + - network-transport + - rank1dynamic + + "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 From 603c44648754572d4d9f7267143df29b8c9ef07a Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 11 Oct 2015 23:46:16 +0900 Subject: [PATCH 905/933] add upperbounds for hmatrix-gsl-stats, hsignal and hstatistics (#887) since hmatrix-gsl-stats wants vector-0.11 --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 997cff95..d0901c94 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1528,11 +1528,15 @@ packages: # https://github.com/fpco/stackage/issues/836 - singletons < 1.2 + # https://github.com/fpco/stackage/issues/887 # https://github.com/amcphail/hmatrix-gsl-stats/issues/10 # https://github.com/amcphail/plot/issues/13 # https://github.com/amcphail/hmatrix-repa/issues/2 - hmatrix < 0.17 - hmatrix-gsl < 0.17 + - hmatrix-gsl-stats < 0.4.1.2 + - hsignal < 0.2.7.2 + - hstatistics < 0.2.5.3 # https://github.com/fpco/stackage/issues/845 - aeson < 0.10 From b42d6797ec8b0f859c7b5af4e63942067e62fa3e Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 11 Oct 2015 23:52:34 +0900 Subject: [PATCH 906/933] upperbound plot (#887) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d0901c94..f10f938d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1537,6 +1537,7 @@ packages: - hmatrix-gsl-stats < 0.4.1.2 - hsignal < 0.2.7.2 - hstatistics < 0.2.5.3 + - plot < 0.2.3.5 # https://github.com/fpco/stackage/issues/845 - aeson < 0.10 From b5638fbdee3ce48e71bd472d81855f3162d04112 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 12 Oct 2015 11:13:17 +0900 Subject: [PATCH 907/933] allow websockets tests failure (jaspervdj/websockets#104) May be intermittent but happened twice in a row for current nightly build --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 625f865b..a8b661ff 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2026,6 +2026,9 @@ expected-test-failures: # https://github.com/alcidesv/second-transfer/issues/3 - second-transfer + # https://github.com/jaspervdj/websockets/issues/104 + - websockets + # end of expected-test-failures From 48ad48aa64cef6082d6bf73d36d3157fd3f4aa29 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 12 Oct 2015 11:30:18 +0900 Subject: [PATCH 908/933] hatex-guide setup fails (#885) setup: /home/stackage/.hatex-guide: createDirectory: permission denied --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a8b661ff..301a1af6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -435,7 +435,8 @@ packages: - grouped-list - haskintex - HaTeX - - hatex-guide + # fails see #885 + #- hatex-guide - include-file - matrix - pcre-light From 7c0abf8628b659e4e7ec939193a4c8d9a78f80b4 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 12 Oct 2015 11:52:35 +0900 Subject: [PATCH 909/933] distributed-process-tests fails to build (#886) Preprocessing test suite 'TestMx' for distributed-process-tests-0.4.3.1... ghc: unrecognised flag: --threaded --- build-constraints.yaml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 301a1af6..27439bf4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1502,13 +1502,15 @@ packages: "Facundo Domínguez @facundominguez": - distributed-process - - distributed-process-async - - distributed-process-client-server - - distributed-process-execution - - distributed-process-extras + # https://github.com/fpco/stackage/pull/886 + #- distributed-process-async + #- distributed-process-client-server + #- distributed-process-execution + #- distributed-process-extras - distributed-process-simplelocalnet - distributed-process-supervisor - - distributed-process-task + # https://github.com/fpco/stackage/pull/886 + #- distributed-process-task - distributed-static - network-transport - rank1dynamic From bb35c4a5ce2d7a46f20ecac990bd209b4ae7f90a Mon Sep 17 00:00:00 2001 From: Takahiro Himura Date: Mon, 12 Oct 2015 13:00:04 +0900 Subject: [PATCH 910/933] Update build-constraints.yaml --- build-constraints.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 27439bf4..4d080b1a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1515,6 +1515,12 @@ packages: - network-transport - rank1dynamic + "Takahiro Himura @thimura": + - lens-regex + - twitter-conduit + - twitter-types + - twitter-types-lens + "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 @@ -1634,6 +1640,9 @@ package-flags: nix-paths: allow-relative-paths: true + twitter-types: + time15: true + # end of package-flags From f4da7e8e918fb8b2c69928a37aa66310521a71d9 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 12 Oct 2015 13:48:41 +0900 Subject: [PATCH 911/933] README: advice on commit messages --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index c2963d49..4a53c5d3 100644 --- a/README.md +++ b/README.md @@ -55,6 +55,10 @@ require new submissions to be tested on your own system before sending a pull request. If you believe your package works with the newest versions of all dependencies, you may send a pull request without testing first. +Please use commit messages like "add foo-bar" or "add johndev's packages" +(`build-constraints.yaml` is the most frequently changed file in this git repo +so commit messages like "update build-constraints.yaml" are not helpful). + You should also read the [maintainers agreement](https://github.com/fpco/stackage/wiki/Maintainers-Agreement). From 49b41a7b8127fe2ec10ca9d74e86c0ac5cb1eecb Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 12 Oct 2015 13:50:55 +0900 Subject: [PATCH 912/933] improve the wording at the start of the README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4a53c5d3..a77098f7 100644 --- a/README.md +++ b/README.md @@ -3,9 +3,9 @@ stackage [![Build Status](https://travis-ci.org/fpco/stackage.svg?branch=master)](https://travis-ci.org/fpco/stackage) -"Stable Hackage," tools for creating a vetted set of packages from Hackage. +"Stable Hackage": creating a vetted set of packages from Hackage. -__NOTE__ This repository is for package authors to get their code into +__NOTE__ This repository is for package authors to get their packages into Stackage. If you simply want to use Stackage as an end user, please follow the instructions on [http://www.stackage.org/](http://www.stackage.org). From 9da130e09aacc6c62e17c50aa86fa1dc0ea6cf30 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 12 Oct 2015 13:51:57 +0900 Subject: [PATCH 913/933] README: mention maintainers as well as authors --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a77098f7..481c06d3 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ stackage "Stable Hackage": creating a vetted set of packages from Hackage. -__NOTE__ This repository is for package authors to get their packages into +__NOTE__ 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 [http://www.stackage.org/](http://www.stackage.org). From 642b726c317ff5fa48cca9140848e46baa357e2c Mon Sep 17 00:00:00 2001 From: Brendan Hay Date: Thu, 8 Oct 2015 11:31:35 +0200 Subject: [PATCH 914/933] Adding new amazonka libraries --- build-constraints.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 997cff95..9ff83693 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -952,15 +952,20 @@ packages: - amazonka-efs - amazonka-elasticache - amazonka-elasticbeanstalk + - amazonka-elasticsearch - amazonka-elastictranscoder - amazonka-elb - amazonka-emr - amazonka-glacier - amazonka-iam - amazonka-importexport + - amazonka-inspector + - amazonka-iot - amazonka-kinesis + - amazonka-kinesis-firehose - amazonka-kms - amazonka-lambda + - amazonka-marketplace-analytics - amazonka-ml - amazonka-opsworks - amazonka-rds @@ -977,6 +982,7 @@ packages: - amazonka-sts - amazonka-support - amazonka-swf + - amazonka-waf - amazonka-workspaces - ede - pagerduty From d45e3eb4a7719a2212a10fe445091f1ff7194b13 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 12 Oct 2015 18:07:08 +0900 Subject: [PATCH 915/933] Revert "distributed-process-tests fails to build (#886)" should be fixed with 0.4.3.2 (distributed-process-tests#27) This reverts commit 7c0abf8628b659e4e7ec939193a4c8d9a78f80b4. --- build-constraints.yaml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e3b5a9ea..d48a55f1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1508,15 +1508,13 @@ packages: "Facundo Domínguez @facundominguez": - distributed-process - # https://github.com/fpco/stackage/pull/886 - #- distributed-process-async - #- distributed-process-client-server - #- distributed-process-execution - #- distributed-process-extras + - distributed-process-async + - distributed-process-client-server + - distributed-process-execution + - distributed-process-extras - distributed-process-simplelocalnet - distributed-process-supervisor - # https://github.com/fpco/stackage/pull/886 - #- distributed-process-task + - distributed-process-task - distributed-static - network-transport - rank1dynamic From 7a65c24ee3b722586600c1d16248309b01e5bb68 Mon Sep 17 00:00:00 2001 From: Tomas Carnecky Date: Tue, 13 Oct 2015 00:30:04 +0200 Subject: [PATCH 916/933] Add libinfluxdb by wereHamster --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d48a55f1..3150157c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -837,6 +837,7 @@ packages: - github-webhook-handler-snap - google-cloud - kraken + - libinfluxdb - mole - publicsuffix - rethinkdb-client-driver From 5ad91d574f11f1f4166804d97da5c183956d6af5 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 13 Oct 2015 04:19:26 +0000 Subject: [PATCH 917/933] Upper bound for #892 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d48a55f1..6fbd747f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1585,6 +1585,9 @@ packages: # https://github.com/fpco/stackage/issues/880 - http-types < 0.9 + # https://github.com/fpco/stackage/issues/892 + - webdriver < 0.7 + # end of packages From cafb357983b8eabfdfb696f56dc7cfb6530102ca Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 13 Oct 2015 04:44:56 +0000 Subject: [PATCH 918/933] Expect test failure himura/twitter-types#33 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6fbd747f..5d63a229 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2048,6 +2048,9 @@ expected-test-failures: # https://github.com/jaspervdj/websockets/issues/104 - websockets + # https://github.com/himura/twitter-types/issues/33 + - twitter-types + # end of expected-test-failures From d5643c886271c04ab45e9b403fd743a89831a277 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 13 Oct 2015 04:54:39 +0000 Subject: [PATCH 919/933] Expected test failure himura/twitter-conduit#39 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 30eea369..42aa9ba0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2052,6 +2052,9 @@ expected-test-failures: # https://github.com/himura/twitter-types/issues/33 - twitter-types + # https://github.com/himura/twitter-conduit/issues/39 + - twitter-conduit + # end of expected-test-failures From 12d1801c9ba4b621c92fa2c68e9dc638e495859f Mon Sep 17 00:00:00 2001 From: Dave Wiltshire Date: Tue, 13 Oct 2015 18:39:50 +1100 Subject: [PATCH 920/933] Added package hashable-time Added hashable-time with David Wiltshire as maintainer (but not author). --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 42aa9ba0..60c69eeb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1526,6 +1526,10 @@ packages: - twitter-types - twitter-types-lens + "David Wiltshire @dave77": + # on behalf of Alexey Karakulov @w3rs + - hashable-time + "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 From d5795aeedb44f722a8a8a37f7c2c36f5cbabbcb9 Mon Sep 17 00:00:00 2001 From: Robbin C Date: Tue, 13 Oct 2015 15:45:11 +0800 Subject: [PATCH 921/933] Add zim-parser. --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 42aa9ba0..b4641885 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1526,6 +1526,9 @@ packages: - twitter-types - twitter-types-lens + "Robbin C. ": + - zim-parser + "Stackage upper bounds": # https://github.com/fpco/stackage/issues/537 - zlib < 0.6 From df687cd71c15c9df9476b1b60495d29a276a815c Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Tue, 13 Oct 2015 12:45:07 -0400 Subject: [PATCH 922/933] add Win32-extras This is a dependency of git-annex on Windows, and won't otherwise be included since deps are resolved for linux and not windows. Per https://github.com/commercialhaskell/stack/issues/1158 I put it under my name, although I don't maintain the package, because I can't speak for the authors of Win32-extras regarding putting it in stackage, and it's so far only included because git-annex uses it. Hopefully this is ok. --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d91730db..f50084ab 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -571,6 +571,7 @@ packages: "Joey Hess ": - git-annex < 5.20150731 + - Win32-extras "Ketil Malde": - biocore @@ -1666,6 +1667,7 @@ skipped-builds: - hfsevents - Win32 - Win32-notify + - Win32-extras # By skipping a test suite, we do not pull in the build dependencies From 0a9aa3df17f59e6d07ba28d587c26e7215d3b255 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 14 Oct 2015 14:13:26 +0900 Subject: [PATCH 923/933] true-name should build now with ghc-7.10 (liyang/true-name#2) true-name-0.0.0.2 should allow fast-builder's benchmarks to run --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f50084ab..cb569e9b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2135,9 +2135,6 @@ skipped-benchmarks: # https://github.com/kaizhang/clustering/issues/2 - clustering - # https://github.com/liyang/true-name/issues/2 - - fast-builder - # end of skipped-benchmarks From 7ae02020716de6a8c40fde9c4c7c3df7a18e9276 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 14 Oct 2015 14:20:08 +0900 Subject: [PATCH 924/933] websockets tests should pass now (jaspervdj/websockets#104) should be fixed in 0.9.6.1 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index cb569e9b..feb173b5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2055,9 +2055,6 @@ expected-test-failures: # https://github.com/alcidesv/second-transfer/issues/3 - second-transfer - # https://github.com/jaspervdj/websockets/issues/104 - - websockets - # https://github.com/himura/twitter-types/issues/33 - twitter-types From afaf8aebc36fa6dafe80ef2995ea78c441c40bd7 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 14 Oct 2015 14:28:41 +0900 Subject: [PATCH 925/933] persistent-mysql haddock fixed (yesodweb/persistent#488) should be fixed in 2.3.0.2 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index feb173b5..4729a968 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2086,9 +2086,6 @@ expected-haddock-failures: # not sure why - growler - # fedora/haskell/cabal-rpm/f23/ - - persistent-mysql - # end of expected-haddock-failures From 6c2249fde8434aea6dda9cf19fe89d4a8d4da767 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 14 Oct 2015 06:03:25 +0000 Subject: [PATCH 926/933] Upper bounds for #896 and #897 --- build-constraints.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4729a968..c0ef3509 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1597,6 +1597,12 @@ packages: # https://github.com/fpco/stackage/issues/892 - webdriver < 0.7 + # https://github.com/fpco/stackage/issues/896 + - OpenGLRaw < 2.6 + + # https://github.com/fpco/stackage/issues/897 + - pandoc-citeproc < 0.8 + # end of packages From 3cdf03cac0a887d3324cfa460483c89d0017122c Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 14 Oct 2015 07:12:42 +0000 Subject: [PATCH 927/933] Upper bound for fumieval/witherable#4 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index c0ef3509..fd4cc0d0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1603,6 +1603,9 @@ packages: # https://github.com/fpco/stackage/issues/897 - pandoc-citeproc < 0.8 + # https://github.com/fumieval/witherable/issues/4 + - witherable < 0.1.3.1 + # end of packages From b1ae375910157f5984758a0caec9dfe25fcaeaf5 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 14 Oct 2015 09:26:22 +0000 Subject: [PATCH 928/933] Expected test failure mitchellwrosen/language-lua2#2 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index fd4cc0d0..536e2ce0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2070,6 +2070,9 @@ expected-test-failures: # https://github.com/himura/twitter-conduit/issues/39 - twitter-conduit + # https://github.com/mitchellwrosen/language-lua2/issues/2 + - language-lua2 + # end of expected-test-failures From 90a0de3304fccb6993be385f6c58c49e326a6ba2 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 14 Oct 2015 10:54:31 +0000 Subject: [PATCH 929/933] Revert "Upper bound for fumieval/witherable#4" This reverts commit 3cdf03cac0a887d3324cfa460483c89d0017122c. --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 536e2ce0..c226a2f3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1603,9 +1603,6 @@ packages: # https://github.com/fpco/stackage/issues/897 - pandoc-citeproc < 0.8 - # https://github.com/fumieval/witherable/issues/4 - - witherable < 0.1.3.1 - # end of packages From 2734cf8fe4fd98fb2ea75f865b4b11eb4a82aac2 Mon Sep 17 00:00:00 2001 From: Oleg Grenrus Date: Wed, 14 Oct 2015 17:20:43 +0300 Subject: [PATCH 930/933] Remove constraint on OpenGLRaw (#896) --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c226a2f3..e96bd602 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1597,9 +1597,6 @@ packages: # https://github.com/fpco/stackage/issues/892 - webdriver < 0.7 - # https://github.com/fpco/stackage/issues/896 - - OpenGLRaw < 2.6 - # https://github.com/fpco/stackage/issues/897 - pandoc-citeproc < 0.8 From 5712a15a49f52c0d4b47b2fdb57247b2edc12ec8 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 15 Oct 2015 04:48:08 +0000 Subject: [PATCH 931/933] Remove expected test failure himura/twitter-conduit#39 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e96bd602..8659ec68 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2061,9 +2061,6 @@ expected-test-failures: # https://github.com/himura/twitter-types/issues/33 - twitter-types - # https://github.com/himura/twitter-conduit/issues/39 - - twitter-conduit - # https://github.com/mitchellwrosen/language-lua2/issues/2 - language-lua2 From c024cc564f5b19f4d2d4bfeced00fdcdebd82b0e Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 15 Oct 2015 04:48:44 +0000 Subject: [PATCH 932/933] Remove expected test failure himura/twitter-types#33 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8659ec68..f384e4dd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2058,9 +2058,6 @@ expected-test-failures: # https://github.com/alcidesv/second-transfer/issues/3 - second-transfer - # https://github.com/himura/twitter-types/issues/33 - - twitter-types - # https://github.com/mitchellwrosen/language-lua2/issues/2 - language-lua2 From 126b7bfb077402820d06dfd19384e3fbf7c7d9d6 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 15 Oct 2015 10:48:57 +0000 Subject: [PATCH 933/933] Remove upper bound and close #897 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f384e4dd..8cb40449 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1597,9 +1597,6 @@ packages: # https://github.com/fpco/stackage/issues/892 - webdriver < 0.7 - # https://github.com/fpco/stackage/issues/897 - - pandoc-citeproc < 0.8 - # end of packages