Hello community,
here is the log from the commit of package ghc-store-core for
openSUSE:Leap:15.2 checked in at 2020-02-19 18:41:21
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Leap:15.2/ghc-store-core (Old)
and /work/SRC/openSUSE:Leap:15.2/.ghc-store-core.new.26092 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-store-core"
Wed Feb 19 18:41:21 2020 rev:13 rq:771470 version:0.4.4.2
Changes:
--------
--- /work/SRC/openSUSE:Leap:15.2/ghc-store-core/ghc-store-core.changes
2020-01-15 15:02:39.109817196 +0100
+++
/work/SRC/openSUSE:Leap:15.2/.ghc-store-core.new.26092/ghc-store-core.changes
2020-02-19 18:41:21.494201160 +0100
@@ -1,0 +2,22 @@
+Fri Nov 8 16:14:50 UTC 2019 - Peter Simons <[email protected]>
+
+- Drop obsolete group attributes.
+
+-------------------------------------------------------------------
+Thu Oct 24 02:03:02 UTC 2019 - [email protected]
+
+- Update store-core to version 0.4.4.2.
+ ## 0.4.4.2
+
+ * Build fixed for GHC-7.10. See
+ [#146](https://github.com/fpco/store/issues/146)
+
+-------------------------------------------------------------------
+Fri Oct 18 02:02:40 UTC 2019 - [email protected]
+
+- Update store-core to version 0.4.4.1.
+ ## 0.4.4.1
+
+ * Now builds with GHC-8.8.
+
+-------------------------------------------------------------------
Old:
----
store-core-0.4.4.tar.gz
New:
----
store-core-0.4.4.2.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ ghc-store-core.spec ++++++
--- /var/tmp/diff_new_pack.r54k5L/_old 2020-02-19 18:41:21.798201533 +0100
+++ /var/tmp/diff_new_pack.r54k5L/_new 2020-02-19 18:41:21.798201533 +0100
@@ -1,7 +1,7 @@
#
# spec file for package ghc-store-core
#
-# 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
@@ -18,15 +18,15 @@
%global pkg_name store-core
Name: ghc-%{pkg_name}
-Version: 0.4.4
+Version: 0.4.4.2
Release: 0
Summary: Fast and lightweight binary serialization
License: MIT
-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
BuildRequires: ghc-bytestring-devel
+BuildRequires: ghc-fail-devel
BuildRequires: ghc-primitive-devel
BuildRequires: ghc-rpm-macros
BuildRequires: ghc-text-devel
@@ -37,7 +37,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}
++++++ store-core-0.4.4.tar.gz -> store-core-0.4.4.2.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/store-core-0.4.4/ChangeLog.md
new/store-core-0.4.4.2/ChangeLog.md
--- old/store-core-0.4.4/ChangeLog.md 2018-06-17 10:51:22.000000000 +0200
+++ new/store-core-0.4.4.2/ChangeLog.md 2019-10-23 07:03:52.000000000 +0200
@@ -1,5 +1,14 @@
# ChangeLog
+## 0.4.4.2
+
+* Build fixed for GHC-7.10. See
+ [#146](https://github.com/fpco/store/issues/146)
+
+## 0.4.4.1
+
+* Now builds with GHC-8.8.
+
## 0.4.4
* Build fixed with `--flag store-core:force-alignment` / on architectures
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/store-core-0.4.4/src/Data/Store/Core.hs
new/store-core-0.4.4.2/src/Data/Store/Core.hs
--- old/store-core-0.4.4/src/Data/Store/Core.hs 2018-06-17 10:49:13.000000000
+0200
+++ new/store-core-0.4.4.2/src/Data/Store/Core.hs 2019-10-17
05:26:06.000000000 +0200
@@ -112,8 +112,10 @@
(offset2, x') <- x ptr offset1
runPoke (f x') ptr offset2
{-# INLINE (>>=) #-}
+#if !(MIN_VERSION_base(4,13,0))
fail = pokeException . T.pack
{-# INLINE fail #-}
+#endif
#if MIN_VERSION_base(4,9,0)
instance Fail.MonadFail Poke where
@@ -228,8 +230,10 @@
PeekResult ptr2 x' <- x end ptr1
runPeek (f x') end ptr2
{-# INLINE (>>=) #-}
+#if !(MIN_VERSION_base(4,13,0))
fail = peekException . T.pack
{-# INLINE fail #-}
+#endif
#if MIN_VERSION_base(4,9,0)
instance Fail.MonadFail Peek where
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/store-core-0.4.4/store-core.cabal
new/store-core-0.4.4.2/store-core.cabal
--- old/store-core-0.4.4/store-core.cabal 2018-06-17 10:55:04.000000000
+0200
+++ new/store-core-0.4.4.2/store-core.cabal 2019-10-23 07:08:28.000000000
+0200
@@ -1,11 +1,13 @@
--- This file has been generated from package.yaml by hpack version 0.28.2.
+cabal-version: 1.12
+
+-- This file has been generated from package.yaml by hpack version 0.31.1.
--
-- see: https://github.com/sol/hpack
--
--- hash: 680a12cdff5e1d96ebb6aeb5805d096ddf363c01f01f5f6292b7cac10d2b8007
+-- hash: ed1237981dc8b63fe043a7bf62722089e690e398de1cd3fc631ccd2272dc0972
name: store-core
-version: 0.4.4
+version: 0.4.4.2
synopsis: Fast and lightweight binary serialization
category: Serialization, Data
homepage: https://github.com/fpco/store#readme
@@ -15,7 +17,6 @@
license: MIT
license-file: LICENSE
build-type: Simple
-cabal-version: >= 1.10
extra-source-files:
ChangeLog.md
@@ -38,6 +39,7 @@
build-depends:
base >=4.7 && <5
, bytestring >=0.10.4.0 && <1.0
+ , fail >=4.9
, ghc-prim >=0.3.1.0 && <1.0
, primitive >=0.6 && <1.0
, text >=1.2.0.4 && <2.0