hackage-metadata: download latest revisions

This commit is contained in:
Daniel Gröber 2016-05-28 17:31:55 +02:00
parent 29baf356c7
commit 9431d4dc82
85 changed files with 504 additions and 419 deletions

View File

@ -1,29 +1,30 @@
Name: ghc-mod
Version: 0.1.0
Author: Kazu Yamamoto <kazu@iij.ad.jp>
Maintainer: Kazu Yamamoto <kazu@iij.ad.jp>
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 && < 4.3,
parsec, process, haskell-src-exts
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Name: ghc-mod
Version: 0.1.0
x-revision: 1
Author: Kazu Yamamoto <kazu@iij.ad.jp>
Maintainer: Kazu Yamamoto <kazu@iij.ad.jp>
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 && < 4.3,
parsec, process, haskell-src-exts
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,33 +1,34 @@
Name: ghc-mod
Version: 0.2.0
Author: Kazu Yamamoto <kazu@iij.ad.jp>
Maintainer: Kazu Yamamoto <kazu@iij.ad.jp>
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 && < 4.3,
parsec >= 3, process, haskell-src-exts,
directory, filepath
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Name: ghc-mod
Version: 0.2.0
x-revision: 1
Author: Kazu Yamamoto <kazu@iij.ad.jp>
Maintainer: Kazu Yamamoto <kazu@iij.ad.jp>
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 && < 4.3,
parsec >= 3, process, haskell-src-exts,
directory, filepath
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,36 +1,37 @@
Name: ghc-mod
Version: 0.3.0
Author: Kazu Yamamoto <kazu@iij.ad.jp>
Maintainer: Kazu Yamamoto <kazu@iij.ad.jp>
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 && < 4.3,
parsec >= 3, process, haskell-src-exts,
directory, filepath
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Name: ghc-mod
Version: 0.3.0
x-revision: 1
Author: Kazu Yamamoto <kazu@iij.ad.jp>
Maintainer: Kazu Yamamoto <kazu@iij.ad.jp>
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 && < 4.3,
parsec >= 3, process, haskell-src-exts,
directory, filepath
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,35 +1,36 @@
Name: ghc-mod
Version: 0.4.0
Author: Kazu Yamamoto <kazu@iij.ad.jp>
Maintainer: Kazu Yamamoto <kazu@iij.ad.jp>
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 && < 4.3, ghc, ghc-paths,
process, directory, filepath
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Name: ghc-mod
Version: 0.4.0
x-revision: 1
Author: Kazu Yamamoto <kazu@iij.ad.jp>
Maintainer: Kazu Yamamoto <kazu@iij.ad.jp>
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 && < 4.3, ghc, ghc-paths,
process, directory, filepath
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,35 +1,36 @@
Name: ghc-mod
Version: 0.4.1
Author: Kazu Yamamoto <kazu@iij.ad.jp>
Maintainer: Kazu Yamamoto <kazu@iij.ad.jp>
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 && < 4.3, ghc, ghc-paths,
process, directory, filepath
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Name: ghc-mod
Version: 0.4.1
x-revision: 1
Author: Kazu Yamamoto <kazu@iij.ad.jp>
Maintainer: Kazu Yamamoto <kazu@iij.ad.jp>
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 && < 4.3, ghc, ghc-paths,
process, directory, filepath
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,35 +1,36 @@
Name: ghc-mod
Version: 0.4.2
Author: Kazu Yamamoto <kazu@iij.ad.jp>
Maintainer: Kazu Yamamoto <kazu@iij.ad.jp>
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 && < 4.3, ghc, ghc-paths,
process, directory, filepath, hlint >= 1.7.1
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Name: ghc-mod
Version: 0.4.2
x-revision: 1
Author: Kazu Yamamoto <kazu@iij.ad.jp>
Maintainer: Kazu Yamamoto <kazu@iij.ad.jp>
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 && < 4.3, ghc, ghc-paths,
process, directory, filepath, hlint >= 1.7.1
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,35 +1,36 @@
Name: ghc-mod
Version: 0.4.3
Author: Kazu Yamamoto <kazu@iij.ad.jp>
Maintainer: Kazu Yamamoto <kazu@iij.ad.jp>
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 && < 4.3, ghc, ghc-paths,
process, directory, filepath, hlint >= 1.7.1
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Name: ghc-mod
Version: 0.4.3
x-revision: 1
Author: Kazu Yamamoto <kazu@iij.ad.jp>
Maintainer: Kazu Yamamoto <kazu@iij.ad.jp>
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 && < 4.3, ghc, ghc-paths,
process, directory, filepath, hlint >= 1.7.1
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,35 +1,36 @@
Name: ghc-mod
Version: 0.4.4
Author: Kazu Yamamoto <kazu@iij.ad.jp>
Maintainer: Kazu Yamamoto <kazu@iij.ad.jp>
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 && < 4.3, ghc, ghc-paths,
process, directory, filepath, hlint >= 1.7.1
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Name: ghc-mod
Version: 0.4.4
x-revision: 1
Author: Kazu Yamamoto <kazu@iij.ad.jp>
Maintainer: Kazu Yamamoto <kazu@iij.ad.jp>
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 && < 4.3, ghc, ghc-paths,
process, directory, filepath, hlint >= 1.7.1
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,35 +1,36 @@
Name: ghc-mod
Version: 0.5.1
Author: Kazu Yamamoto <kazu@iij.ad.jp>
Maintainer: Kazu Yamamoto <kazu@iij.ad.jp>
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 && < 4.3, ghc, ghc-paths,
process, directory, filepath, hlint >= 1.7.1
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Name: ghc-mod
Version: 0.5.1
x-revision: 1
Author: Kazu Yamamoto <kazu@iij.ad.jp>
Maintainer: Kazu Yamamoto <kazu@iij.ad.jp>
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 && < 4.3, ghc, ghc-paths,
process, directory, filepath, hlint >= 1.7.1
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 0.5.2
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -33,4 +34,4 @@ Executable ghc-mod
hlint >= 1.7.1
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,36 +1,37 @@
Name: ghc-mod
Version: 0.5.3
Author: Kazu Yamamoto <kazu@iij.ad.jp>
Maintainer: Kazu Yamamoto <kazu@iij.ad.jp>
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 && 4.3, 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
Name: ghc-mod
Version: 0.5.3
x-revision: 1
Author: Kazu Yamamoto <kazu@iij.ad.jp>
Maintainer: Kazu Yamamoto <kazu@iij.ad.jp>
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 && < 4.3, 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

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 0.5.4
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -33,4 +34,4 @@ Executable ghc-mod
hlint >= 1.7.1
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 0.5.5
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -33,4 +34,4 @@ Executable ghc-mod
hlint >= 1.7.1
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 0.6.0
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -34,4 +35,4 @@ Executable ghc-mod
attoparsec, enumerator, attoparsec-enumerator
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 0.6.1
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -34,4 +35,4 @@ Executable ghc-mod
attoparsec, enumerator, attoparsec-enumerator
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 0.6.2
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -34,4 +35,4 @@ Executable ghc-mod
attoparsec, enumerator, attoparsec-enumerator
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 1.0.0
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -34,4 +35,4 @@ Executable ghc-mod
attoparsec, enumerator, attoparsec-enumerator
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 1.0.1
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -34,4 +35,4 @@ Executable ghc-mod
attoparsec, enumerator, attoparsec-enumerator
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 1.0.2
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -34,4 +35,4 @@ Executable ghc-mod
attoparsec, enumerator, attoparsec-enumerator
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 1.0.3
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -34,4 +35,4 @@ Executable ghc-mod
attoparsec >= 0.10 , enumerator, attoparsec-enumerator
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 1.0.4
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -34,4 +35,4 @@ Executable ghc-mod
attoparsec >= 0.10 , enumerator, attoparsec-enumerator
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 1.0.5
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -34,4 +35,4 @@ Executable ghc-mod
attoparsec >= 0.10 , enumerator, attoparsec-enumerator
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 1.0.6
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -34,4 +35,4 @@ Executable ghc-mod
attoparsec >= 0.10 , enumerator, attoparsec-enumerator
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 1.0.7
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -34,4 +35,4 @@ Executable ghc-mod
attoparsec >= 0.10 , enumerator, attoparsec-enumerator
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 1.0.8
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -34,4 +35,4 @@ Executable ghc-mod
attoparsec >= 0.10 , enumerator, attoparsec-enumerator
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 1.10.0
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -33,4 +34,4 @@ Executable ghc-mod
hlint >= 1.7.1, regex-posix, Cabal
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 1.10.1
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -33,4 +34,4 @@ Executable ghc-mod
hlint >= 1.7.1, regex-posix, Cabal
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 1.10.10
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -61,4 +62,4 @@ Executable ghc-mod
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 1.10.11
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -63,4 +64,4 @@ Executable ghc-mod
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 1.10.12
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -63,4 +64,4 @@ Executable ghc-mod
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 1.10.13
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -63,4 +64,4 @@ Executable ghc-mod
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 1.10.14
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -63,4 +64,4 @@ Executable ghc-mod
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 1.10.15
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -63,4 +64,4 @@ Executable ghc-mod
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 1.10.16
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -63,4 +64,4 @@ Executable ghc-mod
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 1.10.17
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -63,4 +64,4 @@ Executable ghc-mod
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 1.10.18
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -63,4 +64,4 @@ Executable ghc-mod
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 1.10.2
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -33,4 +34,4 @@ Executable ghc-mod
hlint >= 1.7.1, regex-posix, Cabal
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 1.10.3
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -33,4 +34,4 @@ Executable ghc-mod
hlint >= 1.7.1, regex-posix, Cabal
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 1.10.4
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -33,4 +34,4 @@ Executable ghc-mod
hlint >= 1.7.1, regex-posix, Cabal
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 1.10.5
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -33,4 +34,4 @@ Executable ghc-mod
hlint >= 1.7.1, regex-posix, Cabal
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 1.10.6
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -59,4 +60,4 @@ Executable ghc-mod
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 1.10.7
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -61,4 +62,4 @@ Executable ghc-mod
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 1.10.8
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -61,4 +62,4 @@ Executable ghc-mod
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 1.10.9
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -61,4 +62,4 @@ Executable ghc-mod
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 1.11.0
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -63,4 +64,4 @@ Executable ghc-mod
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 1.11.1
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -62,4 +63,4 @@ Executable ghc-mod
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 1.11.2
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -64,4 +65,4 @@ Executable ghc-mod
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 1.11.3
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -64,4 +65,4 @@ Executable ghc-mod
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 1.11.4
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -105,4 +106,4 @@ Test-Suite spec
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 1.11.5
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -106,4 +107,4 @@ Test-Suite spec
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 1.12.0
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -104,4 +105,4 @@ Test-Suite spec
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 1.12.1
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -104,4 +105,4 @@ Test-Suite spec
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 1.12.2
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -106,4 +107,4 @@ Test-Suite spec
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 1.12.3
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -110,4 +111,4 @@ Test-Suite spec
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 1.12.4
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -110,4 +111,4 @@ Test-Suite spec
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 1.12.5
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -110,4 +111,4 @@ Test-Suite spec
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 2.0.0
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -122,4 +123,4 @@ Test-Suite spec
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 2.0.1
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -120,4 +121,4 @@ Test-Suite spec
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 2.0.2
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -120,4 +121,4 @@ Test-Suite spec
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 2.0.3
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -120,4 +121,4 @@ Test-Suite spec
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 2.1.0
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -120,4 +121,4 @@ Test-Suite spec
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 2.1.1
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -121,4 +122,4 @@ Test-Suite spec
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 2.1.2
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -121,4 +122,4 @@ Test-Suite spec
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 3.0.0
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -122,4 +123,4 @@ Test-Suite spec
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 3.0.1
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -122,4 +123,4 @@ Test-Suite spec
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 3.0.2
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -122,4 +123,4 @@ Test-Suite spec
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 3.1.0
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -131,4 +132,4 @@ Test-Suite spec
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 3.1.1
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -134,4 +135,4 @@ Test-Suite spec
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 3.1.2
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -134,4 +135,4 @@ Test-Suite spec
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 3.1.3
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -136,4 +137,4 @@ Test-Suite spec
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 3.1.4
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -138,4 +139,4 @@ Test-Suite spec
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 3.1.5
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -142,4 +143,4 @@ Test-Suite spec
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 3.1.6
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -142,4 +143,4 @@ Test-Suite spec
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 3.1.7
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -142,4 +143,4 @@ Test-Suite spec
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 4.0.0
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -153,4 +154,4 @@ Test-Suite spec
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 4.0.1
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -153,4 +154,4 @@ Test-Suite spec
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 4.0.2
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -153,4 +154,4 @@ Test-Suite spec
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 4.1.0
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -164,4 +165,4 @@ Test-Suite spec
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 4.1.1
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -164,4 +165,4 @@ Test-Suite spec
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 4.1.2
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -164,4 +165,4 @@ Test-Suite spec
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 4.1.3
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -164,4 +165,4 @@ Test-Suite spec
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 4.1.4
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -164,4 +165,4 @@ Test-Suite spec
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 4.1.5
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -164,4 +165,4 @@ Test-Suite spec
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 4.1.6
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -164,4 +165,4 @@ Test-Suite spec
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git

View File

@ -1,3 +1,4 @@
X-Revision: 1
Name: ghc-mod
Version: 5.0.0
Author: Kazu Yamamoto <kazu@iij.ad.jp>
@ -212,4 +213,4 @@ Test-Suite spec
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/ghc-mod.git
Location: git://github.com/kazu-yamamoto/ghc-mod.git