Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghc-encoding for openSUSE:Factory 
checked in at 2026-06-22 17:29:54
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-encoding (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-encoding.new.1956 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-encoding"

Mon Jun 22 17:29:54 2026 rev:4 rq:1360787 version:0.10.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-encoding/ghc-encoding.changes        
2025-04-23 15:19:22.826218345 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-encoding.new.1956/ghc-encoding.changes      
2026-06-22 17:30:54.628827047 +0200
@@ -1,0 +2,10 @@
+Sat Jun 13 20:01:49 UTC 2026 - Peter Simons <[email protected]>
+
+- Update encoding to version 0.10.3.
+  Changes from 0.10.2 to 0.10.3
+  ---------------------------
+
+  * Do not depend on `ghc-prim`, `extensible-exceptions`.
+  * Allow Cabal-3.16, binary-0.10 and containers-0.8.
+
+-------------------------------------------------------------------

Old:
----
  encoding-0.10.2.tar.gz

New:
----
  encoding-0.10.3.tar.gz

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

Other differences:
------------------
++++++ ghc-encoding.spec ++++++
--- /var/tmp/diff_new_pack.1JB3jk/_old  2026-06-22 17:30:55.484857167 +0200
+++ /var/tmp/diff_new_pack.1JB3jk/_new  2026-06-22 17:30:55.488857308 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-encoding
 #
-# Copyright (c) 2025 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,7 +20,7 @@
 %global pkgver %{pkg_name}-%{version}
 %bcond_with tests
 Name:           ghc-%{pkg_name}
-Version:        0.10.2
+Version:        0.10.3
 Release:        0
 Summary:        A library for various character encodings
 License:        BSD-3-Clause
@@ -37,8 +37,6 @@
 BuildRequires:  ghc-bytestring-prof
 BuildRequires:  ghc-containers-devel
 BuildRequires:  ghc-containers-prof
-BuildRequires:  ghc-extensible-exceptions-devel
-BuildRequires:  ghc-extensible-exceptions-prof
 BuildRequires:  ghc-mtl-devel
 BuildRequires:  ghc-mtl-prof
 BuildRequires:  ghc-regex-compat-devel

++++++ encoding-0.10.2.tar.gz -> encoding-0.10.3.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/encoding-0.10.2/CHANGELOG 
new/encoding-0.10.3/CHANGELOG
--- old/encoding-0.10.2/CHANGELOG       2001-09-09 03:46:40.000000000 +0200
+++ new/encoding-0.10.3/CHANGELOG       2001-09-09 03:46:40.000000000 +0200
@@ -1,3 +1,9 @@
+Changes from 0.10.2 to 0.10.3
+---------------------------
+
+* Do not depend on `ghc-prim`, `extensible-exceptions`.
+* Allow Cabal-3.16, binary-0.10 and containers-0.8.
+
 Changes from 0.10 to 0.10.2
 ---------------------------
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/encoding-0.10.2/Control/Throws.hs 
new/encoding-0.10.3/Control/Throws.hs
--- old/encoding-0.10.2/Control/Throws.hs       2001-09-09 03:46:40.000000000 
+0200
+++ new/encoding-0.10.3/Control/Throws.hs       2001-09-09 03:46:40.000000000 
+0200
@@ -1,7 +1,7 @@
 {-# LANGUAGE FlexibleInstances,MultiParamTypeClasses #-}
 module Control.Throws where
 
-import Control.Exception.Extensible
+import Control.Exception
 import Control.Monad.Identity
 import Control.Monad.Reader
 import Control.Monad.State
@@ -25,4 +25,4 @@
     throwException x = StateT (\s -> throwException x)
 
 instance Throws e m => Throws e (ReaderT s m) where
-    throwException x = ReaderT (\s -> throwException x)
\ No newline at end of file
+    throwException x = ReaderT (\s -> throwException x)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/encoding-0.10.2/Data/Encoding/ByteSink.hs 
new/encoding-0.10.3/Data/Encoding/ByteSink.hs
--- old/encoding-0.10.2/Data/Encoding/ByteSink.hs       2001-09-09 
03:46:40.000000000 +0200
+++ new/encoding-0.10.3/Data/Encoding/ByteSink.hs       2001-09-09 
03:46:40.000000000 +0200
@@ -10,7 +10,7 @@
 import Data.Word
 import Data.Foldable (toList)
 import Control.Throws
-import Control.Exception.Extensible
+import Control.Exception
 import Control.Applicative
 import Control.Monad (ap, liftM)
 import Control.Monad.IO.Class (liftIO)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/encoding-0.10.2/Data/Encoding/ByteSource.hs 
new/encoding-0.10.3/Data/Encoding/ByteSource.hs
--- old/encoding-0.10.2/Data/Encoding/ByteSource.hs     2001-09-09 
03:46:40.000000000 +0200
+++ new/encoding-0.10.3/Data/Encoding/ByteSource.hs     2001-09-09 
03:46:40.000000000 +0200
@@ -14,7 +14,7 @@
 import Control.Monad.State (StateT (..), get, gets, put)
 import Control.Monad.Identity (Identity)
 import Control.Monad.Reader (ReaderT, ask)
-import Control.Exception.Extensible
+import Control.Exception
 import Control.Throws
 import qualified Data.ByteString as BS
 import qualified Data.ByteString.Lazy as LBS
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/encoding-0.10.2/Data/Encoding/Exception.hs 
new/encoding-0.10.3/Data/Encoding/Exception.hs
--- old/encoding-0.10.2/Data/Encoding/Exception.hs      2001-09-09 
03:46:40.000000000 +0200
+++ new/encoding-0.10.3/Data/Encoding/Exception.hs      2001-09-09 
03:46:40.000000000 +0200
@@ -1,7 +1,7 @@
 {-# LANGUAGE DeriveDataTypeable #-}
 module Data.Encoding.Exception where
 
-import Control.Exception.Extensible
+import Control.Exception
 import Data.Word
 import Data.Typeable
 import Control.Monad.Identity
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/encoding-0.10.2/Data/Static.hs 
new/encoding-0.10.3/Data/Static.hs
--- old/encoding-0.10.2/Data/Static.hs  2001-09-09 03:46:40.000000000 +0200
+++ new/encoding-0.10.3/Data/Static.hs  2001-09-09 03:46:40.000000000 +0200
@@ -2,7 +2,6 @@
 module Data.Static where
 
 import GHC.Exts
-import GHC.Prim
 import GHC.Word
 import Data.Word
 import Data.Bits
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/encoding-0.10.2/encoding.cabal 
new/encoding-0.10.3/encoding.cabal
--- old/encoding-0.10.2/encoding.cabal  2001-09-09 03:46:40.000000000 +0200
+++ new/encoding-0.10.3/encoding.cabal  2001-09-09 03:46:40.000000000 +0200
@@ -1,5 +1,5 @@
 Name:          encoding
-Version:       0.10.2
+Version:       0.10.3
 Author:                Henning Günther
 Maintainer:    [email protected], Andrey Prokopenko
 License:       BSD3
@@ -30,11 +30,9 @@
 Library
   Build-Depends: array >=0.4 && <0.6,
                  base >=4 && <5,
-                 binary >=0.7 && <0.10,
+                 binary >=0.7 && <0.11,
                  bytestring >=0.9 && <0.13,
-                 containers >=0.4 && <0.8,
-                 extensible-exceptions >=0.1 && <0.2,
-                 ghc-prim >=0.3 && <0.14,
+                 containers >=0.4 && <0.9,
                  mtl >=2.0 && <2.4,
                  regex-compat >=0.71 && <0.96
 
@@ -129,7 +127,7 @@
                      , filepath
                      , containers
                      , HaXml >=1.22 && <1.27
-                     , Cabal >= 2.0 && < 3.15
+                     , Cabal >= 2.0 && < 3.17
                      , encoding
   else
     buildable: False

Reply via email to