Hello community,
here is the log from the commit of package ghc-file-embed for
openSUSE:Leap:15.2 checked in at 2020-02-19 18:38:59
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Leap:15.2/ghc-file-embed (Old)
and /work/SRC/openSUSE:Leap:15.2/.ghc-file-embed.new.26092 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-file-embed"
Wed Feb 19 18:38:59 2020 rev:11 rq:771309 version:0.0.11.1
Changes:
--------
--- /work/SRC/openSUSE:Leap:15.2/ghc-file-embed/ghc-file-embed.changes
2020-01-15 15:02:02.309798000 +0100
+++
/work/SRC/openSUSE:Leap:15.2/.ghc-file-embed.new.26092/ghc-file-embed.changes
2020-02-19 18:38:59.894016804 +0100
@@ -1,0 +2,15 @@
+Fri Dec 20 03:02:06 UTC 2019 - [email protected]
+
+- Update file-embed to version 0.0.11.1.
+ # ChangeLog for file-embed
+
+ ## 0.0.11.1
+
+ * Support GHC 8.10
+
+-------------------------------------------------------------------
+Fri Nov 8 16:13:44 UTC 2019 - Peter Simons <[email protected]>
+
+- Drop obsolete group attributes.
+
+-------------------------------------------------------------------
Old:
----
file-embed-0.0.11.tar.gz
New:
----
file-embed-0.0.11.1.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ ghc-file-embed.spec ++++++
--- /var/tmp/diff_new_pack.vjU2iF/_old 2020-02-19 18:39:00.274017599 +0100
+++ /var/tmp/diff_new_pack.vjU2iF/_new 2020-02-19 18:39:00.282017616 +0100
@@ -1,7 +1,7 @@
#
# spec file for package ghc-file-embed
#
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -19,11 +19,10 @@
%global pkg_name file-embed
%bcond_with tests
Name: ghc-%{pkg_name}
-Version: 0.0.11
+Version: 0.0.11.1
Release: 0
Summary: Use Template Haskell to embed file contents directly
License: BSD-2-Clause
-Group: Development/Libraries/Haskell
URL: https://hackage.haskell.org/package/%{pkg_name}
Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
BuildRequires: ghc-Cabal-devel
@@ -39,7 +38,6 @@
%package devel
Summary: Haskell %{pkg_name} library development files
-Group: Development/Libraries/Haskell
Requires: %{name} = %{version}-%{release}
Requires: ghc-compiler = %{ghc_version}
Requires(post): ghc-compiler = %{ghc_version}
++++++ file-embed-0.0.11.tar.gz -> file-embed-0.0.11.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/file-embed-0.0.11/ChangeLog.md
new/file-embed-0.0.11.1/ChangeLog.md
--- old/file-embed-0.0.11/ChangeLog.md 2018-07-29 09:19:51.000000000 +0200
+++ new/file-embed-0.0.11.1/ChangeLog.md 2019-12-16 08:42:24.000000000
+0100
@@ -1,3 +1,9 @@
+# ChangeLog for file-embed
+
+## 0.0.11.1
+
+* Support GHC 8.10
+
## 0.0.11
* embedDirListing [#26](https://github.com/snoyberg/file-embed/pull/26)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/file-embed-0.0.11/Data/FileEmbed.hs
new/file-embed-0.0.11.1/Data/FileEmbed.hs
--- old/file-embed-0.0.11/Data/FileEmbed.hs 2018-07-29 09:19:51.000000000
+0200
+++ new/file-embed-0.0.11.1/Data/FileEmbed.hs 2019-12-16 08:41:16.000000000
+0100
@@ -143,7 +143,11 @@
qAddDependentFile $ _root ++ '/' : path
#endif
exp' <- bsToExp bs
- return $! TupE [LitE $ StringL path, exp']
+ return $! TupE
+#if MIN_VERSION_template_haskell(2,16,0)
+ $ map Just
+#endif
+ [LitE $ StringL path, exp']
bsToExp :: B.ByteString -> Q Exp
#if MIN_VERSION_template_haskell(2, 5, 0)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/file-embed-0.0.11/file-embed.cabal
new/file-embed-0.0.11.1/file-embed.cabal
--- old/file-embed-0.0.11/file-embed.cabal 2018-07-29 09:19:51.000000000
+0200
+++ new/file-embed-0.0.11.1/file-embed.cabal 2019-12-19 21:18:03.000000000
+0100
@@ -1,5 +1,5 @@
name: file-embed
-version: 0.0.11
+version: 0.0.11.1
license: BSD3
license-file: LICENSE
author: Michael Snoyman <[email protected]>
@@ -18,7 +18,7 @@
README.md
library
- build-depends: base >= 4 && < 5
+ build-depends: base >= 4.9.1 && < 5
, bytestring >= 0.9.1.4
, directory >= 1.0.0.3
, template-haskell