Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghc-th-orphans for openSUSE:Factory 
checked in at 2026-06-10 16:07:59
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-th-orphans (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-th-orphans.new.2375 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-th-orphans"

Wed Jun 10 16:07:59 2026 rev:2 rq:1358456 version:0.13.17

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-th-orphans/ghc-th-orphans.changes    
2025-03-25 22:21:08.604321764 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-th-orphans.new.2375/ghc-th-orphans.changes  
2026-06-10 16:12:18.700353753 +0200
@@ -1,0 +2,8 @@
+Sat Jan 10 14:46:01 UTC 2026 - Peter Simons <[email protected]>
+
+- Update th-orphans to version 0.13.17.
+  ### 0.13.17 [2026.01.10]
+  * Allow building with `template-haskell-2.24.*` (GHC 9.14).
+  * Remove unused `ghc-prim` dependency in the test suite.
+
+-------------------------------------------------------------------

Old:
----
  th-orphans-0.13.16.tar.gz

New:
----
  th-orphans-0.13.17.tar.gz

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

Other differences:
------------------
++++++ ghc-th-orphans.spec ++++++
--- /var/tmp/diff_new_pack.v5i0d2/_old  2026-06-10 16:12:21.796482057 +0200
+++ /var/tmp/diff_new_pack.v5i0d2/_new  2026-06-10 16:12:21.816482886 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-th-orphans
 #
-# 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,7 +20,7 @@
 %global pkgver %{pkg_name}-%{version}
 %bcond_with tests
 Name:           ghc-%{pkg_name}
-Version:        0.13.16
+Version:        0.13.17
 Release:        0
 Summary:        Orphan instances for TH datatypes
 License:        BSD-3-Clause

++++++ th-orphans-0.13.16.tar.gz -> th-orphans-0.13.17.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/th-orphans-0.13.16/CHANGELOG.md 
new/th-orphans-0.13.17/CHANGELOG.md
--- old/th-orphans-0.13.16/CHANGELOG.md 2001-09-09 03:46:40.000000000 +0200
+++ new/th-orphans-0.13.17/CHANGELOG.md 2001-09-09 03:46:40.000000000 +0200
@@ -1,3 +1,7 @@
+### 0.13.17 [2026.01.10]
+* Allow building with `template-haskell-2.24.*` (GHC 9.14).
+* Remove unused `ghc-prim` dependency in the test suite.
+
 ### 0.13.16 [2024.12.05]
 * Support building with `template-haskell-2.23.0`.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/th-orphans-0.13.16/test/TestUtil.hs 
new/th-orphans-0.13.17/test/TestUtil.hs
--- old/th-orphans-0.13.16/test/TestUtil.hs     2001-09-09 03:46:40.000000000 
+0200
+++ new/th-orphans-0.13.17/test/TestUtil.hs     2001-09-09 03:46:40.000000000 
+0200
@@ -9,7 +9,7 @@
 import Language.Haskell.TH.Syntax
 import qualified Data.ByteString as BS
 import qualified Data.ByteString.Internal as BS
-import GHC.Prim (Addr#)
+import GHC.Exts (Addr#)
 import GHC.ForeignPtr (newForeignPtr_)
 import GHC.Ptr (Ptr(Ptr))
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/th-orphans-0.13.16/th-orphans.cabal 
new/th-orphans-0.13.17/th-orphans.cabal
--- old/th-orphans-0.13.16/th-orphans.cabal     2001-09-09 03:46:40.000000000 
+0200
+++ new/th-orphans-0.13.17/th-orphans.cabal     2001-09-09 03:46:40.000000000 
+0200
@@ -1,5 +1,5 @@
 name:               th-orphans
-version:            0.13.16
+version:            0.13.17
 cabal-version:      >= 1.10
 build-type:         Simple
 license:            BSD3
@@ -19,10 +19,11 @@
                   , GHC == 9.0.2
                   , GHC == 9.2.8
                   , GHC == 9.4.8
-                  , GHC == 9.6.6
+                  , GHC == 9.6.7
                   , GHC == 9.8.4
-                  , GHC == 9.10.1
-                  , GHC == 9.12.1
+                  , GHC == 9.10.3
+                  , GHC == 9.12.2
+                  , GHC == 9.14.1
 synopsis:           Orphan instances for TH datatypes
 description:        Orphan instances for TH datatypes.  In particular, 
instances
                     for Ord and Lift, as well as a few missing Show / Eq.  
These
@@ -32,7 +33,7 @@
 
 library
   build-depends:      base >= 4.9 && < 5,
-                      template-haskell >= 2.11 && < 2.24,
+                      template-haskell >= 2.11 && < 2.25,
                       th-compat >= 0.1 && < 0.2,
                       -- https://github.com/mboes/th-lift/issues/14
                       th-lift >= 0.7.1,
@@ -53,7 +54,6 @@
   other-modules:      TestUtil
   build-depends:      base,
                       bytestring,
-                      ghc-prim,
                       hspec,
                       template-haskell,
                       th-lift,

Reply via email to