Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package ghc-indexed-traversable for
openSUSE:Factory checked in at 2021-08-25 20:56:54
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-indexed-traversable (Old)
and /work/SRC/openSUSE:Factory/.ghc-indexed-traversable.new.1899 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-indexed-traversable"
Wed Aug 25 20:56:54 2021 rev:3 rq:912605 version:0.1.1
Changes:
--------
---
/work/SRC/openSUSE:Factory/ghc-indexed-traversable/ghc-indexed-traversable.changes
2021-01-08 17:40:02.100999019 +0100
+++
/work/SRC/openSUSE:Factory/.ghc-indexed-traversable.new.1899/ghc-indexed-traversable.changes
2021-08-25 20:57:47.665193786 +0200
@@ -1,0 +2,6 @@
+Wed Jul 28 07:43:08 UTC 2021 - [email protected]
+
+- Update indexed-traversable to version 0.1.1 revision 1.
+ Upstream has revised the Cabal build instructions on Hackage.
+
+-------------------------------------------------------------------
New:
----
indexed-traversable.cabal
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ ghc-indexed-traversable.spec ++++++
--- /var/tmp/diff_new_pack.x1H5kR/_old 2021-08-25 20:57:48.173193119 +0200
+++ /var/tmp/diff_new_pack.x1H5kR/_new 2021-08-25 20:57:48.177193114 +0200
@@ -1,7 +1,7 @@
#
# spec file for package ghc-indexed-traversable
#
-# Copyright (c) 2020 SUSE LLC
+# Copyright (c) 2021 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -24,6 +24,7 @@
License: BSD-2-Clause
URL: https://hackage.haskell.org/package/%{pkg_name}
Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
+Source1:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/1.cabal#/%{pkg_name}.cabal
BuildRequires: ghc-Cabal-devel
BuildRequires: ghc-array-devel
BuildRequires: ghc-containers-devel
@@ -65,6 +66,7 @@
%prep
%autosetup -n %{pkg_name}-%{version}
+cp -p %{SOURCE1} %{pkg_name}.cabal
%build
%ghc_lib_build
++++++ indexed-traversable.cabal ++++++
cabal-version: 1.12
name: indexed-traversable
version: 0.1.1
x-revision: 1
build-type: Simple
license: BSD2
license-file: LICENSE
category: Data
maintainer: Oleg Grenrus <[email protected]>
author: Edward Kmett
synopsis: FunctorWithIndex, FoldableWithIndex, TraversableWithIndex
description:
This package provides three useful generalizations:
.
@
class Functor f => FunctorWithIndex i f | f -> i where
\ imap :: (i -> a -> b) -> f a -> f b
@
.
@
class Foldable f => FoldableWithIndex i f | f -> i where
\ ifoldMap :: Monoid m => (i -> a -> m) -> f a -> m
@
.
@
class (FunctorWithIndex i t, FoldableWithIndex i t, Traversable t) =>
TraversableWithIndex i t | t -> i where
\ itraverse :: Applicative f => (i -> a -> f b) -> t a -> f (t b)
@
.
This package contains instances for types in GHC boot libraries.
For some additional instances see
[indexed-traversable-instances](https://hackage.haskell.org/package/indexed-traversable-instances).
.
The [keys](https://hackage.haskell.org/package/keys) package provides similar
functionality,
but uses (associated) @TypeFamilies@ instead of @FunctionalDependencies@.
extra-source-files: Changelog.md
tested-with:
GHC ==7.0.4
|| ==7.2.2
|| ==7.4.2
|| ==7.6.3
|| ==7.8.4
|| ==7.10.3
|| ==8.0.2
|| ==8.2.2
|| ==8.4.4
|| ==8.6.5
|| ==8.8.4
|| ==8.10.2
source-repository head
type: git
location: https://github.com/haskellari/indexed-traversable
subdir: indexed-traversable
library
default-language: Haskell2010
ghc-options: -Wall
hs-source-dirs: src
other-modules:
GhcExts
WithIndex
exposed-modules:
Data.Foldable.WithIndex
Data.Functor.WithIndex
Data.Traversable.WithIndex
build-depends:
array >=0.3.0.2 && <0.6
, base >=4.3 && <4.16
, containers >=0.4.0.0 && <0.7
, transformers >=0.3.0.0 && <0.7
if !impl(ghc >=7.8)
build-depends: tagged >=0.8.5 && <0.9
if !impl(ghc >=7.10)
build-depends: void >=0.7.2 && <0.8
if !impl(ghc >=8.0)
build-depends:
base-orphans >=0.8.3 && <0.9
, semigroups >=0.18.4 && <0.20
, transformers-compat >=0.6.6 && <0.8
if (impl(ghc >=7.0) && impl(ghc <7.6))
build-depends: ghc-prim
if (impl(ghc >=7.0) && impl(ghc <7.2))
build-depends: generic-deriving ==1.14.*