packages feed

cab-0.2.8: cab.cabal

Name:                   cab
Version:                0.2.8
Author:                 Kazu Yamamoto <kazu@iij.ad.jp>
Maintainer:             Kazu Yamamoto <kazu@iij.ad.jp>
License:                BSD3
License-File:           LICENSE
Synopsis:               A maintenance command of Haskell cabal packages
Description:            This is a MacPorts-like maintenance command of
   Haskell cabal packages. Some part of this program is a wrapper to
   "ghc-pkg" and "cabal".
   If you are always confused due to inconsistency of two commands,
   or if you want a way to check all outdated packages,
   or if you want a way to remove outdated packages recursively,
   this command helps you.
Homepage:               http://www.mew.org/~kazu/proj/cab/
Category:               Distribution
Cabal-Version:          >= 1.10
Build-Type:             Simple

Library
  Default-Language:     Haskell2010
  GHC-Options:          -Wall
  Build-Depends:        base >= 4.0 && < 5
                      , Cabal
                      , attoparsec >= 0.10
                      , attoparsec-conduit >= 0.3
                      , bytestring
                      , conduit >= 0.3
                      , containers
                      , directory
                      , filepath
                      , process
                      , process-conduit >= 0.1
  Exposed-Modules:	Distribution.Cab
                        Distribution.Cab.PkgDB
                        Distribution.Cab.Printer
                        Distribution.Cab.Sandbox
                        Distribution.Cab.VerDB
                        Distribution.Cab.Version
  Other-Modules:        Distribution.Cab.Commands
                        Distribution.Cab.GenPaths
                        Distribution.Cab.Utils

Executable cab
  Default-Language:     Haskell2010
  Main-Is:              Main.hs
  GHC-Options:          -Wall
  HS-Source-Dirs:       src
  Build-Depends:        base >= 4.0 && < 5
                      , cab
                      , Cabal >= 1.18
                      , attoparsec >= 0.10
                      , attoparsec-conduit >= 0.3
                      , bytestring
                      , conduit >= 0.3
                      , containers
                      , directory
                      , filepath
                      , process
                      , process-conduit >= 0.1
  if os(windows)
     Build-Depends:
  else
     Build-Depends:     unix
  Other-Modules:	Commands
                        Doc
                        Help
                        Options
                        Program
                        Run
                        Types
                        Paths_cab

-- 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

Source-Repository head
  Type:                 git
  Location:             git://github.com/kazu-yamamoto/cab.git