Hello community,

here is the log from the commit of package ghc-foldl for openSUSE:Factory 
checked in at 2020-08-10 14:53:56
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-foldl (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-foldl.new.3399 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-foldl"

Mon Aug 10 14:53:56 2020 rev:11 rq:824309 version:1.4.8

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-foldl/ghc-foldl.changes      2020-07-09 
13:19:38.037320126 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-foldl.new.3399/ghc-foldl.changes    
2020-08-10 14:54:04.271876096 +0200
@@ -1,0 +2,8 @@
+Tue Aug  4 09:04:43 UTC 2020 - [email protected]
+
+- Update foldl to version 1.4.8.
+  1.4.8
+
+  * Only depend on `semigroups` for older GHC versions
+
+-------------------------------------------------------------------

Old:
----
  foldl-1.4.7.tar.gz

New:
----
  foldl-1.4.8.tar.gz
  foldl.cabal

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

Other differences:
------------------
++++++ ghc-foldl.spec ++++++
--- /var/tmp/diff_new_pack.wcCtJz/_old  2020-08-10 14:54:06.455877249 +0200
+++ /var/tmp/diff_new_pack.wcCtJz/_new  2020-08-10 14:54:06.455877249 +0200
@@ -19,12 +19,13 @@
 %global pkg_name foldl
 %bcond_with tests
 Name:           ghc-%{pkg_name}
-Version:        1.4.7
+Version:        1.4.8
 Release:        0
 Summary:        Composable, streaming, and efficient left folds
 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/1.cabal#/%{pkg_name}.cabal
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-bytestring-devel
 BuildRequires:  ghc-comonad-devel
@@ -36,7 +37,6 @@
 BuildRequires:  ghc-profunctors-devel
 BuildRequires:  ghc-rpm-macros
 BuildRequires:  ghc-semigroupoids-devel
-BuildRequires:  ghc-semigroups-devel
 BuildRequires:  ghc-text-devel
 BuildRequires:  ghc-transformers-devel
 BuildRequires:  ghc-unordered-containers-devel
@@ -64,6 +64,7 @@
 
 %prep
 %setup -q -n %{pkg_name}-%{version}
+cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build
 %ghc_lib_build

++++++ foldl-1.4.7.tar.gz -> foldl-1.4.8.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/foldl-1.4.7/CHANGELOG.md new/foldl-1.4.8/CHANGELOG.md
--- old/foldl-1.4.7/CHANGELOG.md        2020-06-19 17:47:18.000000000 +0200
+++ new/foldl-1.4.8/CHANGELOG.md        2020-08-02 20:04:12.000000000 +0200
@@ -1,3 +1,7 @@
+1.4.8
+
+* Only depend on `semigroups` for older GHC versions
+
 1.4.7
 
 * Add `foldByKey{,Hash}Map` functions
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/foldl-1.4.7/foldl.cabal new/foldl-1.4.8/foldl.cabal
--- old/foldl-1.4.7/foldl.cabal 2020-06-19 17:47:18.000000000 +0200
+++ new/foldl-1.4.8/foldl.cabal 2020-08-02 20:04:12.000000000 +0200
@@ -1,5 +1,5 @@
 Name: foldl
-Version: 1.4.7
+Version: 1.4.8
 Cabal-Version: >=1.10
 Build-Type: Simple
 License: BSD3
@@ -35,11 +35,13 @@
         unordered-containers        < 0.3 ,
         hashable                    < 1.4 ,
         contravariant               < 1.6 ,
-        semigroups   >= 0.17     && < 1.20,
         profunctors                 < 5.6 ,
         semigroupoids >= 1.0     && < 5.4 ,
         comonad      >= 4.0      && < 6   ,
         vector-builder              < 0.4
+    if impl(ghc < 8.0)
+        Build-Depends:
+            semigroups   >= 0.17 && < 1.20
     Exposed-Modules:
         Control.Foldl,
         Control.Foldl.ByteString,

++++++ foldl.cabal ++++++
Name: foldl
Version: 1.4.8
x-revision: 1
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.11,
        mwc-random   >= 0.13.1.0 && < 0.16,
        primitive                   < 0.8 ,
        text         >= 0.11.2.0 && < 1.3 ,
        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.4 ,
        contravariant               < 1.6 ,
        profunctors                 < 5.6 ,
        semigroupoids >= 1.0     && < 5.4 ,
        comonad      >= 4.0      && < 6   ,
        vector-builder              < 0.4
    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
    GHC-Options: -O2 -Wall
    Default-Language: Haskell2010

Benchmark benchmarks
    Type: exitcode-stdio-1.0
    HS-Source-Dirs: bench
    Main-Is: benchmarks.hs
    Build-Depends:
        base,
        criterion,
        foldl
    GHC-Options: -O2 -Wall -rtsopts -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