Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package ghc-groups for openSUSE:Factory checked in at 2021-06-01 10:38:50 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ghc-groups (Old) and /work/SRC/openSUSE:Factory/.ghc-groups.new.1898 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-groups" Tue Jun 1 10:38:50 2021 rev:3 rq:896190 version:0.5.3 Changes: -------- --- /work/SRC/openSUSE:Factory/ghc-groups/ghc-groups.changes 2020-12-22 11:40:04.853537854 +0100 +++ /work/SRC/openSUSE:Factory/.ghc-groups.new.1898/ghc-groups.changes 2021-06-01 10:40:28.405120692 +0200 @@ -1,0 +2,6 @@ +Sat May 15 15:56:02 UTC 2021 - psim...@suse.com + +- Update groups to version 0.5.3. + Upstream does not provide a change log file. + +------------------------------------------------------------------- Old: ---- groups-0.5.2.tar.gz New: ---- groups-0.5.3.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ghc-groups.spec ++++++ --- /var/tmp/diff_new_pack.e7vQnx/_old 2021-06-01 10:40:28.749121278 +0200 +++ /var/tmp/diff_new_pack.e7vQnx/_new 2021-06-01 10:40:28.749121278 +0200 @@ -1,7 +1,7 @@ # # spec file for package ghc-groups # -# 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 @@ -18,7 +18,7 @@ %global pkg_name groups Name: ghc-%{pkg_name} -Version: 0.5.2 +Version: 0.5.3 Release: 0 Summary: Groups License: BSD-3-Clause ++++++ groups-0.5.2.tar.gz -> groups-0.5.3.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/groups-0.5.2/groups.cabal new/groups-0.5.3/groups.cabal --- old/groups-0.5.2/groups.cabal 2001-09-09 03:46:40.000000000 +0200 +++ new/groups-0.5.3/groups.cabal 2001-09-09 03:46:40.000000000 +0200 @@ -1,6 +1,6 @@ cabal-version: 2.4 name: groups -version: 0.5.2 +version: 0.5.3 synopsis: Groups description: A group is a monoid with invertibility. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/groups-0.5.2/src/Data/Group.hs new/groups-0.5.3/src/Data/Group.hs --- old/groups-0.5.2/src/Data/Group.hs 2001-09-09 03:46:40.000000000 +0200 +++ new/groups-0.5.3/src/Data/Group.hs 2001-09-09 03:46:40.000000000 +0200 @@ -148,7 +148,7 @@ generated' = unfoldr go (generator, 0 :: Integer) where go (a, n) - | a == mempty, n > 0 = Nothing + | a == generator, n > 0 = Nothing | otherwise = Just (a, (a <> generator, succ n)) instance Cyclic () where