diff --git a/hackage-metadata/ghc-mod-0.1.0.cabal b/hackage-metadata/ghc-mod-0.1.0.cabal new file mode 100644 index 0000000..c1970ac --- /dev/null +++ b/hackage-metadata/ghc-mod-0.1.0.cabal @@ -0,0 +1,29 @@ +Name: ghc-mod +Version: 0.1.0 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. +Category: Development +Cabal-Version: >= 1.6 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el +Executable ghc-mod + Main-Is: GHCMod.hs + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 10, + parsec, process, haskell-src-exts +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-0.2.0.cabal b/hackage-metadata/ghc-mod-0.2.0.cabal new file mode 100644 index 0000000..5368c27 --- /dev/null +++ b/hackage-metadata/ghc-mod-0.2.0.cabal @@ -0,0 +1,33 @@ +Name: ghc-mod +Version: 0.2.0 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. +Category: Development +Cabal-Version: >= 1.6 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el +Executable ghc-mod + Main-Is: GHCMod.hs + Other-Modules: List Browse Check Param + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 10, + parsec >= 3, process, haskell-src-exts, + directory, filepath +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-0.3.0.cabal b/hackage-metadata/ghc-mod-0.3.0.cabal new file mode 100644 index 0000000..06ab2f0 --- /dev/null +++ b/hackage-metadata/ghc-mod-0.3.0.cabal @@ -0,0 +1,36 @@ +Name: ghc-mod +Version: 0.3.0 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. +Category: Development +Cabal-Version: >= 1.6 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el +Executable ghc-mod + Main-Is: GHCMod.hs + Other-Modules: List Browse Check Param Lang + if impl(ghc >= 6.12) + GHC-Options: -Wall -fno-warn-unused-do-bind + else + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5, + parsec >= 3, process, haskell-src-exts, + directory, filepath +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-0.4.0.cabal b/hackage-metadata/ghc-mod-0.4.0.cabal new file mode 100644 index 0000000..87e381d --- /dev/null +++ b/hackage-metadata/ghc-mod-0.4.0.cabal @@ -0,0 +1,35 @@ +Name: ghc-mod +Version: 0.4.0 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. +Category: Development +Cabal-Version: >= 1.6 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el +Executable ghc-mod + Main-Is: GHCMod.hs + Other-Modules: List Browse Check Lang Lint Types + if impl(ghc >= 6.12) + GHC-Options: -Wall -fno-warn-unused-do-bind + else + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5, ghc, ghc-paths, + process, directory, filepath +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-0.4.1.cabal b/hackage-metadata/ghc-mod-0.4.1.cabal new file mode 100644 index 0000000..6621a62 --- /dev/null +++ b/hackage-metadata/ghc-mod-0.4.1.cabal @@ -0,0 +1,35 @@ +Name: ghc-mod +Version: 0.4.1 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. +Category: Development +Cabal-Version: >= 1.6 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el +Executable ghc-mod + Main-Is: GHCMod.hs + Other-Modules: List Browse Check Lang Lint Types + if impl(ghc >= 6.12) + GHC-Options: -Wall -fno-warn-unused-do-bind + else + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5, ghc, ghc-paths, + process, directory, filepath +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-0.4.2.cabal b/hackage-metadata/ghc-mod-0.4.2.cabal new file mode 100644 index 0000000..1186e4e --- /dev/null +++ b/hackage-metadata/ghc-mod-0.4.2.cabal @@ -0,0 +1,35 @@ +Name: ghc-mod +Version: 0.4.2 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. +Category: Development +Cabal-Version: >= 1.6 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el +Executable ghc-mod + Main-Is: GHCMod.hs + Other-Modules: List Browse Check Lang Lint Types + if impl(ghc >= 6.12) + GHC-Options: -Wall -fno-warn-unused-do-bind + else + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5, ghc, ghc-paths, + process, directory, filepath, hlint >= 1.7.1 +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-0.4.3.cabal b/hackage-metadata/ghc-mod-0.4.3.cabal new file mode 100644 index 0000000..0f98f7d --- /dev/null +++ b/hackage-metadata/ghc-mod-0.4.3.cabal @@ -0,0 +1,35 @@ +Name: ghc-mod +Version: 0.4.3 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. +Category: Development +Cabal-Version: >= 1.6 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el +Executable ghc-mod + Main-Is: GHCMod.hs + Other-Modules: List Browse Check Lang Lint Types + if impl(ghc >= 6.12) + GHC-Options: -Wall -fno-warn-unused-do-bind + else + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5, ghc, ghc-paths, + process, directory, filepath, hlint >= 1.7.1 +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-0.4.4.cabal b/hackage-metadata/ghc-mod-0.4.4.cabal new file mode 100644 index 0000000..fae18fc --- /dev/null +++ b/hackage-metadata/ghc-mod-0.4.4.cabal @@ -0,0 +1,35 @@ +Name: ghc-mod +Version: 0.4.4 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. +Category: Development +Cabal-Version: >= 1.6 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el +Executable ghc-mod + Main-Is: GHCMod.hs + Other-Modules: List Browse Check Lang Lint Types + if impl(ghc >= 6.12) + GHC-Options: -Wall -fno-warn-unused-do-bind + else + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5, ghc, ghc-paths, + process, directory, filepath, hlint >= 1.7.1 +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-0.5.1.cabal b/hackage-metadata/ghc-mod-0.5.1.cabal new file mode 100644 index 0000000..f6723eb --- /dev/null +++ b/hackage-metadata/ghc-mod-0.5.1.cabal @@ -0,0 +1,35 @@ +Name: ghc-mod +Version: 0.5.1 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. +Category: Development +Cabal-Version: >= 1.6 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el +Executable ghc-mod + Main-Is: GHCMod.hs + Other-Modules: List Browse Check Info Lang Lint Types + if impl(ghc >= 6.12) + GHC-Options: -Wall -fno-warn-unused-do-bind + else + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5, ghc, ghc-paths, + process, directory, filepath, hlint >= 1.7.1 +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-0.5.2.cabal b/hackage-metadata/ghc-mod-0.5.2.cabal new file mode 100644 index 0000000..fc7a2e6 --- /dev/null +++ b/hackage-metadata/ghc-mod-0.5.2.cabal @@ -0,0 +1,36 @@ +Name: ghc-mod +Version: 0.5.2 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. +Category: Development +Cabal-Version: >= 1.6 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el +Executable ghc-mod + Main-Is: GHCMod.hs + Other-Modules: List Browse Check Info Lang Lint Types + if impl(ghc >= 6.12) + GHC-Options: -Wall -fno-warn-unused-do-bind + else + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5, ghc, ghc-paths, + process, directory, filepath, old-time, + hlint >= 1.7.1 +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-0.5.3.cabal b/hackage-metadata/ghc-mod-0.5.3.cabal new file mode 100644 index 0000000..8961746 --- /dev/null +++ b/hackage-metadata/ghc-mod-0.5.3.cabal @@ -0,0 +1,36 @@ +Name: ghc-mod +Version: 0.5.3 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. +Category: Development +Cabal-Version: >= 1.6 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el +Executable ghc-mod + Main-Is: GHCMod.hs + Other-Modules: List Browse Check Info Lang Lint Types + if impl(ghc >= 6.12) + GHC-Options: -Wall -fno-warn-unused-do-bind + else + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5, ghc, ghc-paths, + process, directory, filepath, old-time, + hlint >= 1.7.1 +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-0.5.4.cabal b/hackage-metadata/ghc-mod-0.5.4.cabal new file mode 100644 index 0000000..1880648 --- /dev/null +++ b/hackage-metadata/ghc-mod-0.5.4.cabal @@ -0,0 +1,36 @@ +Name: ghc-mod +Version: 0.5.4 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. +Category: Development +Cabal-Version: >= 1.6 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el +Executable ghc-mod + Main-Is: GHCMod.hs + Other-Modules: List Browse Check Info Lang Lint Types + if impl(ghc >= 6.12) + GHC-Options: -Wall -fno-warn-unused-do-bind + else + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5, ghc, ghc-paths, + process, directory, filepath, old-time, + hlint >= 1.7.1 +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-0.5.5.cabal b/hackage-metadata/ghc-mod-0.5.5.cabal new file mode 100644 index 0000000..d70176b --- /dev/null +++ b/hackage-metadata/ghc-mod-0.5.5.cabal @@ -0,0 +1,36 @@ +Name: ghc-mod +Version: 0.5.5 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. +Category: Development +Cabal-Version: >= 1.6 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el +Executable ghc-mod + Main-Is: GHCMod.hs + Other-Modules: List Browse Check Info Lang Lint Types + if impl(ghc >= 6.12) + GHC-Options: -Wall -fno-warn-unused-do-bind + else + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5, ghc, ghc-paths, + process, directory, filepath, old-time, + hlint >= 1.7.1 +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-0.6.0.cabal b/hackage-metadata/ghc-mod-0.6.0.cabal new file mode 100644 index 0000000..dc281e5 --- /dev/null +++ b/hackage-metadata/ghc-mod-0.6.0.cabal @@ -0,0 +1,37 @@ +Name: ghc-mod +Version: 0.6.0 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. +Category: Development +Cabal-Version: >= 1.6 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el +Executable ghc-mod + Main-Is: GHCMod.hs + Other-Modules: List Browse Cabal Check Info Lang Lint Types + if impl(ghc >= 6.12) + GHC-Options: -Wall -fno-warn-unused-do-bind + else + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5, ghc, ghc-paths, transformers, + process, directory, filepath, old-time, + hlint >= 1.7.1, + attoparsec, enumerator, attoparsec-enumerator +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-0.6.1.cabal b/hackage-metadata/ghc-mod-0.6.1.cabal new file mode 100644 index 0000000..3dcb94e --- /dev/null +++ b/hackage-metadata/ghc-mod-0.6.1.cabal @@ -0,0 +1,37 @@ +Name: ghc-mod +Version: 0.6.1 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. +Category: Development +Cabal-Version: >= 1.6 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el +Executable ghc-mod + Main-Is: GHCMod.hs + Other-Modules: List Browse Cabal Check Info Lang Lint Types ErrMsg + if impl(ghc >= 6.12) + GHC-Options: -Wall -fno-warn-unused-do-bind + else + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5, ghc, ghc-paths, transformers, + process, directory, filepath, old-time, + hlint >= 1.7.1, + attoparsec, enumerator, attoparsec-enumerator +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-0.6.2.cabal b/hackage-metadata/ghc-mod-0.6.2.cabal new file mode 100644 index 0000000..0f38f53 --- /dev/null +++ b/hackage-metadata/ghc-mod-0.6.2.cabal @@ -0,0 +1,37 @@ +Name: ghc-mod +Version: 0.6.2 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. +Category: Development +Cabal-Version: >= 1.6 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el +Executable ghc-mod + Main-Is: GHCMod.hs + Other-Modules: List Browse Cabal Check Info Lang Lint Types ErrMsg + if impl(ghc >= 6.12) + GHC-Options: -Wall -fno-warn-unused-do-bind + else + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5, ghc, ghc-paths, transformers, + process, directory, filepath, old-time, + hlint >= 1.7.1, + attoparsec, enumerator, attoparsec-enumerator +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-1.0.0.cabal b/hackage-metadata/ghc-mod-1.0.0.cabal new file mode 100644 index 0000000..736c738 --- /dev/null +++ b/hackage-metadata/ghc-mod-1.0.0.cabal @@ -0,0 +1,37 @@ +Name: ghc-mod +Version: 1.0.0 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. +Category: Development +Cabal-Version: >= 1.6 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el +Executable ghc-mod + Main-Is: GHCMod.hs + Other-Modules: List Browse Cabal CabalDev Check Info Lang Lint Types ErrMsg + if impl(ghc >= 6.12) + GHC-Options: -Wall -fno-warn-unused-do-bind + else + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5, ghc, ghc-paths, transformers, + process, directory, filepath, old-time, unix, + hlint >= 1.7.1, filemanip, + attoparsec, enumerator, attoparsec-enumerator +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-1.0.1.cabal b/hackage-metadata/ghc-mod-1.0.1.cabal new file mode 100644 index 0000000..395d5a9 --- /dev/null +++ b/hackage-metadata/ghc-mod-1.0.1.cabal @@ -0,0 +1,37 @@ +Name: ghc-mod +Version: 1.0.1 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. +Category: Development +Cabal-Version: >= 1.6 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el +Executable ghc-mod + Main-Is: GHCMod.hs + Other-Modules: List Browse Cabal CabalDev Check Info Lang Lint Types ErrMsg + if impl(ghc >= 6.12) + GHC-Options: -Wall -fno-warn-unused-do-bind + else + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5, ghc, ghc-paths, transformers, + process, directory, filepath, old-time, unix, + hlint >= 1.7.1, filemanip, + attoparsec, enumerator, attoparsec-enumerator +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-1.0.2.cabal b/hackage-metadata/ghc-mod-1.0.2.cabal new file mode 100644 index 0000000..1ddb6ad --- /dev/null +++ b/hackage-metadata/ghc-mod-1.0.2.cabal @@ -0,0 +1,37 @@ +Name: ghc-mod +Version: 1.0.2 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. +Category: Development +Cabal-Version: >= 1.6 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el +Executable ghc-mod + Main-Is: GHCMod.hs + Other-Modules: List Browse Cabal CabalDev Check Info Lang Lint Types ErrMsg + if impl(ghc >= 6.12) + GHC-Options: -Wall -fno-warn-unused-do-bind + else + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5, ghc, ghc-paths, transformers, + process, directory, filepath, old-time, + hlint >= 1.7.1, regex-posix, + attoparsec, enumerator, attoparsec-enumerator +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-1.0.3.cabal b/hackage-metadata/ghc-mod-1.0.3.cabal new file mode 100644 index 0000000..e230f61 --- /dev/null +++ b/hackage-metadata/ghc-mod-1.0.3.cabal @@ -0,0 +1,37 @@ +Name: ghc-mod +Version: 1.0.3 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. +Category: Development +Cabal-Version: >= 1.6 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el +Executable ghc-mod + Main-Is: GHCMod.hs + Other-Modules: List Browse Cabal CabalDev Check Info Lang Lint Types ErrMsg + if impl(ghc >= 6.12) + GHC-Options: -Wall -fno-warn-unused-do-bind + else + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5, ghc, ghc-paths, transformers, + process, directory, filepath, old-time, + hlint >= 1.7.1, regex-posix, + attoparsec >= 0.10 , enumerator, attoparsec-enumerator +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-1.0.4.cabal b/hackage-metadata/ghc-mod-1.0.4.cabal new file mode 100644 index 0000000..fe0d0a2 --- /dev/null +++ b/hackage-metadata/ghc-mod-1.0.4.cabal @@ -0,0 +1,37 @@ +Name: ghc-mod +Version: 1.0.4 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. +Category: Development +Cabal-Version: >= 1.6 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el +Executable ghc-mod + Main-Is: GHCMod.hs + Other-Modules: List Browse Cabal CabalDev Check Info Lang Lint Types ErrMsg + if impl(ghc >= 6.12) + GHC-Options: -Wall -fno-warn-unused-do-bind + else + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5, ghc, ghc-paths, transformers, + process, directory, filepath, old-time, + hlint >= 1.7.1, regex-posix, + attoparsec >= 0.10 , enumerator, attoparsec-enumerator +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-1.0.5.cabal b/hackage-metadata/ghc-mod-1.0.5.cabal new file mode 100644 index 0000000..23aec0b --- /dev/null +++ b/hackage-metadata/ghc-mod-1.0.5.cabal @@ -0,0 +1,37 @@ +Name: ghc-mod +Version: 1.0.5 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. +Category: Development +Cabal-Version: >= 1.6 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el ghc-ins-mod.el +Executable ghc-mod + Main-Is: GHCMod.hs + Other-Modules: List Browse Cabal CabalDev Check Info Lang Lint Types ErrMsg Paths_ghc_mod + if impl(ghc >= 6.12) + GHC-Options: -Wall -fno-warn-unused-do-bind + else + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5, ghc, ghc-paths, transformers, + process, directory, filepath, old-time, + hlint >= 1.7.1, regex-posix, + attoparsec >= 0.10 , enumerator, attoparsec-enumerator +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-1.0.6.cabal b/hackage-metadata/ghc-mod-1.0.6.cabal new file mode 100644 index 0000000..637e966 --- /dev/null +++ b/hackage-metadata/ghc-mod-1.0.6.cabal @@ -0,0 +1,37 @@ +Name: ghc-mod +Version: 1.0.6 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. +Category: Development +Cabal-Version: >= 1.6 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el ghc-ins-mod.el +Executable ghc-mod + Main-Is: GHCMod.hs + Other-Modules: List Browse Cabal CabalDev Check Info Lang Lint Types ErrMsg Paths_ghc_mod + if impl(ghc >= 6.12) + GHC-Options: -Wall -fno-warn-unused-do-bind + else + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5, ghc, ghc-paths, transformers, + process, directory, filepath, old-time, + hlint >= 1.7.1, regex-posix, + attoparsec >= 0.10 , enumerator, attoparsec-enumerator +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-1.0.7.cabal b/hackage-metadata/ghc-mod-1.0.7.cabal new file mode 100644 index 0000000..7d79a5f --- /dev/null +++ b/hackage-metadata/ghc-mod-1.0.7.cabal @@ -0,0 +1,37 @@ +Name: ghc-mod +Version: 1.0.7 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. +Category: Development +Cabal-Version: >= 1.6 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el ghc-ins-mod.el +Executable ghc-mod + Main-Is: GHCMod.hs + Other-Modules: List Browse Cabal CabalDev Check Info Lang Flag Lint Types ErrMsg Paths_ghc_mod + if impl(ghc >= 6.12) + GHC-Options: -Wall -fno-warn-unused-do-bind + else + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5, ghc, ghc-paths, transformers, + process, directory, filepath, old-time, + hlint >= 1.7.1, regex-posix, + attoparsec >= 0.10 , enumerator, attoparsec-enumerator +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-1.0.8.cabal b/hackage-metadata/ghc-mod-1.0.8.cabal new file mode 100644 index 0000000..04966b8 --- /dev/null +++ b/hackage-metadata/ghc-mod-1.0.8.cabal @@ -0,0 +1,37 @@ +Name: ghc-mod +Version: 1.0.8 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. +Category: Development +Cabal-Version: >= 1.6 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el ghc-ins-mod.el +Executable ghc-mod + Main-Is: GHCMod.hs + Other-Modules: List Browse Cabal CabalDev Check Info Lang Flag Lint Types ErrMsg Paths_ghc_mod + if impl(ghc >= 6.12) + GHC-Options: -Wall -fno-warn-unused-do-bind + else + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5, ghc, ghc-paths, transformers, + process, directory, filepath, old-time, + hlint >= 1.7.1, regex-posix, + attoparsec >= 0.10 , enumerator, attoparsec-enumerator +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-1.10.0.cabal b/hackage-metadata/ghc-mod-1.10.0.cabal new file mode 100644 index 0000000..f125a06 --- /dev/null +++ b/hackage-metadata/ghc-mod-1.10.0.cabal @@ -0,0 +1,36 @@ +Name: ghc-mod +Version: 1.10.0 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. +Category: Development +Cabal-Version: >= 1.6 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el ghc-ins-mod.el +Executable ghc-mod + Main-Is: GHCMod.hs + Other-Modules: List Browse Cabal CabalDev Check Info Lang Flag Lint Types ErrMsg Paths_ghc_mod + if impl(ghc >= 6.12) + GHC-Options: -Wall -fno-warn-unused-do-bind + else + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5, ghc, ghc-paths, transformers, + process, directory, filepath, old-time, + hlint >= 1.7.1, regex-posix, Cabal +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-1.10.1.cabal b/hackage-metadata/ghc-mod-1.10.1.cabal new file mode 100644 index 0000000..a7ad773 --- /dev/null +++ b/hackage-metadata/ghc-mod-1.10.1.cabal @@ -0,0 +1,36 @@ +Name: ghc-mod +Version: 1.10.1 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. +Category: Development +Cabal-Version: >= 1.6 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el ghc-ins-mod.el +Executable ghc-mod + Main-Is: GHCMod.hs + Other-Modules: List Browse Cabal CabalDev Check Info Lang Flag Lint Types ErrMsg Paths_ghc_mod + if impl(ghc >= 6.12) + GHC-Options: -Wall -fno-warn-unused-do-bind + else + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5, ghc, ghc-paths, transformers, + process, directory, filepath, old-time, + hlint >= 1.7.1, regex-posix, Cabal +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-1.10.10.cabal b/hackage-metadata/ghc-mod-1.10.10.cabal new file mode 100644 index 0000000..25f58d7 --- /dev/null +++ b/hackage-metadata/ghc-mod-1.10.10.cabal @@ -0,0 +1,64 @@ +Name: ghc-mod +Version: 1.10.10 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs/Vim +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. + To use "ghc-mod" on Vim, + see +Category: Development +Cabal-Version: >= 1.6 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el ghc-ins-mod.el +Executable ghc-mod + Main-Is: GHCMod.hs + Other-Modules: Browse + Cabal + CabalDev + Check + ErrMsg + Flag + GHCApi + GHCChoice + Gap + Info + Lang + Lint + List + Paths_ghc_mod + Types + if impl(ghc >= 6.12) + GHC-Options: -Wall -fno-warn-unused-do-bind + else + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5 + , Cabal + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , regex-posix + , syb + , transformers + +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-1.10.11.cabal b/hackage-metadata/ghc-mod-1.10.11.cabal new file mode 100644 index 0000000..0a032b9 --- /dev/null +++ b/hackage-metadata/ghc-mod-1.10.11.cabal @@ -0,0 +1,66 @@ +Name: ghc-mod +Version: 1.10.11 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs/Vim +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. + To use "ghc-mod" on Vim, + see or + +Category: Development +Cabal-Version: >= 1.6 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el + ghc-ins-mod.el ghc-indent.el +Executable ghc-mod + Main-Is: GHCMod.hs + Other-Modules: Browse + Cabal + CabalDev + Check + ErrMsg + Flag + GHCApi + GHCChoice + Gap + Info + Lang + Lint + List + Paths_ghc_mod + Types + if impl(ghc >= 6.12) + GHC-Options: -Wall -fno-warn-unused-do-bind + else + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5 + , Cabal + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , regex-posix + , syb + , transformers + +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-1.10.12.cabal b/hackage-metadata/ghc-mod-1.10.12.cabal new file mode 100644 index 0000000..e5286d4 --- /dev/null +++ b/hackage-metadata/ghc-mod-1.10.12.cabal @@ -0,0 +1,66 @@ +Name: ghc-mod +Version: 1.10.12 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs/Vim +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. + To use "ghc-mod" on Vim, + see or + +Category: Development +Cabal-Version: >= 1.6 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el + ghc-ins-mod.el ghc-indent.el +Executable ghc-mod + Main-Is: GHCMod.hs + Other-Modules: Browse + Cabal + CabalDev + Check + ErrMsg + Flag + GHCApi + GHCChoice + Gap + Info + Lang + Lint + List + Paths_ghc_mod + Types + if impl(ghc >= 6.12) + GHC-Options: -Wall -fno-warn-unused-do-bind + else + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5 + , Cabal + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , regex-posix + , syb + , transformers + +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-1.10.13.cabal b/hackage-metadata/ghc-mod-1.10.13.cabal new file mode 100644 index 0000000..526606d --- /dev/null +++ b/hackage-metadata/ghc-mod-1.10.13.cabal @@ -0,0 +1,66 @@ +Name: ghc-mod +Version: 1.10.13 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs/Vim +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. + To use "ghc-mod" on Vim, + see or + +Category: Development +Cabal-Version: >= 1.6 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el + ghc-ins-mod.el ghc-indent.el +Executable ghc-mod + Main-Is: GHCMod.hs + Other-Modules: Browse + Cabal + CabalDev + Check + ErrMsg + Flag + GHCApi + GHCChoice + Gap + Info + Lang + Lint + List + Paths_ghc_mod + Types + if impl(ghc >= 6.12) + GHC-Options: -Wall -fno-warn-unused-do-bind + else + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5 + , Cabal + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , regex-posix + , syb + , transformers + +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-1.10.14.cabal b/hackage-metadata/ghc-mod-1.10.14.cabal new file mode 100644 index 0000000..e3cf172 --- /dev/null +++ b/hackage-metadata/ghc-mod-1.10.14.cabal @@ -0,0 +1,66 @@ +Name: ghc-mod +Version: 1.10.14 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs/Vim +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. + To use "ghc-mod" on Vim, + see or + +Category: Development +Cabal-Version: >= 1.6 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el + ghc-ins-mod.el ghc-indent.el +Executable ghc-mod + Main-Is: GHCMod.hs + Other-Modules: Browse + Cabal + CabalDev + Check + ErrMsg + Flag + GHCApi + GHCChoice + Gap + Info + Lang + Lint + List + Paths_ghc_mod + Types + if impl(ghc >= 6.12) + GHC-Options: -Wall -fno-warn-unused-do-bind + else + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5 + , Cabal + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , regex-posix + , syb + , transformers + +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-1.10.15.cabal b/hackage-metadata/ghc-mod-1.10.15.cabal new file mode 100644 index 0000000..21ccc52 --- /dev/null +++ b/hackage-metadata/ghc-mod-1.10.15.cabal @@ -0,0 +1,66 @@ +Name: ghc-mod +Version: 1.10.15 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs/Vim +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. + To use "ghc-mod" on Vim, + see or + +Category: Development +Cabal-Version: >= 1.6 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el + ghc-ins-mod.el ghc-indent.el +Executable ghc-mod + Main-Is: GHCMod.hs + Other-Modules: Browse + Cabal + CabalDev + Check + ErrMsg + Flag + GHCApi + GHCChoice + Gap + Info + Lang + Lint + List + Paths_ghc_mod + Types + if impl(ghc >= 6.12) + GHC-Options: -Wall -fno-warn-unused-do-bind + else + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5 + , Cabal + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , regex-posix + , syb + , transformers + +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-1.10.16.cabal b/hackage-metadata/ghc-mod-1.10.16.cabal new file mode 100644 index 0000000..447a5a6 --- /dev/null +++ b/hackage-metadata/ghc-mod-1.10.16.cabal @@ -0,0 +1,66 @@ +Name: ghc-mod +Version: 1.10.16 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs/Vim +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. + To use "ghc-mod" on Vim, + see or + +Category: Development +Cabal-Version: >= 1.6 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el + ghc-ins-mod.el ghc-indent.el +Executable ghc-mod + Main-Is: GHCMod.hs + Other-Modules: Browse + Cabal + CabalDev + Check + ErrMsg + Flag + GHCApi + GHCChoice + Gap + Info + Lang + Lint + List + Paths_ghc_mod + Types + if impl(ghc >= 6.12) + GHC-Options: -Wall -fno-warn-unused-do-bind + else + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5 + , Cabal + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , regex-posix + , syb + , transformers + +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-1.10.17.cabal b/hackage-metadata/ghc-mod-1.10.17.cabal new file mode 100644 index 0000000..cf75d1c --- /dev/null +++ b/hackage-metadata/ghc-mod-1.10.17.cabal @@ -0,0 +1,66 @@ +Name: ghc-mod +Version: 1.10.17 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs/Vim +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. + To use "ghc-mod" on Vim, + see or + +Category: Development +Cabal-Version: >= 1.6 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el + ghc-ins-mod.el ghc-indent.el +Executable ghc-mod + Main-Is: GHCMod.hs + Other-Modules: Browse + Cabal + CabalDev + Check + ErrMsg + Flag + GHCApi + GHCChoice + Gap + Info + Lang + Lint + List + Paths_ghc_mod + Types + if impl(ghc >= 6.12) + GHC-Options: -Wall -fno-warn-unused-do-bind + else + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5 + , Cabal + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , regex-posix + , syb + , transformers + +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-1.10.18.cabal b/hackage-metadata/ghc-mod-1.10.18.cabal new file mode 100644 index 0000000..eba1653 --- /dev/null +++ b/hackage-metadata/ghc-mod-1.10.18.cabal @@ -0,0 +1,66 @@ +Name: ghc-mod +Version: 1.10.18 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs/Vim +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. + To use "ghc-mod" on Vim, + see or + +Category: Development +Cabal-Version: >= 1.6 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el + ghc-ins-mod.el ghc-indent.el +Executable ghc-mod + Main-Is: GHCMod.hs + Other-Modules: Browse + Cabal + CabalDev + Check + ErrMsg + Flag + GHCApi + GHCChoice + Gap + Info + Lang + Lint + List + Paths_ghc_mod + Types + if impl(ghc >= 6.12) + GHC-Options: -Wall -fno-warn-unused-do-bind + else + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5 + , Cabal + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , regex-posix + , syb + , transformers + +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-1.10.2.cabal b/hackage-metadata/ghc-mod-1.10.2.cabal new file mode 100644 index 0000000..a4f4345 --- /dev/null +++ b/hackage-metadata/ghc-mod-1.10.2.cabal @@ -0,0 +1,36 @@ +Name: ghc-mod +Version: 1.10.2 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. +Category: Development +Cabal-Version: >= 1.6 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el ghc-ins-mod.el +Executable ghc-mod + Main-Is: GHCMod.hs + Other-Modules: List Browse Cabal CabalDev Check Info Lang Flag Lint Types ErrMsg Paths_ghc_mod + if impl(ghc >= 6.12) + GHC-Options: -Wall -fno-warn-unused-do-bind + else + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5, ghc, ghc-paths, transformers, + process, directory, filepath, old-time, + hlint >= 1.7.1, regex-posix, Cabal +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-1.10.3.cabal b/hackage-metadata/ghc-mod-1.10.3.cabal new file mode 100644 index 0000000..37dec0b --- /dev/null +++ b/hackage-metadata/ghc-mod-1.10.3.cabal @@ -0,0 +1,36 @@ +Name: ghc-mod +Version: 1.10.3 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. +Category: Development +Cabal-Version: >= 1.6 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el ghc-ins-mod.el +Executable ghc-mod + Main-Is: GHCMod.hs + Other-Modules: List Browse Cabal CabalDev Check Info Lang Flag Lint Types ErrMsg Paths_ghc_mod + if impl(ghc >= 6.12) + GHC-Options: -Wall -fno-warn-unused-do-bind + else + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5, ghc, ghc-paths, transformers, syb, + process, directory, filepath, old-time, + hlint >= 1.7.1, regex-posix, Cabal +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-1.10.4.cabal b/hackage-metadata/ghc-mod-1.10.4.cabal new file mode 100644 index 0000000..f97f309 --- /dev/null +++ b/hackage-metadata/ghc-mod-1.10.4.cabal @@ -0,0 +1,36 @@ +Name: ghc-mod +Version: 1.10.4 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. +Category: Development +Cabal-Version: >= 1.6 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el ghc-ins-mod.el +Executable ghc-mod + Main-Is: GHCMod.hs + Other-Modules: List Browse Cabal CabalDev Check Info Lang Flag Lint Types ErrMsg Paths_ghc_mod + if impl(ghc >= 6.12) + GHC-Options: -Wall -fno-warn-unused-do-bind + else + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5, ghc, ghc-paths, transformers, syb, + process, directory, filepath, old-time, + hlint >= 1.7.1, regex-posix, Cabal +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-1.10.5.cabal b/hackage-metadata/ghc-mod-1.10.5.cabal new file mode 100644 index 0000000..223834f --- /dev/null +++ b/hackage-metadata/ghc-mod-1.10.5.cabal @@ -0,0 +1,36 @@ +Name: ghc-mod +Version: 1.10.5 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. +Category: Development +Cabal-Version: >= 1.6 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el ghc-ins-mod.el +Executable ghc-mod + Main-Is: GHCMod.hs + Other-Modules: List Browse Cabal CabalDev Check Info Lang Flag Lint Types ErrMsg Paths_ghc_mod + if impl(ghc >= 6.12) + GHC-Options: -Wall -fno-warn-unused-do-bind + else + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5, ghc, ghc-paths, transformers, syb, + process, directory, filepath, old-time, + hlint >= 1.7.1, regex-posix, Cabal +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-1.10.6.cabal b/hackage-metadata/ghc-mod-1.10.6.cabal new file mode 100644 index 0000000..a68145f --- /dev/null +++ b/hackage-metadata/ghc-mod-1.10.6.cabal @@ -0,0 +1,62 @@ +Name: ghc-mod +Version: 1.10.6 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. +Category: Development +Cabal-Version: >= 1.6 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el ghc-ins-mod.el +Executable ghc-mod + Main-Is: GHCMod.hs + Other-Modules: AA + Browse + Cabal + CabalDev + Check + ErrMsg + Flag + GHCApi + Gap + Info + Lang + Lint + List + Paths_ghc_mod + Types + if impl(ghc >= 6.12) + GHC-Options: -Wall -fno-warn-unused-do-bind + else + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5 + , Cabal + , alternative-io + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , old-time + , process + , regex-posix + , syb + , transformers + +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-1.10.7.cabal b/hackage-metadata/ghc-mod-1.10.7.cabal new file mode 100644 index 0000000..34c4dee --- /dev/null +++ b/hackage-metadata/ghc-mod-1.10.7.cabal @@ -0,0 +1,64 @@ +Name: ghc-mod +Version: 1.10.7 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs/Vim +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. + To use "ghc-mod" on Vim, + see +Category: Development +Cabal-Version: >= 1.6 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el ghc-ins-mod.el +Executable ghc-mod + Main-Is: GHCMod.hs + Other-Modules: Browse + Cabal + CabalDev + Check + ErrMsg + Flag + GHCApi + GHCChoice + Gap + Info + Lang + Lint + List + Paths_ghc_mod + Types + if impl(ghc >= 6.12) + GHC-Options: -Wall -fno-warn-unused-do-bind + else + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5 + , Cabal + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , regex-posix + , syb + , transformers + +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-1.10.8.cabal b/hackage-metadata/ghc-mod-1.10.8.cabal new file mode 100644 index 0000000..e8a3914 --- /dev/null +++ b/hackage-metadata/ghc-mod-1.10.8.cabal @@ -0,0 +1,64 @@ +Name: ghc-mod +Version: 1.10.8 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs/Vim +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. + To use "ghc-mod" on Vim, + see +Category: Development +Cabal-Version: >= 1.6 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el ghc-ins-mod.el +Executable ghc-mod + Main-Is: GHCMod.hs + Other-Modules: Browse + Cabal + CabalDev + Check + ErrMsg + Flag + GHCApi + GHCChoice + Gap + Info + Lang + Lint + List + Paths_ghc_mod + Types + if impl(ghc >= 6.12) + GHC-Options: -Wall -fno-warn-unused-do-bind + else + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5 + , Cabal + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , regex-posix + , syb + , transformers + +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-1.10.9.cabal b/hackage-metadata/ghc-mod-1.10.9.cabal new file mode 100644 index 0000000..e0b8743 --- /dev/null +++ b/hackage-metadata/ghc-mod-1.10.9.cabal @@ -0,0 +1,64 @@ +Name: ghc-mod +Version: 1.10.9 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs/Vim +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. + To use "ghc-mod" on Vim, + see +Category: Development +Cabal-Version: >= 1.6 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el ghc-ins-mod.el +Executable ghc-mod + Main-Is: GHCMod.hs + Other-Modules: Browse + Cabal + CabalDev + Check + ErrMsg + Flag + GHCApi + GHCChoice + Gap + Info + Lang + Lint + List + Paths_ghc_mod + Types + if impl(ghc >= 6.12) + GHC-Options: -Wall -fno-warn-unused-do-bind + else + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5 + , Cabal + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , regex-posix + , syb + , transformers + +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-1.11.0.cabal b/hackage-metadata/ghc-mod-1.11.0.cabal new file mode 100644 index 0000000..22114a8 --- /dev/null +++ b/hackage-metadata/ghc-mod-1.11.0.cabal @@ -0,0 +1,66 @@ +Name: ghc-mod +Version: 1.11.0 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs/Vim +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. + To use "ghc-mod" on Vim, + see or + +Category: Development +Cabal-Version: >= 1.6 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el + ghc-ins-mod.el ghc-indent.el +Executable ghc-mod + Main-Is: GHCMod.hs + Other-Modules: Browse + Cabal + CabalDev + Check + ErrMsg + Flag + GHCApi + GHCChoice + Gap + Info + Lang + Lint + List + Paths_ghc_mod + Types + if impl(ghc >= 6.12) + GHC-Options: -Wall -fno-warn-unused-do-bind + else + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5 + , Cabal + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , regex-posix + , syb + , transformers + +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-1.11.1.cabal b/hackage-metadata/ghc-mod-1.11.1.cabal new file mode 100644 index 0000000..5d33566 --- /dev/null +++ b/hackage-metadata/ghc-mod-1.11.1.cabal @@ -0,0 +1,65 @@ +Name: ghc-mod +Version: 1.11.1 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs/Vim +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. + To use "ghc-mod" on Vim, + see or + +Category: Development +Cabal-Version: >= 1.6 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el + ghc-ins-mod.el ghc-indent.el +Executable ghc-mod + Main-Is: GHCMod.hs + Other-Modules: Browse + Cabal + CabalDev + Check + ErrMsg + Flag + GHCApi + GHCChoice + Gap + Info + Lang + Lint + List + Paths_ghc_mod + Types + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5 + , Cabal + , convertible + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , regex-posix + , syb + , time + , transformers + +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-1.11.2.cabal b/hackage-metadata/ghc-mod-1.11.2.cabal new file mode 100644 index 0000000..23b5804 --- /dev/null +++ b/hackage-metadata/ghc-mod-1.11.2.cabal @@ -0,0 +1,67 @@ +Name: ghc-mod +Version: 1.11.2 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs/Vim +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. + To use "ghc-mod" on Vim, + see or + +Category: Development +Cabal-Version: >= 1.6 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el + ghc-ins-mod.el ghc-indent.el +Executable ghc-mod + Main-Is: GHCMod.hs + Other-Modules: Browse + CabalApi + Cabal + CabalDev + Check + ErrMsg + Flag + GHCApi + GHCChoice + Gap + Info + Lang + Lint + List + Paths_ghc_mod + Types + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5 + , Cabal >= 1.10 + , containers + , convertible + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , regex-posix + , syb + , time + , transformers + +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-1.11.3.cabal b/hackage-metadata/ghc-mod-1.11.3.cabal new file mode 100644 index 0000000..76c4194 --- /dev/null +++ b/hackage-metadata/ghc-mod-1.11.3.cabal @@ -0,0 +1,67 @@ +Name: ghc-mod +Version: 1.11.3 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs/Vim +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. + To use "ghc-mod" on Vim, + see or + +Category: Development +Cabal-Version: >= 1.6 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el + ghc-ins-mod.el ghc-indent.el +Executable ghc-mod + Main-Is: GHCMod.hs + Other-Modules: Browse + CabalApi + Cabal + CabalDev + Check + ErrMsg + Flag + GHCApi + GHCChoice + Gap + Info + Lang + Lint + List + Paths_ghc_mod + Types + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5 + , Cabal >= 1.10 + , containers + , convertible + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , regex-posix + , syb + , time + , transformers + +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-1.11.4.cabal b/hackage-metadata/ghc-mod-1.11.4.cabal new file mode 100644 index 0000000..f5b5e8d --- /dev/null +++ b/hackage-metadata/ghc-mod-1.11.4.cabal @@ -0,0 +1,108 @@ +Name: ghc-mod +Version: 1.11.4 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs/Vim +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. + To use "ghc-mod" on Vim, + see or + +Category: Development +Cabal-Version: >= 1.10 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el + ghc-ins-mod.el ghc-indent.el +Extra-Source-Files: test/data/*.cabal + test/data/*.hs + test/data/ghc-mod-check/*.hs + test/data/ghc-mod-check/*.cabal + test/data/ghc-mod-check/Data/*.hs + test/data/subdir1/subdir2/dummy +Executable ghc-mod + Default-Language: Haskell2010 + Main-Is: GHCMod.hs + Other-Modules: Browse + CabalApi + Cabal + CabalDev + Check + ErrMsg + Flag + GHCApi + GHCChoice + Gap + Info + Lang + Lint + List + Paths_ghc_mod + Types + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5 + , Cabal >= 1.10 + , containers + , convertible + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , regex-posix + , syb + , time + , transformers + +Test-Suite spec + Default-Language: Haskell2010 + Main-Is: Spec.hs + Hs-Source-Dirs: test, . + Type: exitcode-stdio-1.0 + Other-Modules: Expectation + BrowseSpec + CabalSpec + CabalApiSpec + CheckSpec + FlagSpec + InfoSpec + LangSpec + LintSpec + ListSpec + Build-Depends: base >= 4.0 && < 5 + , Cabal >= 1.10 + , containers + , convertible + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , regex-posix + , syb + , time + , transformers + , hspec + +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-1.11.5.cabal b/hackage-metadata/ghc-mod-1.11.5.cabal new file mode 100644 index 0000000..e1a9cdc --- /dev/null +++ b/hackage-metadata/ghc-mod-1.11.5.cabal @@ -0,0 +1,109 @@ +Name: ghc-mod +Version: 1.11.5 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs/Vim +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. + To use "ghc-mod" on Vim, + see or + +Category: Development +Cabal-Version: >= 1.10 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el + ghc-ins-mod.el ghc-indent.el +Extra-Source-Files: ChangeLog + test/data/*.cabal + test/data/*.hs + test/data/ghc-mod-check/*.hs + test/data/ghc-mod-check/*.cabal + test/data/ghc-mod-check/Data/*.hs + test/data/subdir1/subdir2/dummy +Executable ghc-mod + Default-Language: Haskell2010 + Main-Is: GHCMod.hs + Other-Modules: Browse + CabalApi + Cabal + CabalDev + Check + ErrMsg + Flag + GHCApi + GHCChoice + Gap + Info + Lang + Lint + List + Paths_ghc_mod + Types + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5 + , Cabal >= 1.10 + , containers + , convertible + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , regex-posix + , syb + , time + , transformers + +Test-Suite spec + Default-Language: Haskell2010 + Main-Is: Spec.hs + Hs-Source-Dirs: test, . + Type: exitcode-stdio-1.0 + Other-Modules: Expectation + BrowseSpec + CabalSpec + CabalApiSpec + CheckSpec + FlagSpec + InfoSpec + LangSpec + LintSpec + ListSpec + Build-Depends: base >= 4.0 && < 5 + , Cabal >= 1.10 + , containers + , convertible + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , regex-posix + , syb + , time + , transformers + , hspec + +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-1.12.0.cabal b/hackage-metadata/ghc-mod-1.12.0.cabal new file mode 100644 index 0000000..6d3d0e4 --- /dev/null +++ b/hackage-metadata/ghc-mod-1.12.0.cabal @@ -0,0 +1,107 @@ +Name: ghc-mod +Version: 1.12.0 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs/Vim +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. + To use "ghc-mod" on Vim, + see or + +Category: Development +Cabal-Version: >= 1.10 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el + ghc-ins-mod.el ghc-indent.el +Extra-Source-Files: ChangeLog + test/data/*.cabal + test/data/*.hs + test/data/cabal-dev/packages-7.6.2.conf + test/data/ghc-mod-check/*.hs + test/data/ghc-mod-check/*.cabal + test/data/ghc-mod-check/Data/*.hs + test/data/subdir1/subdir2/dummy +Executable ghc-mod + Default-Language: Haskell2010 + Main-Is: GHCMod.hs + Other-Modules: Browse + CabalApi + Check + Cradle + Debug + ErrMsg + Flag + GHCApi + GHCChoice + Gap + Info + Lang + Lint + List + Paths_ghc_mod + Types + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5 + , Cabal >= 1.10 + , containers + , convertible + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + +Test-Suite spec + Default-Language: Haskell2010 + Main-Is: Spec.hs + Hs-Source-Dirs: test, . + Type: exitcode-stdio-1.0 + Other-Modules: Expectation + BrowseSpec + CabalApiSpec + CheckSpec + FlagSpec + InfoSpec + LangSpec + LintSpec + ListSpec + Build-Depends: base >= 4.0 && < 5 + , Cabal >= 1.10 + , containers + , convertible + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + , hspec + +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-1.12.1.cabal b/hackage-metadata/ghc-mod-1.12.1.cabal new file mode 100644 index 0000000..6564432 --- /dev/null +++ b/hackage-metadata/ghc-mod-1.12.1.cabal @@ -0,0 +1,107 @@ +Name: ghc-mod +Version: 1.12.1 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs/Vim +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. + To use "ghc-mod" on Vim, + see or + +Category: Development +Cabal-Version: >= 1.10 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el + ghc-ins-mod.el ghc-indent.el +Extra-Source-Files: ChangeLog + test/data/*.cabal + test/data/*.hs + test/data/cabal-dev/packages-7.6.2.conf/dummy + test/data/ghc-mod-check/*.hs + test/data/ghc-mod-check/*.cabal + test/data/ghc-mod-check/Data/*.hs + test/data/subdir1/subdir2/dummy +Executable ghc-mod + Default-Language: Haskell2010 + Main-Is: GHCMod.hs + Other-Modules: Browse + CabalApi + Check + Cradle + Debug + ErrMsg + Flag + GHCApi + GHCChoice + Gap + Info + Lang + Lint + List + Paths_ghc_mod + Types + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5 + , Cabal >= 1.10 + , containers + , convertible + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + +Test-Suite spec + Default-Language: Haskell2010 + Main-Is: Spec.hs + Hs-Source-Dirs: test, . + Type: exitcode-stdio-1.0 + Other-Modules: Expectation + BrowseSpec + CabalApiSpec + CheckSpec + FlagSpec + InfoSpec + LangSpec + LintSpec + ListSpec + Build-Depends: base >= 4.0 && < 5 + , Cabal >= 1.10 + , containers + , convertible + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + , hspec + +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-1.12.2.cabal b/hackage-metadata/ghc-mod-1.12.2.cabal new file mode 100644 index 0000000..c6c0ec4 --- /dev/null +++ b/hackage-metadata/ghc-mod-1.12.2.cabal @@ -0,0 +1,109 @@ +Name: ghc-mod +Version: 1.12.2 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs/Vim +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. + To use "ghc-mod" on Vim, + see or + +Category: Development +Cabal-Version: >= 1.10 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el + ghc-ins-mod.el ghc-indent.el +Extra-Source-Files: ChangeLog + test/data/*.cabal + test/data/*.hs + test/data/cabal-dev/packages-7.6.2.conf/dummy + test/data/ghc-mod-check/*.hs + test/data/ghc-mod-check/*.cabal + test/data/ghc-mod-check/Data/*.hs + test/data/subdir1/subdir2/dummy +Executable ghc-mod + Default-Language: Haskell2010 + Main-Is: GHCMod.hs + Other-Modules: Browse + CabalApi + Check + Cradle + Doc + Debug + ErrMsg + Flag + GHCApi + GHCChoice + Gap + Info + Lang + Lint + List + Paths_ghc_mod + Types + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5 + , Cabal >= 1.10 + , containers + , convertible + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + +Test-Suite spec + Default-Language: Haskell2010 + Main-Is: Spec.hs + Hs-Source-Dirs: test, . + Type: exitcode-stdio-1.0 + Other-Modules: Expectation + BrowseSpec + CabalApiSpec + CheckSpec + DebugSpec + FlagSpec + InfoSpec + LangSpec + LintSpec + ListSpec + Build-Depends: base >= 4.0 && < 5 + , Cabal >= 1.10 + , containers + , convertible + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + , hspec + +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-1.12.3.cabal b/hackage-metadata/ghc-mod-1.12.3.cabal new file mode 100644 index 0000000..ff650d1 --- /dev/null +++ b/hackage-metadata/ghc-mod-1.12.3.cabal @@ -0,0 +1,113 @@ +Name: ghc-mod +Version: 1.12.3 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs/Vim +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. + To use "ghc-mod" on Vim, + see or + +Category: Development +Cabal-Version: >= 1.10 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el + ghc-ins-mod.el ghc-indent.el +Extra-Source-Files: ChangeLog + test/data/*.cabal + test/data/*.hs + test/data/cabal-dev/packages-7.6.2.conf/dummy + test/data/ghc-mod-check/*.hs + test/data/ghc-mod-check/*.cabal + test/data/ghc-mod-check/Data/*.hs + test/data/subdir1/subdir2/dummy + test/data/check-test-subdir/*.cabal + test/data/check-test-subdir/test/*.hs + test/data/check-test-subdir/test/Bar/*.hs + test/data/check-test-subdir/src/Check/Test/*.hs +Executable ghc-mod + Default-Language: Haskell2010 + Main-Is: GHCMod.hs + Other-Modules: Browse + CabalApi + Check + Cradle + Doc + Debug + ErrMsg + Flag + GHCApi + GHCChoice + Gap + Info + Lang + Lint + List + Paths_ghc_mod + Types + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5 + , Cabal >= 1.10 + , containers + , convertible + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + +Test-Suite spec + Default-Language: Haskell2010 + Main-Is: Spec.hs + Hs-Source-Dirs: test, . + Type: exitcode-stdio-1.0 + Other-Modules: Expectation + BrowseSpec + CabalApiSpec + CheckSpec + DebugSpec + FlagSpec + InfoSpec + LangSpec + LintSpec + ListSpec + Build-Depends: base >= 4.0 && < 5 + , Cabal >= 1.10 + , containers + , convertible + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + , hspec + +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-1.12.4.cabal b/hackage-metadata/ghc-mod-1.12.4.cabal new file mode 100644 index 0000000..5d00920 --- /dev/null +++ b/hackage-metadata/ghc-mod-1.12.4.cabal @@ -0,0 +1,113 @@ +Name: ghc-mod +Version: 1.12.4 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs/Vim +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. + To use "ghc-mod" on Vim, + see or + +Category: Development +Cabal-Version: >= 1.10 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el + ghc-ins-mod.el ghc-indent.el +Extra-Source-Files: ChangeLog + test/data/*.cabal + test/data/*.hs + test/data/cabal-dev/packages-7.6.2.conf/dummy + test/data/ghc-mod-check/*.hs + test/data/ghc-mod-check/*.cabal + test/data/ghc-mod-check/Data/*.hs + test/data/subdir1/subdir2/dummy + test/data/check-test-subdir/*.cabal + test/data/check-test-subdir/test/*.hs + test/data/check-test-subdir/test/Bar/*.hs + test/data/check-test-subdir/src/Check/Test/*.hs +Executable ghc-mod + Default-Language: Haskell2010 + Main-Is: GHCMod.hs + Other-Modules: Browse + CabalApi + Check + Cradle + Doc + Debug + ErrMsg + Flag + GHCApi + GHCChoice + Gap + Info + Lang + Lint + List + Paths_ghc_mod + Types + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5 + , Cabal >= 1.10 + , containers + , convertible + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + +Test-Suite spec + Default-Language: Haskell2010 + Main-Is: Spec.hs + Hs-Source-Dirs: test, . + Type: exitcode-stdio-1.0 + Other-Modules: Expectation + BrowseSpec + CabalApiSpec + CheckSpec + DebugSpec + FlagSpec + InfoSpec + LangSpec + LintSpec + ListSpec + Build-Depends: base >= 4.0 && < 5 + , Cabal >= 1.10 + , containers + , convertible + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + , hspec + +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-1.12.5.cabal b/hackage-metadata/ghc-mod-1.12.5.cabal new file mode 100644 index 0000000..a2a8ec2 --- /dev/null +++ b/hackage-metadata/ghc-mod-1.12.5.cabal @@ -0,0 +1,113 @@ +Name: ghc-mod +Version: 1.12.5 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs/Vim +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. + To use "ghc-mod" on Vim, + see or + +Category: Development +Cabal-Version: >= 1.10 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el + ghc-ins-mod.el ghc-indent.el +Extra-Source-Files: ChangeLog + test/data/*.cabal + test/data/*.hs + test/data/cabal-dev/packages-7.6.2.conf/dummy + test/data/ghc-mod-check/*.hs + test/data/ghc-mod-check/*.cabal + test/data/ghc-mod-check/Data/*.hs + test/data/subdir1/subdir2/dummy + test/data/check-test-subdir/*.cabal + test/data/check-test-subdir/test/*.hs + test/data/check-test-subdir/test/Bar/*.hs + test/data/check-test-subdir/src/Check/Test/*.hs +Executable ghc-mod + Default-Language: Haskell2010 + Main-Is: GHCMod.hs + Other-Modules: Browse + CabalApi + Check + Cradle + Doc + Debug + ErrMsg + Flag + GHCApi + GHCChoice + Gap + Info + Lang + Lint + List + Paths_ghc_mod + Types + GHC-Options: -Wall + Build-Depends: base >= 4.0 && < 5 + , Cabal >= 1.10 + , containers + , convertible + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + +Test-Suite spec + Default-Language: Haskell2010 + Main-Is: Spec.hs + Hs-Source-Dirs: test, . + Type: exitcode-stdio-1.0 + Other-Modules: Expectation + BrowseSpec + CabalApiSpec + CheckSpec + DebugSpec + FlagSpec + InfoSpec + LangSpec + LintSpec + ListSpec + Build-Depends: base >= 4.0 && < 5 + , Cabal >= 1.10 + , containers + , convertible + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + , hspec + +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-2.0.0.cabal b/hackage-metadata/ghc-mod-2.0.0.cabal new file mode 100644 index 0000000..3481c44 --- /dev/null +++ b/hackage-metadata/ghc-mod-2.0.0.cabal @@ -0,0 +1,125 @@ +Name: ghc-mod +Version: 2.0.0 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +Synopsis: Happy Haskell programming on Emacs/Vim +Description: This packages includes Elisp files + and a Haskell command, "ghc-mod". + "ghc*.el" enable completion of + Haskell symbols on Emacs. + Flymake is also integrated. + "ghc-mod" is a backend of "ghc*.el". + It lists up all installed modules + or extracts names of functions, classes, + and data declarations. + To use "ghc-mod" on Vim, + see or + +Category: Development +Cabal-Version: >= 1.10 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el + ghc-ins-mod.el ghc-indent.el +Extra-Source-Files: ChangeLog + test/data/*.cabal + test/data/*.hs + test/data/cabal-dev/packages-7.6.2.conf/dummy + test/data/ghc-mod-check/*.hs + test/data/ghc-mod-check/*.cabal + test/data/ghc-mod-check/Data/*.hs + test/data/subdir1/subdir2/dummy + test/data/check-test-subdir/*.cabal + test/data/check-test-subdir/test/*.hs + test/data/check-test-subdir/test/Bar/*.hs + test/data/check-test-subdir/src/Check/Test/*.hs + +Library + Default-Language: Haskell2010 + GHC-Options: -Wall + Exposed-Modules: Language.Haskell.GhcMod + Other-Modules: Language.Haskell.GhcMod.Browse + Language.Haskell.GhcMod.CabalApi + Language.Haskell.GhcMod.Check + Language.Haskell.GhcMod.Cradle + Language.Haskell.GhcMod.Doc + Language.Haskell.GhcMod.Debug + Language.Haskell.GhcMod.ErrMsg + Language.Haskell.GhcMod.Flag + Language.Haskell.GhcMod.GHCApi + Language.Haskell.GhcMod.GHCChoice + Language.Haskell.GhcMod.Gap + Language.Haskell.GhcMod.Info + Language.Haskell.GhcMod.Lang + Language.Haskell.GhcMod.Lint + Language.Haskell.GhcMod.List + Language.Haskell.GhcMod.Types + Build-Depends: base >= 4.0 && < 5 + , Cabal >= 1.10 + , containers + , convertible + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + +Executable ghc-mod + Default-Language: Haskell2010 + Main-Is: GHCMod.hs + Other-Modules: Paths_ghc_mod + GHC-Options: -Wall + HS-Source-Dirs: src + Build-Depends: base >= 4.0 && < 5 + , directory + , filepath + , ghc + , ghc-mod + +Test-Suite spec + Default-Language: Haskell2010 + Main-Is: Spec.hs + Hs-Source-Dirs: test, . + Type: exitcode-stdio-1.0 + Other-Modules: Expectation + BrowseSpec + CabalApiSpec + CheckSpec + DebugSpec + FlagSpec + InfoSpec + LangSpec + LintSpec + ListSpec + Build-Depends: base >= 4.0 && < 5 + , Cabal >= 1.10 + , containers + , convertible + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + , hspec + +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-2.0.1.cabal b/hackage-metadata/ghc-mod-2.0.1.cabal new file mode 100644 index 0000000..be918a0 --- /dev/null +++ b/hackage-metadata/ghc-mod-2.0.1.cabal @@ -0,0 +1,123 @@ +Name: ghc-mod +Version: 2.0.1 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +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, + the ghc-mod library, and "Emacs front-end + (for historical reasons). + For more information, please see ts home page. + +Category: Development +Cabal-Version: >= 1.10 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el + ghc-ins-mod.el ghc-indent.el ghc-pkg.el +Extra-Source-Files: ChangeLog + test/data/*.cabal + test/data/*.hs + test/data/cabal-dev/packages-7.6.2.conf/dummy + test/data/ghc-mod-check/*.hs + test/data/ghc-mod-check/*.cabal + test/data/ghc-mod-check/Data/*.hs + test/data/subdir1/subdir2/dummy + test/data/check-test-subdir/*.cabal + test/data/check-test-subdir/test/*.hs + test/data/check-test-subdir/test/Bar/*.hs + test/data/check-test-subdir/src/Check/Test/*.hs + +Library + Default-Language: Haskell2010 + GHC-Options: -Wall + Exposed-Modules: Language.Haskell.GhcMod + Other-Modules: Language.Haskell.GhcMod.Browse + Language.Haskell.GhcMod.CabalApi + Language.Haskell.GhcMod.Check + Language.Haskell.GhcMod.Cradle + Language.Haskell.GhcMod.Doc + Language.Haskell.GhcMod.Debug + Language.Haskell.GhcMod.ErrMsg + Language.Haskell.GhcMod.Flag + Language.Haskell.GhcMod.GHCApi + Language.Haskell.GhcMod.GHCChoice + Language.Haskell.GhcMod.Gap + Language.Haskell.GhcMod.Info + Language.Haskell.GhcMod.Lang + Language.Haskell.GhcMod.Lint + Language.Haskell.GhcMod.List + Language.Haskell.GhcMod.Types + Build-Depends: base >= 4.0 && < 5 + , Cabal >= 1.10 + , containers + , convertible + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + +Executable ghc-mod + Default-Language: Haskell2010 + Main-Is: GHCMod.hs + Other-Modules: Paths_ghc_mod + GHC-Options: -Wall + HS-Source-Dirs: src + Build-Depends: base >= 4.0 && < 5 + , directory + , filepath + , ghc + , ghc-mod + +Test-Suite spec + Default-Language: Haskell2010 + Main-Is: Spec.hs + Hs-Source-Dirs: test, . + Type: exitcode-stdio-1.0 + Other-Modules: Expectation + BrowseSpec + CabalApiSpec + CheckSpec + DebugSpec + FlagSpec + InfoSpec + LangSpec + LintSpec + ListSpec + Build-Depends: base >= 4.0 && < 5 + , Cabal >= 1.10 + , containers + , convertible + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + , hspec + +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-2.0.2.cabal b/hackage-metadata/ghc-mod-2.0.2.cabal new file mode 100644 index 0000000..2e00a63 --- /dev/null +++ b/hackage-metadata/ghc-mod-2.0.2.cabal @@ -0,0 +1,123 @@ +Name: ghc-mod +Version: 2.0.2 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +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, + the ghc-mod library, and Emacs front-end + (for historical reasons). + For more information, please see ts home page. + +Category: Development +Cabal-Version: >= 1.10 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el + ghc-ins-mod.el ghc-indent.el ghc-pkg.el +Extra-Source-Files: ChangeLog + test/data/*.cabal + test/data/*.hs + test/data/cabal-dev/packages-7.6.2.conf/dummy + test/data/ghc-mod-check/*.hs + test/data/ghc-mod-check/*.cabal + test/data/ghc-mod-check/Data/*.hs + test/data/subdir1/subdir2/dummy + test/data/check-test-subdir/*.cabal + test/data/check-test-subdir/test/*.hs + test/data/check-test-subdir/test/Bar/*.hs + test/data/check-test-subdir/src/Check/Test/*.hs + +Library + Default-Language: Haskell2010 + GHC-Options: -Wall + Exposed-Modules: Language.Haskell.GhcMod + Other-Modules: Language.Haskell.GhcMod.Browse + Language.Haskell.GhcMod.CabalApi + Language.Haskell.GhcMod.Check + Language.Haskell.GhcMod.Cradle + Language.Haskell.GhcMod.Doc + Language.Haskell.GhcMod.Debug + Language.Haskell.GhcMod.ErrMsg + Language.Haskell.GhcMod.Flag + Language.Haskell.GhcMod.GHCApi + Language.Haskell.GhcMod.GHCChoice + Language.Haskell.GhcMod.Gap + Language.Haskell.GhcMod.Info + Language.Haskell.GhcMod.Lang + Language.Haskell.GhcMod.Lint + Language.Haskell.GhcMod.List + Language.Haskell.GhcMod.Types + Build-Depends: base >= 4.0 && < 5 + , Cabal >= 1.10 + , containers + , convertible + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + +Executable ghc-mod + Default-Language: Haskell2010 + Main-Is: GHCMod.hs + Other-Modules: Paths_ghc_mod + GHC-Options: -Wall + HS-Source-Dirs: src + Build-Depends: base >= 4.0 && < 5 + , directory + , filepath + , ghc + , ghc-mod + +Test-Suite spec + Default-Language: Haskell2010 + Main-Is: Spec.hs + Hs-Source-Dirs: test, . + Type: exitcode-stdio-1.0 + Other-Modules: Expectation + BrowseSpec + CabalApiSpec + CheckSpec + DebugSpec + FlagSpec + InfoSpec + LangSpec + LintSpec + ListSpec + Build-Depends: base >= 4.0 && < 5 + , Cabal >= 1.10 + , containers + , convertible + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + , hspec + +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-2.0.3.cabal b/hackage-metadata/ghc-mod-2.0.3.cabal new file mode 100644 index 0000000..d38cda4 --- /dev/null +++ b/hackage-metadata/ghc-mod-2.0.3.cabal @@ -0,0 +1,123 @@ +Name: ghc-mod +Version: 2.0.3 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +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, + the ghc-mod library, and Emacs front-end + (for historical reasons). + For more information, please see its home page. + +Category: Development +Cabal-Version: >= 1.10 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el + ghc-ins-mod.el ghc-indent.el ghc-pkg.el +Extra-Source-Files: ChangeLog + test/data/*.cabal + test/data/*.hs + test/data/cabal-dev/packages-7.6.2.conf/dummy + test/data/ghc-mod-check/*.hs + test/data/ghc-mod-check/*.cabal + test/data/ghc-mod-check/Data/*.hs + test/data/subdir1/subdir2/dummy + test/data/check-test-subdir/*.cabal + test/data/check-test-subdir/test/*.hs + test/data/check-test-subdir/test/Bar/*.hs + test/data/check-test-subdir/src/Check/Test/*.hs + +Library + Default-Language: Haskell2010 + GHC-Options: -Wall + Exposed-Modules: Language.Haskell.GhcMod + Other-Modules: Language.Haskell.GhcMod.Browse + Language.Haskell.GhcMod.CabalApi + Language.Haskell.GhcMod.Check + Language.Haskell.GhcMod.Cradle + Language.Haskell.GhcMod.Doc + Language.Haskell.GhcMod.Debug + Language.Haskell.GhcMod.ErrMsg + Language.Haskell.GhcMod.Flag + Language.Haskell.GhcMod.GHCApi + Language.Haskell.GhcMod.GHCChoice + Language.Haskell.GhcMod.Gap + Language.Haskell.GhcMod.Info + Language.Haskell.GhcMod.Lang + Language.Haskell.GhcMod.Lint + Language.Haskell.GhcMod.List + Language.Haskell.GhcMod.Types + Build-Depends: base >= 4.0 && < 5 + , Cabal >= 1.10 + , containers + , convertible + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + +Executable ghc-mod + Default-Language: Haskell2010 + Main-Is: GHCMod.hs + Other-Modules: Paths_ghc_mod + GHC-Options: -Wall + HS-Source-Dirs: src + Build-Depends: base >= 4.0 && < 5 + , directory + , filepath + , ghc + , ghc-mod + +Test-Suite spec + Default-Language: Haskell2010 + Main-Is: Spec.hs + Hs-Source-Dirs: test, . + Type: exitcode-stdio-1.0 + Other-Modules: Expectation + BrowseSpec + CabalApiSpec + CheckSpec + DebugSpec + FlagSpec + InfoSpec + LangSpec + LintSpec + ListSpec + Build-Depends: base >= 4.0 && < 5 + , Cabal >= 1.10 + , containers + , convertible + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + , hspec + +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-2.1.0.cabal b/hackage-metadata/ghc-mod-2.1.0.cabal new file mode 100644 index 0000000..65be657 --- /dev/null +++ b/hackage-metadata/ghc-mod-2.1.0.cabal @@ -0,0 +1,123 @@ +Name: ghc-mod +Version: 2.1.0 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +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, + the ghc-mod library, and Emacs front-end + (for historical reasons). + For more information, please see its home page. + +Category: Development +Cabal-Version: >= 1.10 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el + ghc-ins-mod.el ghc-indent.el ghc-pkg.el +Extra-Source-Files: ChangeLog + test/data/*.cabal + test/data/*.hs + test/data/cabal-dev/packages-7.6.2.conf/dummy + test/data/ghc-mod-check/*.hs + test/data/ghc-mod-check/*.cabal + test/data/ghc-mod-check/Data/*.hs + test/data/subdir1/subdir2/dummy + test/data/check-test-subdir/*.cabal + test/data/check-test-subdir/test/*.hs + test/data/check-test-subdir/test/Bar/*.hs + test/data/check-test-subdir/src/Check/Test/*.hs + +Library + Default-Language: Haskell2010 + GHC-Options: -Wall + Exposed-Modules: Language.Haskell.GhcMod + Language.Haskell.GhcMod.Internal + Other-Modules: Language.Haskell.GhcMod.Browse + Language.Haskell.GhcMod.CabalApi + Language.Haskell.GhcMod.Check + Language.Haskell.GhcMod.Cradle + Language.Haskell.GhcMod.Doc + Language.Haskell.GhcMod.Debug + Language.Haskell.GhcMod.ErrMsg + Language.Haskell.GhcMod.Flag + Language.Haskell.GhcMod.GHCApi + Language.Haskell.GhcMod.GHCChoice + Language.Haskell.GhcMod.Gap + Language.Haskell.GhcMod.Info + Language.Haskell.GhcMod.Lang + Language.Haskell.GhcMod.Lint + Language.Haskell.GhcMod.List + Language.Haskell.GhcMod.Types + Build-Depends: base >= 4.0 && < 5 + , Cabal >= 1.10 + , containers + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + +Executable ghc-mod + Default-Language: Haskell2010 + Main-Is: GHCMod.hs + Other-Modules: Paths_ghc_mod + GHC-Options: -Wall + HS-Source-Dirs: src + Build-Depends: base >= 4.0 && < 5 + , directory + , filepath + , ghc + , ghc-mod + +Test-Suite spec + Default-Language: Haskell2010 + Main-Is: Spec.hs + Hs-Source-Dirs: test, . + Type: exitcode-stdio-1.0 + Other-Modules: Dir + BrowseSpec + CabalApiSpec + CheckSpec + DebugSpec + FlagSpec + InfoSpec + LangSpec + LintSpec + ListSpec + Build-Depends: base >= 4.0 && < 5 + , Cabal >= 1.10 + , containers + , convertible + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + , hspec >= 1.7.1 + +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-2.1.1.cabal b/hackage-metadata/ghc-mod-2.1.1.cabal new file mode 100644 index 0000000..de19a98 --- /dev/null +++ b/hackage-metadata/ghc-mod-2.1.1.cabal @@ -0,0 +1,124 @@ +Name: ghc-mod +Version: 2.1.1 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +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, + the ghc-mod library, and Emacs front-end + (for historical reasons). + For more information, please see its home page. + +Category: Development +Cabal-Version: >= 1.10 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el + ghc-ins-mod.el ghc-indent.el ghc-pkg.el +Extra-Source-Files: ChangeLog + test/data/*.cabal + test/data/*.hs + test/data/cabal-dev/packages-7.6.2.conf/dummy + test/data/ghc-mod-check/*.hs + test/data/ghc-mod-check/*.cabal + test/data/ghc-mod-check/Data/*.hs + test/data/subdir1/subdir2/dummy + test/data/check-test-subdir/*.cabal + test/data/check-test-subdir/test/*.hs + test/data/check-test-subdir/test/Bar/*.hs + test/data/check-test-subdir/src/Check/Test/*.hs + +Library + Default-Language: Haskell2010 + GHC-Options: -Wall + Exposed-Modules: Language.Haskell.GhcMod + Language.Haskell.GhcMod.Internal + Other-Modules: Language.Haskell.GhcMod.Browse + Language.Haskell.GhcMod.CabalApi + Language.Haskell.GhcMod.Check + Language.Haskell.GhcMod.Cradle + Language.Haskell.GhcMod.Doc + Language.Haskell.GhcMod.Debug + Language.Haskell.GhcMod.ErrMsg + Language.Haskell.GhcMod.Flag + Language.Haskell.GhcMod.GHCApi + Language.Haskell.GhcMod.GHCChoice + Language.Haskell.GhcMod.Gap + Language.Haskell.GhcMod.Info + Language.Haskell.GhcMod.Lang + Language.Haskell.GhcMod.Lint + Language.Haskell.GhcMod.List + Language.Haskell.GhcMod.Types + Build-Depends: base >= 4.0 && < 5 + , Cabal >= 1.10 + , containers + , convertible + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + +Executable ghc-mod + Default-Language: Haskell2010 + Main-Is: GHCMod.hs + Other-Modules: Paths_ghc_mod + GHC-Options: -Wall + HS-Source-Dirs: src + Build-Depends: base >= 4.0 && < 5 + , directory + , filepath + , ghc + , ghc-mod + +Test-Suite spec + Default-Language: Haskell2010 + Main-Is: Spec.hs + Hs-Source-Dirs: test, . + Type: exitcode-stdio-1.0 + Other-Modules: Dir + BrowseSpec + CabalApiSpec + CheckSpec + DebugSpec + FlagSpec + InfoSpec + LangSpec + LintSpec + ListSpec + Build-Depends: base >= 4.0 && < 5 + , Cabal >= 1.10 + , containers + , convertible + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + , hspec >= 1.7.1 + +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-2.1.2.cabal b/hackage-metadata/ghc-mod-2.1.2.cabal new file mode 100644 index 0000000..33ae3bd --- /dev/null +++ b/hackage-metadata/ghc-mod-2.1.2.cabal @@ -0,0 +1,124 @@ +Name: ghc-mod +Version: 2.1.2 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +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, + the ghc-mod library, and Emacs front-end + (for historical reasons). + For more information, please see its home page. + +Category: Development +Cabal-Version: >= 1.10 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el + ghc-ins-mod.el ghc-indent.el ghc-pkg.el +Extra-Source-Files: ChangeLog + test/data/*.cabal + test/data/*.hs + test/data/cabal-dev/packages-7.6.2.conf/dummy + test/data/ghc-mod-check/*.hs + test/data/ghc-mod-check/*.cabal + test/data/ghc-mod-check/Data/*.hs + test/data/subdir1/subdir2/dummy + test/data/check-test-subdir/*.cabal + test/data/check-test-subdir/test/*.hs + test/data/check-test-subdir/test/Bar/*.hs + test/data/check-test-subdir/src/Check/Test/*.hs + +Library + Default-Language: Haskell2010 + GHC-Options: -Wall + Exposed-Modules: Language.Haskell.GhcMod + Language.Haskell.GhcMod.Internal + Other-Modules: Language.Haskell.GhcMod.Browse + Language.Haskell.GhcMod.CabalApi + Language.Haskell.GhcMod.Check + Language.Haskell.GhcMod.Cradle + Language.Haskell.GhcMod.Doc + Language.Haskell.GhcMod.Debug + Language.Haskell.GhcMod.ErrMsg + Language.Haskell.GhcMod.Flag + Language.Haskell.GhcMod.GHCApi + Language.Haskell.GhcMod.GHCChoice + Language.Haskell.GhcMod.Gap + Language.Haskell.GhcMod.Info + Language.Haskell.GhcMod.Lang + Language.Haskell.GhcMod.Lint + Language.Haskell.GhcMod.List + Language.Haskell.GhcMod.Types + Build-Depends: base >= 4.0 && < 5 + , Cabal >= 1.10 + , containers + , convertible + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + +Executable ghc-mod + Default-Language: Haskell2010 + Main-Is: GHCMod.hs + Other-Modules: Paths_ghc_mod + GHC-Options: -Wall + HS-Source-Dirs: src + Build-Depends: base >= 4.0 && < 5 + , directory + , filepath + , ghc + , ghc-mod + +Test-Suite spec + Default-Language: Haskell2010 + Main-Is: Spec.hs + Hs-Source-Dirs: test, . + Type: exitcode-stdio-1.0 + Other-Modules: Dir + BrowseSpec + CabalApiSpec + CheckSpec + DebugSpec + FlagSpec + InfoSpec + LangSpec + LintSpec + ListSpec + Build-Depends: base >= 4.0 && < 5 + , Cabal >= 1.10 + , containers + , convertible + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + , hspec >= 1.7.1 + +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-3.0.0.cabal b/hackage-metadata/ghc-mod-3.0.0.cabal new file mode 100644 index 0000000..799720e --- /dev/null +++ b/hackage-metadata/ghc-mod-3.0.0.cabal @@ -0,0 +1,125 @@ +Name: ghc-mod +Version: 3.0.0 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +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, + the ghc-mod library, and Emacs front-end + (for historical reasons). + For more information, please see its home page. + +Category: Development +Cabal-Version: >= 1.10 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el + ghc-ins-mod.el ghc-indent.el ghc-pkg.el +Extra-Source-Files: ChangeLog + test/data/*.cabal + test/data/*.hs + test/data/cabal.sandbox.config + test/data/.cabal-sandbox/i386-osx-ghc-7.6.3-packages.conf.d/dummy + test/data/ghc-mod-check/*.hs + test/data/ghc-mod-check/*.cabal + test/data/ghc-mod-check/Data/*.hs + test/data/subdir1/subdir2/dummy + test/data/check-test-subdir/*.cabal + test/data/check-test-subdir/test/*.hs + test/data/check-test-subdir/test/Bar/*.hs + test/data/check-test-subdir/src/Check/Test/*.hs + +Library + Default-Language: Haskell2010 + GHC-Options: -Wall + Exposed-Modules: Language.Haskell.GhcMod + Language.Haskell.GhcMod.Internal + Other-Modules: Language.Haskell.GhcMod.Browse + Language.Haskell.GhcMod.CabalApi + Language.Haskell.GhcMod.Check + Language.Haskell.GhcMod.Cradle + Language.Haskell.GhcMod.Doc + Language.Haskell.GhcMod.Debug + Language.Haskell.GhcMod.ErrMsg + Language.Haskell.GhcMod.Flag + Language.Haskell.GhcMod.GHCApi + Language.Haskell.GhcMod.GHCChoice + Language.Haskell.GhcMod.Gap + Language.Haskell.GhcMod.Info + Language.Haskell.GhcMod.Lang + Language.Haskell.GhcMod.Lint + Language.Haskell.GhcMod.List + Language.Haskell.GhcMod.Types + Build-Depends: base >= 4.0 && < 5 + , Cabal >= 1.10 + , containers + , convertible + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + +Executable ghc-mod + Default-Language: Haskell2010 + Main-Is: GHCMod.hs + Other-Modules: Paths_ghc_mod + GHC-Options: -Wall + HS-Source-Dirs: src + Build-Depends: base >= 4.0 && < 5 + , directory + , filepath + , ghc + , ghc-mod + +Test-Suite spec + Default-Language: Haskell2010 + Main-Is: Spec.hs + Hs-Source-Dirs: test, . + Type: exitcode-stdio-1.0 + Other-Modules: Dir + BrowseSpec + CabalApiSpec + CheckSpec + DebugSpec + FlagSpec + InfoSpec + LangSpec + LintSpec + ListSpec + Build-Depends: base >= 4.0 && < 5 + , Cabal >= 1.10 + , containers + , convertible + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + , hspec >= 1.7.1 + +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-3.0.1.cabal b/hackage-metadata/ghc-mod-3.0.1.cabal new file mode 100644 index 0000000..d6dd75d --- /dev/null +++ b/hackage-metadata/ghc-mod-3.0.1.cabal @@ -0,0 +1,125 @@ +Name: ghc-mod +Version: 3.0.1 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +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, + the ghc-mod library, and Emacs front-end + (for historical reasons). + For more information, please see its home page. + +Category: Development +Cabal-Version: >= 1.10 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el + ghc-ins-mod.el ghc-indent.el ghc-pkg.el +Extra-Source-Files: ChangeLog + test/data/*.cabal + test/data/*.hs + test/data/cabal.sandbox.config + test/data/.cabal-sandbox/i386-osx-ghc-7.6.3-packages.conf.d/dummy + test/data/ghc-mod-check/*.hs + test/data/ghc-mod-check/*.cabal + test/data/ghc-mod-check/Data/*.hs + test/data/subdir1/subdir2/dummy + test/data/check-test-subdir/*.cabal + test/data/check-test-subdir/test/*.hs + test/data/check-test-subdir/test/Bar/*.hs + test/data/check-test-subdir/src/Check/Test/*.hs + +Library + Default-Language: Haskell2010 + GHC-Options: -Wall + Exposed-Modules: Language.Haskell.GhcMod + Language.Haskell.GhcMod.Internal + Other-Modules: Language.Haskell.GhcMod.Browse + Language.Haskell.GhcMod.CabalApi + Language.Haskell.GhcMod.Check + Language.Haskell.GhcMod.Cradle + Language.Haskell.GhcMod.Doc + Language.Haskell.GhcMod.Debug + Language.Haskell.GhcMod.ErrMsg + Language.Haskell.GhcMod.Flag + Language.Haskell.GhcMod.GHCApi + Language.Haskell.GhcMod.GHCChoice + Language.Haskell.GhcMod.Gap + Language.Haskell.GhcMod.Info + Language.Haskell.GhcMod.Lang + Language.Haskell.GhcMod.Lint + Language.Haskell.GhcMod.List + Language.Haskell.GhcMod.Types + Build-Depends: base >= 4.0 && < 5 + , Cabal >= 1.10 + , containers + , convertible + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + +Executable ghc-mod + Default-Language: Haskell2010 + Main-Is: GHCMod.hs + Other-Modules: Paths_ghc_mod + GHC-Options: -Wall + HS-Source-Dirs: src + Build-Depends: base >= 4.0 && < 5 + , directory + , filepath + , ghc + , ghc-mod + +Test-Suite spec + Default-Language: Haskell2010 + Main-Is: Spec.hs + Hs-Source-Dirs: test, . + Type: exitcode-stdio-1.0 + Other-Modules: Dir + BrowseSpec + CabalApiSpec + CheckSpec + DebugSpec + FlagSpec + InfoSpec + LangSpec + LintSpec + ListSpec + Build-Depends: base >= 4.0 && < 5 + , Cabal >= 1.10 + , containers + , convertible + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + , hspec >= 1.7.1 + +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-3.0.2.cabal b/hackage-metadata/ghc-mod-3.0.2.cabal new file mode 100644 index 0000000..d36c437 --- /dev/null +++ b/hackage-metadata/ghc-mod-3.0.2.cabal @@ -0,0 +1,125 @@ +Name: ghc-mod +Version: 3.0.2 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +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, + the ghc-mod library, and Emacs front-end + (for historical reasons). + For more information, please see its home page. + +Category: Development +Cabal-Version: >= 1.10 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el + ghc-ins-mod.el ghc-indent.el ghc-pkg.el +Extra-Source-Files: ChangeLog + test/data/*.cabal + test/data/*.hs + test/data/cabal.sandbox.config + test/data/.cabal-sandbox/i386-osx-ghc-7.6.3-packages.conf.d/dummy + test/data/ghc-mod-check/*.hs + test/data/ghc-mod-check/*.cabal + test/data/ghc-mod-check/Data/*.hs + test/data/subdir1/subdir2/dummy + test/data/check-test-subdir/*.cabal + test/data/check-test-subdir/test/*.hs + test/data/check-test-subdir/test/Bar/*.hs + test/data/check-test-subdir/src/Check/Test/*.hs + +Library + Default-Language: Haskell2010 + GHC-Options: -Wall + Exposed-Modules: Language.Haskell.GhcMod + Language.Haskell.GhcMod.Internal + Other-Modules: Language.Haskell.GhcMod.Browse + Language.Haskell.GhcMod.CabalApi + Language.Haskell.GhcMod.Check + Language.Haskell.GhcMod.Cradle + Language.Haskell.GhcMod.Doc + Language.Haskell.GhcMod.Debug + Language.Haskell.GhcMod.ErrMsg + Language.Haskell.GhcMod.Flag + Language.Haskell.GhcMod.GHCApi + Language.Haskell.GhcMod.GHCChoice + Language.Haskell.GhcMod.Gap + Language.Haskell.GhcMod.Info + Language.Haskell.GhcMod.Lang + Language.Haskell.GhcMod.Lint + Language.Haskell.GhcMod.List + Language.Haskell.GhcMod.Types + Build-Depends: base >= 4.0 && < 5 + , Cabal >= 1.10 + , containers + , convertible + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + +Executable ghc-mod + Default-Language: Haskell2010 + Main-Is: GHCMod.hs + Other-Modules: Paths_ghc_mod + GHC-Options: -Wall + HS-Source-Dirs: src + Build-Depends: base >= 4.0 && < 5 + , directory + , filepath + , ghc + , ghc-mod + +Test-Suite spec + Default-Language: Haskell2010 + Main-Is: Spec.hs + Hs-Source-Dirs: test, . + Type: exitcode-stdio-1.0 + Other-Modules: Dir + BrowseSpec + CabalApiSpec + CheckSpec + DebugSpec + FlagSpec + InfoSpec + LangSpec + LintSpec + ListSpec + Build-Depends: base >= 4.0 && < 5 + , Cabal >= 1.10 + , containers + , convertible + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + , hspec >= 1.7.1 + +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-3.1.0.cabal b/hackage-metadata/ghc-mod-3.1.0.cabal new file mode 100644 index 0000000..5882db5 --- /dev/null +++ b/hackage-metadata/ghc-mod-3.1.0.cabal @@ -0,0 +1,134 @@ +Name: ghc-mod +Version: 3.1.0 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +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, + the ghc-mod library, and Emacs front-end + (for historical reasons). + For more information, please see its home page. + +Category: Development +Cabal-Version: >= 1.10 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el + ghc-ins-mod.el ghc-indent.el ghc-pkg.el +Extra-Source-Files: ChangeLog + test/data/*.cabal + test/data/*.hs + test/data/cabal.sandbox.config + test/data/.cabal-sandbox/i386-osx-ghc-7.6.3-packages.conf.d/dummy + test/data/ghc-mod-check/*.hs + test/data/ghc-mod-check/*.cabal + test/data/ghc-mod-check/Data/*.hs + test/data/subdir1/subdir2/dummy + test/data/check-test-subdir/*.cabal + test/data/check-test-subdir/test/*.hs + test/data/check-test-subdir/test/Bar/*.hs + test/data/check-test-subdir/src/Check/Test/*.hs + +Library + Default-Language: Haskell2010 + GHC-Options: -Wall + Exposed-Modules: Language.Haskell.GhcMod + Language.Haskell.GhcMod.Internal + Other-Modules: Language.Haskell.GhcMod.Browse + Language.Haskell.GhcMod.CabalApi + Language.Haskell.GhcMod.Check + Language.Haskell.GhcMod.Cradle + Language.Haskell.GhcMod.Doc + Language.Haskell.GhcMod.Debug + Language.Haskell.GhcMod.ErrMsg + Language.Haskell.GhcMod.Flag + Language.Haskell.GhcMod.GHCApi + Language.Haskell.GhcMod.GHCChoice + Language.Haskell.GhcMod.Gap + Language.Haskell.GhcMod.Info + Language.Haskell.GhcMod.Lang + Language.Haskell.GhcMod.Lint + Language.Haskell.GhcMod.List + Language.Haskell.GhcMod.Types + Build-Depends: base >= 4.0 && < 5 + , Cabal >= 1.10 + , containers + , convertible + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + +Executable ghc-mod + Default-Language: Haskell2010 + Main-Is: GHCMod.hs + Other-Modules: Paths_ghc_mod + GHC-Options: -Wall + HS-Source-Dirs: src + Build-Depends: base >= 4.0 && < 5 + , directory + , filepath + , ghc + , ghc-mod + +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 + +Test-Suite spec + Default-Language: Haskell2010 + Main-Is: Spec.hs + Hs-Source-Dirs: test, . + Type: exitcode-stdio-1.0 + Other-Modules: Dir + BrowseSpec + CabalApiSpec + CheckSpec + DebugSpec + FlagSpec + InfoSpec + LangSpec + LintSpec + ListSpec + Build-Depends: base >= 4.0 && < 5 + , Cabal >= 1.10 + , containers + , convertible + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + , hspec >= 1.7.1 + +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-3.1.1.cabal b/hackage-metadata/ghc-mod-3.1.1.cabal new file mode 100644 index 0000000..5cf3703 --- /dev/null +++ b/hackage-metadata/ghc-mod-3.1.1.cabal @@ -0,0 +1,137 @@ +Name: ghc-mod +Version: 3.1.1 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +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, + the ghc-mod library, and Emacs front-end + (for historical reasons). + For more information, please see its home page. + +Category: Development +Cabal-Version: >= 1.10 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el + ghc-ins-mod.el ghc-indent.el ghc-pkg.el +Extra-Source-Files: ChangeLog + test/data/*.cabal + test/data/*.hs + test/data/cabal.sandbox.config + test/data/.cabal-sandbox/i386-osx-ghc-7.6.3-packages.conf.d/dummy + test/data/broken-cabal/*.cabal + test/data/broken-sandbox/*.cabal + test/data/broken-sandbox/cabal.sandbox.config + test/data/check-test-subdir/*.cabal + test/data/check-test-subdir/src/Check/Test/*.hs + test/data/check-test-subdir/test/*.hs + test/data/check-test-subdir/test/Bar/*.hs + test/data/ghc-mod-check/*.cabal + test/data/ghc-mod-check/*.hs + test/data/ghc-mod-check/Data/*.hs + test/data/subdir1/subdir2/dummy + +Library + Default-Language: Haskell2010 + GHC-Options: -Wall + Exposed-Modules: Language.Haskell.GhcMod + Language.Haskell.GhcMod.Internal + Other-Modules: Language.Haskell.GhcMod.Browse + Language.Haskell.GhcMod.CabalApi + Language.Haskell.GhcMod.Check + Language.Haskell.GhcMod.Cradle + Language.Haskell.GhcMod.Doc + Language.Haskell.GhcMod.Debug + Language.Haskell.GhcMod.ErrMsg + Language.Haskell.GhcMod.Flag + Language.Haskell.GhcMod.GHCApi + Language.Haskell.GhcMod.GHCChoice + Language.Haskell.GhcMod.Gap + Language.Haskell.GhcMod.Info + Language.Haskell.GhcMod.Lang + Language.Haskell.GhcMod.Lint + Language.Haskell.GhcMod.List + Language.Haskell.GhcMod.Types + Build-Depends: base >= 4.0 && < 5 + , Cabal >= 1.10 + , containers + , convertible + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + +Executable ghc-mod + Default-Language: Haskell2010 + Main-Is: GHCMod.hs + Other-Modules: Paths_ghc_mod + GHC-Options: -Wall + HS-Source-Dirs: src + Build-Depends: base >= 4.0 && < 5 + , directory + , filepath + , ghc + , ghc-mod + +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 + +Test-Suite spec + Default-Language: Haskell2010 + Main-Is: Spec.hs + Hs-Source-Dirs: test, . + Type: exitcode-stdio-1.0 + Other-Modules: Dir + BrowseSpec + CabalApiSpec + CheckSpec + DebugSpec + FlagSpec + InfoSpec + LangSpec + LintSpec + ListSpec + Build-Depends: base >= 4.0 && < 5 + , Cabal >= 1.10 + , containers + , convertible + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + , hspec >= 1.7.1 + +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-3.1.2.cabal b/hackage-metadata/ghc-mod-3.1.2.cabal new file mode 100644 index 0000000..c355e68 --- /dev/null +++ b/hackage-metadata/ghc-mod-3.1.2.cabal @@ -0,0 +1,137 @@ +Name: ghc-mod +Version: 3.1.2 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +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, + the ghc-mod library, and Emacs front-end + (for historical reasons). + For more information, please see its home page. + +Category: Development +Cabal-Version: >= 1.10 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el + ghc-ins-mod.el ghc-indent.el ghc-pkg.el +Extra-Source-Files: ChangeLog + test/data/*.cabal + test/data/*.hs + test/data/cabal.sandbox.config + test/data/.cabal-sandbox/i386-osx-ghc-7.6.3-packages.conf.d/dummy + test/data/broken-cabal/*.cabal + test/data/broken-sandbox/*.cabal + test/data/broken-sandbox/cabal.sandbox.config + test/data/check-test-subdir/*.cabal + test/data/check-test-subdir/src/Check/Test/*.hs + test/data/check-test-subdir/test/*.hs + test/data/check-test-subdir/test/Bar/*.hs + test/data/ghc-mod-check/*.cabal + test/data/ghc-mod-check/*.hs + test/data/ghc-mod-check/Data/*.hs + test/data/subdir1/subdir2/dummy + +Library + Default-Language: Haskell2010 + GHC-Options: -Wall + Exposed-Modules: Language.Haskell.GhcMod + Language.Haskell.GhcMod.Internal + Other-Modules: Language.Haskell.GhcMod.Browse + Language.Haskell.GhcMod.CabalApi + Language.Haskell.GhcMod.Check + Language.Haskell.GhcMod.Cradle + Language.Haskell.GhcMod.Doc + Language.Haskell.GhcMod.Debug + Language.Haskell.GhcMod.ErrMsg + Language.Haskell.GhcMod.Flag + Language.Haskell.GhcMod.GHCApi + Language.Haskell.GhcMod.GHCChoice + Language.Haskell.GhcMod.Gap + Language.Haskell.GhcMod.Info + Language.Haskell.GhcMod.Lang + Language.Haskell.GhcMod.Lint + Language.Haskell.GhcMod.List + Language.Haskell.GhcMod.Types + Build-Depends: base >= 4.0 && < 5 + , Cabal >= 1.10 + , containers + , convertible + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + +Executable ghc-mod + Default-Language: Haskell2010 + Main-Is: GHCMod.hs + Other-Modules: Paths_ghc_mod + GHC-Options: -Wall + HS-Source-Dirs: src + Build-Depends: base >= 4.0 && < 5 + , directory + , filepath + , ghc + , ghc-mod + +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 + +Test-Suite spec + Default-Language: Haskell2010 + Main-Is: Spec.hs + Hs-Source-Dirs: test, . + Type: exitcode-stdio-1.0 + Other-Modules: Dir + BrowseSpec + CabalApiSpec + CheckSpec + DebugSpec + FlagSpec + InfoSpec + LangSpec + LintSpec + ListSpec + Build-Depends: base >= 4.0 && < 5 + , Cabal >= 1.10 + , containers + , convertible + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + , hspec >= 1.7.1 + +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-3.1.3.cabal b/hackage-metadata/ghc-mod-3.1.3.cabal new file mode 100644 index 0000000..6c4748a --- /dev/null +++ b/hackage-metadata/ghc-mod-3.1.3.cabal @@ -0,0 +1,139 @@ +Name: ghc-mod +Version: 3.1.3 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +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, + the ghc-mod library, and Emacs front-end + (for historical reasons). + For more information, please see its home page. + +Category: Development +Cabal-Version: >= 1.10 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el + ghc-ins-mod.el ghc-indent.el ghc-pkg.el +Extra-Source-Files: ChangeLog + test/data/*.cabal + test/data/*.hs + test/data/cabal.sandbox.config + test/data/.cabal-sandbox/i386-osx-ghc-7.6.3-packages.conf.d/dummy + test/data/broken-cabal/*.cabal + test/data/broken-sandbox/*.cabal + test/data/broken-sandbox/cabal.sandbox.config + test/data/check-test-subdir/*.cabal + test/data/check-test-subdir/src/Check/Test/*.hs + test/data/check-test-subdir/test/*.hs + test/data/check-test-subdir/test/Bar/*.hs + test/data/ghc-mod-check/*.cabal + test/data/ghc-mod-check/*.hs + test/data/ghc-mod-check/Data/*.hs + test/data/subdir1/subdir2/dummy + +Library + Default-Language: Haskell2010 + GHC-Options: -Wall + Exposed-Modules: Language.Haskell.GhcMod + Language.Haskell.GhcMod.Internal + Other-Modules: Language.Haskell.GhcMod.Browse + Language.Haskell.GhcMod.CabalApi + Language.Haskell.GhcMod.Check + Language.Haskell.GhcMod.Cradle + Language.Haskell.GhcMod.Doc + Language.Haskell.GhcMod.Debug + Language.Haskell.GhcMod.ErrMsg + Language.Haskell.GhcMod.Flag + Language.Haskell.GhcMod.GHCApi + Language.Haskell.GhcMod.GHCChoice + Language.Haskell.GhcMod.Gap + Language.Haskell.GhcMod.Info + Language.Haskell.GhcMod.Lang + Language.Haskell.GhcMod.Lint + Language.Haskell.GhcMod.List + Language.Haskell.GhcMod.Types + Build-Depends: base >= 4.0 && < 5 + , Cabal >= 1.10 + , containers + , convertible + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + +Executable ghc-mod + Default-Language: Haskell2010 + Main-Is: GHCMod.hs + Other-Modules: Paths_ghc_mod + GHC-Options: -Wall + HS-Source-Dirs: src + Build-Depends: base >= 4.0 && < 5 + , directory + , filepath + , ghc + , ghc-mod + +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 + +Test-Suite spec + Default-Language: Haskell2010 + Main-Is: Spec.hs + Hs-Source-Dirs: test, . + Type: exitcode-stdio-1.0 + Other-Modules: Dir + BrowseSpec + CabalApiSpec + CheckSpec + DebugSpec + FlagSpec + InfoSpec + LangSpec + LintSpec + ListSpec + Build-Depends: base >= 4.0 && < 5 + , Cabal >= 1.10 + , containers + , convertible + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + , hspec >= 1.7.1 + if impl(ghc < 7.6.0) + Build-Depends: executable-path + +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-3.1.4.cabal b/hackage-metadata/ghc-mod-3.1.4.cabal new file mode 100644 index 0000000..51cdaa8 --- /dev/null +++ b/hackage-metadata/ghc-mod-3.1.4.cabal @@ -0,0 +1,141 @@ +Name: ghc-mod +Version: 3.1.4 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +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, + the ghc-mod library, and Emacs front-end + (for historical reasons). + For more information, please see its home page. + +Category: Development +Cabal-Version: >= 1.10 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el + ghc-ins-mod.el ghc-indent.el ghc-pkg.el +Extra-Source-Files: ChangeLog + test/data/*.cabal + test/data/*.hs + test/data/cabal.sandbox.config + test/data/.cabal-sandbox/i386-osx-ghc-7.6.3-packages.conf.d/dummy + test/data/broken-cabal/*.cabal + test/data/broken-sandbox/*.cabal + test/data/broken-sandbox/cabal.sandbox.config + test/data/check-test-subdir/*.cabal + test/data/check-test-subdir/src/Check/Test/*.hs + test/data/check-test-subdir/test/*.hs + test/data/check-test-subdir/test/Bar/*.hs + test/data/ghc-mod-check/*.cabal + test/data/ghc-mod-check/*.hs + test/data/ghc-mod-check/Data/*.hs + test/data/subdir1/subdir2/dummy + +Library + Default-Language: Haskell2010 + GHC-Options: -Wall + Exposed-Modules: Language.Haskell.GhcMod + Language.Haskell.GhcMod.Internal + Other-Modules: Language.Haskell.GhcMod.Browse + Language.Haskell.GhcMod.CabalApi + Language.Haskell.GhcMod.Check + Language.Haskell.GhcMod.Cradle + Language.Haskell.GhcMod.Doc + Language.Haskell.GhcMod.Debug + Language.Haskell.GhcMod.ErrMsg + Language.Haskell.GhcMod.Flag + Language.Haskell.GhcMod.GHCApi + Language.Haskell.GhcMod.GHCChoice + Language.Haskell.GhcMod.Gap + Language.Haskell.GhcMod.Info + Language.Haskell.GhcMod.Lang + Language.Haskell.GhcMod.Lint + Language.Haskell.GhcMod.List + Language.Haskell.GhcMod.Types + Build-Depends: base >= 4.0 && < 5 + , Cabal >= 1.10 + , containers + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + if impl(ghc < 7.7) + Build-Depends: convertible + +Executable ghc-mod + Default-Language: Haskell2010 + Main-Is: GHCMod.hs + Other-Modules: Paths_ghc_mod + GHC-Options: -Wall + HS-Source-Dirs: src + Build-Depends: base >= 4.0 && < 5 + , directory + , filepath + , ghc + , ghc-mod + +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 + +Test-Suite spec + Default-Language: Haskell2010 + Main-Is: Spec.hs + Hs-Source-Dirs: test, . + Type: exitcode-stdio-1.0 + Other-Modules: Dir + BrowseSpec + CabalApiSpec + CheckSpec + DebugSpec + FlagSpec + InfoSpec + LangSpec + LintSpec + ListSpec + Build-Depends: base >= 4.0 && < 5 + , Cabal >= 1.10 + , containers + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + , hspec >= 1.7.1 + if impl(ghc < 7.7) + Build-Depends: convertible + if impl(ghc < 7.6.0) + Build-Depends: executable-path + +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-3.1.5.cabal b/hackage-metadata/ghc-mod-3.1.5.cabal new file mode 100644 index 0000000..5682d8c --- /dev/null +++ b/hackage-metadata/ghc-mod-3.1.5.cabal @@ -0,0 +1,145 @@ +Name: ghc-mod +Version: 3.1.5 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +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, + the ghc-mod library, and Emacs front-end + (for historical reasons). + For more information, please see its home page. + +Category: Development +Cabal-Version: >= 1.10 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el + ghc-ins-mod.el ghc-indent.el ghc-pkg.el +Extra-Source-Files: ChangeLog + test/data/*.cabal + test/data/*.hs + test/data/cabal.sandbox.config + test/data/.cabal-sandbox/i386-osx-ghc-7.6.3-packages.conf.d/dummy + test/data/broken-cabal/*.cabal + test/data/broken-sandbox/*.cabal + test/data/broken-sandbox/cabal.sandbox.config + test/data/check-test-subdir/*.cabal + test/data/check-test-subdir/src/Check/Test/*.hs + test/data/check-test-subdir/test/*.hs + test/data/check-test-subdir/test/Bar/*.hs + test/data/ghc-mod-check/*.cabal + test/data/ghc-mod-check/*.hs + test/data/ghc-mod-check/Data/*.hs + test/data/subdir1/subdir2/dummy + +Library + Default-Language: Haskell2010 + GHC-Options: -Wall + Exposed-Modules: Language.Haskell.GhcMod + Language.Haskell.GhcMod.Internal + Other-Modules: Language.Haskell.GhcMod.Browse + Language.Haskell.GhcMod.CabalApi + Language.Haskell.GhcMod.Check + Language.Haskell.GhcMod.Cradle + Language.Haskell.GhcMod.Doc + Language.Haskell.GhcMod.Debug + Language.Haskell.GhcMod.ErrMsg + Language.Haskell.GhcMod.Flag + Language.Haskell.GhcMod.GHCApi + Language.Haskell.GhcMod.GHCChoice + Language.Haskell.GhcMod.Gap + Language.Haskell.GhcMod.Info + Language.Haskell.GhcMod.Lang + Language.Haskell.GhcMod.Lint + Language.Haskell.GhcMod.List + Language.Haskell.GhcMod.Types + Build-Depends: base >= 4.0 && < 5 + , containers + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + if impl(ghc < 7.7) + Build-Depends: convertible + , Cabal >= 1.10 && < 1.17 + else + Build-Depends: Cabal >= 1.18 + +Executable ghc-mod + Default-Language: Haskell2010 + Main-Is: GHCMod.hs + Other-Modules: Paths_ghc_mod + GHC-Options: -Wall + HS-Source-Dirs: src + Build-Depends: base >= 4.0 && < 5 + , directory + , filepath + , ghc + , ghc-mod + +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 + +Test-Suite spec + Default-Language: Haskell2010 + Main-Is: Spec.hs + Hs-Source-Dirs: test, . + Type: exitcode-stdio-1.0 + Other-Modules: Dir + BrowseSpec + CabalApiSpec + CheckSpec + DebugSpec + FlagSpec + InfoSpec + LangSpec + LintSpec + ListSpec + Build-Depends: base >= 4.0 && < 5 + , containers + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + , hspec >= 1.7.1 + if impl(ghc < 7.7) + Build-Depends: convertible + , Cabal >= 1.10 && < 1.17 + else + Build-Depends: Cabal >= 1.18 + if impl(ghc < 7.6.0) + Build-Depends: executable-path + +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-3.1.6.cabal b/hackage-metadata/ghc-mod-3.1.6.cabal new file mode 100644 index 0000000..2e6d239 --- /dev/null +++ b/hackage-metadata/ghc-mod-3.1.6.cabal @@ -0,0 +1,145 @@ +Name: ghc-mod +Version: 3.1.6 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +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, + the ghc-mod library, and Emacs front-end + (for historical reasons). + For more information, please see its home page. + +Category: Development +Cabal-Version: >= 1.10 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el + ghc-ins-mod.el ghc-indent.el ghc-pkg.el +Extra-Source-Files: ChangeLog + test/data/*.cabal + test/data/*.hs + test/data/cabal.sandbox.config + test/data/.cabal-sandbox/i386-osx-ghc-7.6.3-packages.conf.d/dummy + test/data/broken-cabal/*.cabal + test/data/broken-sandbox/*.cabal + test/data/broken-sandbox/cabal.sandbox.config + test/data/check-test-subdir/*.cabal + test/data/check-test-subdir/src/Check/Test/*.hs + test/data/check-test-subdir/test/*.hs + test/data/check-test-subdir/test/Bar/*.hs + test/data/ghc-mod-check/*.cabal + test/data/ghc-mod-check/*.hs + test/data/ghc-mod-check/Data/*.hs + test/data/subdir1/subdir2/dummy + +Library + Default-Language: Haskell2010 + GHC-Options: -Wall + Exposed-Modules: Language.Haskell.GhcMod + Language.Haskell.GhcMod.Internal + Other-Modules: Language.Haskell.GhcMod.Browse + Language.Haskell.GhcMod.CabalApi + Language.Haskell.GhcMod.Check + Language.Haskell.GhcMod.Cradle + Language.Haskell.GhcMod.Doc + Language.Haskell.GhcMod.Debug + Language.Haskell.GhcMod.ErrMsg + Language.Haskell.GhcMod.Flag + Language.Haskell.GhcMod.GHCApi + Language.Haskell.GhcMod.GHCChoice + Language.Haskell.GhcMod.Gap + Language.Haskell.GhcMod.Info + Language.Haskell.GhcMod.Lang + Language.Haskell.GhcMod.Lint + Language.Haskell.GhcMod.List + Language.Haskell.GhcMod.Types + Build-Depends: base >= 4.0 && < 5 + , containers + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + if impl(ghc < 7.7) + Build-Depends: convertible + , Cabal >= 1.10 && < 1.17 + else + Build-Depends: Cabal >= 1.18 + +Executable ghc-mod + Default-Language: Haskell2010 + Main-Is: GHCMod.hs + Other-Modules: Paths_ghc_mod + GHC-Options: -Wall + HS-Source-Dirs: src + Build-Depends: base >= 4.0 && < 5 + , directory + , filepath + , ghc + , ghc-mod + +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 + +Test-Suite spec + Default-Language: Haskell2010 + Main-Is: Spec.hs + Hs-Source-Dirs: test, . + Type: exitcode-stdio-1.0 + Other-Modules: Dir + BrowseSpec + CabalApiSpec + CheckSpec + DebugSpec + FlagSpec + InfoSpec + LangSpec + LintSpec + ListSpec + Build-Depends: base >= 4.0 && < 5 + , containers + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + , hspec >= 1.7.1 + if impl(ghc < 7.7) + Build-Depends: convertible + , Cabal >= 1.10 && < 1.17 + else + Build-Depends: Cabal >= 1.18 + if impl(ghc < 7.6.0) + Build-Depends: executable-path + +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-3.1.7.cabal b/hackage-metadata/ghc-mod-3.1.7.cabal new file mode 100644 index 0000000..03d1ce2 --- /dev/null +++ b/hackage-metadata/ghc-mod-3.1.7.cabal @@ -0,0 +1,145 @@ +Name: ghc-mod +Version: 3.1.7 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +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, + the ghc-mod library, and Emacs front-end + (for historical reasons). + For more information, please see its home page. + +Category: Development +Cabal-Version: >= 1.10 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-flymake.el ghc-command.el ghc-info.el + ghc-ins-mod.el ghc-indent.el ghc-pkg.el +Extra-Source-Files: ChangeLog + test/data/*.cabal + test/data/*.hs + test/data/cabal.sandbox.config + test/data/.cabal-sandbox/i386-osx-ghc-7.6.3-packages.conf.d/dummy + test/data/broken-cabal/*.cabal + test/data/broken-sandbox/*.cabal + test/data/broken-sandbox/cabal.sandbox.config + test/data/check-test-subdir/*.cabal + test/data/check-test-subdir/src/Check/Test/*.hs + test/data/check-test-subdir/test/*.hs + test/data/check-test-subdir/test/Bar/*.hs + test/data/ghc-mod-check/*.cabal + test/data/ghc-mod-check/*.hs + test/data/ghc-mod-check/Data/*.hs + test/data/subdir1/subdir2/dummy + +Library + Default-Language: Haskell2010 + GHC-Options: -Wall + Exposed-Modules: Language.Haskell.GhcMod + Language.Haskell.GhcMod.Internal + Other-Modules: Language.Haskell.GhcMod.Browse + Language.Haskell.GhcMod.CabalApi + Language.Haskell.GhcMod.Check + Language.Haskell.GhcMod.Cradle + Language.Haskell.GhcMod.Doc + Language.Haskell.GhcMod.Debug + Language.Haskell.GhcMod.ErrMsg + Language.Haskell.GhcMod.Flag + Language.Haskell.GhcMod.GHCApi + Language.Haskell.GhcMod.GHCChoice + Language.Haskell.GhcMod.Gap + Language.Haskell.GhcMod.Info + Language.Haskell.GhcMod.Lang + Language.Haskell.GhcMod.Lint + Language.Haskell.GhcMod.List + Language.Haskell.GhcMod.Types + Build-Depends: base >= 4.0 && < 5 + , containers + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.8.58 + , io-choice + , old-time + , process + , syb + , time + , transformers + if impl(ghc < 7.7) + Build-Depends: convertible + , Cabal >= 1.10 && < 1.17 + else + Build-Depends: Cabal >= 1.18 + +Executable ghc-mod + Default-Language: Haskell2010 + Main-Is: GHCMod.hs + Other-Modules: Paths_ghc_mod + GHC-Options: -Wall + HS-Source-Dirs: src + Build-Depends: base >= 4.0 && < 5 + , directory + , filepath + , ghc + , ghc-mod + +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 + +Test-Suite spec + Default-Language: Haskell2010 + Main-Is: Spec.hs + Hs-Source-Dirs: test, . + Type: exitcode-stdio-1.0 + Other-Modules: Dir + BrowseSpec + CabalApiSpec + CheckSpec + DebugSpec + FlagSpec + InfoSpec + LangSpec + LintSpec + ListSpec + Build-Depends: base >= 4.0 && < 5 + , containers + , directory + , filepath + , ghc + , ghc-paths + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + , hspec >= 1.7.1 + if impl(ghc < 7.7) + Build-Depends: convertible + , Cabal >= 1.10 && < 1.17 + else + Build-Depends: Cabal >= 1.18 + if impl(ghc < 7.6.0) + Build-Depends: executable-path + +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-4.0.0.cabal b/hackage-metadata/ghc-mod-4.0.0.cabal new file mode 100644 index 0000000..f775651 --- /dev/null +++ b/hackage-metadata/ghc-mod-4.0.0.cabal @@ -0,0 +1,156 @@ +Name: ghc-mod +Version: 4.0.0 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +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, + the ghc-mod library, and Emacs front-end + (for historical reasons). + For more information, please see its home page. + +Category: Development +Cabal-Version: >= 1.10 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-check.el ghc-process.el ghc-command.el ghc-info.el + ghc-ins-mod.el ghc-indent.el ghc-pkg.el +Extra-Source-Files: ChangeLog + test/data/*.cabal + test/data/*.hs + test/data/cabal.sandbox.config + test/data/.cabal-sandbox/i386-osx-ghc-7.6.3-packages.conf.d/dummy + test/data/broken-cabal/*.cabal + test/data/broken-sandbox/*.cabal + test/data/broken-sandbox/cabal.sandbox.config + test/data/check-test-subdir/*.cabal + test/data/check-test-subdir/src/Check/Test/*.hs + test/data/check-test-subdir/test/*.hs + test/data/check-test-subdir/test/Bar/*.hs + test/data/ghc-mod-check/*.cabal + test/data/ghc-mod-check/*.hs + test/data/ghc-mod-check/Data/*.hs + test/data/subdir1/subdir2/dummy + +Library + Default-Language: Haskell2010 + GHC-Options: -Wall + Exposed-Modules: Language.Haskell.GhcMod + Language.Haskell.GhcMod.Internal + Other-Modules: Language.Haskell.GhcMod.Browse + Language.Haskell.GhcMod.CabalApi + Language.Haskell.GhcMod.Check + Language.Haskell.GhcMod.Cradle + Language.Haskell.GhcMod.Debug + Language.Haskell.GhcMod.Doc + Language.Haskell.GhcMod.ErrMsg + Language.Haskell.GhcMod.Flag + Language.Haskell.GhcMod.GHCApi + Language.Haskell.GhcMod.GHCChoice + Language.Haskell.GhcMod.Gap + Language.Haskell.GhcMod.Info + Language.Haskell.GhcMod.Lang + Language.Haskell.GhcMod.Lint + Language.Haskell.GhcMod.List + Language.Haskell.GhcMod.PkgDoc + Language.Haskell.GhcMod.Types + Build-Depends: base >= 4.0 && < 5 + , containers + , directory + , filepath + , ghc + , ghc-syb-utils + , hlint >= 1.8.58 + , io-choice + , old-time + , process + , syb + , time + , transformers + if impl(ghc < 7.7) + Build-Depends: convertible + , Cabal >= 1.10 && < 1.17 + else + Build-Depends: Cabal >= 1.18 + +Executable ghc-mod + Default-Language: Haskell2010 + Main-Is: GHCMod.hs + Other-Modules: Paths_ghc_mod + GHC-Options: -Wall + HS-Source-Dirs: src + Build-Depends: base >= 4.0 && < 5 + , directory + , filepath + , ghc + , ghc-mod + +Executable ghc-modi + Default-Language: Haskell2010 + Main-Is: GHCModi.hs + Other-Modules: Paths_ghc_mod + GHC-Options: -Wall + HS-Source-Dirs: src + Build-Depends: base >= 4.0 && < 5 + , containers + , directory + , filepath + , ghc + , ghc-mod + +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 + +Test-Suite spec + Default-Language: Haskell2010 + Main-Is: Spec.hs + Hs-Source-Dirs: test, . + Type: exitcode-stdio-1.0 + Other-Modules: Dir + BrowseSpec + CabalApiSpec + CheckSpec + FlagSpec + InfoSpec + LangSpec + LintSpec + ListSpec + Build-Depends: base >= 4.0 && < 5 + , containers + , directory + , filepath + , ghc + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + , hspec >= 1.7.1 + if impl(ghc < 7.7) + Build-Depends: convertible + , Cabal >= 1.10 && < 1.17 + else + Build-Depends: Cabal >= 1.18 + if impl(ghc < 7.6.0) + Build-Depends: executable-path + +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-4.0.1.cabal b/hackage-metadata/ghc-mod-4.0.1.cabal new file mode 100644 index 0000000..e230e59 --- /dev/null +++ b/hackage-metadata/ghc-mod-4.0.1.cabal @@ -0,0 +1,156 @@ +Name: ghc-mod +Version: 4.0.1 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +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, + the ghc-mod library, and Emacs front-end + (for historical reasons). + For more information, please see its home page. + +Category: Development +Cabal-Version: >= 1.10 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-check.el ghc-process.el ghc-command.el ghc-info.el + ghc-ins-mod.el ghc-indent.el ghc-pkg.el +Extra-Source-Files: ChangeLog + test/data/*.cabal + test/data/*.hs + test/data/cabal.sandbox.config + test/data/.cabal-sandbox/i386-osx-ghc-7.6.3-packages.conf.d/dummy + test/data/broken-cabal/*.cabal + test/data/broken-sandbox/*.cabal + test/data/broken-sandbox/cabal.sandbox.config + test/data/check-test-subdir/*.cabal + test/data/check-test-subdir/src/Check/Test/*.hs + test/data/check-test-subdir/test/*.hs + test/data/check-test-subdir/test/Bar/*.hs + test/data/ghc-mod-check/*.cabal + test/data/ghc-mod-check/*.hs + test/data/ghc-mod-check/Data/*.hs + test/data/subdir1/subdir2/dummy + +Library + Default-Language: Haskell2010 + GHC-Options: -Wall + Exposed-Modules: Language.Haskell.GhcMod + Language.Haskell.GhcMod.Internal + Other-Modules: Language.Haskell.GhcMod.Browse + Language.Haskell.GhcMod.CabalApi + Language.Haskell.GhcMod.Check + Language.Haskell.GhcMod.Cradle + Language.Haskell.GhcMod.Debug + Language.Haskell.GhcMod.Doc + Language.Haskell.GhcMod.ErrMsg + Language.Haskell.GhcMod.Flag + Language.Haskell.GhcMod.GHCApi + Language.Haskell.GhcMod.GHCChoice + Language.Haskell.GhcMod.Gap + Language.Haskell.GhcMod.Info + Language.Haskell.GhcMod.Lang + Language.Haskell.GhcMod.Lint + Language.Haskell.GhcMod.List + Language.Haskell.GhcMod.PkgDoc + Language.Haskell.GhcMod.Types + Build-Depends: base >= 4.0 && < 5 + , containers + , directory + , filepath + , ghc + , ghc-syb-utils + , hlint >= 1.8.58 + , io-choice + , old-time + , process + , syb + , time + , transformers + if impl(ghc < 7.7) + Build-Depends: convertible + , Cabal >= 1.10 && < 1.17 + else + Build-Depends: Cabal >= 1.18 + +Executable ghc-mod + Default-Language: Haskell2010 + Main-Is: GHCMod.hs + Other-Modules: Paths_ghc_mod + GHC-Options: -Wall + HS-Source-Dirs: src + Build-Depends: base >= 4.0 && < 5 + , directory + , filepath + , ghc + , ghc-mod + +Executable ghc-modi + Default-Language: Haskell2010 + Main-Is: GHCModi.hs + Other-Modules: Paths_ghc_mod + GHC-Options: -Wall + HS-Source-Dirs: src + Build-Depends: base >= 4.0 && < 5 + , containers + , directory + , filepath + , ghc + , ghc-mod + +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 + +Test-Suite spec + Default-Language: Haskell2010 + Main-Is: Spec.hs + Hs-Source-Dirs: test, . + Type: exitcode-stdio-1.0 + Other-Modules: Dir + BrowseSpec + CabalApiSpec + CheckSpec + FlagSpec + InfoSpec + LangSpec + LintSpec + ListSpec + Build-Depends: base >= 4.0 && < 5 + , containers + , directory + , filepath + , ghc + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + , hspec >= 1.7.1 + if impl(ghc < 7.7) + Build-Depends: convertible + , Cabal >= 1.10 && < 1.17 + else + Build-Depends: Cabal >= 1.18 + if impl(ghc < 7.6.0) + Build-Depends: executable-path + +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-4.0.2.cabal b/hackage-metadata/ghc-mod-4.0.2.cabal new file mode 100644 index 0000000..be8c222 --- /dev/null +++ b/hackage-metadata/ghc-mod-4.0.2.cabal @@ -0,0 +1,156 @@ +Name: ghc-mod +Version: 4.0.2 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +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, + the ghc-mod library, and Emacs front-end + (for historical reasons). + For more information, please see its home page. + +Category: Development +Cabal-Version: >= 1.10 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-check.el ghc-process.el ghc-command.el ghc-info.el + ghc-ins-mod.el ghc-indent.el ghc-pkg.el +Extra-Source-Files: ChangeLog + test/data/*.cabal + test/data/*.hs + test/data/cabal.sandbox.config + test/data/.cabal-sandbox/i386-osx-ghc-7.6.3-packages.conf.d/dummy + test/data/broken-cabal/*.cabal + test/data/broken-sandbox/*.cabal + test/data/broken-sandbox/cabal.sandbox.config + test/data/check-test-subdir/*.cabal + test/data/check-test-subdir/src/Check/Test/*.hs + test/data/check-test-subdir/test/*.hs + test/data/check-test-subdir/test/Bar/*.hs + test/data/ghc-mod-check/*.cabal + test/data/ghc-mod-check/*.hs + test/data/ghc-mod-check/Data/*.hs + test/data/subdir1/subdir2/dummy + +Library + Default-Language: Haskell2010 + GHC-Options: -Wall + Exposed-Modules: Language.Haskell.GhcMod + Language.Haskell.GhcMod.Internal + Other-Modules: Language.Haskell.GhcMod.Browse + Language.Haskell.GhcMod.CabalApi + Language.Haskell.GhcMod.Check + Language.Haskell.GhcMod.Cradle + Language.Haskell.GhcMod.Debug + Language.Haskell.GhcMod.Doc + Language.Haskell.GhcMod.ErrMsg + Language.Haskell.GhcMod.Flag + Language.Haskell.GhcMod.GHCApi + Language.Haskell.GhcMod.GHCChoice + Language.Haskell.GhcMod.Gap + Language.Haskell.GhcMod.Info + Language.Haskell.GhcMod.Lang + Language.Haskell.GhcMod.Lint + Language.Haskell.GhcMod.List + Language.Haskell.GhcMod.PkgDoc + Language.Haskell.GhcMod.Types + Build-Depends: base >= 4.0 && < 5 + , containers + , directory + , filepath + , ghc + , ghc-syb-utils + , hlint >= 1.8.58 + , io-choice + , old-time + , process + , syb + , time + , transformers + if impl(ghc < 7.7) + Build-Depends: convertible + , Cabal >= 1.10 && < 1.17 + else + Build-Depends: Cabal >= 1.18 + +Executable ghc-mod + Default-Language: Haskell2010 + Main-Is: GHCMod.hs + Other-Modules: Paths_ghc_mod + GHC-Options: -Wall + HS-Source-Dirs: src + Build-Depends: base >= 4.0 && < 5 + , directory + , filepath + , ghc + , ghc-mod + +Executable ghc-modi + Default-Language: Haskell2010 + Main-Is: GHCModi.hs + Other-Modules: Paths_ghc_mod + GHC-Options: -Wall + HS-Source-Dirs: src + Build-Depends: base >= 4.0 && < 5 + , containers + , directory + , filepath + , ghc + , ghc-mod + +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 + +Test-Suite spec + Default-Language: Haskell2010 + Main-Is: Spec.hs + Hs-Source-Dirs: test, . + Type: exitcode-stdio-1.0 + Other-Modules: Dir + BrowseSpec + CabalApiSpec + CheckSpec + FlagSpec + InfoSpec + LangSpec + LintSpec + ListSpec + Build-Depends: base >= 4.0 && < 5 + , containers + , directory + , filepath + , ghc + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + , hspec >= 1.7.1 + if impl(ghc < 7.7) + Build-Depends: convertible + , Cabal >= 1.10 && < 1.17 + else + Build-Depends: Cabal >= 1.18 + if impl(ghc < 7.6.0) + Build-Depends: executable-path + +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-4.1.0.cabal b/hackage-metadata/ghc-mod-4.1.0.cabal new file mode 100644 index 0000000..f804771 --- /dev/null +++ b/hackage-metadata/ghc-mod-4.1.0.cabal @@ -0,0 +1,167 @@ +Name: ghc-mod +Version: 4.1.0 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +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, + the ghc-mod library, and Emacs front-end + (for historical reasons). + For more information, please see its home page. + +Category: Development +Cabal-Version: >= 1.10 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-check.el ghc-process.el ghc-command.el ghc-info.el + ghc-ins-mod.el ghc-indent.el ghc-pkg.el +Extra-Source-Files: ChangeLog + test/data/*.cabal + test/data/*.hs + test/data/cabal.sandbox.config.in + test/data/.cabal-sandbox/i386-osx-ghc-7.6.3-packages.conf.d/Cabal-1.18.1.3-2b161c6bf77657aa17e1681d83cb051b.conf + test/data/broken-cabal/*.cabal + test/data/broken-sandbox/*.cabal + test/data/broken-sandbox/cabal.sandbox.config + test/data/check-test-subdir/*.cabal + test/data/check-test-subdir/src/Check/Test/*.hs + 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 + test/data/ghc-mod-check/*.cabal + test/data/ghc-mod-check/*.hs + test/data/ghc-mod-check/Data/*.hs + test/data/subdir1/subdir2/dummy + +Library + Default-Language: Haskell2010 + GHC-Options: -Wall + Exposed-Modules: Language.Haskell.GhcMod + Language.Haskell.GhcMod.Ghc + Language.Haskell.GhcMod.Internal + Other-Modules: Language.Haskell.GhcMod.Boot + Language.Haskell.GhcMod.Browse + Language.Haskell.GhcMod.CabalApi + Language.Haskell.GhcMod.Check + Language.Haskell.GhcMod.Cradle + Language.Haskell.GhcMod.Debug + Language.Haskell.GhcMod.Doc + Language.Haskell.GhcMod.Find + Language.Haskell.GhcMod.Flag + Language.Haskell.GhcMod.GHCApi + Language.Haskell.GhcMod.GHCChoice + Language.Haskell.GhcMod.Gap + Language.Haskell.GhcMod.GhcPkg + Language.Haskell.GhcMod.Logger + Language.Haskell.GhcMod.Info + Language.Haskell.GhcMod.Lang + Language.Haskell.GhcMod.Lint + Language.Haskell.GhcMod.List + Language.Haskell.GhcMod.PkgDoc + Language.Haskell.GhcMod.Utils + Language.Haskell.GhcMod.Types + Build-Depends: base >= 4.0 && < 5 + , containers + , deepseq + , directory + , filepath + , ghc + , ghc-syb-utils + , hlint >= 1.8.61 + , io-choice + , old-time + , process + , syb + , time + , transformers + if impl(ghc < 7.7) + Build-Depends: convertible + , Cabal >= 1.10 && < 1.17 + else + Build-Depends: Cabal >= 1.18 + +Executable ghc-mod + Default-Language: Haskell2010 + Main-Is: GHCMod.hs + Other-Modules: Paths_ghc_mod + GHC-Options: -Wall + HS-Source-Dirs: src + Build-Depends: base >= 4.0 && < 5 + , directory + , filepath + , ghc + , ghc-mod + +Executable ghc-modi + Default-Language: Haskell2010 + Main-Is: GHCModi.hs + Other-Modules: Paths_ghc_mod + GHC-Options: -Wall + HS-Source-Dirs: src + Build-Depends: base >= 4.0 && < 5 + , containers + , directory + , filepath + , ghc + , ghc-mod + +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 + +Test-Suite spec + Default-Language: Haskell2010 + Main-Is: Main.hs + Hs-Source-Dirs: test, . + Type: exitcode-stdio-1.0 + Other-Modules: Dir + Spec + BrowseSpec + CabalApiSpec + CheckSpec + FlagSpec + InfoSpec + LangSpec + LintSpec + ListSpec + GhcPkgSpec + Build-Depends: base >= 4.0 && < 5 + , containers + , deepseq + , directory + , filepath + , ghc + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + , hspec >= 1.7.1 + if impl(ghc < 7.7) + Build-Depends: convertible + , Cabal >= 1.10 && < 1.17 + else + Build-Depends: Cabal >= 1.18 + if impl(ghc < 7.6.0) + Build-Depends: executable-path + +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-4.1.1.cabal b/hackage-metadata/ghc-mod-4.1.1.cabal new file mode 100644 index 0000000..cbcc334 --- /dev/null +++ b/hackage-metadata/ghc-mod-4.1.1.cabal @@ -0,0 +1,167 @@ +Name: ghc-mod +Version: 4.1.1 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +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, + the ghc-mod library, and Emacs front-end + (for historical reasons). + For more information, please see its home page. + +Category: Development +Cabal-Version: >= 1.10 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-check.el ghc-process.el ghc-command.el ghc-info.el + ghc-ins-mod.el ghc-indent.el ghc-pkg.el +Extra-Source-Files: ChangeLog + test/data/*.cabal + test/data/*.hs + test/data/cabal.sandbox.config.in + test/data/.cabal-sandbox/i386-osx-ghc-7.6.3-packages.conf.d/Cabal-1.18.1.3-2b161c6bf77657aa17e1681d83cb051b.conf + test/data/broken-cabal/*.cabal + test/data/broken-sandbox/*.cabal + test/data/broken-sandbox/cabal.sandbox.config + test/data/check-test-subdir/*.cabal + test/data/check-test-subdir/src/Check/Test/*.hs + 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 + test/data/ghc-mod-check/*.cabal + test/data/ghc-mod-check/*.hs + test/data/ghc-mod-check/Data/*.hs + test/data/subdir1/subdir2/dummy + +Library + Default-Language: Haskell2010 + GHC-Options: -Wall + Exposed-Modules: Language.Haskell.GhcMod + Language.Haskell.GhcMod.Ghc + Language.Haskell.GhcMod.Internal + Other-Modules: Language.Haskell.GhcMod.Boot + Language.Haskell.GhcMod.Browse + Language.Haskell.GhcMod.CabalApi + Language.Haskell.GhcMod.Check + Language.Haskell.GhcMod.Cradle + Language.Haskell.GhcMod.Debug + Language.Haskell.GhcMod.Doc + Language.Haskell.GhcMod.Find + Language.Haskell.GhcMod.Flag + Language.Haskell.GhcMod.GHCApi + Language.Haskell.GhcMod.GHCChoice + Language.Haskell.GhcMod.Gap + Language.Haskell.GhcMod.GhcPkg + Language.Haskell.GhcMod.Logger + Language.Haskell.GhcMod.Info + Language.Haskell.GhcMod.Lang + Language.Haskell.GhcMod.Lint + Language.Haskell.GhcMod.List + Language.Haskell.GhcMod.PkgDoc + Language.Haskell.GhcMod.Utils + Language.Haskell.GhcMod.Types + Build-Depends: base >= 4.0 && < 5 + , containers + , deepseq + , directory + , filepath + , ghc + , ghc-syb-utils + , hlint >= 1.8.61 + , io-choice + , old-time + , process + , syb + , time + , transformers + if impl(ghc < 7.7) + Build-Depends: convertible + , Cabal >= 1.10 && < 1.17 + else + Build-Depends: Cabal >= 1.18 + +Executable ghc-mod + Default-Language: Haskell2010 + Main-Is: GHCMod.hs + Other-Modules: Paths_ghc_mod + GHC-Options: -Wall + HS-Source-Dirs: src + Build-Depends: base >= 4.0 && < 5 + , directory + , filepath + , ghc + , ghc-mod + +Executable ghc-modi + Default-Language: Haskell2010 + Main-Is: GHCModi.hs + Other-Modules: Paths_ghc_mod + GHC-Options: -Wall + HS-Source-Dirs: src + Build-Depends: base >= 4.0 && < 5 + , containers + , directory + , filepath + , ghc + , ghc-mod + +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 + +Test-Suite spec + Default-Language: Haskell2010 + Main-Is: Main.hs + Hs-Source-Dirs: test, . + Type: exitcode-stdio-1.0 + Other-Modules: Dir + Spec + BrowseSpec + CabalApiSpec + CheckSpec + FlagSpec + InfoSpec + LangSpec + LintSpec + ListSpec + GhcPkgSpec + Build-Depends: base >= 4.0 && < 5 + , containers + , deepseq + , directory + , filepath + , ghc + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + , hspec >= 1.7.1 + if impl(ghc < 7.7) + Build-Depends: convertible + , Cabal >= 1.10 && < 1.17 + else + Build-Depends: Cabal >= 1.18 + if impl(ghc < 7.6.0) + Build-Depends: executable-path + +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-4.1.2.cabal b/hackage-metadata/ghc-mod-4.1.2.cabal new file mode 100644 index 0000000..6467ba8 --- /dev/null +++ b/hackage-metadata/ghc-mod-4.1.2.cabal @@ -0,0 +1,167 @@ +Name: ghc-mod +Version: 4.1.2 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +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, + the ghc-mod library, and Emacs front-end + (for historical reasons). + For more information, please see its home page. + +Category: Development +Cabal-Version: >= 1.10 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-check.el ghc-process.el ghc-command.el ghc-info.el + ghc-ins-mod.el ghc-indent.el ghc-pkg.el +Extra-Source-Files: ChangeLog + test/data/*.cabal + test/data/*.hs + test/data/cabal.sandbox.config.in + test/data/.cabal-sandbox/i386-osx-ghc-7.6.3-packages.conf.d/Cabal-1.18.1.3-2b161c6bf77657aa17e1681d83cb051b.conf + test/data/broken-cabal/*.cabal + test/data/broken-sandbox/*.cabal + test/data/broken-sandbox/cabal.sandbox.config + test/data/check-test-subdir/*.cabal + test/data/check-test-subdir/src/Check/Test/*.hs + 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 + test/data/ghc-mod-check/*.cabal + test/data/ghc-mod-check/*.hs + test/data/ghc-mod-check/Data/*.hs + test/data/subdir1/subdir2/dummy + +Library + Default-Language: Haskell2010 + GHC-Options: -Wall + Exposed-Modules: Language.Haskell.GhcMod + Language.Haskell.GhcMod.Ghc + Language.Haskell.GhcMod.Internal + Other-Modules: Language.Haskell.GhcMod.Boot + Language.Haskell.GhcMod.Browse + Language.Haskell.GhcMod.CabalApi + Language.Haskell.GhcMod.Check + Language.Haskell.GhcMod.Cradle + Language.Haskell.GhcMod.Debug + Language.Haskell.GhcMod.Doc + Language.Haskell.GhcMod.Find + Language.Haskell.GhcMod.Flag + Language.Haskell.GhcMod.GHCApi + Language.Haskell.GhcMod.GHCChoice + Language.Haskell.GhcMod.Gap + Language.Haskell.GhcMod.GhcPkg + Language.Haskell.GhcMod.Logger + Language.Haskell.GhcMod.Info + Language.Haskell.GhcMod.Lang + Language.Haskell.GhcMod.Lint + Language.Haskell.GhcMod.List + Language.Haskell.GhcMod.PkgDoc + Language.Haskell.GhcMod.Utils + Language.Haskell.GhcMod.Types + Build-Depends: base >= 4.0 && < 5 + , containers + , deepseq + , directory + , filepath + , ghc + , ghc-syb-utils + , hlint >= 1.8.61 + , io-choice + , old-time + , process + , syb + , time + , transformers + if impl(ghc < 7.7) + Build-Depends: convertible + , Cabal >= 1.10 && < 1.17 + else + Build-Depends: Cabal >= 1.18 + +Executable ghc-mod + Default-Language: Haskell2010 + Main-Is: GHCMod.hs + Other-Modules: Paths_ghc_mod + GHC-Options: -Wall + HS-Source-Dirs: src + Build-Depends: base >= 4.0 && < 5 + , directory + , filepath + , ghc + , ghc-mod + +Executable ghc-modi + Default-Language: Haskell2010 + Main-Is: GHCModi.hs + Other-Modules: Paths_ghc_mod + GHC-Options: -Wall + HS-Source-Dirs: src + Build-Depends: base >= 4.0 && < 5 + , containers + , directory + , filepath + , ghc + , ghc-mod + +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 + +Test-Suite spec + Default-Language: Haskell2010 + Main-Is: Main.hs + Hs-Source-Dirs: test, . + Type: exitcode-stdio-1.0 + Other-Modules: Dir + Spec + BrowseSpec + CabalApiSpec + CheckSpec + FlagSpec + InfoSpec + LangSpec + LintSpec + ListSpec + GhcPkgSpec + Build-Depends: base >= 4.0 && < 5 + , containers + , deepseq + , directory + , filepath + , ghc + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + , hspec >= 1.7.1 + if impl(ghc < 7.7) + Build-Depends: convertible + , Cabal >= 1.10 && < 1.17 + else + Build-Depends: Cabal >= 1.18 + if impl(ghc < 7.6.0) + Build-Depends: executable-path + +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-4.1.3.cabal b/hackage-metadata/ghc-mod-4.1.3.cabal new file mode 100644 index 0000000..e6910d2 --- /dev/null +++ b/hackage-metadata/ghc-mod-4.1.3.cabal @@ -0,0 +1,167 @@ +Name: ghc-mod +Version: 4.1.3 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +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, + the ghc-mod library, and Emacs front-end + (for historical reasons). + For more information, please see its home page. + +Category: Development +Cabal-Version: >= 1.10 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-check.el ghc-process.el ghc-command.el ghc-info.el + ghc-ins-mod.el ghc-indent.el ghc-pkg.el +Extra-Source-Files: ChangeLog + test/data/*.cabal + test/data/*.hs + test/data/cabal.sandbox.config.in + test/data/.cabal-sandbox/i386-osx-ghc-7.6.3-packages.conf.d/Cabal-1.18.1.3-2b161c6bf77657aa17e1681d83cb051b.conf + test/data/broken-cabal/*.cabal + test/data/broken-sandbox/*.cabal + test/data/broken-sandbox/cabal.sandbox.config + test/data/check-test-subdir/*.cabal + test/data/check-test-subdir/src/Check/Test/*.hs + 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 + test/data/ghc-mod-check/*.cabal + test/data/ghc-mod-check/*.hs + test/data/ghc-mod-check/Data/*.hs + test/data/subdir1/subdir2/dummy + +Library + Default-Language: Haskell2010 + GHC-Options: -Wall + Exposed-Modules: Language.Haskell.GhcMod + Language.Haskell.GhcMod.Ghc + Language.Haskell.GhcMod.Internal + Other-Modules: Language.Haskell.GhcMod.Boot + Language.Haskell.GhcMod.Browse + Language.Haskell.GhcMod.CabalApi + Language.Haskell.GhcMod.Check + Language.Haskell.GhcMod.Cradle + Language.Haskell.GhcMod.Debug + Language.Haskell.GhcMod.Doc + Language.Haskell.GhcMod.Find + Language.Haskell.GhcMod.Flag + Language.Haskell.GhcMod.GHCApi + Language.Haskell.GhcMod.GHCChoice + Language.Haskell.GhcMod.Gap + Language.Haskell.GhcMod.GhcPkg + Language.Haskell.GhcMod.Logger + Language.Haskell.GhcMod.Info + Language.Haskell.GhcMod.Lang + Language.Haskell.GhcMod.Lint + Language.Haskell.GhcMod.List + Language.Haskell.GhcMod.PkgDoc + Language.Haskell.GhcMod.Utils + Language.Haskell.GhcMod.Types + Build-Depends: base >= 4.0 && < 5 + , containers + , deepseq + , directory + , filepath + , ghc + , ghc-syb-utils + , hlint >= 1.8.61 + , io-choice + , old-time + , process + , syb + , time + , transformers + if impl(ghc < 7.7) + Build-Depends: convertible + , Cabal >= 1.10 && < 1.17 + else + Build-Depends: Cabal >= 1.18 + +Executable ghc-mod + Default-Language: Haskell2010 + Main-Is: GHCMod.hs + Other-Modules: Paths_ghc_mod + GHC-Options: -Wall + HS-Source-Dirs: src + Build-Depends: base >= 4.0 && < 5 + , directory + , filepath + , ghc + , ghc-mod + +Executable ghc-modi + Default-Language: Haskell2010 + Main-Is: GHCModi.hs + Other-Modules: Paths_ghc_mod + GHC-Options: -Wall + HS-Source-Dirs: src + Build-Depends: base >= 4.0 && < 5 + , containers + , directory + , filepath + , ghc + , ghc-mod + +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 + +Test-Suite spec + Default-Language: Haskell2010 + Main-Is: Main.hs + Hs-Source-Dirs: test, . + Type: exitcode-stdio-1.0 + Other-Modules: Dir + Spec + BrowseSpec + CabalApiSpec + CheckSpec + FlagSpec + InfoSpec + LangSpec + LintSpec + ListSpec + GhcPkgSpec + Build-Depends: base >= 4.0 && < 5 + , containers + , deepseq + , directory + , filepath + , ghc + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + , hspec >= 1.7.1 + if impl(ghc < 7.7) + Build-Depends: convertible + , Cabal >= 1.10 && < 1.17 + else + Build-Depends: Cabal >= 1.18 + if impl(ghc < 7.6.0) + Build-Depends: executable-path + +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-4.1.4.cabal b/hackage-metadata/ghc-mod-4.1.4.cabal new file mode 100644 index 0000000..9211bcc --- /dev/null +++ b/hackage-metadata/ghc-mod-4.1.4.cabal @@ -0,0 +1,167 @@ +Name: ghc-mod +Version: 4.1.4 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +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, + the ghc-mod library, and Emacs front-end + (for historical reasons). + For more information, please see its home page. + +Category: Development +Cabal-Version: >= 1.10 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-check.el ghc-process.el ghc-command.el ghc-info.el + ghc-ins-mod.el ghc-indent.el ghc-pkg.el +Extra-Source-Files: ChangeLog + test/data/*.cabal + test/data/*.hs + test/data/cabal.sandbox.config.in + test/data/.cabal-sandbox/i386-osx-ghc-7.6.3-packages.conf.d/Cabal-1.18.1.3-2b161c6bf77657aa17e1681d83cb051b.conf + test/data/broken-cabal/*.cabal + test/data/broken-sandbox/*.cabal + test/data/broken-sandbox/cabal.sandbox.config + test/data/check-test-subdir/*.cabal + test/data/check-test-subdir/src/Check/Test/*.hs + 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 + test/data/ghc-mod-check/*.cabal + test/data/ghc-mod-check/*.hs + test/data/ghc-mod-check/Data/*.hs + test/data/subdir1/subdir2/dummy + +Library + Default-Language: Haskell2010 + GHC-Options: -Wall + Exposed-Modules: Language.Haskell.GhcMod + Language.Haskell.GhcMod.Ghc + Language.Haskell.GhcMod.Internal + Other-Modules: Language.Haskell.GhcMod.Boot + Language.Haskell.GhcMod.Browse + Language.Haskell.GhcMod.CabalApi + Language.Haskell.GhcMod.Check + Language.Haskell.GhcMod.Cradle + Language.Haskell.GhcMod.Debug + Language.Haskell.GhcMod.Doc + Language.Haskell.GhcMod.Find + Language.Haskell.GhcMod.Flag + Language.Haskell.GhcMod.GHCApi + Language.Haskell.GhcMod.GHCChoice + Language.Haskell.GhcMod.Gap + Language.Haskell.GhcMod.GhcPkg + Language.Haskell.GhcMod.Logger + Language.Haskell.GhcMod.Info + Language.Haskell.GhcMod.Lang + Language.Haskell.GhcMod.Lint + Language.Haskell.GhcMod.List + Language.Haskell.GhcMod.PkgDoc + Language.Haskell.GhcMod.Utils + Language.Haskell.GhcMod.Types + Build-Depends: base >= 4.0 && < 5 + , containers + , deepseq + , directory + , filepath + , ghc + , ghc-syb-utils + , hlint >= 1.8.61 + , io-choice + , old-time + , process + , syb + , time + , transformers + if impl(ghc < 7.7) + Build-Depends: convertible + , Cabal >= 1.10 && < 1.17 + else + Build-Depends: Cabal >= 1.18 + +Executable ghc-mod + Default-Language: Haskell2010 + Main-Is: GHCMod.hs + Other-Modules: Paths_ghc_mod + GHC-Options: -Wall + HS-Source-Dirs: src + Build-Depends: base >= 4.0 && < 5 + , directory + , filepath + , ghc + , ghc-mod + +Executable ghc-modi + Default-Language: Haskell2010 + Main-Is: GHCModi.hs + Other-Modules: Paths_ghc_mod + GHC-Options: -Wall + HS-Source-Dirs: src + Build-Depends: base >= 4.0 && < 5 + , containers + , directory + , filepath + , ghc + , ghc-mod + +Test-Suite doctest + Type: exitcode-stdio-1.0 + Default-Language: Haskell2010 + HS-Source-Dirs: test + Ghc-Options: -Wall + Main-Is: doctests.hs + Build-Depends: base + , doctest >= 0.9.3 + +Test-Suite spec + Default-Language: Haskell2010 + Main-Is: Main.hs + Hs-Source-Dirs: test, . + Type: exitcode-stdio-1.0 + Other-Modules: Dir + Spec + BrowseSpec + CabalApiSpec + CheckSpec + FlagSpec + InfoSpec + LangSpec + LintSpec + ListSpec + GhcPkgSpec + Build-Depends: base >= 4.0 && < 5 + , containers + , deepseq + , directory + , filepath + , ghc + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + , hspec >= 1.7.1 + if impl(ghc < 7.7) + Build-Depends: convertible + , Cabal >= 1.10 && < 1.17 + else + Build-Depends: Cabal >= 1.18 + if impl(ghc < 7.6.0) + Build-Depends: executable-path + +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-4.1.5.cabal b/hackage-metadata/ghc-mod-4.1.5.cabal new file mode 100644 index 0000000..b2fd8ee --- /dev/null +++ b/hackage-metadata/ghc-mod-4.1.5.cabal @@ -0,0 +1,167 @@ +Name: ghc-mod +Version: 4.1.5 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +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, + the ghc-mod library, and Emacs front-end + (for historical reasons). + For more information, please see its home page. + +Category: Development +Cabal-Version: >= 1.10 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-check.el ghc-process.el ghc-command.el ghc-info.el + ghc-ins-mod.el ghc-indent.el ghc-pkg.el +Extra-Source-Files: ChangeLog + test/data/*.cabal + test/data/*.hs + test/data/cabal.sandbox.config.in + test/data/.cabal-sandbox/i386-osx-ghc-7.6.3-packages.conf.d/Cabal-1.18.1.3-2b161c6bf77657aa17e1681d83cb051b.conf + test/data/broken-cabal/*.cabal + test/data/broken-sandbox/*.cabal + test/data/broken-sandbox/cabal.sandbox.config + test/data/check-test-subdir/*.cabal + test/data/check-test-subdir/src/Check/Test/*.hs + 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 + test/data/ghc-mod-check/*.cabal + test/data/ghc-mod-check/*.hs + test/data/ghc-mod-check/Data/*.hs + test/data/subdir1/subdir2/dummy + +Library + Default-Language: Haskell2010 + GHC-Options: -Wall + Exposed-Modules: Language.Haskell.GhcMod + Language.Haskell.GhcMod.Ghc + Language.Haskell.GhcMod.Internal + Other-Modules: Language.Haskell.GhcMod.Boot + Language.Haskell.GhcMod.Browse + Language.Haskell.GhcMod.CabalApi + Language.Haskell.GhcMod.Check + Language.Haskell.GhcMod.Cradle + Language.Haskell.GhcMod.Debug + Language.Haskell.GhcMod.Doc + Language.Haskell.GhcMod.Find + Language.Haskell.GhcMod.Flag + Language.Haskell.GhcMod.GHCApi + Language.Haskell.GhcMod.GHCChoice + Language.Haskell.GhcMod.Gap + Language.Haskell.GhcMod.GhcPkg + Language.Haskell.GhcMod.Logger + Language.Haskell.GhcMod.Info + Language.Haskell.GhcMod.Lang + Language.Haskell.GhcMod.Lint + Language.Haskell.GhcMod.List + Language.Haskell.GhcMod.PkgDoc + Language.Haskell.GhcMod.Utils + Language.Haskell.GhcMod.Types + Build-Depends: base >= 4.0 && < 5 + , containers + , deepseq + , directory + , filepath + , ghc + , ghc-syb-utils + , hlint >= 1.8.61 + , io-choice + , old-time + , process + , syb + , time + , transformers + if impl(ghc < 7.7) + Build-Depends: convertible + , Cabal >= 1.10 && < 1.17 + else + Build-Depends: Cabal >= 1.18 + +Executable ghc-mod + Default-Language: Haskell2010 + Main-Is: GHCMod.hs + Other-Modules: Paths_ghc_mod + GHC-Options: -Wall + HS-Source-Dirs: src + Build-Depends: base >= 4.0 && < 5 + , directory + , filepath + , ghc + , ghc-mod + +Executable ghc-modi + Default-Language: Haskell2010 + Main-Is: GHCModi.hs + Other-Modules: Paths_ghc_mod + GHC-Options: -Wall + HS-Source-Dirs: src + Build-Depends: base >= 4.0 && < 5 + , containers + , directory + , filepath + , ghc + , ghc-mod + +Test-Suite doctest + Type: exitcode-stdio-1.0 + Default-Language: Haskell2010 + HS-Source-Dirs: test + Ghc-Options: -Wall + Main-Is: doctests.hs + Build-Depends: base + , doctest >= 0.9.3 + +Test-Suite spec + Default-Language: Haskell2010 + Main-Is: Main.hs + Hs-Source-Dirs: test, . + Type: exitcode-stdio-1.0 + Other-Modules: Dir + Spec + BrowseSpec + CabalApiSpec + CheckSpec + FlagSpec + InfoSpec + LangSpec + LintSpec + ListSpec + GhcPkgSpec + Build-Depends: base >= 4.0 && < 5 + , containers + , deepseq + , directory + , filepath + , ghc + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + , hspec >= 1.7.1 + if impl(ghc < 7.7) + Build-Depends: convertible + , Cabal >= 1.10 && < 1.17 + else + Build-Depends: Cabal >= 1.18 + if impl(ghc < 7.6.0) + Build-Depends: executable-path + +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git diff --git a/hackage-metadata/ghc-mod-4.1.6.cabal b/hackage-metadata/ghc-mod-4.1.6.cabal new file mode 100644 index 0000000..09cbae3 --- /dev/null +++ b/hackage-metadata/ghc-mod-4.1.6.cabal @@ -0,0 +1,167 @@ +Name: ghc-mod +Version: 4.1.6 +Author: Kazu Yamamoto +Maintainer: Kazu Yamamoto +License: BSD3 +License-File: LICENSE +Homepage: http://www.mew.org/~kazu/proj/ghc-mod/ +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, + the ghc-mod library, and Emacs front-end + (for historical reasons). + For more information, please see its home page. + +Category: Development +Cabal-Version: >= 1.10 +Build-Type: Simple +Data-Dir: elisp +Data-Files: Makefile ghc.el ghc-func.el ghc-doc.el ghc-comp.el + ghc-check.el ghc-process.el ghc-command.el ghc-info.el + ghc-ins-mod.el ghc-indent.el ghc-pkg.el +Extra-Source-Files: ChangeLog + test/data/*.cabal + test/data/*.hs + test/data/cabal.sandbox.config.in + test/data/.cabal-sandbox/i386-osx-ghc-7.6.3-packages.conf.d/Cabal-1.18.1.3-2b161c6bf77657aa17e1681d83cb051b.conf + test/data/broken-cabal/*.cabal + test/data/broken-sandbox/*.cabal + test/data/broken-sandbox/cabal.sandbox.config + test/data/check-test-subdir/*.cabal + test/data/check-test-subdir/src/Check/Test/*.hs + 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 + test/data/ghc-mod-check/*.cabal + test/data/ghc-mod-check/*.hs + test/data/ghc-mod-check/Data/*.hs + test/data/subdir1/subdir2/dummy + +Library + Default-Language: Haskell2010 + GHC-Options: -Wall + Exposed-Modules: Language.Haskell.GhcMod + Language.Haskell.GhcMod.Ghc + Language.Haskell.GhcMod.Internal + Other-Modules: Language.Haskell.GhcMod.Boot + Language.Haskell.GhcMod.Browse + Language.Haskell.GhcMod.CabalApi + Language.Haskell.GhcMod.Check + Language.Haskell.GhcMod.Cradle + Language.Haskell.GhcMod.Debug + Language.Haskell.GhcMod.Doc + Language.Haskell.GhcMod.Find + Language.Haskell.GhcMod.Flag + Language.Haskell.GhcMod.GHCApi + Language.Haskell.GhcMod.GHCChoice + Language.Haskell.GhcMod.Gap + Language.Haskell.GhcMod.GhcPkg + Language.Haskell.GhcMod.Logger + Language.Haskell.GhcMod.Info + Language.Haskell.GhcMod.Lang + Language.Haskell.GhcMod.Lint + Language.Haskell.GhcMod.List + Language.Haskell.GhcMod.PkgDoc + Language.Haskell.GhcMod.Utils + Language.Haskell.GhcMod.Types + Build-Depends: base >= 4.0 && < 5 + , containers + , deepseq + , directory + , filepath + , ghc + , ghc-syb-utils + , hlint >= 1.8.61 + , io-choice + , old-time + , process + , syb + , time + , transformers + if impl(ghc < 7.7) + Build-Depends: convertible + , Cabal >= 1.10 && < 1.17 + else + Build-Depends: Cabal >= 1.18 + +Executable ghc-mod + Default-Language: Haskell2010 + Main-Is: GHCMod.hs + Other-Modules: Paths_ghc_mod + GHC-Options: -Wall + HS-Source-Dirs: src + Build-Depends: base >= 4.0 && < 5 + , directory + , filepath + , ghc + , ghc-mod + +Executable ghc-modi + Default-Language: Haskell2010 + Main-Is: GHCModi.hs + Other-Modules: Paths_ghc_mod + GHC-Options: -Wall + HS-Source-Dirs: src + Build-Depends: base >= 4.0 && < 5 + , containers + , directory + , filepath + , ghc + , ghc-mod + +Test-Suite doctest + Type: exitcode-stdio-1.0 + Default-Language: Haskell2010 + HS-Source-Dirs: test + Ghc-Options: -Wall + Main-Is: doctests.hs + Build-Depends: base + , doctest >= 0.9.3 + +Test-Suite spec + Default-Language: Haskell2010 + Main-Is: Main.hs + Hs-Source-Dirs: test, . + Type: exitcode-stdio-1.0 + Other-Modules: Dir + Spec + BrowseSpec + CabalApiSpec + CheckSpec + FlagSpec + InfoSpec + LangSpec + LintSpec + ListSpec + GhcPkgSpec + Build-Depends: base >= 4.0 && < 5 + , containers + , deepseq + , directory + , filepath + , ghc + , ghc-syb-utils + , hlint >= 1.7.1 + , io-choice + , old-time + , process + , syb + , time + , transformers + , hspec >= 1.7.1 + if impl(ghc < 7.7) + Build-Depends: convertible + , Cabal >= 1.10 && < 1.17 + else + Build-Depends: Cabal >= 1.18 + if impl(ghc < 7.6.0) + Build-Depends: executable-path + +Source-Repository head + Type: git + Location: git://github.com/kazu-yamamoto/ghc-mod.git