Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package ghc-base-prelude for openSUSE:Factory checked in at 2022-08-01 21:28:32 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ghc-base-prelude (Old) and /work/SRC/openSUSE:Factory/.ghc-base-prelude.new.1533 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "ghc-base-prelude" Mon Aug 1 21:28:32 2022 rev:16 rq:985800 version:1.6.1 Changes: -------- --- /work/SRC/openSUSE:Factory/ghc-base-prelude/ghc-base-prelude.changes 2022-02-23 16:26:50.359509666 +0100 +++ /work/SRC/openSUSE:Factory/.ghc-base-prelude.new.1533/ghc-base-prelude.changes 2022-08-01 21:28:33.737340309 +0200 @@ -1,0 +2,7 @@ +Fri Mar 18 11:55:34 UTC 2022 - Peter Simons <psimons@suse.com> + +- Update base-prelude to version 1.6.1. + Upstream has not updated the file "CHANGELOG.md" since the last + release. + +------------------------------------------------------------------- Old: ---- base-prelude-1.6.tar.gz New: ---- base-prelude-1.6.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ghc-base-prelude.spec ++++++ --- /var/tmp/diff_new_pack.6zBA5r/_old 2022-08-01 21:28:34.341342042 +0200 +++ /var/tmp/diff_new_pack.6zBA5r/_new 2022-08-01 21:28:34.345342053 +0200 @@ -18,7 +18,7 @@ %global pkg_name base-prelude Name: ghc-%{pkg_name} -Version: 1.6 +Version: 1.6.1 Release: 0 Summary: Featureful preludes formed solely from the "base" package License: MIT ++++++ base-prelude-1.6.tar.gz -> base-prelude-1.6.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/base-prelude-1.6/base-prelude.cabal new/base-prelude-1.6.1/base-prelude.cabal --- old/base-prelude-1.6/base-prelude.cabal 2001-09-09 03:46:40.000000000 +0200 +++ new/base-prelude-1.6.1/base-prelude.cabal 2001-09-09 03:46:40.000000000 +0200 @@ -1,7 +1,7 @@ cabal-version: 3.0 name: base-prelude -version: 1.6 +version: 1.6.1 synopsis: Featureful preludes formed solely from the "base" package description: A library which aims to reexport all the non-conflicting and @@ -29,7 +29,6 @@ copyright: (c) 2014, Nikita Volkov license: MIT license-file: LICENSE -build-type: Simple extra-source-files: CHANGELOG.md source-repository head diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/base-prelude-1.6/library/BasePrelude/DataTypes.hs new/base-prelude-1.6.1/library/BasePrelude/DataTypes.hs --- old/base-prelude-1.6/library/BasePrelude/DataTypes.hs 2001-09-09 03:46:40.000000000 +0200 +++ new/base-prelude-1.6.1/library/BasePrelude/DataTypes.hs 2001-09-09 03:46:40.000000000 +0200 @@ -20,17 +20,20 @@ -- * From "Data.Int" Data.Int.Int, + Data.Int.Int8, Data.Int.Int16, Data.Int.Int32, Data.Int.Int64, - Data.Int.Int8, -- * From "Data.Word" Data.Word.Word, + Data.Word.Word8, Data.Word.Word16, Data.Word.Word32, Data.Word.Word64, - Data.Word.Word8, + + -- * From "Data.Complex" + Data.Complex.Complex (..), -- * From "Data.Ratio" Data.Ratio.Rational, @@ -43,6 +46,7 @@ ) where +import qualified Data.Complex import qualified Data.Int import qualified Data.List.NonEmpty import qualified Data.Ratio diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/base-prelude-1.6/library/BasePrelude/Operators.hs new/base-prelude-1.6.1/library/BasePrelude/Operators.hs --- old/base-prelude-1.6/library/BasePrelude/Operators.hs 2001-09-09 03:46:40.000000000 +0200 +++ new/base-prelude-1.6.1/library/BasePrelude/Operators.hs 2001-09-09 03:46:40.000000000 +0200 @@ -6,6 +6,7 @@ (Control.Applicative.*>), (Control.Applicative.<*), (Control.Applicative.<*>), + (Control.Applicative.<**>), (Control.Applicative.<|>), -- * From "Control.Monad"