Hello community,

here is the log from the commit of package ghc-vector-th-unbox for 
openSUSE:Leap:15.2 checked in at 2020-02-19 18:42:11
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Leap:15.2/ghc-vector-th-unbox (Old)
 and      /work/SRC/openSUSE:Leap:15.2/.ghc-vector-th-unbox.new.26092 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-vector-th-unbox"

Wed Feb 19 18:42:11 2020 rev:13 rq:771526 version:0.2.1.7

Changes:
--------
--- 
/work/SRC/openSUSE:Leap:15.2/ghc-vector-th-unbox/ghc-vector-th-unbox.changes    
    2020-01-15 15:02:45.197820372 +0100
+++ 
/work/SRC/openSUSE:Leap:15.2/.ghc-vector-th-unbox.new.26092/ghc-vector-th-unbox.changes
     2020-02-19 18:42:12.286286569 +0100
@@ -1,0 +2,11 @@
+Fri Nov  8 16:15:11 UTC 2019 - Peter Simons <[email protected]>
+
+- Drop obsolete group attributes.
+
+-------------------------------------------------------------------
+Wed Sep 25 02:02:04 UTC 2019 - [email protected]
+
+- 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.gWNb5j/_old  2020-02-19 18:42:12.650287332 +0100
+++ /var/tmp/diff_new_pack.gWNb5j/_new  2020-02-19 18:42:12.650287332 +0100
@@ -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,11 +19,10 @@
 %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
-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
@@ -42,7 +41,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}

++++++ 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 <[email protected]>
 maintainer:     Liyang HU <[email protected]>
 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