Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package ghc-vector-algorithms for
openSUSE:Factory checked in at 2024-06-03 17:45:14
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-vector-algorithms (Old)
and /work/SRC/openSUSE:Factory/.ghc-vector-algorithms.new.24587 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-vector-algorithms"
Mon Jun 3 17:45:14 2024 rev:19 rq:1178303 version:0.9.0.2
Changes:
--------
---
/work/SRC/openSUSE:Factory/ghc-vector-algorithms/ghc-vector-algorithms.changes
2023-10-18 21:25:49.272942801 +0200
+++
/work/SRC/openSUSE:Factory/.ghc-vector-algorithms.new.24587/ghc-vector-algorithms.changes
2024-06-03 17:45:56.308470214 +0200
@@ -1,0 +2,8 @@
+Mon May 27 02:16:41 UTC 2024 - Peter Simons <[email protected]>
+
+- Update vector-algorithms to version 0.9.0.2 revision 1.
+ ## Version 0.9.0.2 (2024-05-23)
+
+ - Add `TypeOperators` pragma where needed.
+
+-------------------------------------------------------------------
Old:
----
vector-algorithms-0.9.0.1.tar.gz
New:
----
vector-algorithms-0.9.0.2.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ ghc-vector-algorithms.spec ++++++
--- /var/tmp/diff_new_pack.duQpID/_old 2024-06-03 17:45:56.748485940 +0200
+++ /var/tmp/diff_new_pack.duQpID/_new 2024-06-03 17:45:56.752486083 +0200
@@ -1,7 +1,7 @@
#
# spec file for package ghc-vector-algorithms
#
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -20,13 +20,13 @@
%global pkgver %{pkg_name}-%{version}
%bcond_with tests
Name: ghc-%{pkg_name}
-Version: 0.9.0.1
+Version: 0.9.0.2
Release: 0
Summary: Efficient algorithms for vector arrays
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/3.cabal#/%{pkg_name}.cabal
+Source1:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/1.cabal#/%{pkg_name}.cabal
BuildRequires: ghc-Cabal-devel
BuildRequires: ghc-base-devel
BuildRequires: ghc-base-prof
++++++ vector-algorithms-0.9.0.1.tar.gz -> vector-algorithms-0.9.0.2.tar.gz
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/vector-algorithms-0.9.0.1/CHANGELOG.md
new/vector-algorithms-0.9.0.2/CHANGELOG.md
--- old/vector-algorithms-0.9.0.1/CHANGELOG.md 2001-09-09 03:46:40.000000000
+0200
+++ new/vector-algorithms-0.9.0.2/CHANGELOG.md 2001-09-09 03:46:40.000000000
+0200
@@ -1,3 +1,7 @@
+## Version 0.9.0.2 (2024-05-23)
+
+- Add `TypeOperators` pragma where needed.
+
## Version 0.9.0.1 (2022-07-28)
- Allow building with vector-0.13.*.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/vector-algorithms-0.9.0.1/tests/properties/Properties.hs
new/vector-algorithms-0.9.0.2/tests/properties/Properties.hs
--- old/vector-algorithms-0.9.0.1/tests/properties/Properties.hs
2001-09-09 03:46:40.000000000 +0200
+++ new/vector-algorithms-0.9.0.2/tests/properties/Properties.hs
2001-09-09 03:46:40.000000000 +0200
@@ -1,4 +1,7 @@
-{-# LANGUAGE RankNTypes, FlexibleContexts, GADTs #-}
+{-# LANGUAGE FlexibleContexts #-}
+{-# LANGUAGE GADTs #-}
+{-# LANGUAGE RankNTypes #-}
+{-# LANGUAGE TypeOperators #-}
module Properties where
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/vector-algorithms-0.9.0.1/vector-algorithms.cabal
new/vector-algorithms-0.9.0.2/vector-algorithms.cabal
--- old/vector-algorithms-0.9.0.1/vector-algorithms.cabal 2001-09-09
03:46:40.000000000 +0200
+++ new/vector-algorithms-0.9.0.2/vector-algorithms.cabal 2001-09-09
03:46:40.000000000 +0200
@@ -1,5 +1,6 @@
+cabal-version: >= 1.10
name: vector-algorithms
-version: 0.9.0.1
+version: 0.9.0.2
license: BSD3
license-file: LICENSE
author: Dan Doel
@@ -13,9 +14,22 @@
description: Efficient algorithms for sorting vector arrays. At some
stage
other vector algorithms may be added.
build-type: Simple
-cabal-version: >= 1.10
+
extra-source-files: CHANGELOG.md
+tested-with:
+ GHC == 9.8.1
+ GHC == 9.6.3
+ GHC == 9.4.7
+ GHC == 9.2.8
+ GHC == 9.0.2
+ GHC == 8.10.7
+ GHC == 8.8.4
+ GHC == 8.6.5
+ GHC == 8.4.4
+ GHC == 8.2.2
+ GHC == 8.0.2
+ GHC == 7.10.3
flag BoundsChecks
description: Enable bounds checking
@@ -56,11 +70,11 @@
hs-source-dirs: src
default-language: Haskell2010
- build-depends: base >= 4.5 && < 5,
+ build-depends: base >= 4.8 && < 5,
bitvec >= 1.0 && < 1.2,
vector >= 0.6 && < 0.14,
- primitive >=0.3 && <0.8,
- bytestring >= 0.9 && < 1.0
+ primitive >= 0.6.2.0 && < 0.10,
+ bytestring >= 0.9 && < 1
if ! impl (ghc >= 7.8)
build-depends: tagged >= 0.4 && < 0.9
@@ -143,7 +157,7 @@
buildable: False
else
build-depends:
- base,
+ base >= 4.9,
bytestring,
containers,
QuickCheck > 2.9 && < 2.15,
@@ -152,4 +166,3 @@
if flag(llvm)
ghc-options: -fllvm
-
++++++ vector-algorithms.cabal ++++++
--- /var/tmp/diff_new_pack.duQpID/_old 2024-06-03 17:45:56.864490086 +0200
+++ /var/tmp/diff_new_pack.duQpID/_new 2024-06-03 17:45:56.864490086 +0200
@@ -1,170 +1,170 @@
-cabal-version: >= 1.10
-name: vector-algorithms
-version: 0.9.0.1
-x-revision: 3
-license: BSD3
-license-file: LICENSE
-author: Dan Doel
-maintainer: Dan Doel <[email protected]>
- Erik de Castro Lopo <[email protected]>
-copyright: (c) 2008,2009,2010,2011,2012,2013,2014,2015 Dan Doel
- (c) 2015 Tim Baumann
-homepage: https://github.com/erikd/vector-algorithms/
-category: Data
-synopsis: Efficient algorithms for vector arrays
-description: Efficient algorithms for sorting vector arrays. At some
stage
- other vector algorithms may be added.
-build-type: Simple
-
-extra-source-files: CHANGELOG.md
-
-tested-with:
- GHC == 9.8.1
- GHC == 9.6.3
- GHC == 9.4.7
- GHC == 9.2.8
- GHC == 9.0.2
- GHC == 8.10.7
- GHC == 8.8.4
- GHC == 8.6.5
- GHC == 8.4.4
- GHC == 8.2.2
- GHC == 8.0.2
- GHC == 7.10.3
-
-flag BoundsChecks
- description: Enable bounds checking
- default: True
-
-flag UnsafeChecks
- description: Enable bounds checking in unsafe operations at the cost of a
- significant performance penalty.
- default: False
-
-flag InternalChecks
- description: Enable internal consistency checks at the cost of a
- significant performance penalty.
- default: False
-
-flag bench
- description: Build a benchmarking program to test vector-algorithms
- performance
- default: True
-
-flag properties
- description: Enable the quickcheck tests
- default: True
-
--- flag dump-simpl
--- description: Dumps the simplified core during compilation
--- default: False
-
-flag llvm
- description: Build using llvm
- default: False
-
-source-repository head
- type: git
- location: https://github.com/erikd/vector-algorithms/
-
-library
- hs-source-dirs: src
- default-language: Haskell2010
-
- build-depends: base >= 4.8 && < 5,
- bitvec >= 1.0 && < 1.2,
- vector >= 0.6 && < 0.14,
- primitive >= 0.6.2.0 && < 0.10,
- bytestring >= 0.9 && < 1
-
- if ! impl (ghc >= 7.8)
- build-depends: tagged >= 0.4 && < 0.9
-
- exposed-modules:
- Data.Vector.Algorithms
- Data.Vector.Algorithms.Optimal
- Data.Vector.Algorithms.Insertion
- Data.Vector.Algorithms.Intro
- Data.Vector.Algorithms.Merge
- Data.Vector.Algorithms.Radix
- Data.Vector.Algorithms.Search
- Data.Vector.Algorithms.Heap
- Data.Vector.Algorithms.AmericanFlag
- Data.Vector.Algorithms.Tim
-
- other-modules:
- Data.Vector.Algorithms.Common
-
- ghc-options:
- -funbox-strict-fields
-
- -- Cabal/Hackage complains about these
- -- if flag(dump-simpl)
- -- ghc-options: -ddump-simpl -ddump-to-file
-
- if flag(llvm)
- ghc-options: -fllvm
-
- include-dirs:
- include
-
- install-includes:
- vector.h
-
- if flag(BoundsChecks)
- cpp-options: -DVECTOR_BOUNDS_CHECKS
-
- if flag(UnsafeChecks)
- cpp-options: -DVECTOR_UNSAFE_CHECKS
-
- if flag(InternalChecks)
- cpp-options: -DVECTOR_INTERNAL_CHECKS
-
-benchmark simple-bench
- hs-source-dirs: bench/simple
- type: exitcode-stdio-1.0
- default-language: Haskell2010
-
- if !flag(bench)
- buildable: False
-
- main-is: Main.hs
-
- other-modules:
- Blocks
-
- build-depends: base, mwc-random, vector, vector-algorithms
- ghc-options: -Wall
-
- -- Cabal/Hackage complains about these
- -- if flag(dump-simpl)
- -- ghc-options: -ddump-simpl -ddump-to-file
-
- if flag(llvm)
- ghc-options: -fllvm
-
-test-suite properties
- hs-source-dirs: tests/properties
- type: exitcode-stdio-1.0
- main-is: Tests.hs
- default-language: Haskell2010
-
- other-modules:
- Optimal
- Properties
- Util
-
- if !flag(properties)
- buildable: False
- else
- build-depends:
- base >= 4.9,
- bytestring,
- containers,
- QuickCheck > 2.9 && < 2.15,
- vector,
- vector-algorithms
-
- if flag(llvm)
- ghc-options: -fllvm
+cabal-version: >= 1.10
+name: vector-algorithms
+version: 0.9.0.2
+x-revision: 1
+license: BSD3
+license-file: LICENSE
+author: Dan Doel
+maintainer: Dan Doel <[email protected]>
+ Erik de Castro Lopo <[email protected]>
+copyright: (c) 2008,2009,2010,2011,2012,2013,2014,2015 Dan Doel
+ (c) 2015 Tim Baumann
+homepage: https://github.com/erikd/vector-algorithms/
+category: Data
+synopsis: Efficient algorithms for vector arrays
+description: Efficient algorithms for sorting vector arrays. At some
stage
+ other vector algorithms may be added.
+build-type: Simple
+
+extra-source-files: CHANGELOG.md
+
+tested-with:
+ GHC == 9.8.1
+ GHC == 9.6.3
+ GHC == 9.4.7
+ GHC == 9.2.8
+ GHC == 9.0.2
+ GHC == 8.10.7
+ GHC == 8.8.4
+ GHC == 8.6.5
+ GHC == 8.4.4
+ GHC == 8.2.2
+ GHC == 8.0.2
+ GHC == 7.10.3
+
+flag BoundsChecks
+ description: Enable bounds checking
+ default: True
+
+flag UnsafeChecks
+ description: Enable bounds checking in unsafe operations at the cost of a
+ significant performance penalty.
+ default: False
+
+flag InternalChecks
+ description: Enable internal consistency checks at the cost of a
+ significant performance penalty.
+ default: False
+
+flag bench
+ description: Build a benchmarking program to test vector-algorithms
+ performance
+ default: True
+
+flag properties
+ description: Enable the quickcheck tests
+ default: True
+
+-- flag dump-simpl
+-- description: Dumps the simplified core during compilation
+-- default: False
+
+flag llvm
+ description: Build using llvm
+ default: False
+
+source-repository head
+ type: git
+ location: https://github.com/erikd/vector-algorithms/
+
+library
+ hs-source-dirs: src
+ default-language: Haskell2010
+
+ build-depends: base >= 4.8 && < 5,
+ bitvec >= 1.0 && < 1.2,
+ vector >= 0.6 && < 0.14,
+ primitive >= 0.6.2.0 && < 0.10,
+ bytestring >= 0.9 && < 1
+
+ if ! impl (ghc >= 7.8)
+ build-depends: tagged >= 0.4 && < 0.9
+
+ exposed-modules:
+ Data.Vector.Algorithms
+ Data.Vector.Algorithms.Optimal
+ Data.Vector.Algorithms.Insertion
+ Data.Vector.Algorithms.Intro
+ Data.Vector.Algorithms.Merge
+ Data.Vector.Algorithms.Radix
+ Data.Vector.Algorithms.Search
+ Data.Vector.Algorithms.Heap
+ Data.Vector.Algorithms.AmericanFlag
+ Data.Vector.Algorithms.Tim
+
+ other-modules:
+ Data.Vector.Algorithms.Common
+
+ ghc-options:
+ -funbox-strict-fields
+
+ -- Cabal/Hackage complains about these
+ -- if flag(dump-simpl)
+ -- ghc-options: -ddump-simpl -ddump-to-file
+
+ if flag(llvm)
+ ghc-options: -fllvm
+
+ include-dirs:
+ include
+
+ install-includes:
+ vector.h
+
+ if flag(BoundsChecks)
+ cpp-options: -DVECTOR_BOUNDS_CHECKS
+
+ if flag(UnsafeChecks)
+ cpp-options: -DVECTOR_UNSAFE_CHECKS
+
+ if flag(InternalChecks)
+ cpp-options: -DVECTOR_INTERNAL_CHECKS
+
+benchmark simple-bench
+ hs-source-dirs: bench/simple
+ type: exitcode-stdio-1.0
+ default-language: Haskell2010
+
+ if !flag(bench)
+ buildable: False
+
+ main-is: Main.hs
+
+ other-modules:
+ Blocks
+
+ build-depends: base, mwc-random, vector, vector-algorithms
+ ghc-options: -Wall
+
+ -- Cabal/Hackage complains about these
+ -- if flag(dump-simpl)
+ -- ghc-options: -ddump-simpl -ddump-to-file
+
+ if flag(llvm)
+ ghc-options: -fllvm
+
+test-suite properties
+ hs-source-dirs: tests/properties
+ type: exitcode-stdio-1.0
+ main-is: Tests.hs
+ default-language: Haskell2010
+
+ other-modules:
+ Optimal
+ Properties
+ Util
+
+ if !flag(properties)
+ buildable: False
+ else
+ build-depends:
+ base >= 4.9,
+ bytestring,
+ containers,
+ QuickCheck > 2.9 && < 2.16,
+ vector,
+ vector-algorithms
+
+ if flag(llvm)
+ ghc-options: -fllvm