From a4bb5e5ba6faf23c3b52bba30f0ac1b5ca064aeb Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 5 Aug 2021 10:23:40 +0800 Subject: [PATCH] update to 5.0.8 --- .gitignore | 1 + comonad-5.0.6.cabal | 134 -------------------------------------------- ghc-comonad.spec | 18 ++---- sources | 2 +- 4 files changed, 8 insertions(+), 147 deletions(-) delete mode 100644 comonad-5.0.6.cabal diff --git a/.gitignore b/.gitignore index cecce4d..31a8d5d 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /comonad-5.0.4.tar.gz /comonad-5.0.5.tar.gz /comonad-5.0.6.tar.gz +/comonad-5.0.8.tar.gz diff --git a/comonad-5.0.6.cabal b/comonad-5.0.6.cabal deleted file mode 100644 index 6b536c7..0000000 --- a/comonad-5.0.6.cabal +++ /dev/null @@ -1,134 +0,0 @@ -name: comonad -category: Control, Comonads -version: 5.0.6 -x-revision: 1 -license: BSD3 -cabal-version: >= 1.10 -license-file: LICENSE -author: Edward A. Kmett -maintainer: Edward A. Kmett -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: Custom -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.1 -extra-source-files: - .ghci - .gitignore - .hlint.yaml - .travis.yml - .vim.custom - coq/Store.v - README.markdown - CHANGELOG.markdown - examples/History.hs - Warning.hs - -custom-setup - setup-depends: - base >= 4 && < 5, - Cabal, - cabal-doctest >= 1 && < 1.1 - --- You can disable the doctests test suite with -f-test-doctests -flag test-doctests - default: True - manual: True - -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 - - -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.7 && < 1, - transformers >= 0.2 && < 0.6, - transformers-compat >= 0.3 && < 1 - - if !impl(ghc >= 8.0) - build-depends: semigroups >= 0.16.2 && < 1 - - if flag(containers) - build-depends: containers >= 0.3 && < 0.7 - - if flag(distributive) - build-depends: distributive >= 0.2.2 && < 1 - - 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 - -test-suite doctests - type: exitcode-stdio-1.0 - default-language: Haskell2010 - main-is: doctests.hs - ghc-options: -Wall -threaded - hs-source-dirs: tests - - if !flag(test-doctests) - buildable: False - else - build-depends: - base, - comonad, - doctest >= 0.11.1 && < 0.18 diff --git a/ghc-comonad.spec b/ghc-comonad.spec index d08b6fb..bf97470 100644 --- a/ghc-comonad.spec +++ b/ghc-comonad.spec @@ -7,30 +7,26 @@ %bcond_with tests Name: ghc-%{pkg_name} -Version: 5.0.6 -Release: 5%{?dist} +Version: 5.0.8 +Release: 1%{?dist} Summary: Categorical dual of monads License: BSD Url: https://hackage.haskell.org/package/%{pkg_name} # Begin cabal-rpm sources: Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz -Source1: https://hackage.haskell.org/package/%{pkgver}/%{pkg_name}.cabal#/%{pkgver}.cabal # End cabal-rpm sources # Begin cabal-rpm deps: BuildRequires: ghc-Cabal-devel -BuildRequires: ghc-cabal-doctest-devel BuildRequires: ghc-rpm-macros BuildRequires: ghc-base-prof BuildRequires: ghc-containers-prof BuildRequires: ghc-distributive-prof +BuildRequires: ghc-indexed-traversable-prof BuildRequires: ghc-tagged-prof BuildRequires: ghc-transformers-prof BuildRequires: ghc-transformers-compat-prof -%if %{with tests} -BuildRequires: ghc-doctest-devel -%endif # End cabal-rpm deps %description @@ -74,7 +70,6 @@ This package provides the Haskell %{pkg_name} profiling library. %prep # Begin cabal-rpm setup: %setup -q -n %{pkgver} -cp -bp %{SOURCE1} %{pkg_name}.cabal chmod a-x CHANGELOG.markdown README.markdown # End cabal-rpm setup @@ -91,10 +86,6 @@ chmod a-x CHANGELOG.markdown README.markdown # End cabal-rpm install -%check -%cabal_test - - %files -f %{name}.files # Begin cabal-rpm files: %license LICENSE @@ -117,6 +108,9 @@ chmod a-x CHANGELOG.markdown README.markdown %changelog +* Thu Aug 5 2021 Jens Petersen - 5.0.8-1 +- update to 5.0.8 + * Thu Jul 22 2021 Fedora Release Engineering - 5.0.6-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild diff --git a/sources b/sources index f99abc2..5929a21 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (comonad-5.0.6.tar.gz) = 0b7fc727a2b972203d1651049a4f4c371a8f134d64d36409d60fbc4d11b7eb9650c79cf917abaa3f66084d7c5e9f32b288862a5e93c3d93c16c11533a446cfa5 +SHA512 (comonad-5.0.8.tar.gz) = b823ea36826da74c6ec46cb835493224f62da66516841b9660a04c391dee803c31e140b2c523b563fb51f46509d99cce157b456a88fbaf2371da11933d5d787e