Codebase list haskell-exception-transformers / debian/0.3.0.2-1
haskell-exception-transformers: Initial Check-In Clint Adams 12 years ago
5 changed file(s) with 109 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 haskell-exception-transformers (0.3.0.2-1) unstable; urgency=low
1
2 * Initial release.
3
4 -- Clint Adams <clint@debian.org> Mon, 21 May 2012 00:12:12 -0400
0 Source: haskell-exception-transformers
1 Priority: extra
2 Section: haskell
3 Maintainer: Debian Haskell Group <pkg-haskell-maintainers@lists.alioth.debian.org>
4 Uploaders: Clint Adams <clint@debian.org>
5 Build-Depends: debhelper (>= 7.0)
6 , haskell-devscripts (>= 0.8.10)
7 , cdbs
8 , ghc
9 , ghc-prof
10 , libghc-stm-dev (>> 2.1)
11 , libghc-stm-dev (<< 2.4)
12 , libghc-stm-prof
13 , libghc-transformers-dev (>> 0.2)
14 , libghc-transformers-dev (<< 0.4)
15 , libghc-transformers-prof
16 , libghc-hunit-dev (>> 1.2)
17 , libghc-hunit-dev (<< 1.3)
18 Build-Depends-Indep: ghc-doc
19 , libghc-stm-doc
20 , libghc-transformers-doc
21 Standards-Version: 3.9.3
22 Homepage: http://www.eecs.harvard.edu/~mainland/
23 Vcs-Darcs: http://darcs.debian.org/pkg-haskell/haskell-exception-transformers
24 Vcs-Browser: http://darcs.debian.org/cgi-bin/darcsweb.cgi?r=pkg-haskell/haskell-exception-transformers
25
26 Package: libghc-exception-transformers-dev
27 Architecture: any
28 Depends: ${shlibs:Depends},
29 ${haskell:Depends},
30 ${misc:Depends}
31 Recommends: ${haskell:Recommends}
32 Suggests: ${haskell:Suggests}
33 Provides: ${haskell:Provides}
34 Description: type classes and monads for unchecked extensible exceptions
35 This package provides type classes, a monad and a monad
36 transformer that support unchecked extensible exceptions as
37 well as asynchronous exceptions. It is compatible with
38 the transformers package.
39 .
40 This package contains the normal library files.
41
42 Package: libghc-exception-transformers-prof
43 Architecture: any
44 Depends: ${haskell:Depends},
45 ${misc:Depends}
46 Recommends: ${haskell:Recommends}
47 Suggests: ${haskell:Suggests}
48 Provides: ${haskell:Provides}
49 Description: type classes and monads for unchecked extensible exceptions; profiling libs
50 This package provides type classes, a monad and a monad
51 transformer that support unchecked extensible exceptions as
52 well as asynchronous exceptions. It is compatible with
53 the transformers package.
54 .
55 This package contains the libraries compiled with profiling enabled.
56
57 Package: libghc-exception-transformers-doc
58 Architecture: all
59 Section: doc
60 Depends: ${haskell:Depends},
61 ${misc:Depends}
62 Recommends: ${haskell:Recommends}
63 Suggests: ${haskell:Suggests}
64 Description: type classes and monads for unchecked extensible exceptions; documentation
65 This package provides type classes, a monad and a monad
66 transformer that support unchecked extensible exceptions as
67 well as asynchronous exceptions. It is compatible with
68 the transformers package.
69 .
70 This package contains the documentation files.
0 Copyright (c) 2008-2012
1 The President and Fellows of Harvard College.
2
3 Redistribution and use in source and binary forms, with or without
4 modification, are permitted provided that the following conditions
5 are met:
6 1. Redistributions of source code must retain the above copyright
7 notice, this list of conditions and the following disclaimer.
8 2. Redistributions in binary form must reproduce the above copyright
9 notice, this list of conditions and the following disclaimer in the
10 documentation and/or other materials provided with the distribution.
11 3. Neither the name of the University nor the names of its contributors
12 may be used to endorse or promote products derived from this software
13 without specific prior written permission.
14
15 THIS SOFTWARE IS PROVIDED BY THE UNIVERSITY AND CONTRIBUTORS ``AS IS'' AND
16 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 ARE DISCLAIMED. IN NO EVENT SHALL THE UNIVERSITY OR CONTRIBUTORS BE LIABLE
19 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 SUCH DAMAGE.
0 #!/usr/bin/make -f
1
2 DEB_ENABLE_TESTS = yes
3
4 include /usr/share/cdbs/1/rules/debhelper.mk
5 include /usr/share/cdbs/1/class/hlibrary.mk