Script 'mail_helper' called by obssrc
Hello community,

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

Package is "ghc-th-abstraction"

Wed Jun 10 16:07:40 2026 rev:24 rq:1358452 version:0.7.2.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-th-abstraction/ghc-th-abstraction.changes    
2025-03-10 18:04:51.625405068 +0100
+++ 
/work/SRC/openSUSE:Factory/.ghc-th-abstraction.new.2375/ghc-th-abstraction.changes
  2026-06-10 16:11:41.506812440 +0200
@@ -1,0 +2,7 @@
+Sat Jan  3 14:49:08 UTC 2026 - Peter Simons <[email protected]>
+
+- Update th-abstraction to version 0.7.2.0.
+  ## 0.7.2.0 -- 2026.01.03
+  * Support GHC 9.14.
+
+-------------------------------------------------------------------

Old:
----
  th-abstraction-0.7.1.0.tar.gz
  th-abstraction.cabal

New:
----
  th-abstraction-0.7.2.0.tar.gz

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

Other differences:
------------------
++++++ ghc-th-abstraction.spec ++++++
--- /var/tmp/diff_new_pack.mn9RUD/_old  2026-06-10 16:11:45.990998266 +0200
+++ /var/tmp/diff_new_pack.mn9RUD/_new  2026-06-10 16:11:46.014999261 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-th-abstraction
 #
-# 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,13 +20,12 @@
 %global pkgver %{pkg_name}-%{version}
 %bcond_with tests
 Name:           ghc-%{pkg_name}
-Version:        0.7.1.0
+Version:        0.7.2.0
 Release:        0
 Summary:        Nicer interface for reified information about data types
 License:        ISC
 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
@@ -71,7 +70,6 @@
 
 %prep
 %autosetup -n %{pkg_name}-%{version}
-cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build
 %ghc_lib_build

++++++ th-abstraction-0.7.1.0.tar.gz -> th-abstraction-0.7.2.0.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/th-abstraction-0.7.1.0/ChangeLog.md 
new/th-abstraction-0.7.2.0/ChangeLog.md
--- old/th-abstraction-0.7.1.0/ChangeLog.md     2001-09-09 03:46:40.000000000 
+0200
+++ new/th-abstraction-0.7.2.0/ChangeLog.md     2001-09-09 03:46:40.000000000 
+0200
@@ -1,5 +1,8 @@
 # Revision history for th-abstraction
 
+## 0.7.2.0 -- 2026.01.03
+* Support GHC 9.14.
+
 ## 0.7.1.0 -- 2024.12.05
 * Drop support for pre-8.0 versions of GHC.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/th-abstraction-0.7.1.0/src/Language/Haskell/TH/Datatype/Internal.hs 
