Merge branch 'master' into nightly

This commit is contained in:
Michael Snoyman 2017-11-08 11:00:56 +02:00
commit 16b5409b4e
No known key found for this signature in database
GPG Key ID: A048E8C057E86876
5 changed files with 267 additions and 110 deletions

View File

@ -25,7 +25,7 @@ Note that the `master` branch is used for Stackage Nightly (not the `nightly` br
After doing that, send a pull request (with a commit message like "add foo-bar"). We do not require new submissions to be tested against the rest of Stackage before the pull request (though it is a good idea to do so if you can with `stack --resolver nightly exec stackage-curator check` and `stack --resolver nightly build`), provided you meet the dependency version requirements above. If your library depends on a C library, add a note to your pull request with the Ubuntu library name, or even better edit the `debian-bootstrap.sh` script directly After doing that, send a pull request (with a commit message like "add foo-bar"). We do not require new submissions to be tested against the rest of Stackage before the pull request (though it is a good idea to do so if you can with `stack --resolver nightly exec stackage-curator check` and `stack --resolver nightly build`), provided you meet the dependency version requirements above. If your library depends on a C library, add a note to your pull request with the Ubuntu library name, or even better edit the `debian-bootstrap.sh` script directly
If you want to make sure that the package builds against the newest versions of all dependecies you can do this: If you want to make sure that the package builds against the newest versions of all dependencies you can do this:
``` ```
$ cabal update $ cabal update
$ ghc --version # Should give v8.0.2 $ ghc --version # Should give v8.0.2

View File

@ -57,7 +57,7 @@ Build the package set
--------------------- ---------------------
Generally only the stackage build server run by the stackage curator Generally only the stackage build server run by the stackage curator
team and people intrested in incorporating stackage snapshots into an team and people interested in incorporating stackage snapshots into an
OS distribution need to build the entire package set. If you're OS distribution need to build the entire package set. If you're
interested in trying this yourself, please check out interested in trying this yourself, please check out
[the curator guide](https://github.com/fpco/stackage/blob/master/CURATORS.md), [the curator guide](https://github.com/fpco/stackage/blob/master/CURATORS.md),

View File

@ -30,6 +30,7 @@ DOT_STACKAGE_DIR=$ROOT/dot-stackage
WORKDIR=$ROOT/$TAG/work WORKDIR=$ROOT/$TAG/work
EXTRA_BIN_DIR=$ROOT/extra-bin EXTRA_BIN_DIR=$ROOT/extra-bin
SSH_DIR=$ROOT/ssh-$SHORTNAME SSH_DIR=$ROOT/ssh-$SHORTNAME
USERID=$(id -u)
mkdir -p \ mkdir -p \
"$CABAL_DIR" \ "$CABAL_DIR" \
@ -81,9 +82,9 @@ chmod +x stackage-curator
) )
ARGS_COMMON="--rm -v $WORKDIR:$HOME/work -w $HOME/work -v $BINDIR/stackage-curator:/usr/bin/stackage-curator:ro -v /etc/passwd:/etc/passwd:ro -v /etc/group:/etc/group:ro -v $EXTRA_BIN_DIR/stack:/usr/bin/stack:ro" ARGS_COMMON="--rm -v $WORKDIR:$HOME/work -w $HOME/work -v $BINDIR/stackage-curator:/usr/bin/stackage-curator:ro -v /etc/passwd:/etc/passwd:ro -v /etc/group:/etc/group:ro -v $EXTRA_BIN_DIR/stack:/usr/bin/stack:ro"
ARGS_PREBUILD="$ARGS_COMMON -u $USER -e HOME=$HOME -v $CABAL_DIR:$HOME/.cabal -v $STACK_DIR:$HOME/.stack -v $GHC_DIR:$HOME/.ghc -v $DOT_STACKAGE_DIR:$HOME/.stackage" ARGS_PREBUILD="$ARGS_COMMON -u $USERID -e HOME=$HOME -v $CABAL_DIR:$HOME/.cabal -v $STACK_DIR:$HOME/.stack -v $GHC_DIR:$HOME/.ghc -v $DOT_STACKAGE_DIR:$HOME/.stackage"
ARGS_BUILD="$ARGS_COMMON -v $CABAL_DIR:$HOME/.cabal:ro -v $STACK_DIR:$HOME/.stack:ro -v $GHC_DIR:$HOME/.ghc:ro" ARGS_BUILD="$ARGS_COMMON -v $CABAL_DIR:$HOME/.cabal:ro -v $STACK_DIR:$HOME/.stack:ro -v $GHC_DIR:$HOME/.ghc:ro"
ARGS_UPLOAD="$ARGS_COMMON -u $USER -e HOME=$HOME -e AWS_ACCESS_KEY_ID=$AWS_ACCESS_KEY_ID -e AWS_SECRET_ACCESS_KEY=$AWS_SECRET_ACCESS_KEY -v $AUTH_TOKEN:/auth-token:ro -v $HACKAGE_CREDS:/hackage-creds:ro -v $DOT_STACKAGE_DIR:$HOME/.stackage -v $SSH_DIR:$HOME/.ssh:ro -v $GITCONFIG:$HOME/.gitconfig:ro -v $CABAL_DIR:$HOME/.cabal:ro -v $STACK_DIR:$HOME/.stack:ro" ARGS_UPLOAD="$ARGS_COMMON -u $USERID -e HOME=$HOME -e AWS_ACCESS_KEY_ID=$AWS_ACCESS_KEY_ID -e AWS_SECRET_ACCESS_KEY=$AWS_SECRET_ACCESS_KEY -v $AUTH_TOKEN:/auth-token:ro -v $HACKAGE_CREDS:/hackage-creds:ro -v $DOT_STACKAGE_DIR:$HOME/.stackage -v $SSH_DIR:$HOME/.ssh:ro -v $GITCONFIG:$HOME/.gitconfig:ro -v $CABAL_DIR:$HOME/.cabal:ro -v $STACK_DIR:$HOME/.stack:ro"
# Make sure we actually need this snapshot. We only check this for LTS releases # Make sure we actually need this snapshot. We only check this for LTS releases
# since, for nightlies, we'd like to run builds even if they are unnecessary to # since, for nightlies, we'd like to run builds even if they are unnecessary to

View File

