]> gitweb @ CieloNegro.org - time-w3c.git/blobdiff - time-w3c.cabal
Bump version to 0.1.0.1
[time-w3c.git] / time-w3c.cabal
index 6b08679ce6627e9768efa6f34752df0b031826a0..04b18c09ccb9ddd9a042025a71b6d49ed8e0058c 100644 (file)
@@ -1,11 +1,13 @@
 Name:                time-w3c
-Version:             0.1
+Version:             0.1.0.1
 Synopsis:            Parse, format and convert W3C Date and Time
 Description:
-        This module provides functionalities to parse and format W3C
-        Date and Time. The module can also be used to convert it
-        from/to "Data.Time.Calendar.Day" and
-        "Data.Time.LocalTime.ZonedTime".
+        This package provides functionalities to parse and format W3C
+        Date and Time. The package can also be used to convert it
+        from/to 'Data.Time.Calendar.Day' and
+        'Data.Time.LocalTime.ZonedTime'.
+
+        See: <http://www.w3.org/TR/NOTE-datetime>
 
 License:             PublicDomain
 License-file:        COPYING
@@ -13,21 +15,61 @@ Author:              PHO <pho AT cielonegro DOT org>
 Maintainer:          PHO <pho AT cielonegro DOT org>
 Stability:           Experimental
 Homepage:            http://cielonegro.org/W3CDateTime.html
+Bug-Reports:         http://static.cielonegro.org/ditz/time-w3c/
 Category:            Web
 Build-type:          Simple
-Cabal-version:       >= 1.2.3
-Extra-source-files:
+Cabal-version:       >= 1.6
+Extra-Source-Files:
+    COPYING
+    NEWS
+
+Source-Repository head
+    Type: git
+    Location: git://git.cielonegro.org/time-w3c.git
+
+Flag build-test-suite
+    Description: Build the tst suite.
+    Default:     False
 
 Library
     Exposed-modules:
         Data.Time.W3C
         Data.Time.W3C.Format
+        Data.Time.W3C.Parser
+        Data.Time.W3C.Parser.Parsec
         Data.Time.W3C.Types
 
     Build-depends:
-        base >= 4 && < 5,
-        convertible >= 1.0,
-        time >= 1.1
+        base        == 4.3.*,
+        convertible == 1.0.*,
+        parsec      == 3.1.*,
+        time        == 1.2.*
+
+    Extensions:
+        DeriveDataTypeable
+        FlexibleContexts
+        MultiParamTypeClasses
+
+    GHC-Options:
+        -Wall
+
+Executable W3CDateTimeUnitTest
+    Main-Is:
+        W3CDateTimeUnitTest.hs
+
+    if flag(build-test-suite)
+        Buildable: True
+        Build-Depends: HUnit >= 1.2 && < 2
+    else
+        Buildable: False
+
+    Hs-Source-Dirs:
+        ., tests
+
+    Other-Modules:
+        ConversionTest
+        FormatterTest
+        ParsecParserTest
 
     Extensions:
         DeriveDataTypeable