Hello community,
here is the log from the commit of package ghc-th-lift-instances for
openSUSE:Factory checked in at 2019-08-24 18:44:32
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-th-lift-instances (Old)
and /work/SRC/openSUSE:Factory/.ghc-th-lift-instances.new.7948 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-th-lift-instances"
Sat Aug 24 18:44:32 2019 rev:9 rq:725525 version:0.1.14
Changes:
--------
---
/work/SRC/openSUSE:Factory/ghc-th-lift-instances/ghc-th-lift-instances.changes
2019-05-09 10:10:41.437248034 +0200
+++
/work/SRC/openSUSE:Factory/.ghc-th-lift-instances.new.7948/ghc-th-lift-instances.changes
2019-08-24 18:44:32.449768101 +0200
@@ -1,0 +2,6 @@
+Wed Aug 14 02:02:39 UTC 2019 - [email protected]
+
+- Update th-lift-instances to version 0.1.14.
+ Upstream does not provide a change log file.
+
+-------------------------------------------------------------------
Old:
----
th-lift-instances-0.1.13.tar.gz
New:
----
th-lift-instances-0.1.14.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ ghc-th-lift-instances.spec ++++++
--- /var/tmp/diff_new_pack.YGyA0X/_old 2019-08-24 18:44:32.973768051 +0200
+++ /var/tmp/diff_new_pack.YGyA0X/_new 2019-08-24 18:44:32.973768051 +0200
@@ -19,7 +19,7 @@
%global pkg_name th-lift-instances
%bcond_with tests
Name: ghc-%{pkg_name}
-Version: 0.1.13
+Version: 0.1.14
Release: 0
Summary: Lift instances for template-haskell for common data types
License: BSD-3-Clause
++++++ th-lift-instances-0.1.13.tar.gz -> th-lift-instances-0.1.14.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/th-lift-instances-0.1.13/src/Instances/TH/Lift.hs
new/th-lift-instances-0.1.14/src/Instances/TH/Lift.hs
--- old/th-lift-instances-0.1.13/src/Instances/TH/Lift.hs 2019-04-30
15:47:57.000000000 +0200
+++ new/th-lift-instances-0.1.14/src/Instances/TH/Lift.hs 2019-08-13
22:13:37.000000000 +0200
@@ -85,9 +85,11 @@
import qualified Data.Set as Set
import qualified Data.Tree as Tree
+#if !MIN_VERSION_text(1,2,4)
-- Text
import qualified Data.Text as Text
import qualified Data.Text.Lazy as Text.Lazy
+#endif
-- ByteString
import qualified Data.ByteString as ByteString
@@ -199,6 +201,7 @@
instance Lift a => Lift (Tree.Tree a) where
lift (Tree.Node x xs) = [| Tree.Node x xs |]
+#if !MIN_VERSION_text(1,2,4)
--------------------------------------------------------------------------------
-- Text
instance Lift Text.Text where
@@ -208,6 +211,7 @@
instance Lift Text.Lazy.Text where
lift t = [| Text.Lazy.pack t' |] where
t' = Text.Lazy.unpack t
+#endif
--------------------------------------------------------------------------------
-- ByteString
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/th-lift-instances-0.1.13/th-lift-instances.cabal
new/th-lift-instances-0.1.14/th-lift-instances.cabal
--- old/th-lift-instances-0.1.13/th-lift-instances.cabal 2019-04-30
15:47:57.000000000 +0200
+++ new/th-lift-instances-0.1.14/th-lift-instances.cabal 2019-08-13
22:13:37.000000000 +0200
@@ -1,5 +1,5 @@
name: th-lift-instances
-version: 0.1.13
+version: 0.1.14
cabal-version: >=1.10
build-type: Simple
license: BSD3