Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package ghc-th-reify-many for
openSUSE:Factory checked in at 2021-09-10 23:41:15
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-th-reify-many (Old)
and /work/SRC/openSUSE:Factory/.ghc-th-reify-many.new.1899 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-th-reify-many"
Fri Sep 10 23:41:15 2021 rev:11 rq:917502 version:0.1.10
Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-th-reify-many/ghc-th-reify-many.changes
2020-12-22 11:47:38.117919471 +0100
+++
/work/SRC/openSUSE:Factory/.ghc-th-reify-many.new.1899/ghc-th-reify-many.changes
2021-09-10 23:41:33.418575071 +0200
@@ -1,0 +2,12 @@
+Mon Sep 6 09:35:16 UTC 2021 - [email protected]
+
+- Update th-reify-many to version 0.1.10.
+ Upstream does not provide a change log file.
+
+-------------------------------------------------------------------
+Thu Sep 2 08:31:54 UTC 2021 - [email protected]
+
+- Update th-reify-many to version 0.1.9 revision 1.
+ Upstream has revised the Cabal build instructions on Hackage.
+
+-------------------------------------------------------------------
Old:
----
th-reify-many-0.1.9.tar.gz
New:
----
th-reify-many-0.1.10.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ ghc-th-reify-many.spec ++++++
--- /var/tmp/diff_new_pack.VbU1o2/_old 2021-09-10 23:41:33.802575480 +0200
+++ /var/tmp/diff_new_pack.VbU1o2/_new 2021-09-10 23:41:33.806575484 +0200
@@ -1,7 +1,7 @@
#
# spec file for package ghc-th-reify-many
#
-# Copyright (c) 2020 SUSE LLC
+# Copyright (c) 2021 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -19,7 +19,7 @@
%global pkg_name th-reify-many
%bcond_with tests
Name: ghc-%{pkg_name}
-Version: 0.1.9
+Version: 0.1.10
Release: 0
Summary: Recurseively reify template haskell datatype info
License: BSD-3-Clause
++++++ th-reify-many-0.1.9.tar.gz -> th-reify-many-0.1.10.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/th-reify-many-0.1.9/src/Language/Haskell/TH/ReifyMany/Internal.hs
new/th-reify-many-0.1.10/src/Language/Haskell/TH/ReifyMany/Internal.hs
--- old/th-reify-many-0.1.9/src/Language/Haskell/TH/ReifyMany/Internal.hs
2019-04-21 17:04:26.000000000 +0200
+++ new/th-reify-many-0.1.10/src/Language/Haskell/TH/ReifyMany/Internal.hs
2021-09-06 03:19:49.000000000 +0200
@@ -100,7 +100,11 @@
-- the given 'TypeclassInstance'.
instanceMatches :: TypeclassInstance -> Name -> Bool
instanceMatches (TypeclassInstance _ typ _) n' =
- case tailMay $ map (fmap unSigT . headMay . unAppsT) $ unAppsT typ of
+ -- We call unSigT to prevent outermost kind signatures from affecting the
+ -- results. We also call unSigT a second time on the head of the
+ -- application, as older versions of th-expand-syns incorrectly pushed
+ -- kind signatures inwards when expanding type synonyms. (See #9.)
+ case tailMay $ map (fmap unSigT . headMay . unAppsT . unSigT) $ unAppsT
typ of
Nothing -> False
Just xs -> not $ null [() | Just (ConT n) <- xs, n == n']
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/th-reify-many-0.1.9/th-reify-many.cabal
new/th-reify-many-0.1.10/th-reify-many.cabal
--- old/th-reify-many-0.1.9/th-reify-many.cabal 2019-04-21 17:05:56.000000000
+0200
+++ new/th-reify-many-0.1.10/th-reify-many.cabal 2021-09-06
03:20:37.000000000 +0200
@@ -1,5 +1,5 @@
name: th-reify-many
-version: 0.1.9
+version: 0.1.10
synopsis: Recurseively reify template haskell datatype info
description: @th-reify-many@ provides functions for recursively reifying
top