2012-10-08 05:26:28 +04:00
|
|
|
name: vty
|
2013-06-02 04:57:04 +04:00
|
|
|
version: 5.0.0
|
2012-10-08 05:26:28 +04:00
|
|
|
license: BSD3
|
|
|
|
license-file: LICENSE
|
|
|
|
author: AUTHORS
|
|
|
|
maintainer: Corey O'Connor (coreyoconnor@gmail.com)
|
|
|
|
homepage: https://github.com/coreyoconnor/vty
|
|
|
|
category: User Interfaces
|
|
|
|
synopsis: A simple terminal UI library
|
|
|
|
description:
|
2009-09-04 21:29:28 +04:00
|
|
|
vty is terminal GUI library in the niche of ncurses. It is intended to be easy to use, have no
|
|
|
|
confusing corner cases, and good support for common terminal types.
|
|
|
|
.
|
|
|
|
Included in the source distribution is a program test/interactive_terminal_test.hs that
|
|
|
|
demonstrates the various features.
|
|
|
|
.
|
2013-01-28 00:37:04 +04:00
|
|
|
If your terminal is not behaving as expected the results of the vty-interactive-terminal-test
|
|
|
|
executable should be sent to the Vty maintainter to aid in debugging the issue.
|
2009-09-04 21:29:28 +04:00
|
|
|
.
|
|
|
|
Notable infelicities: Sometimes poor efficiency; Assumes UTF-8 character encoding support by the
|
2013-12-23 12:06:10 +04:00
|
|
|
terminal; Poor signal handling; Requires terminfo.
|
2009-09-04 21:29:28 +04:00
|
|
|
.
|
2013-06-13 01:45:02 +04:00
|
|
|
Project is hosted on github.com: https:\/\/github.com\/coreyoconnor\/vty
|
2011-05-25 05:07:33 +04:00
|
|
|
.
|
2013-06-13 01:45:02 +04:00
|
|
|
git clone git:\/\/github.com\/coreyoconnor\/vty.git
|
2009-12-29 02:32:18 +03:00
|
|
|
.
|
2009-09-04 21:29:28 +04:00
|
|
|
© 2006-2007 Stefan O'Rear; BSD3 license.
|
2009-12-29 02:32:18 +03:00
|
|
|
.
|
2013-01-28 00:37:04 +04:00
|
|
|
© Corey O'Connor; BSD3 license.
|
2013-11-13 10:22:05 +04:00
|
|
|
cabal-version: >= 1.18.0
|
|
|
|
build-type: Simple
|
2013-05-11 10:23:41 +04:00
|
|
|
data-files: README.md,
|
2012-10-08 05:26:28 +04:00
|
|
|
TODO,
|
|
|
|
AUTHORS,
|
|
|
|
CHANGELOG,
|
|
|
|
LICENSE
|
2013-12-23 12:06:10 +04:00
|
|
|
tested-with: GHC >= 7.6.2
|
2012-10-08 05:26:28 +04:00
|
|
|
|
|
|
|
library
|
|
|
|
default-language: Haskell2010
|
|
|
|
build-depends: base >= 4 && < 5,
|
|
|
|
bytestring,
|
|
|
|
containers,
|
|
|
|
deepseq >= 1.1 && < 1.4,
|
|
|
|
ghc-prim,
|
2013-07-08 00:55:23 +04:00
|
|
|
lens >= 3.9.0.2,
|
2013-10-31 02:03:29 +04:00
|
|
|
-- required for nice installation with yi
|
|
|
|
hashable >= 1.2,
|
2012-10-08 05:26:28 +04:00
|
|
|
mtl >= 1.1.1.0 && < 2.2,
|
|
|
|
parallel >= 2.2 && < 3.3,
|
|
|
|
parsec >= 2 && < 4,
|
|
|
|
terminfo >= 0.3 && < 0.4,
|
2013-05-20 01:48:14 +04:00
|
|
|
text >= 0.11.3,
|
2012-10-08 05:26:28 +04:00
|
|
|
unix,
|
|
|
|
utf8-string >= 0.3 && < 0.4,
|
|
|
|
vector >= 0.7
|
|
|
|
|
|
|
|
exposed-modules: Graphics.Vty
|
|
|
|
Graphics.Vty.Attributes
|
2013-01-28 00:37:04 +04:00
|
|
|
Graphics.Vty.Error
|
2012-10-08 05:26:28 +04:00
|
|
|
Graphics.Vty.Image
|
|
|
|
Graphics.Vty.Inline
|
2013-07-21 07:29:07 +04:00
|
|
|
Graphics.Vty.Inline.Unsafe
|
2013-09-01 12:08:27 +04:00
|
|
|
Graphics.Vty.Input
|
2013-12-23 12:06:10 +04:00
|
|
|
Graphics.Vty.Input.Events
|
2012-10-08 05:26:28 +04:00
|
|
|
Graphics.Vty.Picture
|
2013-12-20 10:24:56 +04:00
|
|
|
Graphics.Vty.Prelude
|
|
|
|
Graphics.Vty.Output
|
2013-06-01 17:47:29 +04:00
|
|
|
Graphics.Text.Width
|
2013-07-02 20:42:42 +04:00
|
|
|
-- the modules below are only meant to be used by the tests.
|
|
|
|
Codec.Binary.UTF8.Debug
|
2012-10-08 05:26:28 +04:00
|
|
|
Data.Terminfo.Parse
|
|
|
|
Data.Terminfo.Eval
|
2013-07-02 20:42:42 +04:00
|
|
|
Data.Marshalling
|
|
|
|
Graphics.Vty.Debug
|
2012-10-08 05:26:28 +04:00
|
|
|
Graphics.Vty.DisplayAttributes
|
2013-06-01 17:47:29 +04:00
|
|
|
Graphics.Vty.Image.Internal
|
2013-12-23 12:06:10 +04:00
|
|
|
Graphics.Vty.Input.Internal
|
|
|
|
Graphics.Vty.Input.Terminfo
|
2013-07-02 20:42:42 +04:00
|
|
|
Graphics.Vty.PictureToSpans
|
2012-10-08 05:26:28 +04:00
|
|
|
Graphics.Vty.Span
|
2013-12-20 10:24:56 +04:00
|
|
|
Graphics.Vty.Output.Mock
|
|
|
|
Graphics.Vty.Output.Interface
|
|
|
|
Graphics.Vty.Output.MacOSX
|
|
|
|
Graphics.Vty.Output.XTermColor
|
|
|
|
Graphics.Vty.Output.TerminfoBased
|
2012-10-08 05:26:28 +04:00
|
|
|
|
2013-10-31 00:30:49 +04:00
|
|
|
other-modules: Graphics.Vty.Attributes.Color
|
|
|
|
Graphics.Vty.Attributes.Color240
|
2013-12-23 12:06:10 +04:00
|
|
|
Graphics.Vty.Input.Terminfo.ANSI
|
|
|
|
Graphics.Vty.Input.Terminfo.XTerm7Bit
|
2013-07-08 00:55:23 +04:00
|
|
|
|
2012-10-08 05:26:28 +04:00
|
|
|
c-sources: cbits/gwinsz.c
|
|
|
|
cbits/set_term_timing.c
|
|
|
|
cbits/mk_wcwidth.c
|
|
|
|
|
|
|
|
include-dirs: cbits
|
|
|
|
|
|
|
|
hs-source-dirs: src
|
|
|
|
|
2013-11-13 10:22:05 +04:00
|
|
|
default-extensions: ScopedTypeVariables
|
2013-09-15 10:56:06 +04:00
|
|
|
ForeignFunctionInterface
|
|
|
|
|
2013-10-23 04:48:22 +04:00
|
|
|
ghc-options: -O2 -funbox-strict-fields -threaded -Wall -fspec-constr -fspec-constr-count=10
|
2012-10-08 05:26:28 +04:00
|
|
|
|
2013-10-23 04:48:22 +04:00
|
|
|
ghc-prof-options: -O2 -funbox-strict-fields -threaded -caf-all -Wall -fspec-constr -fspec-constr-count=10
|
2012-10-08 05:26:28 +04:00
|
|
|
|
|
|
|
cc-options: -O2
|
|
|
|
|
|
|
|
test-suite verify-attribute-ops
|
|
|
|
default-language: Haskell2010
|
2013-11-13 10:22:05 +04:00
|
|
|
default-extensions: ScopedTypeVariables
|
2012-10-08 05:26:28 +04:00
|
|
|
type: detailed-0.9
|
2013-07-02 20:42:42 +04:00
|
|
|
hs-source-dirs: test
|
2012-10-08 05:26:28 +04:00
|
|
|
test-module: VerifyAttributeOps
|
2013-07-02 20:42:42 +04:00
|
|
|
build-depends: vty,
|
2013-08-30 04:00:07 +04:00
|
|
|
Cabal == 1.18.*,
|
|
|
|
QuickCheck >= 2.4,
|
2012-10-08 05:26:28 +04:00
|
|
|
random == 1.0.*,
|
|
|
|
base >= 4 && < 5,
|
|
|
|
bytestring,
|
|
|
|
containers,
|
|
|
|
deepseq >= 1.1 && < 1.4,
|
|
|
|
mtl >= 1.1.1.0 && < 2.2,
|
2013-05-20 01:48:14 +04:00
|
|
|
text >= 0.11.3,
|
2012-10-08 05:26:28 +04:00
|
|
|
unix,
|
|
|
|
utf8-string >= 0.3 && < 0.4,
|
|
|
|
vector >= 0.7
|
|
|
|
|
2013-08-15 08:32:02 +04:00
|
|
|
test-suite verify-using-mock-terminal
|
2012-10-08 05:26:28 +04:00
|
|
|
default-language: Haskell2010
|
2013-11-13 10:22:05 +04:00
|
|
|
default-extensions: ScopedTypeVariables
|
2012-10-08 05:26:28 +04:00
|
|
|
|
|
|
|
type: detailed-0.9
|
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
hs-source-dirs: test
|
2012-10-08 05:26:28 +04:00
|
|
|
|
2013-08-15 08:32:02 +04:00
|
|
|
test-module: VerifyUsingMockTerminal
|
2012-10-08 05:26:28 +04:00
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
other-modules: Verify
|
2012-10-08 05:26:28 +04:00
|
|
|
Verify.Graphics.Vty.Attributes
|
2013-12-20 10:24:56 +04:00
|
|
|
Verify.Graphics.Vty.Prelude
|
2012-10-08 05:26:28 +04:00
|
|
|
Verify.Graphics.Vty.Picture
|
|
|
|
Verify.Graphics.Vty.Image
|
|
|
|
Verify.Graphics.Vty.Span
|
2013-12-20 10:24:56 +04:00
|
|
|
Verify.Graphics.Vty.Output
|
2012-10-08 05:26:28 +04:00
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
build-depends: vty,
|
2013-08-30 04:00:07 +04:00
|
|
|
Cabal == 1.18.*,
|
2012-12-27 03:40:19 +04:00
|
|
|
QuickCheck >= 2.4,
|
2012-10-08 05:26:28 +04:00
|
|
|
random == 1.0.*,
|
|
|
|
base >= 4 && < 5,
|
|
|
|
bytestring,
|
|
|
|
containers,
|
|
|
|
deepseq >= 1.1 && < 1.4,
|
|
|
|
mtl >= 1.1.1.0 && < 2.2,
|
2013-05-20 01:48:14 +04:00
|
|
|
text >= 0.11.3,
|
2013-10-13 14:01:53 +04:00
|
|
|
terminfo,
|
2012-10-08 05:26:28 +04:00
|
|
|
unix,
|
|
|
|
utf8-string >= 0.3 && < 0.4,
|
|
|
|
vector >= 0.7
|
2013-07-02 20:42:42 +04:00
|
|
|
|
2013-08-15 08:32:02 +04:00
|
|
|
test-suite verify-terminal
|
2013-07-08 10:31:24 +04:00
|
|
|
default-language: Haskell2010
|
2013-11-13 10:22:05 +04:00
|
|
|
default-extensions: ScopedTypeVariables
|
2013-07-08 10:31:24 +04:00
|
|
|
|
|
|
|
type: detailed-0.9
|
|
|
|
|
|
|
|
hs-source-dirs: test
|
|
|
|
|
2013-12-20 10:24:56 +04:00
|
|
|
test-module: VerifyOutput
|
2013-07-08 10:31:24 +04:00
|
|
|
|
|
|
|
other-modules: Verify
|
|
|
|
Verify.Graphics.Vty.Attributes
|
2013-12-20 10:24:56 +04:00
|
|
|
Verify.Graphics.Vty.Prelude
|
2013-07-08 10:31:24 +04:00
|
|
|
Verify.Graphics.Vty.Picture
|
|
|
|
Verify.Graphics.Vty.Image
|
|
|
|
Verify.Graphics.Vty.Span
|
2013-12-20 10:24:56 +04:00
|
|
|
Verify.Graphics.Vty.Output
|
2013-07-08 10:31:24 +04:00
|
|
|
|
|
|
|
build-depends: vty,
|
2013-08-30 04:00:07 +04:00
|
|
|
Cabal == 1.18.*,
|
2013-07-08 10:31:24 +04:00
|
|
|
QuickCheck >= 2.4,
|
|
|
|
random == 1.0.*,
|
|
|
|
base >= 4 && < 5,
|
|
|
|
bytestring,
|
|
|
|
containers,
|
|
|
|
deepseq >= 1.1 && < 1.4,
|
|
|
|
mtl >= 1.1.1.0 && < 2.2,
|
|
|
|
terminfo >= 0.3 && < 0.4,
|
|
|
|
text >= 0.11.3,
|
|
|
|
unix,
|
|
|
|
utf8-string >= 0.3 && < 0.4,
|
|
|
|
vector >= 0.7
|
2012-10-08 05:26:28 +04:00
|
|
|
|
2012-10-08 05:33:02 +04:00
|
|
|
test-suite verify-display-attributes
|
|
|
|
default-language: Haskell2010
|
2013-11-13 10:22:05 +04:00
|
|
|
default-extensions: ScopedTypeVariables
|
2012-10-08 05:33:02 +04:00
|
|
|
|
|
|
|
type: detailed-0.9
|
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
hs-source-dirs: test
|
2012-10-08 05:33:02 +04:00
|
|
|
|
|
|
|
test-module: VerifyDisplayAttributes
|
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
other-modules: Verify
|
2012-10-08 05:33:02 +04:00
|
|
|
Verify.Graphics.Vty.Attributes
|
2013-12-20 10:24:56 +04:00
|
|
|
Verify.Graphics.Vty.Prelude
|
2012-10-08 05:33:02 +04:00
|
|
|
Verify.Graphics.Vty.Picture
|
|
|
|
Verify.Graphics.Vty.Image
|
|
|
|
Verify.Graphics.Vty.Span
|
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
build-depends: vty,
|
2013-08-30 04:00:07 +04:00
|
|
|
Cabal == 1.18.*,
|
2012-12-27 03:40:19 +04:00
|
|
|
QuickCheck >= 2.4,
|
2012-10-08 05:33:02 +04:00
|
|
|
random == 1.0.*,
|
|
|
|
base >= 4 && < 5,
|
|
|
|
bytestring,
|
|
|
|
containers,
|
|
|
|
deepseq >= 1.1 && < 1.4,
|
|
|
|
mtl >= 1.1.1.0 && < 2.2,
|
2013-05-20 01:48:14 +04:00
|
|
|
text >= 0.11.3,
|
2012-10-08 05:33:02 +04:00
|
|
|
unix,
|
|
|
|
utf8-string >= 0.3 && < 0.4,
|
|
|
|
vector >= 0.7
|
|
|
|
|
2012-10-10 07:58:00 +04:00
|
|
|
test-suite verify-empty-image-props
|
|
|
|
default-language: Haskell2010
|
2013-11-13 10:22:05 +04:00
|
|
|
default-extensions: ScopedTypeVariables
|
2012-10-10 07:58:00 +04:00
|
|
|
|
|
|
|
type: detailed-0.9
|
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
hs-source-dirs: test
|
2012-10-10 07:58:00 +04:00
|
|
|
|
|
|
|
test-module: VerifyEmptyImageProps
|
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
other-modules: Verify
|
2012-10-10 07:58:00 +04:00
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
build-depends: vty,
|
2013-08-30 04:00:07 +04:00
|
|
|
Cabal == 1.18.*,
|
2012-12-27 03:40:19 +04:00
|
|
|
QuickCheck >= 2.4,
|
2012-10-10 07:58:00 +04:00
|
|
|
random == 1.0.*,
|
|
|
|
base >= 4 && < 5,
|
|
|
|
bytestring,
|
|
|
|
containers,
|
|
|
|
deepseq >= 1.1 && < 1.4,
|
|
|
|
mtl >= 1.1.1.0 && < 2.2,
|
2013-05-20 01:48:14 +04:00
|
|
|
text >= 0.11.3,
|
2012-10-10 07:58:00 +04:00
|
|
|
unix,
|
|
|
|
utf8-string >= 0.3 && < 0.4,
|
|
|
|
vector >= 0.7
|
|
|
|
|
|
|
|
test-suite verify-eval-terminfo-caps
|
|
|
|
default-language: Haskell2010
|
2013-11-13 10:22:05 +04:00
|
|
|
default-extensions: ScopedTypeVariables
|
2012-10-10 07:58:00 +04:00
|
|
|
|
|
|
|
type: detailed-0.9
|
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
hs-source-dirs: test
|
2012-10-10 07:58:00 +04:00
|
|
|
|
|
|
|
test-module: VerifyEvalTerminfoCaps
|
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
other-modules: Verify
|
2013-12-20 10:24:56 +04:00
|
|
|
Verify.Graphics.Vty.Output
|
2012-10-10 07:58:00 +04:00
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
build-depends: vty,
|
2013-08-30 04:00:07 +04:00
|
|
|
Cabal == 1.18.*,
|
2012-12-27 03:40:19 +04:00
|
|
|
QuickCheck >= 2.4,
|
2012-10-10 07:58:00 +04:00
|
|
|
random == 1.0.*,
|
|
|
|
base >= 4 && < 5,
|
|
|
|
bytestring,
|
|
|
|
containers,
|
|
|
|
deepseq >= 1.1 && < 1.4,
|
|
|
|
mtl >= 1.1.1.0 && < 2.2,
|
|
|
|
terminfo >= 0.3 && < 0.4,
|
2013-05-20 01:48:14 +04:00
|
|
|
text >= 0.11.3,
|
2012-10-10 07:58:00 +04:00
|
|
|
unix,
|
|
|
|
utf8-string >= 0.3 && < 0.4,
|
|
|
|
vector >= 0.7
|
|
|
|
|
|
|
|
test-suite verify-image-ops
|
|
|
|
default-language: Haskell2010
|
2013-11-13 10:22:05 +04:00
|
|
|
default-extensions: ScopedTypeVariables
|
2012-10-10 07:58:00 +04:00
|
|
|
|
|
|
|
type: detailed-0.9
|
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
hs-source-dirs: test
|
2012-10-10 07:58:00 +04:00
|
|
|
|
|
|
|
test-module: VerifyImageOps
|
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
other-modules: Verify
|
2012-10-10 07:58:00 +04:00
|
|
|
Verify.Graphics.Vty.Attributes
|
|
|
|
Verify.Graphics.Vty.Image
|
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
build-depends: vty,
|
2013-08-30 04:00:07 +04:00
|
|
|
Cabal == 1.18.*,
|
2012-12-27 03:40:19 +04:00
|
|
|
QuickCheck >= 2.4,
|
2012-10-10 07:58:00 +04:00
|
|
|
random == 1.0.*,
|
|
|
|
base >= 4 && < 5,
|
|
|
|
bytestring,
|
|
|
|
containers,
|
|
|
|
deepseq >= 1.1 && < 1.4,
|
|
|
|
mtl >= 1.1.1.0 && < 2.2,
|
2013-05-20 01:48:14 +04:00
|
|
|
text >= 0.11.3,
|
2012-10-10 07:58:00 +04:00
|
|
|
unix,
|
|
|
|
utf8-string >= 0.3 && < 0.4,
|
|
|
|
vector >= 0.7
|
|
|
|
|
|
|
|
test-suite verify-image-trans
|
|
|
|
default-language: Haskell2010
|
2013-11-13 10:22:05 +04:00
|
|
|
default-extensions: ScopedTypeVariables
|
2012-10-10 07:58:00 +04:00
|
|
|
|
|
|
|
type: detailed-0.9
|
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
hs-source-dirs: test
|
2012-10-10 07:58:00 +04:00
|
|
|
|
|
|
|
test-module: VerifyImageTrans
|
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
other-modules: Verify
|
2012-10-10 07:58:00 +04:00
|
|
|
Verify.Graphics.Vty.Attributes
|
|
|
|
Verify.Graphics.Vty.Image
|
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
build-depends: vty,
|
2013-08-30 04:00:07 +04:00
|
|
|
Cabal == 1.18.*,
|
2012-12-27 03:40:19 +04:00
|
|
|
QuickCheck >= 2.4,
|
2012-10-10 07:58:00 +04:00
|
|
|
random == 1.0.*,
|
|
|
|
base >= 4 && < 5,
|
|
|
|
bytestring,
|
|
|
|
containers,
|
|
|
|
deepseq >= 1.1 && < 1.4,
|
|
|
|
mtl >= 1.1.1.0 && < 2.2,
|
2013-05-20 01:48:14 +04:00
|
|
|
text >= 0.11.3,
|
2012-10-10 07:58:00 +04:00
|
|
|
unix,
|
|
|
|
utf8-string >= 0.3 && < 0.4,
|
|
|
|
vector >= 0.7
|
|
|
|
|
|
|
|
test-suite verify-inline
|
|
|
|
default-language: Haskell2010
|
2013-11-13 10:22:05 +04:00
|
|
|
default-extensions: ScopedTypeVariables
|
2012-10-10 07:58:00 +04:00
|
|
|
|
|
|
|
type: detailed-0.9
|
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
hs-source-dirs: test
|
2012-10-10 07:58:00 +04:00
|
|
|
|
|
|
|
test-module: VerifyInline
|
|
|
|
|
2013-07-27 12:00:25 +04:00
|
|
|
other-modules: Verify
|
2013-12-20 10:24:56 +04:00
|
|
|
Verify.Graphics.Vty.Output
|
2013-07-27 12:00:25 +04:00
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
build-depends: vty,
|
2013-08-30 04:00:07 +04:00
|
|
|
Cabal == 1.18.*,
|
2012-12-27 03:40:19 +04:00
|
|
|
QuickCheck >= 2.4,
|
2012-10-10 07:58:00 +04:00
|
|
|
random == 1.0.*,
|
|
|
|
base >= 4 && < 5,
|
|
|
|
bytestring,
|
|
|
|
containers,
|
|
|
|
deepseq >= 1.1 && < 1.4,
|
|
|
|
mtl >= 1.1.1.0 && < 2.2,
|
2013-05-20 01:48:14 +04:00
|
|
|
text >= 0.11.3,
|
2012-10-10 07:58:00 +04:00
|
|
|
unix,
|
|
|
|
utf8-string >= 0.3 && < 0.4,
|
|
|
|
vector >= 0.7
|
|
|
|
|
|
|
|
test-suite verify-parse-terminfo-caps
|
|
|
|
default-language: Haskell2010
|
2013-11-13 10:22:05 +04:00
|
|
|
default-extensions: ScopedTypeVariables
|
2012-10-10 07:58:00 +04:00
|
|
|
|
|
|
|
type: detailed-0.9
|
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
hs-source-dirs: test
|
2012-10-10 07:58:00 +04:00
|
|
|
|
|
|
|
test-module: VerifyParseTerminfoCaps
|
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
other-modules: Verify
|
2012-10-10 07:58:00 +04:00
|
|
|
Verify.Data.Terminfo.Parse
|
2013-12-20 10:24:56 +04:00
|
|
|
Verify.Graphics.Vty.Output
|
2012-10-10 07:58:00 +04:00
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
build-depends: vty,
|
2013-08-30 04:00:07 +04:00
|
|
|
Cabal == 1.18.*,
|
2012-12-27 03:40:19 +04:00
|
|
|
QuickCheck >= 2.4,
|
2012-10-10 07:58:00 +04:00
|
|
|
random == 1.0.*,
|
|
|
|
base >= 4 && < 5,
|
|
|
|
bytestring,
|
|
|
|
containers,
|
|
|
|
deepseq >= 1.1 && < 1.4,
|
|
|
|
mtl >= 1.1.1.0 && < 2.2,
|
|
|
|
terminfo >= 0.3 && < 0.4,
|
2013-05-20 01:48:14 +04:00
|
|
|
text >= 0.11.3,
|
2012-10-10 07:58:00 +04:00
|
|
|
unix,
|
|
|
|
utf8-string >= 0.3 && < 0.4,
|
|
|
|
vector >= 0.7
|
2013-07-02 20:42:42 +04:00
|
|
|
|
2013-08-15 23:47:39 +04:00
|
|
|
test-suite verify-simple-span-generation
|
2012-10-10 07:58:00 +04:00
|
|
|
default-language: Haskell2010
|
2013-11-13 10:22:05 +04:00
|
|
|
default-extensions: ScopedTypeVariables
|
2012-10-10 07:58:00 +04:00
|
|
|
|
|
|
|
type: detailed-0.9
|
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
hs-source-dirs: test
|
2012-10-10 07:58:00 +04:00
|
|
|
|
2013-08-15 23:47:39 +04:00
|
|
|
test-module: VerifySimpleSpanGeneration
|
2012-10-10 07:58:00 +04:00
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
other-modules: Verify
|
2013-08-15 23:47:39 +04:00
|
|
|
Verify.Graphics.Vty.Attributes
|
2013-12-20 10:24:56 +04:00
|
|
|
Verify.Graphics.Vty.Prelude
|
2013-08-15 23:47:39 +04:00
|
|
|
Verify.Graphics.Vty.Picture
|
|
|
|
Verify.Graphics.Vty.Image
|
|
|
|
Verify.Graphics.Vty.Span
|
2012-10-10 07:58:00 +04:00
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
build-depends: vty,
|
2013-08-30 04:00:07 +04:00
|
|
|
Cabal == 1.18.*,
|
2012-12-27 03:40:19 +04:00
|
|
|
QuickCheck >= 2.4,
|
2012-10-10 07:58:00 +04:00
|
|
|
random == 1.0.*,
|
|
|
|
base >= 4 && < 5,
|
|
|
|
bytestring,
|
|
|
|
containers,
|
|
|
|
deepseq >= 1.1 && < 1.4,
|
|
|
|
mtl >= 1.1.1.0 && < 2.2,
|
2013-05-20 01:48:14 +04:00
|
|
|
text >= 0.11.3,
|
2012-10-10 07:58:00 +04:00
|
|
|
unix,
|
|
|
|
utf8-string >= 0.3 && < 0.4,
|
|
|
|
vector >= 0.7
|
2013-07-02 20:42:42 +04:00
|
|
|
|
2013-08-30 04:00:07 +04:00
|
|
|
|
2013-08-15 23:47:39 +04:00
|
|
|
test-suite verify-crop-span-generation
|
2012-10-10 07:58:00 +04:00
|
|
|
default-language: Haskell2010
|
2013-11-13 10:22:05 +04:00
|
|
|
default-extensions: ScopedTypeVariables
|
2012-10-10 07:58:00 +04:00
|
|
|
|
|
|
|
type: detailed-0.9
|
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
hs-source-dirs: test
|
2012-10-10 07:58:00 +04:00
|
|
|
|
2013-08-15 23:47:39 +04:00
|
|
|
test-module: VerifyCropSpanGeneration
|
2012-10-10 07:58:00 +04:00
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
other-modules: Verify
|
2012-10-10 07:58:00 +04:00
|
|
|
Verify.Graphics.Vty.Attributes
|
2013-12-20 10:24:56 +04:00
|
|
|
Verify.Graphics.Vty.Prelude
|
2012-10-10 07:58:00 +04:00
|
|
|
Verify.Graphics.Vty.Picture
|
|
|
|
Verify.Graphics.Vty.Image
|
|
|
|
Verify.Graphics.Vty.Span
|
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
build-depends: vty,
|
2013-08-30 04:00:07 +04:00
|
|
|
Cabal == 1.18.*,
|
2012-12-27 03:40:19 +04:00
|
|
|
QuickCheck >= 2.4,
|
2012-10-10 07:58:00 +04:00
|
|
|
random == 1.0.*,
|
|
|
|
base >= 4 && < 5,
|
|
|
|
bytestring,
|
|
|
|
containers,
|
|
|
|
deepseq >= 1.1 && < 1.4,
|
|
|
|
mtl >= 1.1.1.0 && < 2.2,
|
2013-05-20 01:48:14 +04:00
|
|
|
text >= 0.11.3,
|
2012-10-10 07:58:00 +04:00
|
|
|
unix,
|
|
|
|
utf8-string >= 0.3 && < 0.4,
|
|
|
|
vector >= 0.7
|
2013-08-30 04:00:07 +04:00
|
|
|
|
2012-10-10 07:58:00 +04:00
|
|
|
|
2013-08-15 23:47:39 +04:00
|
|
|
test-suite verify-layers-span-generation
|
2012-10-10 07:58:00 +04:00
|
|
|
default-language: Haskell2010
|
2013-11-13 10:22:05 +04:00
|
|
|
default-extensions: ScopedTypeVariables
|
2012-10-10 07:58:00 +04:00
|
|
|
|
|
|
|
type: detailed-0.9
|
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
hs-source-dirs: test
|
2012-10-10 07:58:00 +04:00
|
|
|
|
2013-08-15 23:47:39 +04:00
|
|
|
test-module: VerifyLayersSpanGeneration
|
2012-10-10 07:58:00 +04:00
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
other-modules: Verify
|
2012-10-10 07:58:00 +04:00
|
|
|
Verify.Graphics.Vty.Attributes
|
2013-12-20 10:24:56 +04:00
|
|
|
Verify.Graphics.Vty.Prelude
|
2012-10-10 07:58:00 +04:00
|
|
|
Verify.Graphics.Vty.Picture
|
|
|
|
Verify.Graphics.Vty.Image
|
|
|
|
Verify.Graphics.Vty.Span
|
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
build-depends: vty,
|
2013-08-30 04:00:07 +04:00
|
|
|
Cabal == 1.18.*,
|
2012-12-27 03:40:19 +04:00
|
|
|
QuickCheck >= 2.4,
|
2012-10-10 07:58:00 +04:00
|
|
|
random == 1.0.*,
|
|
|
|
base >= 4 && < 5,
|
|
|
|
bytestring,
|
|
|
|
containers,
|
|
|
|
deepseq >= 1.1 && < 1.4,
|
|
|
|
mtl >= 1.1.1.0 && < 2.2,
|
2013-05-20 01:48:14 +04:00
|
|
|
text >= 0.11.3,
|
2012-10-10 07:58:00 +04:00
|
|
|
unix,
|
|
|
|
utf8-string >= 0.3 && < 0.4,
|
|
|
|
vector >= 0.7
|
|
|
|
|
|
|
|
test-suite verify-utf8-width
|
|
|
|
default-language: Haskell2010
|
2013-11-13 10:22:05 +04:00
|
|
|
default-extensions: ScopedTypeVariables
|
2012-10-10 07:58:00 +04:00
|
|
|
|
|
|
|
type: detailed-0.9
|
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
hs-source-dirs: test
|
2012-10-10 07:58:00 +04:00
|
|
|
|
|
|
|
test-module: VerifyUtf8Width
|
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
other-modules: Verify
|
2012-10-10 07:58:00 +04:00
|
|
|
|
2013-07-02 20:42:42 +04:00
|
|
|
build-depends: vty,
|
2013-08-30 04:00:07 +04:00
|
|
|
Cabal == 1.18.*,
|
|
|
|
QuickCheck >= 2.4,
|
|
|
|
random == 1.0.*,
|
|
|
|
base >= 4 && < 5,
|
|
|
|
bytestring,
|
|
|
|
containers,
|
|
|
|
deepseq >= 1.1 && < 1.4,
|
|
|
|
mtl >= 1.1.1.0 && < 2.2,
|
|
|
|
text >= 0.11.3,
|
|
|
|
unix,
|
|
|
|
utf8-string >= 0.3 && < 0.4,
|
|
|
|
vector >= 0.7
|
|
|
|
|
|
|
|
test-suite verify-using-mock-input
|
|
|
|
default-language: Haskell2010
|
2013-10-20 10:20:29 +04:00
|
|
|
default-extensions: ScopedTypeVariables
|
2013-08-30 04:00:07 +04:00
|
|
|
|
2013-10-20 10:20:29 +04:00
|
|
|
type: exitcode-stdio-1.0
|
2013-08-30 04:00:07 +04:00
|
|
|
|
|
|
|
hs-source-dirs: test
|
|
|
|
|
2013-10-20 10:20:29 +04:00
|
|
|
main-is: VerifyUsingMockInput.hs
|
2013-08-30 04:00:07 +04:00
|
|
|
|
|
|
|
build-depends: vty,
|
|
|
|
Cabal == 1.18.*,
|
2012-12-27 03:40:19 +04:00
|
|
|
QuickCheck >= 2.4,
|
2013-10-20 10:20:29 +04:00
|
|
|
smallcheck == 1.*,
|
2013-10-05 11:30:38 +04:00
|
|
|
quickcheck-assertions >= 0.1.1,
|
2013-10-20 10:20:29 +04:00
|
|
|
test-framework == 0.8.*,
|
|
|
|
test-framework-smallcheck == 0.2.*,
|
2012-10-10 07:58:00 +04:00
|
|
|
random == 1.0.*,
|
|
|
|
base >= 4 && < 5,
|
|
|
|
bytestring,
|
|
|
|
containers,
|
|
|
|
deepseq >= 1.1 && < 1.4,
|
|
|
|
mtl >= 1.1.1.0 && < 2.2,
|
2013-10-21 01:18:29 +04:00
|
|
|
terminfo >= 0.3 && < 0.4,
|
2013-05-20 01:48:14 +04:00
|
|
|
text >= 0.11.3,
|
2012-10-10 07:58:00 +04:00
|
|
|
unix,
|
|
|
|
utf8-string >= 0.3 && < 0.4,
|
|
|
|
vector >= 0.7
|
2013-07-02 20:42:42 +04:00
|
|
|
|
2013-10-23 04:48:22 +04:00
|
|
|
ghc-options: -threaded -Wall
|
2012-10-10 07:58:00 +04:00
|
|
|
|