Hello community,
here is the log from the commit of package ghc-distributed-closure for
openSUSE:Factory checked in at 2017-04-14 13:40:12
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-distributed-closure (Old)
and /work/SRC/openSUSE:Factory/.ghc-distributed-closure.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-distributed-closure"
Fri Apr 14 13:40:12 2017 rev:3 rq:486470 version:0.3.4.0
Changes:
--------
---
/work/SRC/openSUSE:Factory/ghc-distributed-closure/ghc-distributed-closure.changes
2016-11-10 13:24:17.000000000 +0100
+++
/work/SRC/openSUSE:Factory/.ghc-distributed-closure.new/ghc-distributed-closure.changes
2017-04-14 13:40:13.958093653 +0200
@@ -1,0 +2,5 @@
+Mon Mar 27 12:37:10 UTC 2017 - [email protected]
+
+- Update to version 0.3.4.0 with cabal2obs.
+
+-------------------------------------------------------------------
Old:
----
distributed-closure-0.3.3.0.tar.gz
New:
----
distributed-closure-0.3.4.0.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ ghc-distributed-closure.spec ++++++
--- /var/tmp/diff_new_pack.bcksW4/_old 2017-04-14 13:40:14.869964776 +0200
+++ /var/tmp/diff_new_pack.bcksW4/_new 2017-04-14 13:40:14.869964776 +0200
@@ -1,7 +1,7 @@
#
# spec file for package ghc-distributed-closure
#
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 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,7 +19,7 @@
%global pkg_name distributed-closure
%bcond_with tests
Name: ghc-%{pkg_name}
-Version: 0.3.3.0
+Version: 0.3.4.0
Release: 0
Summary: Serializable closures for distributed programming
License: BSD-3-Clause
@@ -40,7 +40,7 @@
%endif
%description
-See README.
+Serializable closures for distributed programming.
%package devel
Summary: Haskell %{pkg_name} library development files
++++++ distributed-closure-0.3.3.0.tar.gz -> distributed-closure-0.3.4.0.tar.gz
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/distributed-closure-0.3.3.0/distributed-closure.cabal
new/distributed-closure-0.3.4.0/distributed-closure.cabal
--- old/distributed-closure-0.3.3.0/distributed-closure.cabal 2016-10-01
12:12:31.000000000 +0200
+++ new/distributed-closure-0.3.4.0/distributed-closure.cabal 2017-03-20
19:31:39.000000000 +0100
@@ -1,5 +1,5 @@
name: distributed-closure
-version: 0.3.3.0
+version: 0.3.4.0
synopsis: Serializable closures for distributed programming.
description: See README.
homepage: https://github.com/tweag/distributed-closure
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/distributed-closure-0.3.3.0/src/Control/Distributed/Closure/Internal.hs
new/distributed-closure-0.3.4.0/src/Control/Distributed/Closure/Internal.hs
--- old/distributed-closure-0.3.3.0/src/Control/Distributed/Closure/Internal.hs
2016-10-01 12:13:04.000000000 +0200
+++ new/distributed-closure-0.3.4.0/src/Control/Distributed/Closure/Internal.hs
2017-03-20 19:29:47.000000000 +0100
@@ -56,6 +56,11 @@
-- Cache the value a closure resolves to.
Closure :: a -> !(Closure a) -> Closure a
+#if MIN_VERSION_base(4,9,0)
+instance IsStatic Closure where
+ fromStaticPtr = closure
+#endif
+
-- Will be obsoleted by https://ghc.haskell.org/trac/ghc/wiki/Typeable. We use
-- our own datatype instead of Dynamic in order to support dynClosureApply.
newtype DynClosure = DynClosure Any -- invariant: only values of type Closure.