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 2022-08-01 21:30:39
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-th-orphans (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-th-orphans.new.1533 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-th-orphans"

Mon Aug  1 21:30:39 2022 rev:15 rq:987099 version:0.13.13

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-th-orphans/ghc-th-orphans.changes    
2021-12-19 17:34:51.968283096 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-th-orphans.new.1533/ghc-th-orphans.changes  
2022-08-01 21:31:06.849779578 +0200
@@ -1,0 +2,8 @@
+Fri May 20 04:12:36 UTC 2022 - Peter Simons <[email protected]>
+
+- Update th-orphans to version 0.13.13.
+  ### 0.13.13 [2022.05.19]
+  * Implement `qGetPackageRoot` (introduced in `template-haskell-2.19.0.0`)
+    for the `Quasi` instances defined in `th-orphans`.
+
+-------------------------------------------------------------------

Old:
----
  th-orphans-0.13.12.tar.gz
  th-orphans.cabal

New:
----
  th-orphans-0.13.13.tar.gz

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

Other differences:
------------------
++++++ ghc-th-orphans.spec ++++++
--- /var/tmp/diff_new_pack.CNVtzA/_old  2022-08-01 21:31:07.817782355 +0200
+++ /var/tmp/diff_new_pack.CNVtzA/_new  2022-08-01 21:31:07.825782378 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-th-orphans
 #
-# Copyright (c) 2021 SUSE LLC
+# Copyright (c) 2022 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,19 +19,17 @@
 %global pkg_name th-orphans
 %bcond_with tests
 Name:           ghc-%{pkg_name}
-Version:        0.13.12
+Version:        0.13.13
 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/2.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
@@ -58,7 +56,6 @@
 
 %prep
 %autosetup -n %{pkg_name}-%{version}
-cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build
 %ghc_lib_build

++++++ th-orphans-0.13.12.tar.gz -> th-orphans-0.13.13.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/th-orphans-0.13.12/CHANGELOG.md 
new/th-orphans-0.13.13/CHANGELOG.md
--- old/th-orphans-0.13.12/CHANGELOG.md 2001-09-09 03:46:40.000000000 +0200
+++ new/th-orphans-0.13.13/CHANGELOG.md 2022-05-20 06:11:08.000000000 +0200
@@ -1,3 +1,7 @@
+### 0.13.13 [2022.05.19]
+* Implement `qGetPackageRoot` (introduced in `template-haskell-2.19.0.0`)
+  for the `Quasi` instances defined in `th-orphans`.
+
 ### 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`.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/th-orphans-0.13.12/src/Language/Haskell/TH/Instances/Internal.hs 
new/th-orphans-0.13.13/src/Language/Haskell/TH/Instances/Internal.hs
--- old/th-orphans-0.13.12/src/Language/Haskell/TH/Instances/Internal.hs        
2001-09-09 03:46:40.000000000 +0200
+++ new/th-orphans-0.13.13/src/Language/Haskell/TH/Instances/Internal.hs        
2022-05-20 06:09:05.000000000 +0200
@@ -91,6 +91,9 @@
             , ('qGetDoc,             [| MTL.lift . qGetDoc |])
             , ('qPutDoc,             [| \a b -> MTL.lift $ qPutDoc a b |])
 #endif
+#if MIN_VERSION_template_haskell(2,19,0)
+            , ('qGetPackageRoot,     [| MTL.lift qGetPackageRoot |])
+#endif
             ]
 
           mkDec :: Name -> Q Exp -> Q Dec
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/th-orphans-0.13.12/th-orphans.cabal 
new/th-orphans-0.13.13/th-orphans.cabal
--- old/th-orphans-0.13.12/th-orphans.cabal     2001-09-09 03:46:40.000000000 
+0200
+++ new/th-orphans-0.13.13/th-orphans.cabal     2022-05-20 06:10:43.000000000 
+0200
@@ -1,5 +1,5 @@
 name:               th-orphans
-version:            0.13.12
+version:            0.13.13
 cabal-version:      >= 1.10
 build-type:         Simple
 license:            BSD3
@@ -23,7 +23,7 @@
                   , GHC == 8.8.4
                   , GHC == 8.10.7
                   , GHC == 9.0.1
-                  , GHC == 9.2.*
+                  , GHC == 9.2.1
 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
@@ -33,19 +33,17 @@
 
 library
   build-depends:      base >= 4.3 && < 5,
-                      template-haskell < 2.19,
+                      template-haskell < 2.20,
                       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-lift-instances,
-                      mtl
+                      mtl >= 2
 
   if !impl(ghc >= 8.0)
     build-depends:    fail == 4.9.*,
-                      semigroups >= 0.18.5  && < 0.20
+                      semigroups >= 0.18.5  && < 0.21
 
   -- Use TH to derive Generics instances instead of DeriveGeneric, for < 7.10
   if impl(ghc < 7.10)

Reply via email to