osc copypac from project:devel:languages:haskell:ghc-9.6.x package:ghc-comonad revision:6, using keep-link
OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-comonad?expand=0&rev=69
This commit is contained in:
parent
18c84efb98
commit
d4d08ef620
250
comonad.cabal
250
comonad.cabal
@ -1,125 +1,125 @@
|
|||||||
name: comonad
|
name: comonad
|
||||||
category: Control, Comonads
|
category: Control, Comonads
|
||||||
version: 5.0.8
|
version: 5.0.8
|
||||||
x-revision: 2
|
x-revision: 2
|
||||||
license: BSD3
|
license: BSD3
|
||||||
cabal-version: >= 1.10
|
cabal-version: >= 1.10
|
||||||
license-file: LICENSE
|
license-file: LICENSE
|
||||||
author: Edward A. Kmett
|
author: Edward A. Kmett
|
||||||
maintainer: Edward A. Kmett <ekmett@gmail.com>
|
maintainer: Edward A. Kmett <ekmett@gmail.com>
|
||||||
stability: provisional
|
stability: provisional
|
||||||
homepage: http://github.com/ekmett/comonad/
|
homepage: http://github.com/ekmett/comonad/
|
||||||
bug-reports: http://github.com/ekmett/comonad/issues
|
bug-reports: http://github.com/ekmett/comonad/issues
|
||||||
copyright: Copyright (C) 2008-2014 Edward A. Kmett,
|
copyright: Copyright (C) 2008-2014 Edward A. Kmett,
|
||||||
Copyright (C) 2004-2008 Dave Menendez
|
Copyright (C) 2004-2008 Dave Menendez
|
||||||
synopsis: Comonads
|
synopsis: Comonads
|
||||||
description: Comonads.
|
description: Comonads.
|
||||||
build-type: Simple
|
build-type: Simple
|
||||||
tested-with: GHC == 7.0.4
|
tested-with: GHC == 7.0.4
|
||||||
, GHC == 7.2.2
|
, GHC == 7.2.2
|
||||||
, GHC == 7.4.2
|
, GHC == 7.4.2
|
||||||
, GHC == 7.6.3
|
, GHC == 7.6.3
|
||||||
, GHC == 7.8.4
|
, GHC == 7.8.4
|
||||||
, GHC == 7.10.3
|
, GHC == 7.10.3
|
||||||
, GHC == 8.0.2
|
, GHC == 8.0.2
|
||||||
, GHC == 8.2.2
|
, GHC == 8.2.2
|
||||||
, GHC == 8.4.4
|
, GHC == 8.4.4
|
||||||
, GHC == 8.6.5
|
, GHC == 8.6.5
|
||||||
, GHC == 8.8.3
|
, GHC == 8.8.3
|
||||||
, GHC == 8.10.1
|
, GHC == 8.10.1
|
||||||
extra-source-files:
|
extra-source-files:
|
||||||
.gitignore
|
.gitignore
|
||||||
.hlint.yaml
|
.hlint.yaml
|
||||||
.vim.custom
|
.vim.custom
|
||||||
coq/Store.v
|
coq/Store.v
|
||||||
README.markdown
|
README.markdown
|
||||||
CHANGELOG.markdown
|
CHANGELOG.markdown
|
||||||
examples/History.hs
|
examples/History.hs
|
||||||
|
|
||||||
flag containers
|
flag containers
|
||||||
description:
|
description:
|
||||||
You can disable the use of the `containers` package using `-f-containers`.
|
You can disable the use of the `containers` package using `-f-containers`.
|
||||||
.
|
.
|
||||||
Disabing this is an unsupported configuration, but it may be useful for accelerating builds in sandboxes for expert users.
|
Disabing this is an unsupported configuration, but it may be useful for accelerating builds in sandboxes for expert users.
|
||||||
default: True
|
default: True
|
||||||
manual: True
|
manual: True
|
||||||
|
|
||||||
flag distributive
|
flag distributive
|
||||||
description:
|
description:
|
||||||
You can disable the use of the `distributive` package using `-f-distributive`.
|
You can disable the use of the `distributive` package using `-f-distributive`.
|
||||||
.
|
.
|
||||||
Disabling this is an unsupported configuration, but it may be useful for accelerating builds in sandboxes for expert users.
|
Disabling this is an unsupported configuration, but it may be useful for accelerating builds in sandboxes for expert users.
|
||||||
.
|
.
|
||||||
If disabled we will not supply instances of `Distributive`
|
If disabled we will not supply instances of `Distributive`
|
||||||
.
|
.
|
||||||
default: True
|
default: True
|
||||||
manual: True
|
manual: True
|
||||||
|
|
||||||
flag indexed-traversable
|
flag indexed-traversable
|
||||||
description:
|
description:
|
||||||
You can disable the use of the `indexed-traversable` package using `-f-indexed-traversable`.
|
You can disable the use of the `indexed-traversable` package using `-f-indexed-traversable`.
|
||||||
.
|
.
|
||||||
Disabling this is an unsupported configuration, but it may be useful for accelerating builds in sandboxes for expert users.
|
Disabling this is an unsupported configuration, but it may be useful for accelerating builds in sandboxes for expert users.
|
||||||
.
|
.
|
||||||
If disabled we will not supply instances of `FunctorWithIndex`
|
If disabled we will not supply instances of `FunctorWithIndex`
|
||||||
.
|
.
|
||||||
default: True
|
default: True
|
||||||
manual: True
|
manual: True
|
||||||
|
|
||||||
|
|
||||||
source-repository head
|
source-repository head
|
||||||
type: git
|
type: git
|
||||||
location: git://github.com/ekmett/comonad.git
|
location: git://github.com/ekmett/comonad.git
|
||||||
|
|
||||||
library
|
library
|
||||||
hs-source-dirs: src
|
hs-source-dirs: src
|
||||||
default-language: Haskell2010
|
default-language: Haskell2010
|
||||||
ghc-options: -Wall
|
ghc-options: -Wall
|
||||||
|
|
||||||
build-depends:
|
build-depends:
|
||||||
base >= 4 && < 5,
|
base >= 4 && < 5,
|
||||||
tagged >= 0.8.6.1 && < 1,
|
tagged >= 0.8.6.1 && < 1,
|
||||||
transformers >= 0.3 && < 0.7,
|
transformers >= 0.3 && < 0.7,
|
||||||
transformers-compat >= 0.5 && < 1
|
transformers-compat >= 0.5 && < 1
|
||||||
|
|
||||||
if !impl(ghc >= 8.0)
|
if !impl(ghc >= 8.0)
|
||||||
build-depends: semigroups >= 0.18.5 && < 1
|
build-depends: semigroups >= 0.18.5 && < 1
|
||||||
|
|
||||||
if flag(containers)
|
if flag(containers)
|
||||||
build-depends: containers >= 0.3 && < 0.8
|
build-depends: containers >= 0.3 && < 0.8
|
||||||
|
|
||||||
if flag(distributive)
|
if flag(distributive)
|
||||||
build-depends: distributive >= 0.5.2 && < 1
|
build-depends: distributive >= 0.5.2 && < 1
|
||||||
|
|
||||||
if flag(indexed-traversable)
|
if flag(indexed-traversable)
|
||||||
build-depends: indexed-traversable >= 0.1.1 && < 0.2
|
build-depends: indexed-traversable >= 0.1.1 && < 0.2
|
||||||
|
|
||||||
if impl(ghc >= 9.0)
|
if impl(ghc >= 9.0)
|
||||||
-- these flags may abort compilation with GHC-8.10
|
-- these flags may abort compilation with GHC-8.10
|
||||||
-- https://gitlab.haskell.org/ghc/ghc/-/merge_requests/3295
|
-- https://gitlab.haskell.org/ghc/ghc/-/merge_requests/3295
|
||||||
ghc-options: -Winferred-safe-imports -Wmissing-safe-haskell-mode
|
ghc-options: -Winferred-safe-imports -Wmissing-safe-haskell-mode
|
||||||
|
|
||||||
exposed-modules:
|
exposed-modules:
|
||||||
Control.Comonad
|
Control.Comonad
|
||||||
Control.Comonad.Env
|
Control.Comonad.Env
|
||||||
Control.Comonad.Env.Class
|
Control.Comonad.Env.Class
|
||||||
Control.Comonad.Hoist.Class
|
Control.Comonad.Hoist.Class
|
||||||
Control.Comonad.Identity
|
Control.Comonad.Identity
|
||||||
Control.Comonad.Store
|
Control.Comonad.Store
|
||||||
Control.Comonad.Store.Class
|
Control.Comonad.Store.Class
|
||||||
Control.Comonad.Traced
|
Control.Comonad.Traced
|
||||||
Control.Comonad.Traced.Class
|
Control.Comonad.Traced.Class
|
||||||
Control.Comonad.Trans.Class
|
Control.Comonad.Trans.Class
|
||||||
Control.Comonad.Trans.Env
|
Control.Comonad.Trans.Env
|
||||||
Control.Comonad.Trans.Identity
|
Control.Comonad.Trans.Identity
|
||||||
Control.Comonad.Trans.Store
|
Control.Comonad.Trans.Store
|
||||||
Control.Comonad.Trans.Traced
|
Control.Comonad.Trans.Traced
|
||||||
Data.Functor.Composition
|
Data.Functor.Composition
|
||||||
|
|
||||||
other-extensions:
|
other-extensions:
|
||||||
CPP
|
CPP
|
||||||
RankNTypes
|
RankNTypes
|
||||||
MultiParamTypeClasses
|
MultiParamTypeClasses
|
||||||
FunctionalDependencies
|
FunctionalDependencies
|
||||||
FlexibleInstances
|
FlexibleInstances
|
||||||
UndecidableInstances
|
UndecidableInstances
|
||||||
|
@ -1,8 +1,3 @@
|
|||||||
-------------------------------------------------------------------
|
|
||||||
Thu Nov 16 13:26:15 UTC 2023 - Peter Simons <psimons@suse.com>
|
|
||||||
|
|
||||||
- Strip CRLF line endings from the bundled Cabal file.
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Sep 30 12:22:30 UTC 2023 - Peter Simons <psimons@suse.com>
|
Sat Sep 30 12:22:30 UTC 2023 - Peter Simons <psimons@suse.com>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user