Hello community,

here is the log from the commit of package ghc-th-reify-many for 
openSUSE:Leap:15.2 checked in at 2020-02-19 18:41:44
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Leap:15.2/ghc-th-reify-many (Old)
 and      /work/SRC/openSUSE:Leap:15.2/.ghc-th-reify-many.new.26092 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-th-reify-many"

Wed Feb 19 18:41:44 2020 rev:13 rq:771494 version:0.1.9

Changes:
--------
--- /work/SRC/openSUSE:Leap:15.2/ghc-th-reify-many/ghc-th-reify-many.changes    
2020-01-15 15:02:41.701818548 +0100
+++ 
/work/SRC/openSUSE:Leap:15.2/.ghc-th-reify-many.new.26092/ghc-th-reify-many.changes
 2020-02-19 18:41:44.802229780 +0100
@@ -1,0 +2,11 @@
+Fri Nov  8 16:14:59 UTC 2019 - Peter Simons <[email protected]>
+
+- Drop obsolete group attributes.
+
+-------------------------------------------------------------------
+Mon Apr 22 02:01:26 UTC 2019 - [email protected]
+
+- Update th-reify-many to version 0.1.9.
+  Upstream does not provide a change log file.
+
+-------------------------------------------------------------------

Old:
----
  th-reify-many-0.1.8.tar.gz

New:
----
  th-reify-many-0.1.9.tar.gz

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

Other differences:
------------------
++++++ ghc-th-reify-many.spec ++++++
--- /var/tmp/diff_new_pack.P1QwBi/_old  2020-02-19 18:41:45.166230226 +0100
+++ /var/tmp/diff_new_pack.P1QwBi/_new  2020-02-19 18:41:45.166230226 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-th-reify-many
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,11 +19,10 @@
 %global pkg_name th-reify-many
 %bcond_with tests
 Name:           ghc-%{pkg_name}
-Version:        0.1.8
+Version:        0.1.9
 Release:        0
 Summary:        Recurseively reify template haskell datatype info
 License:        BSD-3-Clause
-Group:          Development/Libraries/Haskell
 URL:            https://hackage.haskell.org/package/%{pkg_name}
 Source0:        
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
@@ -42,7 +41,6 @@
 
 %package devel
 Summary:        Haskell %{pkg_name} library development files
-Group:          Development/Libraries/Haskell
 Requires:       %{name} = %{version}-%{release}
 Requires:       ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}

++++++ th-reify-many-0.1.8.tar.gz -> th-reify-many-0.1.9.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/th-reify-many-0.1.8/src/Language/Haskell/TH/ReifyMany/Internal.hs 
new/th-reify-many-0.1.9/src/Language/Haskell/TH/ReifyMany/Internal.hs
--- old/th-reify-many-0.1.8/src/Language/Haskell/TH/ReifyMany/Internal.hs       
2016-05-09 06:01:16.000000000 +0200
+++ new/th-reify-many-0.1.9/src/Language/Haskell/TH/ReifyMany/Internal.hs       
2019-04-21 17:04:26.000000000 +0200
@@ -100,7 +100,7 @@
 -- the given 'TypeclassInstance'.
 instanceMatches :: TypeclassInstance -> Name -> Bool
 instanceMatches (TypeclassInstance _ typ _) n' =
-    case tailMay $ map (headMay . unAppsT) $ unAppsT typ of
+    case tailMay $ map (fmap unSigT . headMay . unAppsT) $ unAppsT typ of
         Nothing -> False
         Just xs -> not $ null [() | Just (ConT n) <- xs, n == n']
 
@@ -110,3 +110,8 @@
   where
     go xs (AppT l x) = go (x : xs) l
     go xs ty = ty : xs
+
+-- | Remove any explicit kind signatures (i.e., 'SigT's) from a 'Type'.
+unSigT :: Type -> Type
+unSigT (SigT t _) = unSigT t
+unSigT t          = t
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/th-reify-many-0.1.8/th-reify-many.cabal 
new/th-reify-many-0.1.9/th-reify-many.cabal
--- old/th-reify-many-0.1.8/th-reify-many.cabal 2017-07-26 22:22:30.000000000 
+0200
+++ new/th-reify-many-0.1.9/th-reify-many.cabal 2019-04-21 17:05:56.000000000 
+0200
@@ -1,5 +1,5 @@
 name:              th-reify-many
-version:           0.1.8
+version:           0.1.9
 synopsis:          Recurseively reify template haskell datatype info
 
 description:       @th-reify-many@ provides functions for recursively reifying 
top


Reply via email to