Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package ghc-th-lift for openSUSE:Factory checked in at 2023-08-09 17:26:04 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ghc-th-lift (Old) and /work/SRC/openSUSE:Factory/.ghc-th-lift.new.11712 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-th-lift" Wed Aug 9 17:26:04 2023 rev:18 rq:1103046 version:0.8.4 Changes: -------- --- /work/SRC/openSUSE:Factory/ghc-th-lift/ghc-th-lift.changes 2023-04-04 21:24:13.762491144 +0200 +++ /work/SRC/openSUSE:Factory/.ghc-th-lift.new.11712/ghc-th-lift.changes 2023-08-09 17:26:08.181710150 +0200 @@ -1,0 +2,9 @@ +Tue Aug 1 11:50:14 UTC 2023 - Peter Simons <[email protected]> + +- Update th-lift to version 0.8.4. + ## [0.8.4] - 2023.08.01 + + * Add support for the `FldName` `NameSpace`, which was introduced in + `template-haskell-2.21.0.0` (GHC 9.8). + +------------------------------------------------------------------- Old: ---- th-lift-0.8.3.tar.gz New: ---- th-lift-0.8.4.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ghc-th-lift.spec ++++++ --- /var/tmp/diff_new_pack.FSZktz/_old 2023-08-09 17:26:09.169716301 +0200 +++ /var/tmp/diff_new_pack.FSZktz/_new 2023-08-09 17:26:09.173716326 +0200 @@ -20,7 +20,7 @@ %global pkgver %{pkg_name}-%{version} %bcond_with tests Name: ghc-%{pkg_name} -Version: 0.8.3 +Version: 0.8.4 Release: 0 Summary: Derive Template Haskell's Lift class for datatypes License: (BSD-3-Clause OR GPL-2.0-only) ++++++ th-lift-0.8.3.tar.gz -> th-lift-0.8.4.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/th-lift-0.8.3/CHANGELOG.md new/th-lift-0.8.4/CHANGELOG.md --- old/th-lift-0.8.3/CHANGELOG.md 2001-09-09 03:46:40.000000000 +0200 +++ new/th-lift-0.8.4/CHANGELOG.md 2001-09-09 03:46:40.000000000 +0200 @@ -2,6 +2,11 @@ All notable changes to this project will be documented in this file. +## [0.8.4] - 2023.08.01 + +* Add support for the `FldName` `NameSpace`, which was introduced in + `template-haskell-2.21.0.0` (GHC 9.8). + ## [0.8.3] - 2023.02.27 * Support building with `th-abstraction-0.5.*`. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/th-lift-0.8.3/src/Language/Haskell/TH/Lift.hs new/th-lift-0.8.4/src/Language/Haskell/TH/Lift.hs --- old/th-lift-0.8.3/src/Language/Haskell/TH/Lift.hs 2001-09-09 03:46:40.000000000 +0200 +++ new/th-lift-0.8.4/src/Language/Haskell/TH/Lift.hs 2001-09-09 03:46:40.000000000 +0200 @@ -310,6 +310,9 @@ lift VarName = [| VarName |] lift DataName = [| DataName |] lift TcClsName = [| TcClsName |] +#if MIN_VERSION_template_haskell(2,21,0) + lift (FldName parent) = [| FldName parent |] +#endif #if MIN_VERSION_template_haskell(2,16,0) liftTyped = unsafeSpliceCoerce . lift #endif diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/th-lift-0.8.3/th-lift.cabal new/th-lift-0.8.4/th-lift.cabal --- old/th-lift-0.8.3/th-lift.cabal 2001-09-09 03:46:40.000000000 +0200 +++ new/th-lift-0.8.4/th-lift.cabal 2001-09-09 03:46:40.000000000 +0200 @@ -1,5 +1,5 @@ Name: th-lift -Version: 0.8.3 +Version: 0.8.4 Cabal-Version: 1.12 License: BSD3 License-Files: COPYING, BSD3, GPL-2 @@ -26,7 +26,7 @@ old versions of their respective libraries, as the same @Lift@ instances are also present upstream on newer versions. Category: Language -Tested-With: GHC==7.0.4, GHC==7.2.2, GHC==7.4.2, GHC==7.6.3, GHC==7.8.4, GHC==7.10.3, GHC==8.0.2, GHC==8.2.2, GHC==8.4.4, GHC==8.6.5, GHC==8.8.4, GHC==8.10.7, GHC==9.0.2, GHC==9.2.6, GHC==9.4.4, GHC==9.6.1 +Tested-With: GHC==7.0.4, GHC==7.2.2, GHC==7.4.2, GHC==7.6.3, GHC==7.8.4, GHC==7.10.3, GHC==8.0.2, GHC==8.2.2, GHC==8.4.4, GHC==8.6.5, GHC==8.8.4, GHC==8.10.7, GHC==9.0.2, GHC==9.2.8, GHC==9.4.5, GHC==9.6.2 build-type: Simple Extra-source-files: CHANGELOG.md @@ -46,8 +46,8 @@ Hs-Source-Dirs: src Build-Depends: base >= 4.3 && < 5, ghc-prim, - th-abstraction >= 0.3 && < 0.6, - template-haskell >= 2.5 && < 2.21 + th-abstraction >= 0.3 && < 0.7, + template-haskell >= 2.5 && < 2.22 ghc-options: -Wall Test-Suite test
