Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghc-indexed-traversable-instances 
for openSUSE:Factory checked in at 2022-08-01 21:30:00
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-indexed-traversable-instances (Old)
 and      
/work/SRC/openSUSE:Factory/.ghc-indexed-traversable-instances.new.1533 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-indexed-traversable-instances"

Mon Aug  1 21:30:00 2022 rev:3 rq:987052 version:0.1.1

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/ghc-indexed-traversable-instances/ghc-indexed-traversable-instances.changes
      2021-11-11 21:36:50.820907250 +0100
+++ 
/work/SRC/openSUSE:Factory/.ghc-indexed-traversable-instances.new.1533/ghc-indexed-traversable-instances.changes
    2022-08-01 21:30:11.985622176 +0200
@@ -1,0 +2,6 @@
+Mon Jun 20 05:45:18 UTC 2022 - Peter Simons <[email protected]>
+
+- Update indexed-traversable-instances to version 0.1.1 revision 1.
+  Upstream has revised the Cabal build instructions on Hackage.
+
+-------------------------------------------------------------------

New:
----
  indexed-traversable-instances.cabal

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ ghc-indexed-traversable-instances.spec ++++++
--- /var/tmp/diff_new_pack.9wuM3Y/_old  2022-08-01 21:30:12.865624701 +0200
+++ /var/tmp/diff_new_pack.9wuM3Y/_new  2022-08-01 21:30:12.873624724 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-indexed-traversable-instances
 #
-# Copyright (c) 2021 SUSE LLC
+# Copyright (c) 2022 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -25,6 +25,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-OneTuple-devel
 BuildRequires:  ghc-indexed-traversable-devel
@@ -65,6 +66,7 @@
 
 %prep
 %autosetup -n %{pkg_name}-%{version}
+cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build
 %ghc_lib_build

++++++ indexed-traversable-instances.cabal ++++++
cabal-version:      1.12
name:               indexed-traversable-instances
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:
  More instances of FunctorWithIndex, FoldableWithIndex, TraversableWithIndex

description:
  This package provides extra instances for type-classes in the 
[indexed-traversable](https://hackage.haskell.org/package/indexed-traversable) 
package.
  .
  The intention is to keep this package minimal;
  it provides instances that formely existed in @lens@ or @optics-extra@.
  We recommend putting other instances directly into their defining packages.
  The @indexed-traversable@ package is light, having only GHC boot libraries
  as its dependencies.

extra-source-files: Changelog.md
tested-with:
  GHC ==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.7
   || ==9.0.1
   || ==9.2.1

source-repository head
  type:     git
  location: https://github.com/haskellari/indexed-traversable
  subdir:   indexed-traversable-instances

library
  default-language: Haskell2010
  ghc-options:      -Wall
  hs-source-dirs:   src
  build-depends:
      base                  >=4.5      && <4.17
    , indexed-traversable   >=0.1      && <0.2
    , OneTuple              >=0.3      && <0.4
    , tagged                >=0.8.6    && <0.9
    , unordered-containers  >=0.2.8.0  && <0.3
    , vector                >=0.12.1.2 && <0.14

  exposed-modules:  Data.Functor.WithIndex.Instances

test-suite safe
  type:             exitcode-stdio-1.0
  default-language: Haskell2010
  ghc-options:      -Wall
  hs-source-dirs:   tests
  main-is:          safe.hs
  build-depends:
      base
    , indexed-traversable
    , indexed-traversable-instances

test-suite indexed-tests
  type:             exitcode-stdio-1.0
  default-language: Haskell2010
  ghc-options:      -Wall
  hs-source-dirs:   tests
  main-is:          main.hs
  build-depends:
      base
    , containers
    , indexed-traversable
    , indexed-traversable-instances
    , OneTuple
    , transformers
    , unordered-containers
    , vector

  build-depends:
      QuickCheck            >=2.14.2   && <2.15
    , quickcheck-instances  >=0.3.26   && <0.4
    , tasty                 >=1.2.3    && <1.5
    , tasty-quickcheck      >=0.10.1.1 && <0.11

benchmark folds
  type:             exitcode-stdio-1.0
  main-is:          folds.hs
  default-language: Haskell2010
  hs-source-dirs:   bench
  ghc-options:      -Wall
  build-depends:
      base
    , containers
    , indexed-traversable
    , indexed-traversable-instances
    , unordered-containers
    , vector

  build-depends:    criterion >=1.5.9.0 && <1.6

benchmark traversals
  type:             exitcode-stdio-1.0
  main-is:          traversals.hs
  default-language: Haskell2010
  hs-source-dirs:   bench
  ghc-options:      -Wall
  build-depends:
      base
    , containers
    , indexed-traversable
    , indexed-traversable-instances
    , unordered-containers
    , vector

  build-depends:    criterion >=1.5.9.0 && <1.6

Reply via email to