Update .cabal file.
authorIlya Portnov <portnov84@rambler.ru>
Fri, 30 Sep 2011 13:27:01 +0000 (19:27 +0600)
committerIlya V. Portnov <i.portnov@compassplus.ru>
Mon, 3 Oct 2011 03:37:21 +0000 (09:37 +0600)
hs-java.cabal

index 02b4234fed3dfadab79d63584281e89853f41a85..c038730d336ae067313e8d9abcc788bf9c34fdc9 100644 (file)
@@ -1,5 +1,5 @@
 Name:           hs-java
 Name:           hs-java
-Version:        0.1
+Version:        0.2
 Cabal-Version:  >= 1.6
 License:        BSD3
 License-File:   LICENSE
 Cabal-Version:  >= 1.6
 License:        BSD3
 License-File:   LICENSE
@@ -9,21 +9,33 @@ Synopsis:       Java .class files assembler/disassembler
 Category:       Jvm
 Build-Type:     Simple
 Description:    This package declares data types for Java .class files format and functions
 Category:       Jvm
 Build-Type:     Simple
 Description:    This package declares data types for Java .class files format and functions
-                to assemble/disassemble Java bytecode.
+                to assemble/disassemble Java bytecode. See dump-class.hs, rebuild-class.hs,
+                TestGen.hs for examples of usage.
 
 Extra-source-files: dump-class.hs
 
 Extra-source-files: dump-class.hs
+                    rebuild-class.hs
+                    TestGen.hs
 
 library
 
 library
-  Exposed-Modules: JVM.Types
+  Exposed-Modules: JVM.Common
                    JVM.ClassFile
                    JVM.Assembler
                    JVM.Converter
                    JVM.ClassFile
                    JVM.Assembler
                    JVM.Converter
+                   JVM.Builder
+                   JVM.Builder.Monad
+                   JVM.Builder.Instructions
+                   JVM.Dump
+                   JVM.Exceptions
+                   Java.Lang
+                   Java.IO
 
 
-  Build-Depends:  base >= 3 && <= 5, haskell98, containers, binary,
+  Build-Depends:  base >= 3 && <= 5, containers, binary,
                   mtl, directory, filepath, utf8-string, array,
                   bytestring, data-binary-ieee754, binary-state,
                   control-monad-exception
 
   ghc-options: -fwarn-unused-imports
 
                   mtl, directory, filepath, utf8-string, array,
                   bytestring, data-binary-ieee754, binary-state,
                   control-monad-exception
 
   ghc-options: -fwarn-unused-imports
 
-
+Source-repository head
+  type:     git
+  location: git remote add origin git@gitorious.org:hs-java/hs-java.git