packages feed

GTALib-0.0.2: GTALib.cabal

-- GTALib.cabal auto-generated by cabal init. For additional options,
-- see
-- http://www.haskell.org/cabal/release/cabal-latest/doc/users-guide/authors.html#pkg-descr.
-- The name of the package.
Name:                GTALib

-- The package version. See the Haskell package versioning policy
-- (http://www.haskell.org/haskellwiki/Package_versioning_policy) for
-- standards guiding when and how versions should be incremented.
Version:             0.0.2

-- A short (one-line) description of the package.
Synopsis: A library for GTA programming           

-- A longer description of the package.
Description: This package provides the core functionalities of the GTA (Generate, Test, and Aggregate) programming framework on Haskell (c.f., Kento Emoto, Sebastian Fischer, Zhenjiang Hu: Generate, Test, and Aggregate - A Calculation-based Framework for Systematic Parallel Programming with MapReduce. ESOP 2012: 254-273). (This version is a very early version and dirty. The source files will be cleaned and documented soon.)

-- URL for the project homepage or repository.
Homepage: https://bitbucket.org/emoto/gtalib

-- The license under which the package is released.
License:             BSD3

-- The file containing the license text.
License-file:        LICENSE

-- The package author(s).
Author:              Kento Emoto

-- An email address to which users can send suggestions, bug reports,
-- and patches.
Maintainer:          emoto@mist.i.u-tokyo.ac.jp

-- A copyright notice.
-- Copyright:           

Category:            Language

Build-type:          Simple

-- Extra files to be distributed with the package, such as examples or
-- a README.
-- Extra-source-files:  

-- Constraint on the version of Cabal needed to build this package.
Cabal-version:       >=1.8
Tested-with:         GHC==7.0.4

source-repository head
  type:    git
  location: https://bitbucket.org/emoto/gtalib.git

Library
  -- Modules exported by the library.
  Exposed-modules:     GTA.Core, GTA.Util.TypeInfo, GTA.Util.GenericSemiringStructureTemplate, GTA.Data.JoinList, GTA.Data.BinTree
  
  -- Packages needed in order to build this package.
  Build-depends:    base>=4.3 && < 4.6,template-haskell>=2.5 && <2.8,containers>=0.4 && <0.6,parallel >=3.1 && < 3.3
  HS-source-dirs:   src/
  -- GHC-options:    -Wall   -O
  
  -- Modules not exported by this package.
  -- Other-modules:       
  
  -- Extra tools (e.g. alex, hsc2hs, ...) needed to build the source.
  -- Build-tools:         
  

Test-Suite unit-test
  HS-source-dirs:      test/
  Type:                exitcode-stdio-1.0
  Main-is:             test.hs
  Build-depends:       base>=4.3 && < 4.6,test-framework>=0.6&&<0.7,GTALib>=0.0.1,HUnit>=1.2.4.2 &&< 1.3,test-framework-hunit>=0.2.7&&<0.3