packages feed

Cabal revisions of musicxml-0.1.1

Hackage metadata revisions edit the .cabal file after upload; each diff below is one revision.

revision 1
 name:           musicxml
 version:        0.1.1
+x-revision: 1
 author:         Samuel Silva <silva.samuel@alumni.uminho.pt>
 maintainer:     Samuel Silva <silva.samuel@alumni.uminho.pt>
 copyright:      Copyright (c) 2008 Samuel Silva
 stability:      experimental
-synopsis:       Library to parse musicxml and write musicxml. 
+synopsis:       Library to parse musicxml and write musicxml.
 description:    This library translates DTD specification of MusicXML 2.0 into
-                specific type. 
-                
+                specific type.
+
                 Library's purpose is to be interface between
                 MusicXML format and its application, allowing reading and
                 writting of musicxml documents.
-                
+
                 This library supports MusicXML at 2.0 version, not only partwise
                 and timewise specification but also opus and container
                 specification.
     examples/ReadWrite.lhs
     script/haskellpp.pl
     script/id.xsl
+
 flag splitBase
     default: True
     description: base >= 3
 
 library
     if flag(splitBase)
-        build-depends: base >=3, directory, old-time, containers
-    else 
+        build-depends: base >=3 && < 4.4, directory < 1.2, old-time < 1.1, containers < 0.5
+    else
         build-depends: base <3
-    build-depends: pretty, HaXml >=1.19.4
+    build-depends: pretty < 1.1, HaXml >=1.19.4 && < 1.21
 
-    ghc-options: -Wall 
+    ghc-options: -Wall
     hs-source-dirs: src
-    exposed-modules: 
+    exposed-modules:
         Text.XML.MusicXML
         Text.XML.MusicXML.Attributes
         Text.XML.MusicXML.Barline
         Text.XML.MusicXML.Util
 
 executable test-musicxml
-    ghc-options: -Wall 
+    ghc-options: -Wall
     hs-source-dirs: src, tests
     main-is: Test/MusicXML.lhs
     buildable: True
-
-