Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package ghc-constraints for openSUSE:Factory
checked in at 2022-08-01 21:29:43
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-constraints (Old)
and /work/SRC/openSUSE:Factory/.ghc-constraints.new.1533 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-constraints"
Mon Aug 1 21:29:43 2022 rev:15 rq:987031 version:0.13.4
Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-constraints/ghc-constraints.changes
2022-02-11 23:10:39.363162291 +0100
+++
/work/SRC/openSUSE:Factory/.ghc-constraints.new.1533/ghc-constraints.changes
2022-08-01 21:29:48.645555216 +0200
@@ -1,0 +2,9 @@
+Fri May 20 00:12:35 UTC 2022 - Peter Simons <[email protected]>
+
+- Update constraints to version 0.13.4.
+ 0.13.4 [2022.05.19]
+ -------------------
+ * Correct the CPP introduced in `constraints-0.13.3` such that it works when
+ building with `mtl-2.3.*` or later combined with `transformers < 0.6`.
+
+-------------------------------------------------------------------
Old:
----
constraints-0.13.3.tar.gz
New:
----
constraints-0.13.4.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ ghc-constraints.spec ++++++
--- /var/tmp/diff_new_pack.RWhTsY/_old 2022-08-01 21:29:50.365560150 +0200
+++ /var/tmp/diff_new_pack.RWhTsY/_new 2022-08-01 21:29:50.369560161 +0200
@@ -19,7 +19,7 @@
%global pkg_name constraints
%bcond_with tests
Name: ghc-%{pkg_name}
-Version: 0.13.3
+Version: 0.13.4
Release: 0
Summary: Constraint manipulation
License: BSD-2-Clause
++++++ constraints-0.13.3.tar.gz -> constraints-0.13.4.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/constraints-0.13.3/CHANGELOG.markdown
new/constraints-0.13.4/CHANGELOG.markdown
--- old/constraints-0.13.3/CHANGELOG.markdown 2001-09-09 03:46:40.000000000
+0200
+++ new/constraints-0.13.4/CHANGELOG.markdown 2001-09-09 03:46:40.000000000
+0200
@@ -1,3 +1,8 @@
+0.13.4 [2022.05.19]
+-------------------
+* Correct the CPP introduced in `constraints-0.13.3` such that it works when
+ building with `mtl-2.3.*` or later combined with `transformers < 0.6`.
+
0.13.3 [2022.01.31]
-------------------
* Allow building with `transformers-0.6.*` and `mtl-2.3.*`.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/constraints-0.13.3/constraints.cabal
new/constraints-0.13.4/constraints.cabal
--- old/constraints-0.13.3/constraints.cabal 2001-09-09 03:46:40.000000000
+0200
+++ new/constraints-0.13.4/constraints.cabal 2001-09-09 03:46:40.000000000
+0200
@@ -1,6 +1,6 @@
name: constraints
category: Constraints
-version: 0.13.3
+version: 0.13.4
license: BSD2
cabal-version: >= 1.10
license-file: LICENSE
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/constraints-0.13.3/src/Data/Constraint/Lifting.hs
new/constraints-0.13.4/src/Data/Constraint/Lifting.hs
--- old/constraints-0.13.3/src/Data/Constraint/Lifting.hs 2001-09-09
03:46:40.000000000 +0200
+++ new/constraints-0.13.4/src/Data/Constraint/Lifting.hs 2001-09-09
03:46:40.000000000 +0200
@@ -399,10 +399,12 @@
instance (Eq e, Eq1 m) => Lifting Eq (ErrorT e m) where lifting = Sub Dict
instance (Ord e, Ord1 m) => Lifting Ord (ErrorT e m) where lifting = Sub Dict
instance (Read e, Read1 m) => Lifting Read (ErrorT e m) where lifting = Sub
Dict
+# if !(MIN_VERSION_mtl(2,3,0))
instance Error e => Lifting MonadCont (ErrorT e) where lifting = Sub Dict
instance Error e => Lifting (MonadRWS r w s) (ErrorT e) where lifting = Sub
Dict
instance Error e => Lifting (MonadReader r) (ErrorT e) where lifting = Sub Dict
instance Error e => Lifting (MonadState s) (ErrorT e) where lifting = Sub Dict
+# endif
instance Lifting Functor ListT where lifting = Sub Dict
instance Lifting Applicative ListT where lifting = Sub Dict
@@ -421,10 +423,12 @@
instance Read1 m => Lifting Read (ListT m) where lifting = Sub Dict
instance Ord1 m => Lifting Ord (ListT m) where lifting = Sub Dict
instance Eq1 m => Lifting Eq (ListT m) where lifting = Sub Dict
+# if !(MIN_VERSION_mtl(2,3,0))
instance Lifting MonadCont ListT where lifting = Sub Dict
instance Lifting (MonadError e) ListT where lifting = Sub Dict
instance Lifting (MonadReader r) ListT where lifting = Sub Dict
instance Lifting (MonadState s) ListT where lifting = Sub Dict
+# endif
#endif
class Lifting2 p f where