data-fin-0.1.1.1: data-fin.cabal
----------------------------------------------------------------
-- wren ng thornton <wren@community.haskell.org> ~ 2014.03.22
----------------------------------------------------------------
-- By and large Cabal >=1.2 is fine; but >= 1.6 gives tested-with:
-- and source-repository:.
Cabal-Version: >= 1.6
Build-Type: Simple
Name: data-fin
Version: 0.1.1.1
Stability: experimental
Homepage: http://code.haskell.org/~wren/
Author: wren ng thornton
Maintainer: wren@community.haskell.org
Copyright: Copyright (c) 2012--2014 wren ng thornton
License: BSD3
License-File: LICENSE
Category: Data
Synopsis:
Finite totally ordered sets
Description:
Finite totally ordered sets
Tested-With:
GHC ==6.12.1, GHC ==7.6.1, GHC ==7.8.2
Extra-source-files:
AUTHORS, README, VERSION
Source-Repository head
Type: darcs
Location: http://community.haskell.org/~wren/data-fin
----------------------------------------------------------------
Flag base4
Default: True
Description: base-4.0 emits "Prelude deprecated" messages in
order to get people to be explicit about which
version of base they use.
Flag splitBase
Default: True
Description: base-3.0 (GHC 6.8) broke out the packages: array,
bytestring, containers, directory, old-locale,
old-time, packedstring, pretty, process, random.
----------------------------------------------------------------
Library
Hs-Source-Dirs: src
Exposed-Modules: Data.Number.Fin
, Data.Number.Fin.Integer
, Data.Number.Fin.Int8
, Data.Number.Fin.Int16
, Data.Number.Fin.Int32
, Data.Number.Fin.Int64
-- Data.Number.Fin.Word8
-- Data.Number.Fin.Word16
-- Data.Number.Fin.Word32
-- Data.Number.Fin.Word64
-- Data.Number.Fin.TyInteger
-- Data.Number.Fin.TyBinary
, Data.Number.Fin.TyDecimal
-- TODO: OfType should be moved elsewhere if we don't use it...
-- Data.Reflection.OfType
Other-Modules: Data.Number.Fin.TyOrdering
Build-Depends: tagged >= 0.2.3 && < 0.8
, reflection >= 1.1.6 && < 1.5
, prelude-safeenum < 0.2
-- N.B., major smallcheck API break between 0.5 and 0.6
, smallcheck >= 0.4 && < 1.2
, lazysmallcheck >= 0.5 && < 0.7
, QuickCheck >= 2.4.1.1 && < 2.8
-- I think this is all that needs doing to get rid of the warnings?
if flag(base4)
Build-Depends: base >= 4 && < 5
else
Build-Depends: base < 4
----------------------------------------------------------------
----------------------------------------------------------- fin.