new/th-abstraction-0.7.2.0/src/Language/Haskell/TH/Datatype/Internal.hs
--- old/th-abstraction-0.7.1.0/src/Language/Haskell/TH/Datatype/Internal.hs     
2001-09-09 03:46:40.000000000 +0200
+++ new/th-abstraction-0.7.2.0/src/Language/Haskell/TH/Datatype/Internal.hs     
2001-09-09 03:46:40.000000000 +0200
@@ -1,4 +1,5 @@
 {-# LANGUAGE CPP #-}
+{-# LANGUAGE TemplateHaskellQuotes #-}
 
 #if MIN_VERSION_template_haskell(2,12,0)
 {-# Language Safe #-}
@@ -20,13 +21,13 @@
 
 import Language.Haskell.TH.Syntax
 
+#if MIN_VERSION_base(4,13,0)
+import Data.Type.Equality
+#endif
+
 eqTypeName :: Name
-#if !(MIN_VERSION_base(4,13,0))
-eqTypeName = mkNameG_tc "base" "Data.Type.Equality" "~"
+#if MIN_VERSION_base(4,13,0)
+eqTypeName = ''(~)
 #else
-eqTypeName = mkNameG_tc "ghc-prim" "GHC.Types" "~"
+eqTypeName = mkNameG_tc "base" "Data.Type.Equality" "~"
 #endif
-
--- This is only needed for GHC 7.6-specific bug
-starKindName :: Name
-starKindName = mkNameG_tc "ghc-prim" "GHC.Prim" "*"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/th-abstraction-0.7.1.0/test/Main.hs 
new/th-abstraction-0.7.2.0/test/Main.hs
--- old/th-abstraction-0.7.1.0/test/Main.hs     2001-09-09 03:46:40.000000000 
+0200
+++ new/th-abstraction-0.7.2.0/test/Main.hs     2001-09-09 03:46:40.000000000 
+0200
@@ -17,6 +17,9 @@
 {-# LANGUAGE UnliftedDatatypes #-}
 #endif
 
+-- We should aim to enable -Wincomplete-uni-patterns long-term. See #121.
+{-# OPTIONS_GHC -Wno-incomplete-uni-patterns #-}
+
 {-|
 Module      : Main
 Description : Test cases for the th-abstraction package
@@ -1061,6 +1064,8 @@
            -> unless (a1 == a2) $
                 fail $ "Two occurrences of the same variable have different 
names: "
                     ++ show [a1, a2]
+         _ -> fail $ "Unexpected DatatypeInfo for T48: "
+                    ++ show info
        [| return () |]
    )
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/th-abstraction-0.7.1.0/test/Types.hs 
new/th-abstraction-0.7.2.0/test/Types.hs
--- old/th-abstraction-0.7.1.0/test/Types.hs    2001-09-09 03:46:40.000000000 
+0200
+++ new/th-abstraction-0.7.2.0/test/Types.hs    2001-09-09 03:46:40.000000000 
+0200
@@ -14,6 +14,9 @@
 {-# Language TypeData #-}
 #endif
 
+-- We should aim to enable -Wincomplete-uni-patterns long-term. See #121.
+{-# OPTIONS_GHC -Wno-incomplete-uni-patterns #-}
+
 {-|
 Module      : Types
 Description : Test cases for the th-abstraction package
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/th-abstraction-0.7.1.0/th-abstraction.cabal 
new/th-abstraction-0.7.2.0/th-abstraction.cabal
--- old/th-abstraction-0.7.1.0/th-abstraction.cabal     2001-09-09 
03:46:40.000000000 +0200
+++ new/th-abstraction-0.7.2.0/th-abstraction.cabal     2001-09-09 
03:46:40.000000000 +0200
@@ -1,5 +1,5 @@
 name:                th-abstraction
-version:             0.7.1.0
+version:             0.7.2.0
 synopsis:            Nicer interface for reified information about data types
 description:         This package normalizes variations in the interface for
                      inspecting datatype information via Template Haskell
@@ -17,7 +17,7 @@
 build-type:          Simple
 extra-source-files:  ChangeLog.md README.md
 cabal-version:       >=1.10
-tested-with:         GHC==9.12.1, GHC==9.10.1, GHC==9.8.4, GHC==9.6.6, 
GHC==9.4.8, GHC==9.2.8, GHC==9.0.2, GHC==8.10.7, GHC==8.8.4, GHC==8.6.5, 
GHC==8.4.4, GHC==8.2.2, GHC==8.0.2
+tested-with:         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, GHC==8.8.4, 
GHC==8.6.5, GHC==8.4.4, GHC==8.2.2, GHC==8.0.2
 
 source-repository head
   type: git
@@ -28,9 +28,8 @@
                        Language.Haskell.TH.Datatype.TyVarBndr
   other-modules:       Language.Haskell.TH.Datatype.Internal
   build-depends:       base             >=4.9   && <5,
-                       ghc-prim,
-                       template-haskell >=2.11  && <2.24,
-                       containers       >=0.4   && <0.8
+                       template-haskell >=2.11  && <2.25,
+                       containers       >=0.4   && <0.9
   hs-source-dirs:      src
   default-language:    Haskell2010
 

Reply via email to