Accepting request 1231431 from devel:languages:haskell
version update for ghc-9.10.1 OBS-URL: https://build.opensuse.org/request/show/1231431 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ghc-comonad?expand=0&rev=19
This commit is contained in:
commit
9ced995415
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:ef6cdf2cc292cc43ee6aa96c581b235fdea8ab44a0bffb24dc79ae2b2ef33d13
|
|
||||||
size 15227
|
|
3
comonad-5.0.9.tar.gz
Normal file
3
comonad-5.0.9.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:69fb0eb49a80055a9b76d31d0a5648777c4050ac8dbf56a9344b862ed878a789
|
||||||
|
size 14455
|
125
comonad.cabal
125
comonad.cabal
@ -1,125 +0,0 @@
|
|||||||
name: comonad
|
|
||||||
category: Control, Comonads
|
|
||||||
version: 5.0.8
|
|
||||||
x-revision: 2
|
|
||||||
license: BSD3
|
|
||||||
cabal-version: >= 1.10
|
|
||||||
license-file: LICENSE
|
|
||||||
author: Edward A. Kmett
|
|
||||||
maintainer: Edward A. Kmett <ekmett@gmail.com>
|
|
||||||
stability: provisional
|
|
||||||
homepage: http://github.com/ekmett/comonad/
|
|
||||||
bug-reports: http://github.com/ekmett/comonad/issues
|
|
||||||
copyright: Copyright (C) 2008-2014 Edward A. Kmett,
|
|
||||||
Copyright (C) 2004-2008 Dave Menendez
|
|
||||||
synopsis: Comonads
|
|
||||||
description: Comonads.
|
|
||||||
build-type: Simple
|
|
||||||
tested-with: GHC == 7.0.4
|
|
||||||
, GHC == 7.2.2
|
|
||||||
, GHC == 7.4.2
|
|
||||||
, GHC == 7.6.3
|
|
||||||
, GHC == 7.8.4
|
|
||||||
, GHC == 7.10.3
|
|
||||||
, GHC == 8.0.2
|
|
||||||
, GHC == 8.2.2
|
|
||||||
, GHC == 8.4.4
|
|
||||||
, GHC == 8.6.5
|
|
||||||
, GHC == 8.8.3
|
|
||||||
, GHC == 8.10.1
|
|
||||||
extra-source-files:
|
|
||||||
.gitignore
|
|
||||||
.hlint.yaml
|
|
||||||
.vim.custom
|
|
||||||
coq/Store.v
|
|
||||||
README.markdown
|
|
||||||
CHANGELOG.markdown
|
|
||||||
examples/History.hs
|
|
||||||
|
|
||||||
flag containers
|
|
||||||
description:
|
|
||||||
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.
|
|
||||||
default: True
|
|
||||||
manual: True
|
|
||||||
|
|
||||||
flag distributive
|
|
||||||
description:
|
|
||||||
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.
|
|
||||||
.
|
|
||||||
If disabled we will not supply instances of `Distributive`
|
|
||||||
.
|
|
||||||
default: True
|
|
||||||
manual: True
|
|
||||||
|
|
||||||
flag indexed-traversable
|
|
||||||
description:
|
|
||||||
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.
|
|
||||||
.
|
|
||||||
If disabled we will not supply instances of `FunctorWithIndex`
|
|
||||||
.
|
|
||||||
default: True
|
|
||||||
manual: True
|
|
||||||
|
|
||||||
|
|
||||||
source-repository head
|
|
||||||
type: git
|
|
||||||
location: git://github.com/ekmett/comonad.git
|
|
||||||
|
|
||||||
library
|
|
||||||
hs-source-dirs: src
|
|
||||||
default-language: Haskell2010
|
|
||||||
ghc-options: -Wall
|
|
||||||
|
|
||||||
build-depends:
|
|
||||||
base >= 4 && < 5,
|
|
||||||
tagged >= 0.8.6.1 && < 1,
|
|
||||||
transformers >= 0.3 && < 0.7,
|
|
||||||
transformers-compat >= 0.5 && < 1
|
|
||||||
|
|
||||||
if !impl(ghc >= 8.0)
|
|
||||||
build-depends: semigroups >= 0.18.5 && < 1
|
|
||||||
|
|
||||||
if flag(containers)
|
|
||||||
build-depends: containers >= 0.3 && < 0.8
|
|
||||||
|
|
||||||
if flag(distributive)
|
|
||||||
build-depends: distributive >= 0.5.2 && < 1
|
|
||||||
|
|
||||||
if flag(indexed-traversable)
|
|
||||||
build-depends: indexed-traversable >= 0.1.1 && < 0.2
|
|
||||||
|
|
||||||
if impl(ghc >= 9.0)
|
|
||||||
-- these flags may abort compilation with GHC-8.10
|
|
||||||
-- https://gitlab.haskell.org/ghc/ghc/-/merge_requests/3295
|
|
||||||
ghc-options: -Winferred-safe-imports -Wmissing-safe-haskell-mode
|
|
||||||
|
|
||||||
exposed-modules:
|
|
||||||
Control.Comonad
|
|
||||||
Control.Comonad.Env
|
|
||||||
Control.Comonad.Env.Class
|
|
||||||
Control.Comonad.Hoist.Class
|
|
||||||
Control.Comonad.Identity
|
|
||||||
Control.Comonad.Store
|
|
||||||
Control.Comonad.Store.Class
|
|
||||||
Control.Comonad.Traced
|
|
||||||
Control.Comonad.Traced.Class
|
|
||||||
Control.Comonad.Trans.Class
|
|
||||||
Control.Comonad.Trans.Env
|
|
||||||
Control.Comonad.Trans.Identity
|
|
||||||
Control.Comonad.Trans.Store
|
|
||||||
Control.Comonad.Trans.Traced
|
|
||||||
Data.Functor.Composition
|
|
||||||
|
|
||||||
other-extensions:
|
|
||||||
CPP
|
|
||||||
RankNTypes
|
|
||||||
MultiParamTypeClasses
|
|
||||||
FunctionalDependencies
|
|
||||||
FlexibleInstances
|
|
||||||
UndecidableInstances
|
|
@ -1,3 +1,12 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Dec 4 12:50:42 UTC 2024 - Peter Simons <psimons@suse.com>
|
||||||
|
|
||||||
|
- Update comonad to version 5.0.9.
|
||||||
|
Upstream has edited the change log file since the last release in
|
||||||
|
a non-trivial way, i.e. they did more than just add a new entry
|
||||||
|
at the top. You can review the file at:
|
||||||
|
http://hackage.haskell.org/package/comonad-5.0.9/src/CHANGELOG.markdown
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
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>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package ghc-comonad
|
# spec file for package ghc-comonad
|
||||||
#
|
#
|
||||||
# Copyright (c) 2023 SUSE LLC
|
# Copyright (c) 2024 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -19,13 +19,12 @@
|
|||||||
%global pkg_name comonad
|
%global pkg_name comonad
|
||||||
%global pkgver %{pkg_name}-%{version}
|
%global pkgver %{pkg_name}-%{version}
|
||||||
Name: ghc-%{pkg_name}
|
Name: ghc-%{pkg_name}
|
||||||
Version: 5.0.8
|
Version: 5.0.9
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Comonads
|
Summary: Comonads
|
||||||
License: BSD-2-Clause
|
License: BSD-2-Clause
|
||||||
URL: https://hackage.haskell.org/package/%{pkg_name}
|
URL: https://hackage.haskell.org/package/%{pkg_name}
|
||||||
Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
|
Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
|
||||||
Source1: https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/2.cabal#/%{pkg_name}.cabal
|
|
||||||
BuildRequires: ghc-Cabal-devel
|
BuildRequires: ghc-Cabal-devel
|
||||||
BuildRequires: ghc-base-devel
|
BuildRequires: ghc-base-devel
|
||||||
BuildRequires: ghc-base-prof
|
BuildRequires: ghc-base-prof
|
||||||
@ -75,7 +74,6 @@ This package provides the Haskell %{pkg_name} profiling library.
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -n %{pkg_name}-%{version}
|
%autosetup -n %{pkg_name}-%{version}
|
||||||
cp -p %{SOURCE1} %{pkg_name}.cabal
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%ghc_lib_build
|
%ghc_lib_build
|
||||||
|
Loading…
Reference in New Issue
Block a user