Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghc-foldl for openSUSE:Factory 
checked in at 2022-02-11 23:08:50
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-foldl (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-foldl.new.1956 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-foldl"

Fri Feb 11 23:08:50 2022 rev:21 rq:953457 version:1.4.12

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-foldl/ghc-foldl.changes      2021-08-25 
20:57:40.921202640 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-foldl.new.1956/ghc-foldl.changes    
2022-02-11 23:10:46.331182445 +0100
@@ -1,0 +2,6 @@
+Fri Dec 24 23:25:08 UTC 2021 - Peter Simons <[email protected]>
+
+- Update foldl to version 1.4.12 revision 2.
+  Upstream has revised the Cabal build instructions on Hackage.
+
+-------------------------------------------------------------------

New:
----
  foldl.cabal

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

Other differences:
------------------
++++++ ghc-foldl.spec ++++++
--- /var/tmp/diff_new_pack.y8hEhi/_old  2022-02-11 23:10:46.747183648 +0100
+++ /var/tmp/diff_new_pack.y8hEhi/_new  2022-02-11 23:10:46.751183660 +0100
@@ -25,6 +25,7 @@
 License:        BSD-3-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/2.cabal#/%{pkg_name}.cabal
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-bytestring-devel
 BuildRequires:  ghc-comonad-devel
@@ -63,6 +64,7 @@
 
 %prep
 %autosetup -n %{pkg_name}-%{version}
+cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build
 %ghc_lib_build

++++++ foldl.cabal ++++++
Name: foldl
Version: 1.4.12
x-revision: 2
Cabal-Version: >=1.10
Build-Type: Simple
License: BSD3
License-File: LICENSE
Copyright: 2013 Gabriel Gonzalez
Author: Gabriel Gonzalez
Maintainer: [email protected]
Bug-Reports: https://github.com/Gabriel439/Haskell-Foldl-Library/issues
Synopsis: Composable, streaming, and efficient left folds
Description: This library provides strict left folds that stream in constant
  memory, and you can combine folds using @Applicative@ style to derive new
  folds.  Derived folds still traverse the container just once and are often as
  efficient as hand-written folds.
Category: Control
Extra-Source-Files:
    CHANGELOG.md
    README.md
Source-Repository head
    Type: git
    Location: https://github.com/Gabriel439/Haskell-Foldl-Library

Library
    HS-Source-Dirs: src
    Build-Depends:
        base         >= 4.8      && < 5   ,
        bytestring   >= 0.9.2.1  && < 0.12,
        random       >= 1.2      && < 1.3 ,
        primitive                   < 0.8 ,
        text         >= 0.11.2.0 && < 2.1 ,
        transformers >= 0.2.0.0  && < 0.6 ,
        vector       >= 0.7      && < 0.13,
        containers   >= 0.5.0.0  && < 0.7 ,
        unordered-containers        < 0.3 ,
        hashable                    < 1.5 ,
        contravariant               < 1.6 ,
        profunctors                 < 5.7 ,
        semigroupoids >= 1.0     && < 5.4 ,
        comonad      >= 4.0      && < 6
    if impl(ghc < 8.0)
        Build-Depends:
            semigroups   >= 0.17 && < 1.20
    Exposed-Modules:
        Control.Foldl,
        Control.Foldl.ByteString,
        Control.Foldl.Text,
        Control.Scanl
    Other-Modules:
        Control.Foldl.Optics
        Control.Foldl.Internal
        Control.Foldl.Util.Vector
        Control.Foldl.Util.MVector
    GHC-Options: -O2 -Wall
    Default-Language: Haskell2010

Benchmark Foldl
    Type: exitcode-stdio-1.0
    HS-Source-Dirs: bench
    Main-Is: Foldl.hs
    Build-Depends:
        base,
        criterion,
        foldl
    GHC-Options: -O2 -Wall -rtsopts -with-rtsopts=-T
    Default-Language: Haskell2010

Benchmark Scanl
    Type: exitcode-stdio-1.0
    HS-Source-Dirs: bench
    Main-Is: Scanl.hs
    Build-Depends:
        base,
        criterion,
        foldl
    GHC-Options: -O2 -Wall -rtsopts -with-rtsopts=-T
    Default-Language: Haskell2010

Test-Suite doctest
    Type: exitcode-stdio-1.0
    HS-Source-Dirs: test
    Main-Is: doctest.hs
    Build-Depends:
        base,
        doctest >= 0.16
    GHC-Options: -threaded
    Default-Language: Haskell2010

Reply via email to