2013-08-26 00:18:30 -07:00
|
|
|
-- The name of the package.
|
2013-11-27 15:09:20 -08:00
|
|
|
name: ihaskell
|
2013-08-26 00:18:30 -07:00
|
|
|
|
2018-08-28 19:02:57 +10:00
|
|
|
-- The package version. See the Haskell package versioning policy (PVP)
|
2013-08-26 00:18:30 -07:00
|
|
|
-- for standards guiding when and how versions should be incremented.
|
|
|
|
-- http://www.haskell.org/haskellwiki/Package_versioning_policy
|
2019-04-26 14:51:04 -04:00
|
|
|
-- PVP summary: +--+------- breaking API changes
|
|
|
|
-- | | +----- non-breaking API additions
|
|
|
|
-- | | | +--- code changes with no API change
|
2019-09-25 21:50:44 -04:00
|
|
|
version: 0.10.0.1
|
2013-08-26 00:18:30 -07:00
|
|
|
|
|
|
|
-- A short (one-line) description of the package.
|
|
|
|
synopsis: A Haskell backend kernel for the IPython project.
|
|
|
|
|
|
|
|
-- A longer description of the package.
|
2018-08-28 19:02:57 +10:00
|
|
|
description: IHaskell is a Haskell backend kernel for the IPython project. This allows using Haskell via
|
|
|
|
a console or notebook interface. Additional packages may be installed to provide richer data visualizations.
|
2013-08-26 00:18:30 -07:00
|
|
|
|
|
|
|
-- URL for the project homepage or repository.
|
2015-08-16 00:53:54 -07:00
|
|
|
homepage: http://github.com/gibiansky/IHaskell
|
2013-08-26 00:18:30 -07:00
|
|
|
|
|
|
|
-- The license under which the package is released.
|
2013-12-14 11:50:10 -08:00
|
|
|
license: MIT
|
2013-08-26 00:18:30 -07:00
|
|
|
|
|
|
|
-- The file containing the license text.
|
|
|
|
license-file: LICENSE
|
|
|
|
|
|
|
|
-- The package author(s).
|
|
|
|
author: Andrew Gibiansky
|
|
|
|
|
2018-08-28 19:02:57 +10:00
|
|
|
-- An email address to which users can send suggestions, bug reports, and
|
2013-08-26 00:18:30 -07:00
|
|
|
-- patches.
|
|
|
|
maintainer: andrew.gibiansky@gmail.com
|
|
|
|
|
|
|
|
-- A copyright notice.
|
2018-08-28 19:02:57 +10:00
|
|
|
-- copyright:
|
2013-08-26 00:18:30 -07:00
|
|
|
|
|
|
|
category: Development
|
|
|
|
|
2014-01-30 16:30:21 -08:00
|
|
|
build-type: Simple
|
2013-08-26 00:18:30 -07:00
|
|
|
|
|
|
|
-- Constraint on the version of Cabal needed to build this package.
|
2014-01-09 10:46:19 -05:00
|
|
|
cabal-version: >=1.16
|
2013-08-26 00:18:30 -07:00
|
|
|
|
2018-08-28 19:02:57 +10:00
|
|
|
data-files:
|
2015-03-02 20:26:09 -08:00
|
|
|
html/kernel.js
|
2018-07-18 16:18:38 +02:00
|
|
|
html/logo-64x64.svg
|
2013-12-14 14:22:58 -08:00
|
|
|
|
2013-11-27 15:09:20 -08:00
|
|
|
library
|
2014-01-03 00:10:15 -05:00
|
|
|
hs-source-dirs: src
|
2014-01-09 10:46:19 -05:00
|
|
|
default-language: Haskell2010
|
2018-09-01 11:09:39 +10:00
|
|
|
ghc-options: -Wall
|
2018-09-03 20:14:15 +10:00
|
|
|
|
|
|
|
if impl (ghc >= 8.4)
|
|
|
|
ghc-options: -Wpartial-fields
|
|
|
|
|
2015-08-12 22:20:36 +02:00
|
|
|
build-depends:
|
2017-03-30 20:48:59 +07:00
|
|
|
aeson >=1.0,
|
2017-09-06 11:46:00 +02:00
|
|
|
base >=4.9,
|
2014-01-09 10:46:19 -05:00
|
|
|
base64-bytestring >=1.0,
|
|
|
|
bytestring >=0.10,
|
2014-03-09 17:25:45 -07:00
|
|
|
cereal >=0.3,
|
2014-01-09 10:46:19 -05:00
|
|
|
cmdargs >=0.10,
|
|
|
|
containers >=0.5,
|
|
|
|
directory -any,
|
|
|
|
filepath -any,
|
2017-09-06 11:46:00 +02:00
|
|
|
ghc >=8.0,
|
2019-09-25 21:49:41 -04:00
|
|
|
ghc-parser >=0.2.1,
|
2017-03-06 05:21:45 -05:00
|
|
|
ghc-paths >=0.1,
|
2014-01-09 10:46:19 -05:00
|
|
|
haskeline -any,
|
2019-09-24 22:42:47 -04:00
|
|
|
hlint >=1.9,
|
2017-09-05 18:12:25 +02:00
|
|
|
haskell-src-exts >=1.18,
|
2017-03-06 05:21:45 -05:00
|
|
|
http-client >= 0.4,
|
|
|
|
http-client-tls >= 0.2,
|
2014-01-09 10:46:19 -05:00
|
|
|
mtl >=2.1,
|
|
|
|
parsec -any,
|
|
|
|
process >=1.1,
|
|
|
|
random >=1.0,
|
2015-02-19 11:10:46 -05:00
|
|
|
shelly >=1.5,
|
2014-01-09 10:46:19 -05:00
|
|
|
split >= 0.2,
|
2014-05-16 22:02:48 -07:00
|
|
|
stm -any,
|
2014-01-09 10:46:19 -05:00
|
|
|
strict >=0.3,
|
2014-05-16 22:02:48 -07:00
|
|
|
text >=0.11,
|
2019-03-04 13:35:30 -05:00
|
|
|
time >= 1.6,
|
2014-01-09 10:46:19 -05:00
|
|
|
transformers -any,
|
|
|
|
unix >= 2.6,
|
2014-03-09 12:24:15 -07:00
|
|
|
unordered-containers -any,
|
|
|
|
utf8-string -any,
|
2014-05-16 22:02:48 -07:00
|
|
|
vector -any,
|
2018-08-28 10:16:45 -04:00
|
|
|
ipython-kernel >=0.9.1,
|
2019-08-03 20:54:05 -04:00
|
|
|
ghc-boot >=8.0 && <8.9
|
2017-03-05 10:12:24 -05:00
|
|
|
|
2014-01-05 23:01:38 -05:00
|
|
|
exposed-modules: IHaskell.Display
|
2014-03-09 12:24:15 -07:00
|
|
|
IHaskell.Convert
|
|
|
|
IHaskell.Convert.Args
|
|
|
|
IHaskell.Convert.IpynbToLhs
|
|
|
|
IHaskell.Convert.LhsToIpynb
|
2014-01-05 23:01:38 -05:00
|
|
|
IHaskell.Eval.Completion
|
2015-05-13 14:42:38 -07:00
|
|
|
IHaskell.Eval.Inspect
|
2014-01-05 23:01:38 -05:00
|
|
|
IHaskell.Eval.Evaluate
|
|
|
|
IHaskell.Eval.Info
|
|
|
|
IHaskell.Eval.Lint
|
|
|
|
IHaskell.Eval.Parser
|
2014-01-07 22:48:01 -05:00
|
|
|
IHaskell.Eval.Hoogle
|
2014-01-08 11:56:36 -05:00
|
|
|
IHaskell.Eval.ParseShell
|
2015-06-02 11:42:48 +05:30
|
|
|
IHaskell.Eval.Widgets
|
2014-01-08 15:24:33 -05:00
|
|
|
IHaskell.Eval.Util
|
2015-06-09 14:02:59 +05:30
|
|
|
IHaskell.Publish
|
2014-01-05 23:01:38 -05:00
|
|
|
IHaskell.IPython
|
2015-03-30 10:31:20 -07:00
|
|
|
IHaskell.IPython.Stdin
|
2014-01-08 16:27:36 -05:00
|
|
|
IHaskell.Flags
|
2014-01-05 23:01:38 -05:00
|
|
|
IHaskell.Types
|
2014-02-28 16:19:37 -08:00
|
|
|
IHaskell.BrokenPackages
|
2015-12-07 21:33:22 -08:00
|
|
|
IHaskell.CSS
|
2014-01-05 23:01:38 -05:00
|
|
|
Paths_ihaskell
|
2015-05-25 20:49:40 +02:00
|
|
|
IHaskellPrelude
|
2018-11-17 21:18:22 +01:00
|
|
|
other-modules:
|
2015-05-29 13:14:49 +02:00
|
|
|
StringUtils
|
2015-05-25 20:49:40 +02:00
|
|
|
|
2015-03-10 14:14:05 -07:00
|
|
|
executable ihaskell
|
2013-08-26 00:18:30 -07:00
|
|
|
-- .hs or .lhs file containing the Main module.
|
2015-05-25 20:49:40 +02:00
|
|
|
main-is: Main.hs
|
2015-05-27 18:31:37 +02:00
|
|
|
hs-source-dirs: main
|
2018-08-28 19:02:57 +10:00
|
|
|
other-modules:
|
2016-06-07 18:16:58 -07:00
|
|
|
Paths_ihaskell
|
2018-09-01 11:09:39 +10:00
|
|
|
ghc-options: -threaded -rtsopts -Wall
|
2018-08-28 19:02:57 +10:00
|
|
|
|
2018-10-20 18:43:36 -04:00
|
|
|
if os(darwin)
|
|
|
|
ghc-options: -optP-Wno-nonportable-include-path
|
|
|
|
|
2018-09-03 20:14:15 +10:00
|
|
|
if impl (ghc >= 8.4)
|
|
|
|
ghc-options: -Wpartial-fields
|
|
|
|
|
2013-08-26 00:18:30 -07:00
|
|
|
-- Other library packages from which modules are imported.
|
2014-01-09 10:46:19 -05:00
|
|
|
default-language: Haskell2010
|
2018-08-28 19:02:57 +10:00
|
|
|
build-depends:
|
2015-05-27 18:31:37 +02:00
|
|
|
ihaskell -any,
|
2019-07-06 14:31:46 -04:00
|
|
|
base >=4.9 && < 4.14,
|
2015-05-27 18:31:37 +02:00
|
|
|
text >=0.11,
|
|
|
|
transformers -any,
|
2019-07-06 14:31:46 -04:00
|
|
|
ghc >=8.0 && < 8.9,
|
2015-08-24 13:54:22 -07:00
|
|
|
process >=1.1,
|
2017-03-06 05:21:45 -05:00
|
|
|
aeson >=0.7,
|
2015-05-27 18:31:37 +02:00
|
|
|
bytestring >=0.10,
|
2018-11-17 21:18:22 +01:00
|
|
|
unordered-containers -any,
|
2015-05-27 18:31:37 +02:00
|
|
|
containers >=0.5,
|
2015-05-25 20:49:40 +02:00
|
|
|
strict >=0.3,
|
|
|
|
unix >= 2.6,
|
2015-05-27 18:31:37 +02:00
|
|
|
directory -any,
|
2018-11-16 23:11:28 +03:00
|
|
|
ipython-kernel >=0.7,
|
|
|
|
unordered-containers -any
|
2015-05-27 18:31:37 +02:00
|
|
|
|
2015-03-05 18:21:51 -08:00
|
|
|
Test-Suite hspec
|
|
|
|
Type: exitcode-stdio-1.0
|
2018-09-01 11:09:39 +10:00
|
|
|
Ghc-Options: -threaded -Wall
|
2018-09-03 20:14:15 +10:00
|
|
|
|
|
|
|
if impl (ghc >= 8.4)
|
|
|
|
ghc-options: -Wpartial-fields
|
|
|
|
|
2015-03-05 18:21:51 -08:00
|
|
|
Main-Is: Hspec.hs
|
2016-06-07 18:16:58 -07:00
|
|
|
hs-source-dirs: src/tests
|
2016-06-09 01:21:42 -07:00
|
|
|
other-modules:
|
|
|
|
IHaskell.Test.Eval
|
|
|
|
IHaskell.Test.Completion
|
|
|
|
IHaskell.Test.Util
|
|
|
|
IHaskell.Test.Parser
|
2018-10-24 20:30:59 +02:00
|
|
|
IHaskell.Test.Hoogle
|
2015-03-05 18:21:51 -08:00
|
|
|
default-language: Haskell2010
|
|
|
|
build-depends:
|
2016-06-07 18:16:58 -07:00
|
|
|
base,
|
2015-03-05 18:21:51 -08:00
|
|
|
ihaskell,
|
2016-03-25 11:20:18 +00:00
|
|
|
here,
|
2016-06-07 18:16:58 -07:00
|
|
|
hspec,
|
2017-01-28 22:29:35 +11:00
|
|
|
hspec-contrib,
|
2016-06-07 18:16:58 -07:00
|
|
|
HUnit,
|
|
|
|
ghc,
|
|
|
|
ghc-paths,
|
|
|
|
transformers,
|
|
|
|
directory,
|
|
|
|
text,
|
|
|
|
shelly,
|
2018-10-24 20:30:59 +02:00
|
|
|
raw-strings-qq,
|
2016-06-07 18:16:58 -07:00
|
|
|
setenv
|
2015-03-05 18:21:51 -08:00
|
|
|
|
2013-12-14 11:50:10 -08:00
|
|
|
source-repository head
|
|
|
|
type: git
|
|
|
|
location: git://github.com/gibiansky/IHaskell.git
|