Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package ghc-th-utilities for
openSUSE:Factory checked in at 2021-03-28 11:56:19
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-th-utilities (Old)
and /work/SRC/openSUSE:Factory/.ghc-th-utilities.new.2401 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-th-utilities"
Sun Mar 28 11:56:19 2021 rev:12 rq:881554 version:0.2.4.2
Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-th-utilities/ghc-th-utilities.changes
2020-12-22 11:50:22.650052092 +0100
+++
/work/SRC/openSUSE:Factory/.ghc-th-utilities.new.2401/ghc-th-utilities.changes
2021-03-28 11:58:04.600315031 +0200
@@ -1,0 +2,9 @@
+Wed Mar 24 11:20:41 UTC 2021 - [email protected]
+
+- Update th-utilities to version 0.2.4.2.
+ Upstream has edited the change log file since the last release in
+ a non-trivial way, i.e. they did more than just add a new entry
+ at the top. You can review the file at:
+ http://hackage.haskell.org/package/th-utilities-0.2.4.2/src/ChangeLog.md
+
+-------------------------------------------------------------------
Old:
----
th-utilities-0.2.4.1.tar.gz
New:
----
th-utilities-0.2.4.2.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ ghc-th-utilities.spec ++++++
--- /var/tmp/diff_new_pack.7lgMVd/_old 2021-03-28 11:58:05.216315577 +0200
+++ /var/tmp/diff_new_pack.7lgMVd/_new 2021-03-28 11:58:05.220315580 +0200
@@ -1,7 +1,7 @@
#
# spec file for package ghc-th-utilities
#
-# 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-utilities
%bcond_with tests
Name: ghc-%{pkg_name}
-Version: 0.2.4.1
+Version: 0.2.4.2
Release: 0
Summary: Collection of useful functions for use with Template Haskell
License: MIT
@@ -35,6 +35,7 @@
BuildRequires: ghc-syb-devel
BuildRequires: ghc-template-haskell-devel
BuildRequires: ghc-text-devel
+BuildRequires: ghc-th-abstraction-devel
BuildRequires: ghc-th-orphans-devel
ExcludeArch: %{ix86}
%if %{with tests}
++++++ th-utilities-0.2.4.1.tar.gz -> th-utilities-0.2.4.2.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/th-utilities-0.2.4.1/ChangeLog.md
new/th-utilities-0.2.4.2/ChangeLog.md
--- old/th-utilities-0.2.4.1/ChangeLog.md 2020-11-29 06:52:29.000000000
+0100
+++ new/th-utilities-0.2.4.2/ChangeLog.md 2021-03-24 03:54:23.000000000
+0100
@@ -1,11 +1,17 @@
# ChangeLog
+## 0.2.4.2
+
+* Fixes compilation with `GHC-9.0.*`. See [#14][]
+
+[#14]: https://github.com/fpco/th-utilities/issues/14
+
## 0.2.4.1
* Fixes generated Storable instances to have a `sizeOf` definition
which works with `-XStrict`. See [#13][]
-[#13]: https://github.com/fpco/th-utilities/issues/1
+[#13]: https://github.com/fpco/th-utilities/issues/13
## 0.2.4.0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/th-utilities-0.2.4.1/src/TH/Utilities.hs
new/th-utilities-0.2.4.2/src/TH/Utilities.hs
--- old/th-utilities-0.2.4.1/src/TH/Utilities.hs 2020-04-01
07:14:37.000000000 +0200
+++ new/th-utilities-0.2.4.2/src/TH/Utilities.hs 2021-03-24
03:52:43.000000000 +0100
@@ -13,11 +13,11 @@
import Data.Generics
import Language.Haskell.TH
import Language.Haskell.TH.Syntax
+import Language.Haskell.TH.Datatype.TyVarBndr (TyVarBndr_, tvName)
-- | Get the 'Name' of a 'TyVarBndr'
-tyVarBndrName :: TyVarBndr -> Name
-tyVarBndrName (PlainTV n) = n
-tyVarBndrName (KindedTV n _) = n
+tyVarBndrName :: TyVarBndr_ flag -> Name
+tyVarBndrName = tvName
appsT :: Type -> [Type] -> Type
appsT x [] = x
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/th-utilities-0.2.4.1/th-utilities.cabal
new/th-utilities-0.2.4.2/th-utilities.cabal
--- old/th-utilities-0.2.4.1/th-utilities.cabal 2020-11-29 06:53:45.000000000
+0100
+++ new/th-utilities-0.2.4.2/th-utilities.cabal 2021-03-24 03:58:28.000000000
+0100
@@ -4,10 +4,10 @@
--
-- see: https://github.com/sol/hpack
--
--- hash: 4ead6810c97333043130d21e0a0d11b6c9254be283938497d1ebb222e7552598
+-- hash: 9fff4503beee50e43fb637166a371098620f5eece4581d42ff9ff7b66eee2f96
name: th-utilities
-version: 0.2.4.1
+version: 0.2.4.2
synopsis: Collection of useful functions for use with Template Haskell
category: Template Haskell
homepage: https://github.com/fpco/th-utilities#readme
@@ -47,6 +47,7 @@
, syb
, template-haskell >=2.7
, text
+ , th-abstraction
, th-orphans
default-language: Haskell2010
@@ -72,6 +73,7 @@
, syb
, template-haskell >=2.7
, text
+ , th-abstraction
, th-orphans
, th-utilities
, vector