~ubuntu-branches/ubuntu/trusty/haskell-adjunctions/trusty

« back to all changes in this revision

Viewing changes to .pc/new-comonad-semigroupoids-free.patch/adjunctions.cabal

  • Committer: Package Import Robot
  • Author(s): Colin Watson, Joachim Breitner, Colin Watson
  • Date: 2013-12-29 23:40:33 UTC
  • mfrom: (6.2.2 sid)
  • Revision ID: package-import@ubuntu.com-20131229234033-zdy9nbvrffco3bdv
Tags: 3.2.1.1-1
[ Joachim Breitner ]
* Adjust watch file to new hackage layout

[ Colin Watson ]
* New upstream release.
* Allow new comonad, semigroupoids, and free.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
name:          adjunctions
 
2
category:      Data Structures, Adjunctions
 
3
version:       3.2.1.1
 
4
license:       BSD3
 
5
cabal-version: >= 1.6
 
6
license-file:  LICENSE
 
7
author:        Edward A. Kmett
 
8
maintainer:    Edward A. Kmett <ekmett@gmail.com>
 
9
stability:     provisional
 
10
homepage:      http://github.com/ekmett/adjunctions/
 
11
bug-reports:   http://github.com/ekmett/adjunctions/issues
 
12
copyright:     Copyright (C) 2011-2013 Edward A. Kmett
 
13
synopsis:      Adjunctions
 
14
description:   Adjunctions
 
15
build-type:    Simple
 
16
extra-source-files:
 
17
  .ghci
 
18
  .gitignore
 
19
  .travis.yml
 
20
  .vim.custom
 
21
  travis/cabal-apt-install
 
22
  travis/config
 
23
  HLint.hs
 
24
  CHANGELOG.markdown
 
25
  README.markdown
 
26
 
 
27
source-repository head
 
28
  type: git
 
29
  location: git://github.com/ekmett/adjunctions.git
 
30
 
 
31
library
 
32
  hs-source-dirs: src
 
33
 
 
34
  other-extensions:
 
35
    CPP
 
36
    FunctionalDependencies
 
37
    FlexibleContexts
 
38
    MultiParamTypeClasses
 
39
    Rank2Types
 
40
    UndecidableInstances
 
41
 
 
42
  build-depends:
 
43
    array                  >= 0.3.0.2 && < 0.6,
 
44
    base                   >= 4       && < 5,
 
45
    transformers           >= 0.2     && < 0.4,
 
46
    mtl                    >= 2.0.1   && < 2.2,
 
47
    containers             >= 0.3     && < 0.6,
 
48
    comonad                >= 3       && < 4,
 
49
    contravariant          >= 0.2.0.1 && < 1,
 
50
    distributive           >= 0.2.2   && < 1,
 
51
    semigroupoids          >= 3       && < 4,
 
52
    void                   >= 0.5.5.1 && < 1,
 
53
    keys                   >= 3       && < 4,
 
54
    comonad-transformers   >= 3       && < 4,
 
55
    representable-functors >= 3.1     && < 4,
 
56
    free                   >= 3       && < 4
 
57
 
 
58
  exposed-modules:
 
59
    Data.Functor.Adjunction
 
60
    Data.Functor.Contravariant.Adjunction
 
61
    Control.Comonad.Trans.Adjoint
 
62
    Control.Monad.Trans.Adjoint
 
63
    Control.Monad.Trans.Conts
 
64
    Control.Monad.Trans.Contravariant.Adjoint
 
65
 
 
66
  ghc-options: -Wall