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 2026-06-10 15:58:38
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-constraints (Old)
and /work/SRC/openSUSE:Factory/.ghc-constraints.new.2375 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-constraints"
Wed Jun 10 15:58:38 2026 rev:22 rq:1358346 version:0.14.4
Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-constraints/ghc-constraints.changes
2024-07-22 17:16:54.926677983 +0200
+++
/work/SRC/openSUSE:Factory/.ghc-constraints.new.2375/ghc-constraints.changes
2026-06-10 15:59:20.432102076 +0200
@@ -1,0 +2,16 @@
+Mon Jan 26 18:08:18 UTC 2026 - Peter Simons <[email protected]>
+
+- Update constraints to version 0.14.4.
+ 0.14.4 [2026.01.26]
+ -------------------
+ * Depend on `ghc-bignum` instead of `integer-gmp` on recent versions GHC.
+
+-------------------------------------------------------------------
+Sat Jan 10 16:15:51 UTC 2026 - Peter Simons <[email protected]>
+
+- Update constraints to version 0.14.3.
+ 0.14.3 [2026.01.10]
+ -------------------
+ * Remove unused `ghc-prim` dependency.
+
+-------------------------------------------------------------------
Old:
----
constraints-0.14.2.tar.gz
constraints.cabal
New:
----
constraints-0.14.4.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ ghc-constraints.spec ++++++
--- /var/tmp/diff_new_pack.eZzlGy/_old 2026-06-10 15:59:21.192133571 +0200
+++ /var/tmp/diff_new_pack.eZzlGy/_new 2026-06-10 15:59:21.196133737 +0200
@@ -1,7 +1,7 @@
#
# spec file for package ghc-constraints
#
-# Copyright (c) 2024 SUSE LLC
+# Copyright (c) 2026 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -20,13 +20,12 @@
%global pkgver %{pkg_name}-%{version}
%bcond_with tests
Name: ghc-%{pkg_name}
-Version: 0.14.2
+Version: 0.14.4
Release: 0
Summary: Constraint manipulation
License: BSD-2-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-base-devel
BuildRequires: ghc-base-prof
@@ -83,7 +82,6 @@
%prep
%autosetup -n %{pkg_name}-%{version}
-cp -p %{SOURCE1} %{pkg_name}.cabal
%build
%ghc_lib_build
++++++ constraints-0.14.2.tar.gz -> constraints-0.14.4.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/constraints-0.14.2/CHANGELOG.markdown
new/constraints-0.14.4/CHANGELOG.markdown
--- old/constraints-0.14.2/CHANGELOG.markdown 2001-09-09 03:46:40.000000000
+0200
+++ new/constraints-0.14.4/CHANGELOG.markdown 2001-09-09 03:46:40.000000000
+0200
@@ -1,3 +1,11 @@
+0.14.4 [2026.01.26]
+-------------------
+* Depend on `ghc-bignum` instead of `integer-gmp` on recent versions GHC.
+
+0.14.3 [2026.01.10]
+-------------------
+* Remove unused `ghc-prim` dependency.
+
0.14.2 [2024.05.12]
-------------------
* Re-export `Log2` from `Data.Constraint.Nat`.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/constraints-0.14.2/constraints.cabal
new/constraints-0.14.4/constraints.cabal
--- old/constraints-0.14.2/constraints.cabal 2001-09-09 03:46:40.000000000
+0200
+++ new/constraints-0.14.4/constraints.cabal 2001-09-09 03:46:40.000000000
+0200
@@ -1,7 +1,7 @@
cabal-version: 2.4
name: constraints
category: Constraints
-version: 0.14.2
+version: 0.14.4
license: BSD-2-Clause
license-file: LICENSE
author: Edward A. Kmett
@@ -19,9 +19,12 @@
build-type: Simple
tested-with:
- GHC == 9.8.1
- GHC == 9.6.3
- GHC == 9.4.7
+ GHC == 9.14.1
+ GHC == 9.12.2
+ GHC == 9.10.3
+ GHC == 9.8.4
+ GHC == 9.6.7
+ GHC == 9.4.8
GHC == 9.2.8
GHC == 9.0.2
GHC == 8.10.7
@@ -56,11 +59,13 @@
, binary >= 0.7.1 && < 0.9
, boring >= 0.2 && < 0.3
, deepseq >= 1.3 && < 1.6
- , ghc-prim
- , hashable >= 1.2 && < 1.5
+ , hashable >= 1.2 && < 1.6
, mtl >= 2.2 && < 2.4
, transformers >= 0.5 && < 0.7
- if !impl(ghc >= 9.0)
+ if impl(ghc >= 9.15)
+ build-depends:
+ ghc-bignum
+ elif impl(ghc < 9.0)
build-depends:
integer-gmp
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/constraints-0.14.2/src/Data/Constraint/Deferrable.hs
new/constraints-0.14.4/src/Data/Constraint/Deferrable.hs
--- old/constraints-0.14.2/src/Data/Constraint/Deferrable.hs 2001-09-09
03:46:40.000000000 +0200
+++ new/constraints-0.14.4/src/Data/Constraint/Deferrable.hs 2001-09-09
03:46:40.000000000 +0200
@@ -1,6 +1,5 @@
{-# LANGUAGE AllowAmbiguousTypes #-}
{-# LANGUAGE ConstraintKinds #-}
-{-# LANGUAGE DeriveDataTypeable #-}
{-# LANGUAGE GADTs #-}
{-# LANGUAGE PolyKinds #-}
{-# LANGUAGE RankNTypes #-}
@@ -33,11 +32,10 @@
import Data.Typeable (Typeable, cast, typeRep)
import Data.Type.Equality ((:~:)(Refl))
-import GHC.Types (type (~~))
-import Data.Type.Equality ((:~~:)(HRefl))
+import Data.Type.Equality (type (~~), (:~~:)(HRefl))
newtype UnsatisfiedConstraint = UnsatisfiedConstraint String
- deriving (Typeable, Show)
+ deriving Show
instance Exception UnsatisfiedConstraint
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/constraints-0.14.2/src/Data/Constraint.hs
new/constraints-0.14.4/src/Data/Constraint.hs
--- old/constraints-0.14.2/src/Data/Constraint.hs 2001-09-09
03:46:40.000000000 +0200
+++ new/constraints-0.14.4/src/Data/Constraint.hs 2001-09-09
03:46:40.000000000 +0200
@@ -110,7 +110,6 @@
--
data Dict :: Constraint -> * where
Dict :: a => Dict a
- deriving Typeable
deriving stock instance (Typeable p, p) => Data (Dict p)
deriving stock instance Eq (Dict a)