packages feed

buildbox-1.0.2.0: buildbox.cabal

Name:                buildbox
Version:             1.0.2.0
License:             BSD3
License-file:        LICENSE
Author:              Ben Lippmeier
Maintainer:          Ben Lippmeier <benl@ouroborus.net>
Build-Type:          Simple
Cabal-Version:       >=1.6
Stability:           experimental
Category:            Development, Testing
Homepage:            http://code.haskell.org/~benl/code/buildbox-head
Description:
        Includes functions for checking the host platform, running tests, capturing output,
        handling errors, comparing runtimes against a baseline, sending mail, running events to a schedule etc.

	Some of these functions are just wrappers around shell commands, so be careful about passing
	them weirdly formed arguments.
	
Synopsis:
        Rehackable components for writing buildbots and test harnesses.

Tested-with:
        GHC == 6.12.1

Library
  Build-Depends: 
        base                 == 4.*,
        time                 == 1.1.*,
        mtl                  == 1.1.*,
        directory            == 1.0.*,
        process              == 1.0.*,
        unix                 == 2.4.*,
        pretty               == 1.0.*,
        old-locale           == 1.0.*,
        containers           == 0.3.*,
        bytestring           == 0.9.*

  ghc-options:
        -Wall

  Exposed-modules:
        BuildBox.Data.Log
        BuildBox.Benchmark.Compare
        BuildBox.Benchmark.Pretty
        BuildBox.Benchmark.TimeAspect
        BuildBox.Benchmark
        BuildBox.Build.Testable
        BuildBox.Build
        BuildBox.Command.Environment
        BuildBox.Command.File
        BuildBox.Command.Mail
        BuildBox.Command.Network
        BuildBox.Command.System
        BuildBox.Command.Sleep
        BuildBox.Cron.Schedule
        BuildBox.Cron
        BuildBox.Pretty
        BuildBox.Time
        BuildBox

  Other-modules:
        BuildBox.Command.System.Internals
        BuildBox.Benchmark.Base
        BuildBox.Build.Base