~ubuntu-branches/ubuntu/utopic/haskell-uulib/utopic

« back to all changes in this revision

Viewing changes to uulib.cabal

  • Committer: Bazaar Package Importer
  • Author(s): Marco Túlio Gontijo e Silva
  • Date: 2009-04-08 20:01:10 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20090408200110-96hu9fr918e1wsr1
Tags: 0.9.10-0.1
* Non-maintainer upload.
* New upstream version.  Closes: #523214.
* Use new version of haskell-devscripts.
* debian/control:
  - Use new Standards-Version.
  - cpphs is not Indep.
* debian/patches: Remove directory.
* debian/haskell-uulib-doc.doc-base: haddock's file are stored now in
  /usr/share/libghc6-uulib-doc/html/.
* debian/haskell-uulib-doc.examples: Create file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
cabal-version: >=1.1
2
2
build-type: Simple
3
3
name: uulib
4
 
version: 0.9.5
 
4
version: 0.9.10
5
5
license: LGPL
6
6
license-file: COPYRIGHT
7
7
maintainer: Arie Middelkoop <ariem@cs.uu.nl>
11
11
category: Parsing
12
12
stability: Stable
13
13
copyright: Universiteit Utrecht
14
 
build-depends: base, haskell98
15
 
exposed-modules: UU.Parsing.CharParser UU.Parsing.Derived
16
 
                 UU.Parsing.Interface UU.Parsing.MachineInterface
17
 
                 UU.Parsing.Merge UU.Parsing.Offside UU.Parsing.Perms
18
 
                 UU.Parsing.StateParser UU.Parsing UU.DData.IntBag 
19
 
                 UU.DData.Map UU.DData.MultiSet UU.DData.Queue
20
 
                 UU.DData.Scc UU.DData.Seq UU.DData.Set UU.PPrint
21
 
                 UU.Pretty.Ext UU.Pretty UU.Scanner.GenToken UU.Scanner.GenTokenOrd
22
 
                 UU.Scanner.GenTokenParser UU.Scanner.GenTokenSymbol
23
 
                 UU.Scanner.Position UU.Scanner.Scanner
24
 
                 UU.Scanner.Token UU.Scanner.TokenParser UU.Scanner.TokenShow
25
 
                 UU.Scanner UU.Util.BinaryTrees UU.Util.PermTree UU.Util.Utils
26
 
                 UU.Pretty.Basic UU.Parsing.Machine    
27
 
                 UU.DData.IntMap  
28
 
                 UU.DData.IntSet        
29
 
extensions:  RankNTypes FunctionalDependencies TypeSynonymInstances UndecidableInstances FlexibleInstances MultiParamTypeClasses FlexibleContexts CPP ExistentialQuantification
30
 
hs-source-dirs: src
31
 
extra-source-files: README, LICENSE-LGPL
 
14
extra-source-files: README, LICENSE-LGPL,
 
15
                    examples/bibtex/Bibtex.hs,
 
16
                    examples/parser/Example.hs,
 
17
                    examples/parser/Makefile,
 
18
                    examples/parser/README,
 
19
                    examples/parser/Scanner.x
 
20
flag have_ghc_prim
 
21
  description: ghc-prim as separate module
 
22
library
 
23
  if flag(have_ghc_prim)
 
24
    build-depends: base>=4, ghc-prim
 
25
  else
 
26
    build-depends: base<4
 
27
  build-depends: haskell98
 
28
  exposed-modules: UU.Parsing.CharParser UU.Parsing.Derived
 
29
                   UU.Parsing.Interface UU.Parsing.MachineInterface
 
30
                   UU.Parsing.Merge UU.Parsing.Offside UU.Parsing.Perms
 
31
                   UU.Parsing.StateParser UU.Parsing UU.DData.IntBag 
 
32
                   UU.DData.Map UU.DData.MultiSet UU.DData.Queue
 
33
                   UU.DData.Scc UU.DData.Seq UU.DData.Set UU.PPrint
 
34
                   UU.Pretty.Ext UU.Pretty UU.Scanner.GenToken UU.Scanner.GenTokenOrd
 
35
                   UU.Scanner.GenTokenParser UU.Scanner.GenTokenSymbol
 
36
                   UU.Scanner.Position UU.Scanner.Scanner
 
37
                   UU.Scanner.Token UU.Scanner.TokenParser UU.Scanner.TokenShow
 
38
                   UU.Scanner UU.Util.BinaryTrees UU.Util.PermTree UU.Util.Utils
 
39
                   UU.Pretty.Basic UU.Parsing.Machine    
 
40
                   UU.DData.IntMap  
 
41
                   UU.DData.IntSet        
 
42
  extensions:  RankNTypes FunctionalDependencies TypeSynonymInstances UndecidableInstances FlexibleInstances MultiParamTypeClasses FlexibleContexts CPP ExistentialQuantification
 
43
  ghc-options: -fglasgow-exts
 
44
  hs-source-dirs: src
 
45