@ -7,6 +7,18 @@ cabal-format-version: "1.24"
# Constraints for brand new builds # Constraints for brand new builds
packages: packages:
"Mikolaj Konarski <mikolaj.konarski@funktory.com> @Mikolaj":
- sdl2-ttf
- assert-failure
- minimorph
- miniutter
"Jürgen Keck <jhyphenkeck@gmail.com> @j-keck":
- wreq-stringless
"Olaf Chitil <oc@kent.ac.uk> @OlafChitil":
- FPretty
"Maarten Faddegon <stackage@maartenfaddegon.nl> @MaartenFaddegon": "Maarten Faddegon <stackage@maartenfaddegon.nl> @MaartenFaddegon":
- libgraph - libgraph
- Hoed - Hoed
@ -25,8 +37,13 @@ packages:
- hedgehog - hedgehog
- hedgehog-quickcheck - hedgehog-quickcheck
"Walter Schulze <awalterschulze@gmail.com> @awalterschulze":
- katydid
"Nobutada Matsubara <t12307043@gunma-u.ac.jp> @matsubara0507": "Nobutada Matsubara <t12307043@gunma-u.ac.jp> @matsubara0507":
- chatwork - chatwork
- rakuten
- servant-kotlin
"Pavol Klacansky <pavol@klacansky.com> @pavolzetor": "Pavol Klacansky <pavol@klacansky.com> @pavolzetor":
- openexr-write - openexr-write
@ -36,7 +53,7 @@ packages:
- opencv-extra < 0 # hard to install build tools - opencv-extra < 0 # hard to install build tools
"Pasqualino Assini <tittoassini@gmail.com> @tittoassini": "Pasqualino Assini <tittoassini@gmail.com> @tittoassini":
- zm # - zm # compilation failure https://github.com/Quid2/zm/issues/1
- flat - flat
- model - model
@ -54,16 +71,15 @@ packages:
- NoHoed - NoHoed
- threepenny-editors - threepenny-editors
- clr-inline # possibly nondeterministic failures, see https://github.com/fpco/stackage/issues/2510 - clr-inline # possibly nondeterministic failures, see https://github.com/fpco/stackage/issues/2510
- strict-types
"Joshua Koike <jkoike2013@gmail.com> @jano017": "Joshua Koike <jkoike2013@gmail.com> @jano017":
[] []
# - discord-hs # bounds: req # - discord-hs # bounds: req
"Roman Gonzalez <romanandreg@gmail.com> @roman": "Roman Gonzalez <romanandreg@gmail.com> @roman":
[] - teardown
# - etc # GHC 8.2.1 via protolude # - etc # GHC 8.2.1 via protolude
# - teardown # GHC 8.2.1
"Richard Cook <rcook@rcook.org> @rcook": "Richard Cook <rcook@rcook.org> @rcook":
- hidden-char - hidden-char
@ -151,9 +167,6 @@ packages:
"Romain Edelmann <romain.edelmann@gmail.com> @redelmann": "Romain Edelmann <romain.edelmann@gmail.com> @redelmann":
- distribution - distribution
"Rongcui Dong <rongcuid@outlook.com> @rongcuid":
- sdl2-ttf
"Nikita Tchayka <nikitatchayka@gmail.com> @nickseagull": "Nikita Tchayka <nikitatchayka@gmail.com> @nickseagull":
- ramus - ramus
@ -185,7 +198,7 @@ packages:
# - packunused # bounds: optparse-applicative # - packunused # bounds: optparse-applicative
"Marco Zocca @ocramz": "Marco Zocca @ocramz":
- sparse-linear-algebra # GHC 8.2.1 via MemoTrie - sparse-linear-algebra
- matrix-market-attoparsec - matrix-market-attoparsec
- network-multicast - network-multicast
- xeno - xeno
@ -197,13 +210,14 @@ packages:
# - stm-supply # GHC 8.2.1 via Unique # - stm-supply # GHC 8.2.1 via Unique
- filter-logger - filter-logger
- tile - tile
- mbtiles
"James M.C. Haver II <mchaver@gmail.com> @mchaver": "James M.C. Haver II <mchaver@gmail.com> @mchaver":
- quickcheck-arbitrary-adt - quickcheck-arbitrary-adt
- hspec-golden-aeson - hspec-golden-aeson
# - servant-aeson-specs # bounds: servant # - servant-aeson-specs # bounds: servant
"Winter Land <winterland1989@gmail.com> @winterland1989": "Winter Han <winterland1989@gmail.com> @winterland1989":
- if - if
- tcp-streams - tcp-streams
- tcp-streams-openssl - tcp-streams-openssl
@ -211,9 +225,10 @@ packages:
- binary-parsers - binary-parsers
- binary-ieee754 - binary-ieee754
- word24 - word24
# - mysql-haskell # 3 packages out of bounds: https://github.com/winterland1989/mysql-haskell/issues/16 - mysql-haskell
# - mysql-haskell-openssl # bounds: tcp-streams - mysql-haskell-openssl
- data-has - data-has
- unboxed-ref
"Harendra Kumar <harendra.kumar@gmail.com> @harendra-kumar": "Harendra Kumar <harendra.kumar@gmail.com> @harendra-kumar":
- unicode-transforms - unicode-transforms
@ -248,15 +263,15 @@ packages:
- once - once
"David Johnson <djohnson.m@gmail.com> @dmjio": "David Johnson <djohnson.m@gmail.com> @dmjio":
- miso # GHC 8.2.1 - miso
- envy - envy
- s3-signer - s3-signer
- google-translate # bounds: servant - google-translate # bounds: servant
- hackernews # GHC 8.2.1 - hackernews # GHC 8.2.1
# - ses-html # bounds: time 1.6 - ses-html
# - stripe-haskell # via: stripe-http-streams - stripe-haskell
# - stripe-http-streams # via: http-streams - stripe-http-streams
# - stripe-core # bounds: aeson 1.0 - stripe-core
"Piotr Mlodawski @pmlodawski": "Piotr Mlodawski @pmlodawski":
- error-util - error-util
@ -397,14 +412,15 @@ packages:
"Jon Schoning <jonschoning@gmail.com> @jonschoning": "Jon Schoning <jonschoning@gmail.com> @jonschoning":
- pinboard - pinboard
- swagger-petstore
"Jasper Van der Jeugt @jaspervdj": "Jasper Van der Jeugt @jaspervdj":
- blaze-html - blaze-html
- blaze-markup - blaze-markup
# - cabal-dependency-licenses # Cabal 2.0.0.2 # - cabal-dependency-licenses # Cabal 2.0.0.2
# - hakyll # bounds: skylighting # - hakyll # bounds: process time
- stylish-haskell - stylish-haskell
# - patat # bounds: skylighting # - patat # bounds: base
- profiteur # GHC 8.2.1 via ghc-prof - profiteur # GHC 8.2.1 via ghc-prof
- psqueues - psqueues
- websockets - websockets
@ -452,6 +468,7 @@ packages:
- parseargs - parseargs
"Vincent Hanquez @vincenthz": "Vincent Hanquez @vincenthz":
- basement
- bytedump - bytedump
- cipher-aes - cipher-aes
- cipher-rc4 - cipher-rc4
@ -464,6 +481,8 @@ packages:
- cryptonite-openssl - cryptonite-openssl
- crypto-pubkey-types - crypto-pubkey-types
- crypto-random-api - crypto-random-api
- foundation
- gauge
- git - git
- hit - hit
- memory - memory
@ -564,7 +583,6 @@ packages:
- profunctors - profunctors
- promises - promises
- reducers - reducers
- reducers
- reflection - reflection
- semigroupoid-extras - semigroupoid-extras
- semigroupoids - semigroupoids
@ -607,8 +625,8 @@ packages:
"Brent Yorgey <byorgey@gmail.com> @byorgey": "Brent Yorgey <byorgey@gmail.com> @byorgey":
- active - active
# - BlogLiterately # bounds: skylighting # - BlogLiterately # bounds: base pandoc pandoc-citeproc
# - BlogLiterately-diagrams # bounds: skylighting # - BlogLiterately-diagrams # bounds: pandoc
# - diagrams # bounds: optparse-applicative # - diagrams # bounds: optparse-applicative
# - diagrams-builder # GHC 8.2.1 # - diagrams-builder # GHC 8.2.1
# - diagrams-haddock # BLOCKED directory 1.3 via cautious-file # - diagrams-haddock # BLOCKED directory 1.3 via cautious-file
@ -669,6 +687,14 @@ packages:
"Trevor L. McDonell <tmcdonell@cse.unsw.edu.au> @tmcdonell": "Trevor L. McDonell <tmcdonell@cse.unsw.edu.au> @tmcdonell":
- accelerate - accelerate
- accelerate-llvm
- accelerate-llvm-native
- accelerate-llvm-ptx
- accelerate-io
- accelerate-fft
- accelerate-blas
- accelerate-bignum
- accelerate-examples
- repa - repa
- repa-io - repa-io
- repa-algorithms - repa-algorithms
@ -676,11 +702,17 @@ packages:
- gloss-algorithms - gloss-algorithms
- gloss-raster - gloss-raster
- gloss-rendering - gloss-rendering
- gloss-accelerate
- gloss-raster-accelerate
- colour-accelerate
- lens-accelerate
- mwc-random-accelerate
- cuda - cuda
- cublas - cublas
- cusparse - cusparse
- cusolver - cusolver
- nvvm - nvvm
- wide-word
"Liam O'Connor <liamoc@cse.unsw.edu.au> @liamoc": "Liam O'Connor <liamoc@cse.unsw.edu.au> @liamoc":
[] []
@ -744,7 +776,7 @@ packages:
"Chris Allen <cma@bitemyapp.com> @bitemyapp": "Chris Allen <cma@bitemyapp.com> @bitemyapp":
- machines-directory - machines-directory
- machines-io - machines-io
# - bloodhound # GHC 8.2.1 - bloodhound
- esqueleto - esqueleto
"Adam Bergmark <adam@bergmark.nl> @bergmark": "Adam Bergmark <adam@bergmark.nl> @bergmark":
@ -857,7 +889,7 @@ packages:
- openpgp-asciiarmor - openpgp-asciiarmor
- MusicBrainz - MusicBrainz
- DAV - DAV
# - hopenpgp-tools # https://github.com/fpco/stackage/issues/2812 - hopenpgp-tools
- opensource - opensource
"Piyush P Kurur <ppk@cse.iitk.ac.in> @piyush-kurur": "Piyush P Kurur <ppk@cse.iitk.ac.in> @piyush-kurur":
@ -872,8 +904,7 @@ packages:
- disk-free-space - disk-free-space
"Colin Woodbury <colingw@gmail.com> @fosskers": "Colin Woodbury <colingw@gmail.com> @fosskers":
[] - microlens-aeson
# - microlens-aeson # GHC 8.2.1
# - versions # GHC 8.2.1 per megaparsec # - versions # GHC 8.2.1 per megaparsec
# - vectortiles # GHC 8.2.1 # - vectortiles # GHC 8.2.1
# - pipes-random # GHC 8.2.1 # - pipes-random # GHC 8.2.1
@ -1055,6 +1086,7 @@ packages:
- cases - cases
- focus - focus
- hasql - hasql
- hasql-optparse-applicative
- hasql-pool - hasql-pool
- list-t - list-t
- mtl-prelude - mtl-prelude
@ -1158,6 +1190,7 @@ packages:
- unbound-generics - unbound-generics
- indentation-core - indentation-core
- indentation-parsec - indentation-parsec
- clang-compilation-database
"Alois Cochard <alois.cochard@gmail.com> @aloiscochard": "Alois Cochard <alois.cochard@gmail.com> @aloiscochard":
# - codex # bounds: http-client, directory # - codex # bounds: http-client, directory
@ -1181,6 +1214,7 @@ packages:
# - stackage-query # via stackage-types compilation failure # - stackage-query # via stackage-types compilation failure
# - cabal-sort # BLOCKED directory 1.3 # - cabal-sort # BLOCKED directory 1.3
# - idris # bounds aeson # - idris # bounds aeson
- fedora-haskell-tools
- libffi - libffi
- xmonad-contrib - xmonad-contrib
- shelly - shelly
@ -1212,7 +1246,7 @@ packages:
"Tomas Carnecky @wereHamster": "Tomas Carnecky @wereHamster":
- avers - avers
- avers-api - avers-api
- avers-api-docs # - avers-api-docs # https://github.com/wereHamster/avers/issues/2
- avers-server - avers-server
- css-syntax - css-syntax
- etcd - etcd
@ -1222,7 +1256,7 @@ packages:
- google-cloud - google-cloud
- kraken - kraken
- libinfluxdb - libinfluxdb
# - mole # via snap, heist, xmlhtml, - mole
- publicsuffix - publicsuffix
- rethinkdb-client-driver - rethinkdb-client-driver
- snap-blaze - snap-blaze
@ -1322,7 +1356,6 @@ packages:
- log-postgres - log-postgres
# Not a maintainer # Not a maintainer
- arithmoi
- folds - folds
- friendly-time - friendly-time
- hashable - hashable
@ -1351,6 +1384,9 @@ packages:
- universe-instances-trans - universe-instances-trans
- universe-reverse-instances - universe-reverse-instances
"@Bodigrim":
- arithmoi
"Abhinav Gupta <mail@abhinavg.net> @abhinav": "Abhinav Gupta <mail@abhinavg.net> @abhinav":
- farmhash - farmhash
- pinch - pinch
@ -1358,7 +1394,7 @@ packages:
# - language-thrift # megaparsec bounds: https://github.com/fpco/stackage/issues/2666 # - language-thrift # megaparsec bounds: https://github.com/fpco/stackage/issues/2666
"Adam C. Foltzer <acfoltzer@galois.com> @acfoltzer": "Adam C. Foltzer <acfoltzer@galois.com> @acfoltzer":
- cryptol # cryptol # https://github.com/fpco/stackage/issues/2927
- gitrev - gitrev
- persistent-refs - persistent-refs
@ -1632,10 +1668,11 @@ packages:
- ekg-statsd - ekg-statsd
- flow - flow
- github-release - github-release
# - gloss # Maintained by @benl23x5. # GHC 8.2.1 - gloss # Maintained by @benl23x5.
# - gloss-rendering # Maintained by @benl23x5. # GHC 8.2.1 - gloss-rendering # Maintained by @benl23x5.
- gpolyline # Maintained by @fegu. - gpolyline # Maintained by @fegu.
# - lackey # GHC 8.2.1 - lackey
- monad-memo # Maintained by @EduardSergeev.
# - octane # GHC 8.2.1 # - octane # GHC 8.2.1
# - overloaded-records # Maintained by @trskop. # GHC 8.2.1 # - overloaded-records # Maintained by @trskop. # GHC 8.2.1
- postgresql-simple-migration # Maintained by @ameingast. - postgresql-simple-migration # Maintained by @ameingast.
@ -1711,31 +1748,43 @@ packages:
# - clash-ghc # GHC 8.2.1 # - clash-ghc # GHC 8.2.1
"Athan Clark <athan.clark@gmail.com> @athanclark": "Athan Clark <athan.clark@gmail.com> @athanclark":
- alternative-vector
- attoparsec-path
# - attoparsec-ip via: ip
# - attoparsec-uri via: attoparsec-ip
- commutative - commutative
- composition-extra
# - digestive-functors-lucid # via: digestive-functors # - digestive-functors-lucid # via: digestive-functors
- every
- extractable-singleton
- follow-file
- HSet
# - nested-routes # via: HList
- ltext < 0 # compilation failure: https://github.com/ltext/ltext/issues/22 - ltext < 0 # compilation failure: https://github.com/ltext/ltext/issues/22
- markup - markup
# - nested-routes # via: HList - monad-control-aligned
- path-extra - monadoid
- poly-arity - n-tuple
- urlpath
- wai-transformers
# - wai-middleware-content-type # bounds: skylighting
# - wai-middleware-verbs # bounds: skylighting
- websockets-rpc
- webpage
- composition-extra
- rose-trees
- sets
- timemap
- tries
- path-extra - path-extra
- pred-trie - pred-trie
- pred-set - pred-set
- HSet - path-extra
- poly-arity
- quickcheck-combinators
- rose-trees
- sets
- timemap
- tmapchan
- tmapmvar
- tries
- unit-constraint - unit-constraint
- unfoldable-restricted - unfoldable-restricted
- quickcheck-combinators - urlpath
- wai-transformers
# - wai-middleware-content-type # compilation errors
# - wai-middleware-verbs # compilation errors
- websockets-rpc
- webpage
"Fumiaki Kinoshita <fumiexcel@gmail.com> @fumieval": "Fumiaki Kinoshita <fumiexcel@gmail.com> @fumieval":
- boundingboxes - boundingboxes
@ -1879,6 +1928,7 @@ packages:
"koral koral@mailoo.org @k0ral": "koral koral@mailoo.org @k0ral":
- atom-conduit - atom-conduit
- conduit-parse - conduit-parse
- dublincore-xml-conduit
- opml-conduit - opml-conduit
- rss-conduit < 0 # test runtime failure - rss-conduit < 0 # test runtime failure
- imm < 0 # compilation failure via synthesizer-core - imm < 0 # compilation failure via synthesizer-core
@ -1887,7 +1937,7 @@ packages:
"Kostiantyn Rybnikov <k-bx@k-bx.com> @k-bx": "Kostiantyn Rybnikov <k-bx@k-bx.com> @k-bx":
- protocol-buffers - protocol-buffers
- hprotoc < 0 # compilation failure https://github.com/k-bx/protocol-buffers/issues/45 - hprotoc
- protocol-buffers-descriptor - protocol-buffers-descriptor
- ekg-core - ekg-core
- digits - digits
@ -1907,7 +1957,6 @@ packages:
- pipes-fastx - pipes-fastx
# - pipes-illumina # via: pipes-bgzf # - pipes-illumina # via: pipes-bgzf
- seqalign - seqalign
- thermonuc
- xlsior < 0 # compilation failure https://github.com/eurekagenomics/xlsior/issues/3 - xlsior < 0 # compilation failure https://github.com/eurekagenomics/xlsior/issues/3
"John Lenz <wuzzeb@gmail.com> @wuzzeb": "John Lenz <wuzzeb@gmail.com> @wuzzeb":
@ -1947,6 +1996,7 @@ packages:
- hapistrano - hapistrano
- inflections - inflections
- stache - stache
- scalendar
# - twitter-feed # GHC 8.2.1 # - twitter-feed # GHC 8.2.1
"Sergey Alirzaev <zl29ah@gmail.com> @l29ah": "Sergey Alirzaev <zl29ah@gmail.com> @l29ah":
@ -1989,8 +2039,10 @@ packages:
- base-orphans - base-orphans
- chaselev-deque - chaselev-deque
- code-page - code-page
- criterion
- deriving-compat - deriving-compat
- echo - echo
- eliminators
- generic-deriving - generic-deriving
- hashmap - hashmap
- invariant - invariant
@ -2073,7 +2125,8 @@ packages:
# - euphoria # GHC 8.2.1 # - euphoria # GHC 8.2.1
"Ashley Moni ashley.moni1@gmail.com @AshleyMoni": "Ashley Moni ashley.moni1@gmail.com @AshleyMoni":
- quadtree []
# - QuadTree # base and lens
"Brian Lewis brian@lorf.org @bsl": "Brian Lewis brian@lorf.org @bsl":
[] []
@ -2130,18 +2183,19 @@ packages:
- pretty-simple - pretty-simple
- read-env-var - read-env-var
- servant-checked-exceptions - servant-checked-exceptions
- servant-rawm
- servant-static-th - servant-static-th
- xml-html-qq - xml-html-qq
- xml-indexed-cursor - xml-indexed-cursor
- yahoo-finance-api - yahoo-finance-api
# - yesod-markdown # bounds: skylighting # - yesod-markdown # bounds: pandoc
"Franklin Chen <franklinchen@franklinchen.com> @FranklinChen": "Franklin Chen <franklinchen@franklinchen.com> @FranklinChen":
- Ebnf2ps - Ebnf2ps
"Dmitry Ivanov <ethercrow@gmail.com> @ethercrow": "Dmitry Ivanov <ethercrow@gmail.com> @ethercrow":
- charsetdetect-ae - charsetdetect-ae
- compiler-errors - compiler-warnings
- docopt - docopt
- dynamic-state - dynamic-state
- dyre - dyre
@ -2168,13 +2222,15 @@ packages:
- yi-snippet - yi-snippet
"Tobias Bexelius <tobias_bexelius@hotmail.com> @tobbebex": "Tobias Bexelius <tobias_bexelius@hotmail.com> @tobbebex":
[] - GPipe
# - GPipe # GHC 8.2.1
"Patrick Redmond <plredmond@gmail.com> @plredmond": "Patrick Redmond <plredmond@gmail.com> @plredmond":
[] []
# - GPipe-GLFW # GHC 8.2.1 via GLFW-b # - GPipe-GLFW # GHC 8.2.1 via GLFW-b
"Jonas Carpay <jonascarpay@gmail.com> @jonascarpay":
- apecs
"Csaba Hruska <csaba.hruska@gmail.com> @csabahruska": "Csaba Hruska <csaba.hruska@gmail.com> @csabahruska":
[] []
# - lambdacube-ir # bounds: aeson # - lambdacube-ir # bounds: aeson
@ -2223,7 +2279,7 @@ packages:
- cabal2nix - cabal2nix
- funcmp - funcmp
- hackage-db - hackage-db
# - hledger-interest # megaparsec bounds: https://github.com/fpco/stackage/issues/2666 - hledger-interest
- hopenssl - hopenssl
- hsdns - hsdns
- hsemail - hsemail
@ -2292,6 +2348,7 @@ packages:
- forma - forma
- stache - stache
- parser-combinators - parser-combinators
- modern-uri
"Thomas Bereknyei <tomberek@gmail.com>": "Thomas Bereknyei <tomberek@gmail.com>":
[] []
@ -2333,6 +2390,7 @@ packages:
- network-transport-tcp - network-transport-tcp
- network-transport-inmemory - network-transport-inmemory
- network-transport-composed - network-transport-composed
- pthread
- rank1dynamic - rank1dynamic
"Alexander Vershilov <alexander.vershilov@tweag.io> @qnikst": "Alexander Vershilov <alexander.vershilov@tweag.io> @qnikst":
@ -2417,8 +2475,9 @@ packages:
"yihuang <yi.codeplayer@gmail.com> @yihuang": "yihuang <yi.codeplayer@gmail.com> @yihuang":
- tagstream-conduit - tagstream-conduit
"Johannes Hilden <hildenjohannes@gmail.com> @johanneshilden": "Johannes Hilden <hildenjohannes@gmail.com> @laserpants":
- hashids - hashids
- fuzzyset
"Joe Hermaszewski <stackage@monoid.al> @expipiplus1": "Joe Hermaszewski <stackage@monoid.al> @expipiplus1":
[] []
@ -2456,6 +2515,8 @@ packages:
- aeson-casing - aeson-casing
- graylog - graylog
- parsec-numeric - parsec-numeric
- mallard
- gdax
"Callum Rogers @CRogers": "Callum Rogers @CRogers":
- should-not-typecheck - should-not-typecheck
@ -2541,6 +2602,7 @@ packages:
"Yuji Yamamoto <whosekiteneverfly@gmail.com> @igrep": "Yuji Yamamoto <whosekiteneverfly@gmail.com> @igrep":
- yes-precure5-command - yes-precure5-command
- th-strict-compat
"Hans-Christian Esperer <hc@hcesperer.org> @hce": "Hans-Christian Esperer <hc@hcesperer.org> @hce":
- avwx - avwx
@ -2569,7 +2631,7 @@ packages:
- LibZip >= 1.0 - LibZip >= 1.0
"Anthony Cowley <acowley@gmail.com> @acowley": "Anthony Cowley <acowley@gmail.com> @acowley":
- Frames < 0 # test compilation failure - Frames
- hpp - hpp
"Takayuki Muranushi <muranushi@gmail.com> @nushio3": "Takayuki Muranushi <muranushi@gmail.com> @nushio3":
@ -2577,9 +2639,9 @@ packages:
- unicode-show - unicode-show
"Jason Shipman <jasonpshipman@gmail.com> @jship": "Jason Shipman <jasonpshipman@gmail.com> @jship":
# on behalf of Boris Sukholitko @bosu - logging-effect-extra
[] - logging-effect-extra-file
# - pure-cdb # https://github.com/bosu/pure-cdb/issues/5 & via testing-feat - logging-effect-extra-handler
"Suhail Shergill <suhailshergill@gmail.com> @suhailshergill": "Suhail Shergill <suhailshergill@gmail.com> @suhailshergill":
- extensible-effects - extensible-effects
@ -2606,8 +2668,8 @@ packages:
- pandoc-types < 1.19 # Accidental upload, see: https://github.com/fpco/stackage/issues/2223 - pandoc-types < 1.19 # Accidental upload, see: https://github.com/fpco/stackage/issues/2223
- zip-archive - zip-archive
- doctemplates - doctemplates
# - pandoc # bounds: skylighting - pandoc
# - pandoc-citeproc # bounds: skylighting # - pandoc-citeproc # bounds: xml-conduit
"Karun Ramakrishnan <karun012@gmail.com> @karun012": "Karun Ramakrishnan <karun012@gmail.com> @karun012":
- doctest-discover - doctest-discover
@ -2615,7 +2677,7 @@ packages:
"Elie Genard <elaye.github.io@gmail.com> @eliegenard": "Elie Genard <elaye.github.io@gmail.com> @eliegenard":
- turtle-options - turtle-options
- mushu < 0 # compilation failure - mushu < 0 # compilation failure
# - hakyll-favicon # bounds: skylighting # - hakyll-favicon # needs: hakyll
"Ruey-Lin Hsu <petercommand@gmail.com> @petercommand": "Ruey-Lin Hsu <petercommand@gmail.com> @petercommand":
[] []
@ -2628,8 +2690,8 @@ packages:
# - ua-parser # bounds aeson # - ua-parser # bounds aeson
- hs-GeoIP - hs-GeoIP
- retry - retry
# - katip # bounds aeson - katip
# - katip-elasticsearch # via bloodhound: bounds: vector - katip-elasticsearch
"Sid Kapur sidharthkapur1@gmail.com @sid-kap": "Sid Kapur sidharthkapur1@gmail.com @sid-kap":
- tuple - tuple
@ -2809,9 +2871,8 @@ packages:
- directory-tree - directory-tree
"Ian Grant Jeffries <ian@housejeffries.com> @seagreen": "Ian Grant Jeffries <ian@housejeffries.com> @seagreen":
[] - hjsonpointer
# - hjsonpointer # GHC 8.2.1 - hjsonschema
# - hjsonschema # GHC 8.2.1
"Drew Hess <src@drewhess.com> @dhess": "Drew Hess <src@drewhess.com> @dhess":
- hpio - hpio
@ -2840,6 +2901,8 @@ packages:
"Henri Verroken <henriverroken@gmail.com> @hverr": "Henri Verroken <henriverroken@gmail.com> @hverr":
- bordacount - bordacount
- cache - cache
- lxd-client
- lxd-client-config
- xxhash-ffi - xxhash-ffi
"Cliff Harvey <cs.hbar+hs@gmail.com> @BlackBrane": "Cliff Harvey <cs.hbar+hs@gmail.com> @BlackBrane":
@ -2867,6 +2930,7 @@ packages:
- bson - bson
"Alexis King <lexi.lambda@gmail.com> @lexi-lambda": "Alexis King <lexi.lambda@gmail.com> @lexi-lambda":
- monad-mock
- test-fixture - test-fixture
- text-conversions - text-conversions
- th-to-exp - th-to-exp
@ -2900,17 +2964,16 @@ packages:
- language-fortran - language-fortran
"Philipp Schuster <phischu3000@gmail.com> @phischu": "Philipp Schuster <phischu3000@gmail.com> @phischu":
[] - haskell-names
# - haskell-names # bounds: aeson
"Shao Cheng <astrohavoc@gmail.com> @TerrorJack": "Shao Cheng <astrohavoc@gmail.com> @TerrorJack":
[] - cabal-toolkit
# - direct-rocksdb # https://github.com/fpco/stackage/issues/3012
# - simple-download # GHC 8.2.1 # - simple-download # GHC 8.2.1
# - encoding-io # GHC 8.2.1 # - encoding-io # GHC 8.2.1
"Anton Gushcha <ncrashed@gmail.com> @ncrashed": "Anton Gushcha <ncrashed@gmail.com> @ncrashed":
[] - aeson-injector
# - aeson-injector # GHC 8.2.1
"Rune K. Svendsen <runesvend@gmail.com> @runeks": "Rune K. Svendsen <runesvend@gmail.com> @runeks":
[] []
@ -2919,6 +2982,7 @@ packages:
"Al Zohali <zohl@fmap.me> @zohl": "Al Zohali <zohl@fmap.me> @zohl":
- servant-auth-cookie - servant-auth-cookie
- dictionaries - dictionaries
- cereal-time
"Joachim Fasting <joachifm@fastmail.fm> @joachifm": "Joachim Fasting <joachifm@fastmail.fm> @joachifm":
- libmpd - libmpd
@ -2934,7 +2998,7 @@ packages:
"Matthias Herrmann <matthias.mh.herrmann@gmail.com> @2chilled": "Matthias Herrmann <matthias.mh.herrmann@gmail.com> @2chilled":
[] []
# - scrape-changes # cannot build because validation fails https://github.com/NICTA/validation/issues/9 # scrape-changes # https://github.com/fpco/stackage/issues/2948
"Daniel Mendler <mail@daniel-mendler.de> @minad": "Daniel Mendler <mail@daniel-mendler.de> @minad":
- quickcheck-special - quickcheck-special
@ -2961,6 +3025,10 @@ packages:
- lmdb - lmdb
- rdf - rdf
"Michael Swan <mswan@fastmail.com> @michael-swan":
- pcf-font
- pcf-font-embed
"Iago Abal <iagoabal+stack@gmail.com>": "Iago Abal <iagoabal+stack@gmail.com>":
- bv - bv
@ -2985,17 +3053,23 @@ packages:
"Lennart Spitzner <hexagoxel@hexagoxel.de> @lspitzner": "Lennart Spitzner <hexagoxel@hexagoxel.de> @lspitzner":
- multistate - multistate
- pqueue - pqueue
- butcher ==1.1.1.0
- czipwith
- brittany
"Ryan Mulligan <ryan@ryantm.com> @ryantm": "Ryan Mulligan <ryan@ryantm.com> @ryantm":
[] []
# - HDBC-mysql # GHC 8.2.1 # - HDBC-mysql # GHC 8.2.1
"Tony Morris <haskell@tmorris.net> @tonymorris":
- validation
"Tony Day <tonyday567@gmail.com> @tonyday567": "Tony Day <tonyday567@gmail.com> @tonyday567":
- numhask - numhask
- numhask-range - numhask-range
# - chart-unit # bounds optparse-applicative - perf
# - perf # bounds optparse-applicative
- online - online
- chart-unit
"Iphigenia Df <iphydf@gmail.com> @iphydf": "Iphigenia Df <iphydf@gmail.com> @iphydf":
- data-msgpack - data-msgpack
@ -3007,9 +3081,9 @@ packages:
- tce-conf - tce-conf
"Jonathan Fischoff <jonathangfischoff@gmail.com>": "Jonathan Fischoff <jonathangfischoff@gmail.com>":
- threads-extra
- clock-extras - clock-extras
- next-ref - next-ref
- threads-extras
- tmp-postgres - tmp-postgres
# - postgresql-simple-opts # bounds: optparse-applicative # - postgresql-simple-opts # bounds: optparse-applicative
- pg-transact - pg-transact
@ -3068,8 +3142,7 @@ packages:
# - hip # via repa-algorithms # - hip # via repa-algorithms
"Hans-Peter Deifel <hpd@hpdeifel.de> @hpdeifel": "Hans-Peter Deifel <hpd@hpdeifel.de> @hpdeifel":
[] - hledger-iadd
# - hledger-iadd # megaparsec bounds: https://github.com/fpco/stackage/issues/2666
"Roy Levien <royl@aldaron.com> @orome": "Roy Levien <royl@aldaron.com> @orome":
- crypto-enigma - crypto-enigma
@ -3096,6 +3169,7 @@ packages:
- snowtify - snowtify
"Mitsutoshi Aoe <maoe@foldr.in> @maoe": "Mitsutoshi Aoe <maoe@foldr.in> @maoe":
- influxdb
- sensu-run - sensu-run
- viewprof - viewprof
@ -3134,6 +3208,7 @@ packages:
"ncaq <ncaq@ncaq.net> @ncaq": "ncaq <ncaq@ncaq.net> @ncaq":
- haskell-import-graph - haskell-import-graph
- string-transform
- uniq-deep - uniq-deep
- yesod-form-bootstrap4 - yesod-form-bootstrap4
- yesod-recaptcha2 - yesod-recaptcha2
@ -3219,8 +3294,7 @@ packages:
- mnist-idx - mnist-idx
"Naushadh <naushadh@protonmail.com> @naushadh": "Naushadh <naushadh@protonmail.com> @naushadh":
[] - persistent-mysql-haskell
# - persistent-mysql-haskell # bounds: tcp-streams (see mysql-haskell)
"Moritz Schulte <mtesseract@silverratio.net> @mtesseract": "Moritz Schulte <mtesseract@silverratio.net> @mtesseract":
- async-refresh - async-refresh
@ -3228,6 +3302,9 @@ packages:
- type-level-integers - type-level-integers
- partial-order - partial-order
- async-timer - async-timer
- nakadi-client
- throttle-io-stream
- conduit-throttle
"Simon Hafner <hafnersimon@gmail.com> @reactormonk": "Simon Hafner <hafnersimon@gmail.com> @reactormonk":
- uri-bytestring-aeson - uri-bytestring-aeson
@ -3252,8 +3329,7 @@ packages:
- conduit-algorithms - conduit-algorithms
"Alex Biehl <alexbiehl@gmail.com> @alexbiehl": "Alex Biehl <alexbiehl@gmail.com> @alexbiehl":
[] - haddock-library < 1.4.4 # cabal-version >= 2
# - haddock-library # cabal-version >= 2
# - haddock-api # cabal-version >= 2 # - haddock-api # cabal-version >= 2
# - haddock # cabal-version >= 2 # - haddock # cabal-version >= 2
@ -3276,11 +3352,12 @@ packages:
- bno055-haskell - bno055-haskell
"Lars Brünjes <brunjlar@gmail.com> @brunjlar": "Lars Brünjes <brunjlar@gmail.com> @brunjlar":
# - neural # https://github.com/fpco/stackage/issues/2735 # neural # https://github.com/fpco/stackage/issues/2950
- pell - pell
"Matt Noonan <matt.noonan@gmail.com> @matt-noonan": "Matt Noonan <matt.noonan@gmail.com> @matt-noonan":
- justified-containers - justified-containers
- roles >= 0.2
"Levent Erkok <erkokl@gmail.com> @LeventErkok": "Levent Erkok <erkokl@gmail.com> @LeventErkok":
- sbv - sbv
@ -3289,6 +3366,7 @@ packages:
- listsafe - listsafe
"Serokell <hi@serokell.io> @serokell": "Serokell <hi@serokell.io> @serokell":
# - log-warper # https://github.com/serokell/log-warper/issues/25
- universum - universum
"Lorenz Moesenlechner <moesenle@gmail.com> @moesenle": "Lorenz Moesenlechner <moesenle@gmail.com> @moesenle":
@ -3314,11 +3392,47 @@ packages:
- ghost-buster - ghost-buster
"typeable.io <makeit@typeable.io>": "typeable.io <makeit@typeable.io>":
- dom-parser
- stackage2nix - stackage2nix
- xml-isogen
"Jeremy Huffman <jeremy@jeremyhuffman.com> @jeremyjh": "Jeremy Huffman <jeremy@jeremyhuffman.com> @jeremyjh":
- higher-leveldb - higher-leveldb
"Adam Curtis <kallisti.dev@gmail.com> @kallisti-dev":
- webdriver
- cond
"Naoto Shimazaki <naoto.shimazaki@gmail.com> @igy":
- thread-hierarchy
- bitset-word8
- cisco-spark-api
"Deni Bertovic <deni@denibertovic.com> @denibertovic, James Parker <dev@jamesparker.me>":
- docker
"Hexirp <hexirp@gmail.com> @Hexirp":
- doctest-driver-gen
"Václav Haisman <vhaisman@gmail.com> @wilx":
- hs-bibutils
"Christian Kjær Laustsen <ckl@codetalk.io> @tehnix":
- ghc-core
- colorize-haskell
"Chris Martin <ch.martin@gmail.com> @chris-martin":
- partial-semigroup
"Viacheslav Lotsmanov <lotsmanov89@gmail.com> @unclechu":
- qm-interpolated-string
"Douglas Burke <dburke.gw@gmail.com> @DougBurke":
- swish
"Adam Flott <adam@adamflott.com> @adamflott":
- milena
# If you stop maintaining a package you can move it here. # If you stop maintaining a package you can move it here.
# It will then be disabled if it starts causing problems. # It will then be disabled if it starts causing problems.
# See https://github.com/fpco/stackage/issues/1056 # See https://github.com/fpco/stackage/issues/1056
@ -3353,10 +3467,6 @@ packages:
# Once unconstrained, remove the following skipped-tests # Once unconstrained, remove the following skipped-tests
# - sbv # - sbv
# https://github.com/fpco/stackage/issues/2714
- brick < 0.21
- word-wrap < 0.2
# https://github.com/fpco/stackage/issues/2740 # https://github.com/fpco/stackage/issues/2740
- fgl < 5.6 - fgl < 5.6
@ -3366,21 +3476,37 @@ packages:
# https://github.com/fpco/stackage/issues/2778 # https://github.com/fpco/stackage/issues/2778
- ansi-terminal < 0.7 - ansi-terminal < 0.7
# https://github.com/fpco/stackage/issues/2779
- xml-conduit < 1.6.0
# https://github.com/fpco/stackage/issues/2797
# - inflections < 0.4.0.0
# https://github.com/fpco/stackage/issues/2826
- uri-templater < 0.3
# https://github.com/fpco/stackage/issues/2832 # https://github.com/fpco/stackage/issues/2832
- io-streams < 1.5 - io-streams < 1.5
# https://github.com/fpco/stackage/issues/2860 # https://github.com/fpco/stackage/issues/2860
- language-c < 0.7 - language-c < 0.7
# https://github.com/fpco/stackage/issues/2967
- swagger2 < 2.2
# https://github.com/fpco/stackage/issues/2971
- either < 4.5
# https://github.com/commercialhaskell/hindent/issues/453
- hindent < 5.2.4
# https://github.com/fpco/stackage/issues/2976
- http-types < 0.10
- servant-auth-cookie < 0.5.0.6
# https://github.com/fpco/stackage/issues/2978
- conduit-extra < 1.2.0
# https://github.com/fpco/stackage/issues/2995
- tasty < 0.12
# https://github.com/fpco/stackage/issues/3001
- brick < 0.29
# https://github.com/fpco/stackage/issues/3006
- unix-compat < 0.5
# end of packages # end of packages
# Package flags are applied to individual packages, and override the values of # Package flags are applied to individual packages, and override the values of
@ -3475,7 +3601,7 @@ package-flags:
time_pre_1_6: false time_pre_1_6: false
mintty: mintty:
win32-2-5: false win32-2-5: true
cassava: cassava:
pre-bytestring-0-10-4: false pre-bytestring-0-10-4: false
@ -3544,7 +3670,9 @@ skipped-tests:
- bytestring-handle # QuickCheck 2.9 - bytestring-handle # QuickCheck 2.9
- case-insensitive # HUnit 1.6 - case-insensitive # HUnit 1.6
- cryptohash-sha512 # tasty-quickcheck - cryptohash-sha512 # tasty-quickcheck
- diagrams-solve # tasty-quickcheck
- drawille # hspec 2.4 - drawille # hspec 2.4
- dual-tree # testing-feat per ghc < 4.10
- edit-distance # QuickCheck 2.10 - edit-distance # QuickCheck 2.10
- envy # QuickCheck 2.10 - envy # QuickCheck 2.10
- exception-transformers # HUnit 1.6 - exception-transformers # HUnit 1.6
@ -3636,6 +3764,8 @@ skipped-tests:
- hackage-security # Cabal 2.0 - hackage-security # Cabal 2.0
- ed25519 # QuickCheck, hlint and more - ed25519 # QuickCheck, hlint and more
- hpio # https://github.com/fpco/stackage/issues/2926
- validation # https://github.com/fpco/stackage/issues/2949
# end of skipped-tests # end of skipped-tests
@ -3749,6 +3879,12 @@ expected-test-failures:
- wai-cors # PhantomJS - wai-cors # PhantomJS
- wai-session-postgresql # PostgreSQL - wai-session-postgresql # PostgreSQL
- webdriver-angular # webdriver server - webdriver-angular # webdriver server
- accelerate-bignum # CUDA GPU
- accelerate-blas # CUDA GPU
- gdax # Needs environment variables set
- nakadi-client # Needs environment variable set
- lxd-client # Needs LXD, not available on debian
- stripe-http-streams # https://github.com/fpco/stackage/issues/2945, needs Stripe account
# Test executable requires arguments # Test executable requires arguments
- hpqtypes - hpqtypes
@ -3767,7 +3903,6 @@ expected-test-failures:
- ghc-events # https://github.com/haskell/ghc-events/issues/9 - ghc-events # https://github.com/haskell/ghc-events/issues/9
- ghc-syb-utils # https://github.com/nominolo/ghc-syb/issues/18 - ghc-syb-utils # https://github.com/nominolo/ghc-syb/issues/18
- graylog # 0.1.0.1 https://github.com/fpco/stackage/pull/1254 - graylog # 0.1.0.1 https://github.com/fpco/stackage/pull/1254
- haskell-names # 0.7.0 https://github.com/haskell-suite/haskell-names/issues/78
- matplotlib # https://github.com/fpco/stackage/issues/2365 - matplotlib # https://github.com/fpco/stackage/issues/2365
- rematch # No issue tracker, sent e-mail to maintainer https://github.com/fpco/stackage/issues/376 - rematch # No issue tracker, sent e-mail to maintainer https://github.com/fpco/stackage/issues/376
- xlsior # https://github.com/rcallahan/xlsior/issues/1 - xlsior # https://github.com/rcallahan/xlsior/issues/1
@ -3799,10 +3934,8 @@ expected-test-failures:
- commutative # https://github.com/athanclark/commutative/issues/4 - commutative # https://github.com/athanclark/commutative/issues/4
- dbus # 0.10.12 No issue tracker, e-mail sent to maintainer - dbus # 0.10.12 No issue tracker, e-mail sent to maintainer
- flat # https://github.com/Quid2/flat/issues/1 - flat # https://github.com/Quid2/flat/issues/1
- foundation # https://github.com/haskell-foundation/foundation/issues/394
- haddock - haddock
- heap # https://github.com/pruvisto/heap/issues/4 - heap # https://github.com/pruvisto/heap/issues/4
- hledger-iadd # https://github.com/hpdeifel/hledger-iadd/issues/26
- hspec-expectations-pretty-diff # GHC 8 issue not reported upstream since issue tracker disabled - hspec-expectations-pretty-diff # GHC 8 issue not reported upstream since issue tracker disabled
- hweblib # https://github.com/aycanirican/hweblib/issues/3 - hweblib # https://github.com/aycanirican/hweblib/issues/3
- language-dockerfile # https://github.com/beijaflor-io/haskell-language-dockerfile/issues/8 - language-dockerfile # https://github.com/beijaflor-io/haskell-language-dockerfile/issues/8
@ -3823,6 +3956,8 @@ expected-test-failures:
- wai-middleware-content-type # 0.4.1 - https://github.com/athanclark/wai-middleware-content-type/issues/2 - wai-middleware-content-type # 0.4.1 - https://github.com/athanclark/wai-middleware-content-type/issues/2
- xmlgen # https://github.com/skogsbaer/xmlgen/issues/6 - xmlgen # https://github.com/skogsbaer/xmlgen/issues/6
- yesod-auth-basic # https://github.com/creichert/yesod-auth-basic/issues/1 - yesod-auth-basic # https://github.com/creichert/yesod-auth-basic/issues/1
- servant-swagger # aeson https://github.com/fpco/stackage/issues/2879#issuecomment-331759441
- monad-memo # https://github.com/EduardSergeev/monad-memo/issues/3
# Stackage upper bounds, re-enable these when their upper bound is removed # Stackage upper bounds, re-enable these when their upper bound is removed
@ -3842,6 +3977,13 @@ expected-test-failures:
- multiset - multiset
- makefile - makefile
# Doctest failures
- teardown
- model # https://github.com/Quid2/model/issues/2
# Requires running server
- milena
# Misc. # Misc.
- distributed-process-supervisor # # https://github.com/haskell-d - distributed-process-supervisor # # https://github.com/haskell-d
- ghcid # Weird conflicts with sandboxingistributed/distributed-process-supervisor/issues/1 - ghcid # Weird conflicts with sandboxingistributed/distributed-process-supervisor/issues/1
@ -3857,6 +3999,8 @@ expected-test-failures:
- tcp-streams-openssl # https://github.com/didi-FP/tcp-streams/issues/5 - tcp-streams-openssl # https://github.com/didi-FP/tcp-streams/issues/5
- tmp-postgres # https://github.com/jfischoff/tmp-postgres/issues/1 - tmp-postgres # https://github.com/jfischoff/tmp-postgres/issues/1
- perf # https://github.com/fpco/stackage/pull/2859
# end of expected-test-failures # end of expected-test-failures
# Benchmarks which are known not to build. Note that, currently we do not run # Benchmarks which are known not to build. Note that, currently we do not run
@ -3885,6 +4029,9 @@ expected-benchmark-failures:
- raaz # https://github.com/raaz-crypto/raaz/issues/338 - raaz # https://github.com/raaz-crypto/raaz/issues/338
- http2 - http2
- xxhash # https://github.com/christian-marie/xxhash/issues/4 - xxhash # https://github.com/christian-marie/xxhash/issues/4
- monad-memo # https://github.com/EduardSergeev/monad-memo/issues/3
- ip # https://github.com/andrewthad/haskell-ip/issues/22
- cmark-gfm # https://github.com/kivikakk/cmark-gfm-hs/issues/5
# end of expected-benchmark-failures # end of expected-benchmark-failures
@ -3985,6 +4132,7 @@ skipped-benchmarks:
- refined - refined
- slave-thread - slave-thread
- stm-containers - stm-containers
- vector-builder
# @ivan-m https://github.com/fpco/stackage/issues/2538#issuecomment-307290070 # @ivan-m https://github.com/fpco/stackage/issues/2538#issuecomment-307290070
- fgl - fgl
- fgl-arbitrary - fgl-arbitrary
@ -4181,3 +4329,7 @@ no-revisions:
- hjsonpointer - hjsonpointer
- tls - tls
- mime-mail - mime-mail
- basement
- cryptonite
- foundation
- gauge

