Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package ghc-vector-binary-instances for
openSUSE:Factory checked in at 2021-04-26 16:39:37
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-vector-binary-instances (Old)
and /work/SRC/openSUSE:Factory/.ghc-vector-binary-instances.new.12324
(New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-vector-binary-instances"
Mon Apr 26 16:39:37 2021 rev:5 rq:888412 version:0.2.5.2
Changes:
--------
---
/work/SRC/openSUSE:Factory/ghc-vector-binary-instances/ghc-vector-binary-instances.changes
2020-12-22 11:48:42.877971671 +0100
+++
/work/SRC/openSUSE:Factory/.ghc-vector-binary-instances.new.12324/ghc-vector-binary-instances.changes
2021-04-26 16:40:35.786171355 +0200
@@ -1,0 +2,6 @@
+Mon Apr 12 08:19:01 UTC 2021 - [email protected]
+
+- Update vector-binary-instances to version 0.2.5.2.
+ Upstream does not provide a change log file.
+
+-------------------------------------------------------------------
Old:
----
vector-binary-instances-0.2.5.1.tar.gz
vector-binary-instances.cabal
New:
----
vector-binary-instances-0.2.5.2.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ ghc-vector-binary-instances.spec ++++++
--- /var/tmp/diff_new_pack.HVhbfL/_old 2021-04-26 16:40:36.194172025 +0200
+++ /var/tmp/diff_new_pack.HVhbfL/_new 2021-04-26 16:40:36.198172031 +0200
@@ -1,7 +1,7 @@
#
# spec file for package ghc-vector-binary-instances
#
-# Copyright (c) 2020 SUSE LLC
+# Copyright (c) 2021 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -19,13 +19,12 @@
%global pkg_name vector-binary-instances
%bcond_with tests
Name: ghc-%{pkg_name}
-Version: 0.2.5.1
+Version: 0.2.5.2
Release: 0
Summary: Instances of Data.Binary for vector
License: BSD-3-Clause
URL: https://hackage.haskell.org/package/%{pkg_name}
Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
-Source1:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/2.cabal#/%{pkg_name}.cabal
BuildRequires: ghc-Cabal-devel
BuildRequires: ghc-binary-devel
BuildRequires: ghc-rpm-macros
@@ -40,20 +39,14 @@
Instances for Binary for the types defined in the vector package, making it
easy to serialize vectors to and from disk. We use the generic interface to
vectors, so all vector types are supported. Specific instances are provided for
-unboxed, boxed and storable vectors.
-
-To serialize a vector:
-
-> *Data.Vector.Binary> let v = Data.Vector.fromList [1..10] >
+unboxed, boxed and storable vectors. . To serialize a vector: . >
+*Data.Vector.Binary> let v = Data.Vector.fromList [1..10] >
*Data.Vector.Binary> v > fromList [1,2,3,4,5,6,7,8,9,10] :: Data.Vector.Vector
> *Data.Vector.Binary> encode v > Chunk
-"NULNULNULNULNUL...NULNULNULtNULNULNULNULn" Empty
-
-Which you can in turn compress before writing to disk:
-
-> compress . encode $ v > Chunk "US139bNULNULN...229240,254:NULNULNUL" Empty
-
-Try the cereal-vector package if you are looking for Data.Serialize instances.
+"NULNULNULNULNUL...NULNULNULtNULNULNULNULn" Empty . Which you can in turn
+compress before writing to disk: . > compress . encode $ v > Chunk
+"US139bNULNULN...229240,254:NULNULNUL" Empty . Try the cereal-vector package if
+you are looking for Data.Serialize instances.
%package devel
Summary: Haskell %{pkg_name} library development files
@@ -68,7 +61,6 @@
%prep
%autosetup -n %{pkg_name}-%{version}
-cp -p %{SOURCE1} %{pkg_name}.cabal
%build
%ghc_lib_build
++++++ vector-binary-instances-0.2.5.1.tar.gz ->
vector-binary-instances-0.2.5.2.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/vector-binary-instances-0.2.5.1/benchmarks/Benchmarks.hs
new/vector-binary-instances-0.2.5.2/benchmarks/Benchmarks.hs
--- old/vector-binary-instances-0.2.5.1/benchmarks/Benchmarks.hs
2018-11-02 17:48:37.000000000 +0100
+++ new/vector-binary-instances-0.2.5.2/benchmarks/Benchmarks.hs
2001-09-09 03:46:40.000000000 +0200
@@ -3,7 +3,7 @@
import Data.Binary
import Data.Binary.Get
import Data.Binary.Put
-import Gauge.Main
+import Test.Tasty.Bench
import qualified Data.ByteString.Lazy as BS
import qualified Data.Vector.Unboxed as U
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/vector-binary-instances-0.2.5.1/vector-binary-instances.cabal
new/vector-binary-instances-0.2.5.2/vector-binary-instances.cabal
--- old/vector-binary-instances-0.2.5.1/vector-binary-instances.cabal
2018-11-02 17:48:37.000000000 +0100
+++ new/vector-binary-instances-0.2.5.2/vector-binary-instances.cabal
2001-09-09 03:46:40.000000000 +0200
@@ -1,5 +1,6 @@
+Cabal-version: 3.0
Name: vector-binary-instances
-Version: 0.2.5.1
+Version: 0.2.5.2
Synopsis: Instances of Data.Binary for vector
Description:
Instances for Binary for the types defined in the vector package,
@@ -27,24 +28,15 @@
-- URL for the project homepage or repository.
Homepage: https://github.com/bos/vector-binary-instances
bug-reports: https://github.com/bos/vector-binary-instances/issues
-License: BSD3
+License: BSD-3-Clause
License-file: LICENSE
Author: Don Stewart
Maintainer: [email protected], [email protected], Ben Gamari
<[email protected]>
-Tested-With: GHC==8.6.1, GHC==8.0.2, GHC==7.10.3, GHC==7.8.4,
GHC==7.6.3, GHC==7.4.2
-
--- A copyright notice.
--- Copyright:
-
--- Stability of the pakcage (experimental, provisional, stable...)
+Tested-With: GHC==8.10.1, GHC==8.8.3, GHC==8.6.5, GHC==8.0.2,
GHC==7.10.3, GHC==7.8.4, GHC==7.6.3, GHC==7.4.2
Stability: Experimental
Category: Data
Build-type: Simple
--- Constraint on the version of Cabal needed to build this package.
-Cabal-version: >=1.8
-
-
Library
Ghc-options: -Wall
-- Modules exported by the library.
@@ -53,9 +45,10 @@
-- Packages needed in order to build this package.
Build-depends:
- base > 3 && < 4.13,
+ base > 3 && < 4.16,
vector >= 0.6 && < 0.13,
binary >= 0.5 && < 0.11
+ Default-Language: Haskell2010
Benchmark benchmarks
Type: exitcode-stdio-1.0
@@ -66,9 +59,10 @@
vector,
bytestring,
binary,
- gauge,
+ tasty-bench,
deepseq
hs-source-dirs: benchmarks
+ Default-Language: Haskell2010
Test-Suite tests
Type: exitcode-stdio-1.0
@@ -80,6 +74,7 @@
binary,
tasty,
tasty-quickcheck
+ Default-Language: Haskell2010
source-repository head
type: git