ghc-mod/ghc-mod.cabal

168 lines
6.7 KiB
Plaintext
Raw Normal View History

2010-01-06 05:38:06 +00:00
Name: ghc-mod
2014-04-24 13:22:23 +00:00
Version: 4.1.0
2010-03-10 03:06:06 +00:00
Author: Kazu Yamamoto <kazu@iij.ad.jp>
Maintainer: Kazu Yamamoto <kazu@iij.ad.jp>
2010-01-06 05:38:06 +00:00
License: BSD3
2010-03-10 03:06:06 +00:00
License-File: LICENSE
2010-03-10 08:37:17 +00:00
Homepage: http://www.mew.org/~kazu/proj/ghc-mod/
2013-05-21 02:04:54 +00:00
Synopsis: Happy Haskell Programming
Description: The ghc-mod command is a backend command to enrich
Haskell programming on editors including
Emacs, Vim, and Sublime.
The ghc-mod command is based on ghc-mod library
which is a wrapper of GHC API.
This package includes the ghc-mod command,
2013-05-21 12:38:19 +00:00
the ghc-mod library, and Emacs front-end
2013-05-21 02:04:54 +00:00
(for historical reasons).
2013-05-21 13:20:48 +00:00
For more information, please see its home page.
2013-05-21 02:04:54 +00:00
2010-01-06 05:38:06 +00:00
Category: Development
2013-02-15 01:47:56 +00:00
Cabal-Version: >= 1.10
2010-02-19 14:43:03 +00:00
Build-Type: Simple
2010-01-06 05:38:06 +00:00
Data-Dir: elisp
Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el
2014-03-25 05:29:18 +00:00
ghc-check.el ghc-process.el ghc-command.el ghc-info.el
2013-05-21 02:04:54 +00:00
ghc-ins-mod.el ghc-indent.el ghc-pkg.el
2013-03-01 02:39:47 +00:00
Extra-Source-Files: ChangeLog
test/data/*.cabal
2013-02-15 01:47:56 +00:00
test/data/*.hs
test/data/cabal.sandbox.config.in
2014-04-17 21:49:23 +00:00
test/data/.cabal-sandbox/i386-osx-ghc-7.6.3-packages.conf.d/Cabal-1.18.1.3-2b161c6bf77657aa17e1681d83cb051b.conf
2013-09-21 06:32:22 +00:00
test/data/broken-cabal/*.cabal
test/data/broken-sandbox/*.cabal
test/data/broken-sandbox/cabal.sandbox.config
2013-03-16 03:08:54 +00:00
test/data/check-test-subdir/*.cabal
2013-09-21 06:32:22 +00:00
test/data/check-test-subdir/src/Check/Test/*.hs
2013-03-16 03:08:54 +00:00
test/data/check-test-subdir/test/*.hs
test/data/check-test-subdir/test/Bar/*.hs
test/data/check-packageid/cabal.sandbox.config.in
test/data/check-packageid/.cabal-sandbox/i386-osx-ghc-7.6.3-packages.conf.d/template-haskell-2.8.0.0-32d4f24abdbb6bf41272b183b2e23e9c.conf
2013-09-21 06:32:22 +00:00
test/data/ghc-mod-check/*.cabal
test/data/ghc-mod-check/*.hs
test/data/ghc-mod-check/Data/*.hs
test/data/subdir1/subdir2/dummy
2013-05-17 01:00:01 +00:00
Library
2013-02-15 01:47:56 +00:00
Default-Language: Haskell2010
2012-08-06 00:43:47 +00:00
GHC-Options: -Wall
2013-05-17 01:00:01 +00:00
Exposed-Modules: Language.Haskell.GhcMod
Language.Haskell.GhcMod.Ghc
Language.Haskell.GhcMod.Internal
2014-04-30 01:49:25 +00:00
Other-Modules: Language.Haskell.GhcMod.Boot
Language.Haskell.GhcMod.Browse
2013-05-17 01:00:01 +00:00
Language.Haskell.GhcMod.CabalApi
Language.Haskell.GhcMod.Check
Language.Haskell.GhcMod.Cradle
Language.Haskell.GhcMod.Debug
2014-03-27 07:23:15 +00:00
Language.Haskell.GhcMod.Doc
2014-04-28 12:47:08 +00:00
Language.Haskell.GhcMod.Find
2013-05-17 01:00:01 +00:00
Language.Haskell.GhcMod.Flag
Language.Haskell.GhcMod.GHCApi
Language.Haskell.GhcMod.GHCChoice
Language.Haskell.GhcMod.Gap
2014-04-18 06:41:32 +00:00
Language.Haskell.GhcMod.GhcPkg
2014-04-28 12:47:08 +00:00
Language.Haskell.GhcMod.Logger
2013-05-17 01:00:01 +00:00
Language.Haskell.GhcMod.Info
Language.Haskell.GhcMod.Lang
Language.Haskell.GhcMod.Lint
Language.Haskell.GhcMod.List
2014-03-27 07:23:15 +00:00
Language.Haskell.GhcMod.PkgDoc
2014-04-18 06:41:32 +00:00
Language.Haskell.GhcMod.Utils
2013-05-17 01:00:01 +00:00
Language.Haskell.GhcMod.Types
2012-02-14 07:09:53 +00:00
Build-Depends: base >= 4.0 && < 5
, containers
2014-04-24 08:02:50 +00:00
, deepseq
2012-02-14 07:09:53 +00:00
, directory
, filepath
, ghc
, ghc-syb-utils
2014-04-18 23:26:30 +00:00
, hlint >= 1.8.61
2012-02-16 05:44:20 +00:00
, io-choice
2012-02-14 07:09:53 +00:00
, old-time
, process
, syb
, time
2012-02-14 07:09:53 +00:00
, transformers
2013-11-19 01:37:11 +00:00
if impl(ghc < 7.7)
Build-Depends: convertible
2014-01-08 03:01:10 +00:00
, Cabal >= 1.10 && < 1.17
else
Build-Depends: Cabal >= 1.18
2012-02-14 07:09:53 +00:00
2013-05-17 01:00:01 +00:00
Executable ghc-mod
Default-Language: Haskell2010
Main-Is: GHCMod.hs
2014-04-30 01:49:25 +00:00
Other-Modules: Paths_ghc_mod
2013-05-17 01:00:01 +00:00
GHC-Options: -Wall
HS-Source-Dirs: src
Build-Depends: base >= 4.0 && < 5
, directory
, filepath
, ghc
, ghc-mod
2014-03-19 01:23:47 +00:00
Executable ghc-modi
Default-Language: Haskell2010
Main-Is: GHCModi.hs
2014-04-30 01:49:25 +00:00
Other-Modules: Paths_ghc_mod
2014-03-19 01:23:47 +00:00
GHC-Options: -Wall
HS-Source-Dirs: src
Build-Depends: base >= 4.0 && < 5
, containers
2014-03-19 01:23:47 +00:00
, directory
, filepath
, ghc
, ghc-mod
2013-09-20 12:10:31 +00:00
Test-Suite doctest
Type: exitcode-stdio-1.0
Default-Language: Haskell2010
HS-Source-Dirs: test
Ghc-Options: -threaded -Wall
Main-Is: doctests.hs
Build-Depends: base
, doctest >= 0.9.3
2013-02-12 05:06:22 +00:00
Test-Suite spec
2013-02-15 01:47:56 +00:00
Default-Language: Haskell2010
Main-Is: Main.hs
2013-02-12 05:06:22 +00:00
Hs-Source-Dirs: test, .
Type: exitcode-stdio-1.0
2013-09-03 02:49:35 +00:00
Other-Modules: Dir
Spec
2013-02-12 05:18:19 +00:00
BrowseSpec
2013-02-12 07:24:33 +00:00
CabalApiSpec
CheckSpec
2013-02-12 05:12:15 +00:00
FlagSpec
2013-02-13 07:22:07 +00:00
InfoSpec
2013-02-12 05:06:22 +00:00
LangSpec
2013-02-12 05:31:01 +00:00
LintSpec
2013-02-12 05:06:22 +00:00
ListSpec
GhcPkgSpec
2013-02-12 05:06:22 +00:00
Build-Depends: base >= 4.0 && < 5
, containers
2014-04-24 13:30:18 +00:00
, deepseq
2013-02-12 05:06:22 +00:00
, directory
, filepath
, ghc
, ghc-syb-utils
, hlint >= 1.7.1
, io-choice
, old-time
, process
, syb
, time
, transformers
, hspec >= 1.8.2
2013-11-19 01:37:11 +00:00
if impl(ghc < 7.7)
Build-Depends: convertible
2014-01-08 03:01:10 +00:00
, Cabal >= 1.10 && < 1.17
else
Build-Depends: Cabal >= 1.18
if impl(ghc < 7.6.0)
2013-11-19 01:43:27 +00:00
Build-Depends: executable-path
2013-02-12 05:06:22 +00:00
2010-03-10 03:06:06 +00:00
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git