View File

@ -30,9 +30,12 @@ GHCVER=8.2.1
apt-get update apt-get update
apt-get install -y \ apt-get install -y \
build-essential \ build-essential \
cmake \
curl \ curl \
freeglut3-dev \ freeglut3-dev \
fsharp \ fsharp \
g++ \
gawk \
ghc-$GHCVER \ ghc-$GHCVER \
ghc-$GHCVER-dyn \ ghc-$GHCVER-dyn \
ghc-$GHCVER-htmldocs \ ghc-$GHCVER-htmldocs \
@ -124,6 +127,7 @@ apt-get install -y \
minisat \ minisat \
mono-mcs \ mono-mcs \
nettle-dev \ nettle-dev \
ninja-build \
nodejs \ nodejs \
npm \ npm \
openjdk-8-jdk \ openjdk-8-jdk \
@ -226,7 +230,7 @@ pushd /tmp \
&& export PATH=${CUDA_PATH}/bin:${PATH} \ && export PATH=${CUDA_PATH}/bin:${PATH} \
&& popd && popd
## non-free repo for mediabus-fdk-aac # non-free repo for mediabus-fdk-aac
#apt-add-repository multiverse \ apt-add-repository multiverse \
# && apt-get update \ && apt-get update \
# && apt-get install -y libfdk-aac-dev && apt-get install -y nvidia-cuda-dev