---------------------------------------------------------------- -- wren ng thornton ~ 2013.07.20 ---------------------------------------------------------------- -- 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.0 Stability: experimental Homepage: http://code.haskell.org/~wren/ Author: wren ng thornton Maintainer: wren@community.haskell.org Copyright: Copyright (c) 2012--2013 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 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.7 , reflection >= 1.1.6 && < 1.4 , prelude-safeenum < 0.2 -- N.B., major smallcheck API break between 0.5 and 0.6 , smallcheck >= 0.4 && < 0.7 , lazysmallcheck >= 0.5 && < 0.7 , QuickCheck >= 2.4.1.1 && < 2.7 -- 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.