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
|
|
|
|
|
|
|
-- The package version. See the Haskell package versioning policy (PVP)
|
|
|
|
-- for standards guiding when and how versions should be incremented.
|
|
|
|
-- http://www.haskell.org/haskellwiki/Package_versioning_policy
|
|
|
|
-- PVP summary: +-+------- breaking API changes
|
|
|
|
-- | | +----- non-breaking API additions
|
|
|
|
-- | | | +--- code changes with no API change
|
2014-01-25 21:31:07 -08:00
|
|
|
version: 0.3.0.3
|
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.
|
2013-12-14 11:50:10 -08: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.
|
2013-12-14 11:50:10 -08:00
|
|
|
homepage: http://gibiansky.github.io/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
|
|
|
|
|
|
|
|
-- An email address to which users can send suggestions, bug reports, and
|
|
|
|
-- patches.
|
|
|
|
maintainer: andrew.gibiansky@gmail.com
|
|
|
|
|
|
|
|
-- A copyright notice.
|
|
|
|
-- copyright:
|
|
|
|
|
|
|
|
category: Development
|
|
|
|
|
2014-01-25 21:22:15 -08:00
|
|
|
build-type: Custom
|
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
|
|
|
|
2013-12-26 23:24:49 -05:00
|
|
|
data-files:
|
2014-01-11 20:59:26 -07:00
|
|
|
installation/ipython.sh
|
|
|
|
installation/update.sh
|
|
|
|
installation/virtualenv.sh
|
2014-01-11 22:08:17 -07:00
|
|
|
installation/run.sh
|
2014-01-11 20:59:26 -07:00
|
|
|
profile/profile.tar
|
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
|
|
|
|
build-depends:
|
|
|
|
base ==4.6.*,
|
2014-01-10 00:57:09 -05:00
|
|
|
aeson >=0.6.1,
|
2014-01-09 10:46:19 -05:00
|
|
|
base64-bytestring >=1.0,
|
|
|
|
bytestring >=0.10,
|
|
|
|
cereal ==0.3.*,
|
|
|
|
classy-prelude >=0.7,
|
|
|
|
cmdargs >=0.10,
|
|
|
|
containers >=0.5,
|
|
|
|
directory -any,
|
|
|
|
filepath -any,
|
|
|
|
ghc ==7.6.*,
|
|
|
|
ghc-parser -any,
|
|
|
|
ghc-paths ==0.1.*,
|
|
|
|
haskeline -any,
|
|
|
|
here -any,
|
|
|
|
hlint -any,
|
|
|
|
hspec -any,
|
|
|
|
HTTP -any,
|
|
|
|
HUnit -any,
|
|
|
|
ipython-kernel -any,
|
|
|
|
MissingH >=1.2,
|
|
|
|
mtl >=2.1,
|
|
|
|
parsec -any,
|
|
|
|
process >=1.1,
|
|
|
|
random >=1.0,
|
|
|
|
shelly >=1.3,
|
|
|
|
split >= 0.2,
|
|
|
|
strict >=0.3,
|
|
|
|
system-argv0 -any,
|
|
|
|
system-filepath -any,
|
|
|
|
tar -any,
|
|
|
|
transformers -any,
|
|
|
|
unix >= 2.6,
|
|
|
|
utf8-string -any
|
2014-01-06 15:45:52 -05:00
|
|
|
|
2014-01-05 23:01:38 -05:00
|
|
|
exposed-modules: IHaskell.Display
|
|
|
|
IHaskell.Eval.Completion
|
|
|
|
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
|
2014-01-08 15:24:33 -05:00
|
|
|
IHaskell.Eval.Util
|
2014-01-05 23:01:38 -05:00
|
|
|
IHaskell.IPython
|
2014-01-08 16:27:36 -05:00
|
|
|
IHaskell.Flags
|
2014-01-05 23:01:38 -05:00
|
|
|
IHaskell.Types
|
2014-01-26 10:12:36 -08:00
|
|
|
other-modules:
|
2014-01-05 23:01:38 -05:00
|
|
|
Paths_ihaskell
|
2013-11-27 15:09:20 -08:00
|
|
|
|
2013-08-26 00:18:30 -07:00
|
|
|
executable IHaskell
|
|
|
|
-- .hs or .lhs file containing the Main module.
|
2014-01-03 00:10:15 -05:00
|
|
|
hs-source-dirs: src
|
2013-08-26 00:18:30 -07:00
|
|
|
main-is: Main.hs
|
2013-12-12 12:28:55 -08:00
|
|
|
|
2014-01-08 19:45:19 -05:00
|
|
|
build-tools: happy, cpphs
|
2013-08-26 00:18:30 -07:00
|
|
|
|
|
|
|
-- Modules included in this executable, other than Main.
|
2013-10-24 22:38:39 -04:00
|
|
|
other-modules:
|
2013-12-29 17:08:20 -05:00
|
|
|
IHaskell.Eval.Lint
|
2013-11-10 18:31:55 -08:00
|
|
|
IHaskell.Eval.Completion
|
|
|
|
IHaskell.Eval.Info
|
2013-10-24 22:38:39 -04:00
|
|
|
IHaskell.Eval.Evaluate
|
2013-11-28 21:39:13 -08:00
|
|
|
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
|
2014-01-08 15:24:33 -05:00
|
|
|
IHaskell.Eval.Util
|
2013-10-24 22:38:39 -04:00
|
|
|
IHaskell.IPython
|
2014-01-08 16:27:36 -05:00
|
|
|
IHaskell.Flags
|
2013-10-24 22:38:39 -04:00
|
|
|
IHaskell.Types
|
2013-11-27 15:09:20 -08:00
|
|
|
IHaskell.Display
|
2013-10-24 22:38:39 -04:00
|
|
|
|
2014-01-09 20:13:59 -05:00
|
|
|
default-extensions: DoAndIfThenElse
|
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
|
|
|
|
build-depends:
|
|
|
|
base ==4.6.*,
|
|
|
|
aeson >=0.6,
|
|
|
|
base64-bytestring >=1.0,
|
|
|
|
bytestring >=0.10,
|
|
|
|
cereal ==0.3.*,
|
|
|
|
classy-prelude >=0.7,
|
|
|
|
cmdargs >=0.10,
|
|
|
|
containers >=0.5,
|
|
|
|
directory -any,
|
|
|
|
filepath -any,
|
|
|
|
ghc ==7.6.*,
|
|
|
|
ghc-parser -any,
|
|
|
|
ghc-paths ==0.1.*,
|
|
|
|
haskeline -any,
|
|
|
|
here -any,
|
|
|
|
hlint -any,
|
|
|
|
hspec -any,
|
|
|
|
HTTP -any,
|
|
|
|
HUnit -any,
|
|
|
|
ipython-kernel -any,
|
|
|
|
MissingH >=1.2,
|
|
|
|
mtl >=2.1,
|
|
|
|
parsec -any,
|
|
|
|
process >=1.1,
|
|
|
|
random >=1.0,
|
|
|
|
shelly >=1.3,
|
|
|
|
split >= 0.2,
|
|
|
|
strict >=0.3,
|
|
|
|
system-argv0 -any,
|
|
|
|
system-filepath -any,
|
|
|
|
tar -any,
|
|
|
|
transformers -any,
|
|
|
|
unix >= 2.6,
|
|
|
|
utf8-string -any
|
2013-10-28 09:16:48 -04:00
|
|
|
|
2013-12-13 18:00:41 -08:00
|
|
|
Test-Suite hspec
|
2014-01-05 17:49:29 -05:00
|
|
|
hs-source-dirs: src
|
2013-10-28 09:16:48 -04:00
|
|
|
Type: exitcode-stdio-1.0
|
|
|
|
Ghc-Options: -threaded
|
2013-12-13 18:00:41 -08:00
|
|
|
Main-Is: Hspec.hs
|
2014-01-09 10:46:19 -05:00
|
|
|
default-language: Haskell2010
|
|
|
|
build-depends:
|
|
|
|
base ==4.6.*,
|
|
|
|
aeson >=0.6,
|
|
|
|
base64-bytestring >=1.0,
|
|
|
|
bytestring >=0.10,
|
|
|
|
cereal ==0.3.*,
|
|
|
|
classy-prelude >=0.7,
|
|
|
|
cmdargs >=0.10,
|
|
|
|
containers >=0.5,
|
|
|
|
directory -any,
|
|
|
|
filepath -any,
|
|
|
|
ghc ==7.6.*,
|
|
|
|
ghc-parser -any,
|
|
|
|
ghc-paths ==0.1.*,
|
|
|
|
haskeline -any,
|
|
|
|
here -any,
|
|
|
|
hlint -any,
|
|
|
|
hspec -any,
|
|
|
|
HTTP -any,
|
|
|
|
HUnit -any,
|
|
|
|
ipython-kernel -any,
|
|
|
|
MissingH >=1.2,
|
|
|
|
mtl >=2.1,
|
|
|
|
parsec -any,
|
|
|
|
process >=1.1,
|
|
|
|
random >=1.0,
|
2014-01-09 20:13:59 -05:00
|
|
|
setenv -any,
|
2014-01-09 10:46:19 -05:00
|
|
|
shelly >=1.3,
|
|
|
|
split >= 0.2,
|
|
|
|
strict >=0.3,
|
|
|
|
system-argv0 -any,
|
|
|
|
system-filepath -any,
|
|
|
|
tar -any,
|
|
|
|
transformers -any,
|
|
|
|
unix >= 2.6,
|
|
|
|
utf8-string -any
|
2014-01-06 15:45:52 -05:00
|
|
|
|
2014-01-09 20:13:59 -05:00
|
|
|
default-extensions:
|
|
|
|
DoAndIfThenElse
|
2014-01-05 17:49:29 -05:00
|
|
|
OverloadedStrings
|
|
|
|
ExtendedDefaultRules
|
2013-12-14 11:50:10 -08:00
|
|
|
|
|
|
|
source-repository head
|
|
|
|
type: git
|
|
|
|
location: git://github.com/gibiansky/IHaskell.git
|