Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package ghc-th-orphans for openSUSE:Factory checked in at 2021-09-10 23:41:15 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ghc-th-orphans (Old) and /work/SRC/openSUSE:Factory/.ghc-th-orphans.new.1899 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-th-orphans" Fri Sep 10 23:41:15 2021 rev:13 rq:917501 version:0.13.12 Changes: -------- --- /work/SRC/openSUSE:Factory/ghc-th-orphans/ghc-th-orphans.changes 2020-12-22 11:47:35.513917373 +0100 +++ /work/SRC/openSUSE:Factory/.ghc-th-orphans.new.1899/ghc-th-orphans.changes 2021-09-10 23:41:32.726574335 +0200 @@ -1,0 +2,8 @@ +Thu Sep 2 08:33:14 UTC 2021 - [email protected] + +- Update th-orphans to version 0.13.12 revision 1. + ### 0.13.12 [2021.08.30] + * Implement `qGetDoc` and `qPutDoc` (introduced in `template-haskell-2.18.0.0`) + for the `Quasi` instances defined in `th-orphans`. + +------------------------------------------------------------------- Old: ---- th-orphans-0.13.11.tar.gz New: ---- th-orphans-0.13.12.tar.gz th-orphans.cabal ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ghc-th-orphans.spec ++++++ --- /var/tmp/diff_new_pack.Y4Kckj/_old 2021-09-10 23:41:33.214574854 +0200 +++ /var/tmp/diff_new_pack.Y4Kckj/_new 2021-09-10 23:41:33.218574858 +0200 @@ -1,7 +1,7 @@ # # spec file for package ghc-th-orphans # -# 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,17 +19,19 @@ %global pkg_name th-orphans %bcond_with tests Name: ghc-%{pkg_name} -Version: 0.13.11 +Version: 0.13.12 Release: 0 Summary: Orphan instances for TH datatypes License: BSD-3-Clause 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-mtl-devel BuildRequires: ghc-rpm-macros BuildRequires: ghc-template-haskell-devel BuildRequires: ghc-th-compat-devel +BuildRequires: ghc-th-expand-syns-devel BuildRequires: ghc-th-lift-devel BuildRequires: ghc-th-lift-instances-devel BuildRequires: ghc-th-reify-many-devel @@ -56,6 +58,7 @@ %prep %autosetup -n %{pkg_name}-%{version} +cp -p %{SOURCE1} %{pkg_name}.cabal %build %ghc_lib_build ++++++ th-orphans-0.13.11.tar.gz -> th-orphans-0.13.12.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/th-orphans-0.13.11/CHANGELOG.md new/th-orphans-0.13.12/CHANGELOG.md --- old/th-orphans-0.13.11/CHANGELOG.md 2001-09-09 03:46:40.000000000 +0200 +++ new/th-orphans-0.13.12/CHANGELOG.md 2001-09-09 03:46:40.000000000 +0200 @@ -1,3 +1,7 @@ +### 0.13.12 [2021.08.30] +* Implement `qGetDoc` and `qPutDoc` (introduced in `template-haskell-2.18.0.0`) + for the `Quasi` instances defined in `th-orphans`. + ### 0.13.11 [2020.09.29] * Allow building with `template-haskell-2.17.0.0` (GHC 9.0). * Define `Quote` instances for `ReaderT`, `StateT`, `WriterT`, and `RWST`. In diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/th-orphans-0.13.11/README.md new/th-orphans-0.13.12/README.md --- old/th-orphans-0.13.11/README.md 2001-09-09 03:46:40.000000000 +0200 +++ new/th-orphans-0.13.12/README.md 2001-09-09 03:46:40.000000000 +0200 @@ -3,7 +3,7 @@ [](http://packdeps.haskellers.com/reverse/th-orphans) [][Haskell.org] [][tl;dr Legal: BSD3] -[](https://travis-ci.org/mgsloan/th-orphans) +[](https://github.com/mgsloan/th-orphans/actions?query=workflow%3AHaskell-CI) [Hackage: th-orphans]: http://hackage.haskell.org/package/th-orphans diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/th-orphans-0.13.11/src/Language/Haskell/TH/Instances/Internal.hs new/th-orphans-0.13.12/src/Language/Haskell/TH/Instances/Internal.hs --- old/th-orphans-0.13.11/src/Language/Haskell/TH/Instances/Internal.hs 2001-09-09 03:46:40.000000000 +0200 +++ new/th-orphans-0.13.12/src/Language/Haskell/TH/Instances/Internal.hs 2001-09-09 03:46:40.000000000 +0200 @@ -87,6 +87,10 @@ #if MIN_VERSION_template_haskell(2,16,0) , ('qReifyType, [| MTL.lift . qReifyType |]) #endif +#if MIN_VERSION_template_haskell(2,18,0) + , ('qGetDoc, [| MTL.lift . qGetDoc |]) + , ('qPutDoc, [| \a b -> MTL.lift $ qPutDoc a b |]) +#endif ] mkDec :: Name -> Q Exp -> Q Dec diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/th-orphans-0.13.11/th-orphans.cabal new/th-orphans-0.13.12/th-orphans.cabal --- old/th-orphans-0.13.11/th-orphans.cabal 2001-09-09 03:46:40.000000000 +0200 +++ new/th-orphans-0.13.12/th-orphans.cabal 2001-09-09 03:46:40.000000000 +0200 @@ -1,5 +1,5 @@ name: th-orphans -version: 0.13.11 +version: 0.13.12 cabal-version: >= 1.10 build-type: Simple license: BSD3 @@ -21,7 +21,9 @@ , GHC == 8.4.4 , GHC == 8.6.5 , GHC == 8.8.4 - , GHC == 8.10.2 + , GHC == 8.10.7 + , GHC == 9.0.1 + , GHC == 9.2.* synopsis: Orphan instances for TH datatypes description: Orphan instances for TH datatypes. In particular, instances for Ord and Lift, as well as a few missing Show / Eq. These @@ -31,8 +33,10 @@ library build-depends: base >= 4.3 && < 5, - template-haskell < 2.18, + template-haskell < 2.19, th-compat >= 0.1 && < 0.2, + -- Temporary upper bounds until https://github.com/mgsloan/th-reify-many/issues/9 is resolved + th-expand-syns < 0.4.9, -- https://github.com/mboes/th-lift/issues/14 th-lift >= 0.7.1, th-reify-many >= 0.1 && < 0.2, ++++++ th-orphans.cabal ++++++ name: th-orphans version: 0.13.12 x-revision: 1 cabal-version: >= 1.10 build-type: Simple license: BSD3 license-file: LICENSE category: Template Haskell author: Matt Morrow, Michael Sloan, Ryan Scott copyright: (c) Matt Morrow, Michael Sloan, Ryan Scott maintainer: Ryan Scott <[email protected]> bug-reports: https://github.com/mgsloan/th-orphans/issues stability: experimental 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.1 , GHC == 9.2.* synopsis: Orphan instances for TH datatypes description: Orphan instances for TH datatypes. In particular, instances for Ord and Lift, as well as a few missing Show / Eq. These instances used to live in haskell-src-meta, and that's where the version number started. extra-source-files: CHANGELOG.md, README.md library build-depends: base >= 4.3 && < 5, template-haskell < 2.19, th-compat >= 0.1 && < 0.2, th-expand-syns, -- https://github.com/mboes/th-lift/issues/14 th-lift >= 0.7.1, th-reify-many >= 0.1 && < 0.2, th-lift-instances, mtl if !impl(ghc >= 8.0) build-depends: fail == 4.9.*, semigroups >= 0.18.5 && < 0.20 -- Use TH to derive Generics instances instead of DeriveGeneric, for < 7.10 if impl(ghc < 7.10) build-depends: generic-deriving >= 1.9 -- Prior to GHC 7.6, GHC generics lived in ghc-prim if impl(ghc >= 7.2) && impl(ghc < 7.6) build-depends: ghc-prim hs-source-dirs: src ghc-options: -Wall if impl(ghc >= 8.6) ghc-options: -Wno-star-is-type exposed-modules: Language.Haskell.TH.Instances other-modules: Language.Haskell.TH.Instances.Internal default-language: Haskell2010 test-suite test type: exitcode-stdio-1.0 hs-source-dirs: test main-is: Spec.hs other-modules: TestUtil build-depends: base, bytestring, ghc-prim, hspec, template-haskell, th-lift, th-orphans build-tool-depends: hspec-discover:hspec-discover default-language: Haskell2010 source-repository head type: git location: https://github.com/mgsloan/th-orphans
