Hello community,

here is the log from the commit of package ghc-dlist for openSUSE:Factory 
checked in at 2015-08-27 08:56:43
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-dlist (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-dlist.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-dlist"

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-dlist/ghc-dlist.changes      2015-05-13 
07:12:49.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-dlist.new/ghc-dlist.changes 2015-08-27 
08:56:43.000000000 +0200
@@ -1,0 +2,6 @@
+Sun Aug 23 17:30:35 UTC 2015 - [email protected]
+
+- update to 0.7.1.2
+* Fix GHC 7.10 warnings due to imports
+
+-------------------------------------------------------------------

Old:
----
  _service
  dlist-0.7.1.1.tar.gz

New:
----
  dlist-0.7.1.2.tar.gz

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

Other differences:
------------------
++++++ ghc-dlist.spec ++++++
--- /var/tmp/diff_new_pack.DlzTpi/_old  2015-08-27 08:56:44.000000000 +0200
+++ /var/tmp/diff_new_pack.DlzTpi/_new  2015-08-27 08:56:44.000000000 +0200
@@ -20,8 +20,8 @@
 
 %bcond_with tests
 
-Name:           ghc-%{pkg_name}
-Version:        0.7.1.1
+Name:           ghc-dlist
+Version:        0.7.1.2
 Release:        0
 Summary:        Difference lists
 License:        BSD-3-Clause

++++++ dlist-0.7.1.1.tar.gz -> dlist-0.7.1.2.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dlist-0.7.1.1/ChangeLog.md 
new/dlist-0.7.1.2/ChangeLog.md
--- old/dlist-0.7.1.1/ChangeLog.md      2015-03-19 08:10:12.000000000 +0100
+++ new/dlist-0.7.1.2/ChangeLog.md      2015-08-23 09:23:03.000000000 +0200
@@ -2,6 +2,14 @@
 Change Log
 ==========
 
+Version 0.7.1.2 (2015-08-23) *International Day for the Remembrance of the 
Slave Trade and its Abolition*
+---------------------------------------------------------------------------------------------------------
+
+#### Package changes
+
+* Fix GHC 7.10 warnings due to imports
+  ([Mikhail Glushenkov](https://github.com/23Skidoo))
+
 Version 0.7.1.1 (2015-03-19) *St Joseph's Day*
 ----------------------------------------------
 
@@ -38,10 +46,7 @@
 #### Package changes
 
 * Change QuickCheck lower bound from 2.6 to 2.5
-
-#### Contributors
-
-* [Michael Snoyman](https://github.com/snoyberg)
+  ([Michael Snoyman](https://github.com/snoyberg))
 
 Version 0.6 (2013-11-29) *Black Friday*
 ---------------------------------------
@@ -49,8 +54,10 @@
 #### Development changes
 
 * Maintenance and development taken over by Sean Leather
+  ([Bas van Dijk](https://github.com/basvandijk))
 * Migrate repository from http://code.haskell.org/~dons/code/dlist/ to
   https://github.com/spl/dlist
+* Add Travis-CI ([Herbert Valerio Riedel](https://github.com/hvr))
 
 #### Package changes
 
@@ -70,9 +77,3 @@
 * Deprecate DList constructor and record selector to make it abstract
   (see [#4](https://github.com/spl/dlist/issues/4))
 * Deprecate `maybeReturn` which is not directly relevant to dlists
-
-#### Contributors
-
-* [Bas van Dijk](https://github.com/basvandijk)
-* [Herbert Valerio Riedel](https://github.com/hvr)
-
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dlist-0.7.1.1/Data/DList.hs 
new/dlist-0.7.1.2/Data/DList.hs
--- old/dlist-0.7.1.1/Data/DList.hs     2015-03-19 08:10:12.000000000 +0100
+++ new/dlist-0.7.1.2/Data/DList.hs     2015-08-23 09:23:03.000000000 +0200
@@ -51,13 +51,17 @@
 import qualified Data.List as List
 import Control.DeepSeq (NFData(..))
 import Control.Monad as M
-import Data.Monoid
 import Data.Function (on)
 import Data.String (IsString(..))
 
-import Data.Foldable (Foldable)
 import qualified Data.Foldable as F
 
+#if !MIN_VERSION_base(4,8,0)
+import Data.Monoid
+import Data.Foldable (Foldable)
+import Control.Applicative(Applicative(..))
+#endif
+
 #ifdef __GLASGOW_HASKELL__
 
 import Text.Read (Lexeme(Ident), lexP, parens, prec, readPrec, readListPrec,
@@ -71,7 +75,7 @@
 
 #endif
 
-import Control.Applicative(Applicative(..), Alternative, (<|>))
+import Control.Applicative(Alternative, (<|>))
 import qualified Control.Applicative (empty)
 
 -- | A difference list is a function that, given a list, returns the original
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dlist-0.7.1.1/dlist.cabal 
new/dlist-0.7.1.2/dlist.cabal
--- old/dlist-0.7.1.1/dlist.cabal       2015-03-19 08:10:12.000000000 +0100
+++ new/dlist-0.7.1.2/dlist.cabal       2015-08-23 09:23:03.000000000 +0200
@@ -1,5 +1,5 @@
 name:                   dlist
-version:                0.7.1.1
+version:                0.7.1.2
 synopsis:               Difference lists
 description:
   Difference lists are a list-like type supporting O(1) append. This is
@@ -21,7 +21,8 @@
                         GHC==7.2.2,
                         GHC==7.4.2,
                         GHC==7.6.3,
-                        GHC==7.8.4
+                        GHC==7.8.4,
+                        GHC==7.10.2
 
 source-repository head
   type:                 git


Reply via email to