Hello community,

here is the log from the commit of package ghc-vector-th-unbox for 
openSUSE:Factory checked in at 2019-10-18 14:35:21
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-vector-th-unbox (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-vector-th-unbox.new.2352 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-vector-th-unbox"

Fri Oct 18 14:35:21 2019 rev:3 rq:737226 version:0.2.1.7

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-vector-th-unbox/ghc-vector-th-unbox.changes  
2018-10-25 09:07:08.642476223 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-vector-th-unbox.new.2352/ghc-vector-th-unbox.changes
        2019-10-18 14:35:22.815935182 +0200
@@ -1,0 +2,6 @@
+Wed Sep 25 02:02:04 UTC 2019 - psim...@suse.com
+
+- Update vector-th-unbox to version 0.2.1.7.
+  Upstream does not provide a change log file.
+
+-------------------------------------------------------------------

Old:
----
  vector-th-unbox-0.2.1.6.tar.gz

New:
----
  vector-th-unbox-0.2.1.7.tar.gz

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

Other differences:
------------------
++++++ ghc-vector-th-unbox.spec ++++++
--- /var/tmp/diff_new_pack.Jw6Kkm/_old  2019-10-18 14:35:23.563933234 +0200
+++ /var/tmp/diff_new_pack.Jw6Kkm/_new  2019-10-18 14:35:23.567933223 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-vector-th-unbox
 #
-# 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,7 +19,7 @@
 %global pkg_name vector-th-unbox
 %bcond_with tests
 Name:           ghc-%{pkg_name}
-Version:        0.2.1.6
+Version:        0.2.1.7
 Release:        0
 Summary:        Deriver for Data.Vector.Unboxed using Template Haskell
 License:        BSD-3-Clause

++++++ vector-th-unbox-0.2.1.6.tar.gz -> vector-th-unbox-0.2.1.7.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/vector-th-unbox-0.2.1.6/Data/Vector/Unboxed/Deriving.hs 
new/vector-th-unbox-0.2.1.7/Data/Vector/Unboxed/Deriving.hs
--- old/vector-th-unbox-0.2.1.6/Data/Vector/Unboxed/Deriving.hs 2016-04-23 
07:32:12.000000000 +0200
+++ new/vector-th-unbox-0.2.1.7/Data/Vector/Unboxed/Deriving.hs 2001-09-09 
03:46:40.000000000 +0200
@@ -126,7 +126,11 @@
 # define MAYBE_KIND
 # define MAYBE_OVERLAP
 #endif
+#if MIN_VERSION_template_haskell(2,15,0)
+    let newtypeMVector = NewtypeInstD [] Nothing (ConT ''MVector `AppT` s 
`AppT` typ) MAYBE_KIND
+#else
     let newtypeMVector = NewtypeInstD [] ''MVector [s, typ] MAYBE_KIND
+#endif
             (NormalC mvName [(lazy, ConT ''MVector `AppT` s `AppT` rep)]) []
     let mvCon = ConE mvName
     let instanceMVector = InstanceD MAYBE_OVERLAP cxts
@@ -147,8 +151,13 @@
             , wrap 'M.basicUnsafeMove       [mv, mv']   id
             , wrap 'M.basicUnsafeGrow       [mv, n]     (liftE mvCon) ]
 
+#if MIN_VERSION_template_haskell(2,15,0)
+    let newtypeVector = NewtypeInstD [] Nothing (ConT ''Vector `AppT` typ) 
MAYBE_KIND
+            (NormalC vName [(lazy, ConT ''Vector `AppT` rep)]) []
+#else
     let newtypeVector = NewtypeInstD [] ''Vector [typ] MAYBE_KIND
             (NormalC vName [(lazy, ConT ''Vector `AppT` rep)]) []
+#endif
     let vCon  = ConE vName
     let instanceVector = InstanceD MAYBE_OVERLAP cxts
             (ConT ''G.Vector `AppT` ConT ''Vector `AppT` typ) $ concat
@@ -193,4 +202,3 @@
 for a working example.
 
 -}
-
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vector-th-unbox-0.2.1.6/vector-th-unbox.cabal 
new/vector-th-unbox-0.2.1.7/vector-th-unbox.cabal
--- old/vector-th-unbox-0.2.1.6/vector-th-unbox.cabal   2016-04-23 
07:32:12.000000000 +0200
+++ new/vector-th-unbox-0.2.1.7/vector-th-unbox.cabal   2001-09-09 
03:46:40.000000000 +0200
@@ -1,5 +1,5 @@
 name:           vector-th-unbox
-version:        0.2.1.6
+version:        0.2.1.7
 synopsis:       Deriver for Data.Vector.Unboxed using Template Haskell
 description:
     A Template Haskell deriver for unboxed vectors, given a pair of coercion
@@ -9,16 +9,15 @@
 stability:      experimental
 license:        BSD3
 license-file:   LICENSE
-copyright:      © 2012−2015 Liyang HU
+copyright:      (c) 2012-2015 Liyang HU
 author:         Liyang HU <vector-th-un...@liyang.hu>
 maintainer:     Liyang HU <vector-th-un...@liyang.hu>
 category:       Data
 build-type:     Simple
 cabal-version:  >= 1.10
 tested-with:
-    GHC == 7.4.2, GHC == 7.6.3, GHC == 7.8.4,
-    GHC == 7.10.2, GHC == 7.10.3,
-    GHC >= 8.0 && < 8.2
+    GHC == 7.4.2, GHC == 7.6.3, GHC == 7.8.4, GHC == 7.10.3,
+    GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.4, GHC == 8.6.5, GHC == 8.8.1
 
 source-repository head
     type:       git
@@ -30,9 +29,9 @@
         Data.Vector.Unboxed.Deriving
 
     build-depends:
-        base >= 4.5 && < 5,
-        template-haskell >= 2.5,
-        vector >= 0.7
+        base >= 4.5 && < 4.14,
+        template-haskell >= 2.5 && <2.16,
+        vector >= 0.7.1 && <0.13
 
 test-suite sanity
     default-language: Haskell2010


Reply via email to