Hello community,
here is the log from the commit of package ghc-vector-algorithms for
openSUSE:Factory checked in at 2017-03-20 17:06:20
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-vector-algorithms (Old)
and /work/SRC/openSUSE:Factory/.ghc-vector-algorithms.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-vector-algorithms"
Mon Mar 20 17:06:20 2017 rev:3 rq:450626 version:0.7.0.1
Changes:
--------
---
/work/SRC/openSUSE:Factory/ghc-vector-algorithms/ghc-vector-algorithms.changes
2016-07-21 08:13:32.000000000 +0200
+++
/work/SRC/openSUSE:Factory/.ghc-vector-algorithms.new/ghc-vector-algorithms.changes
2017-03-20 17:06:21.417030103 +0100
@@ -1,0 +2,5 @@
+Mon Jan 9 06:33:37 UTC 2017 - [email protected]
+
+- Update to version 0.7.0.1 revision 1 with cabal2obs.
+
+-------------------------------------------------------------------
New:
----
vector-algorithms.cabal
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ ghc-vector-algorithms.spec ++++++
--- /var/tmp/diff_new_pack.Jti1IW/_old 2017-03-20 17:06:22.100933536 +0100
+++ /var/tmp/diff_new_pack.Jti1IW/_new 2017-03-20 17:06:22.104932971 +0100
@@ -1,7 +1,7 @@
#
# spec file for package ghc-vector-algorithms
#
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 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
@@ -23,11 +23,11 @@
Release: 0
Summary: Efficient algorithms for vector arrays
License: BSD-3-Clause
-Group: System/Libraries
+Group: Development/Languages/Other
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/1.cabal#/%{pkg_name}.cabal
BuildRequires: ghc-Cabal-devel
-# Begin cabal-rpm deps:
BuildRequires: ghc-bytestring-devel
BuildRequires: ghc-primitive-devel
BuildRequires: ghc-rpm-macros
@@ -37,9 +37,6 @@
BuildRequires: ghc-QuickCheck-devel
BuildRequires: ghc-containers-devel
%endif
-# End cabal-rpm deps
-BuildRequires: ghc-mtl-devel
-BuildRequires: ghc-mwc-random-devel
%description
Efficient algorithms for vector arrays.
@@ -58,21 +55,16 @@
%prep
%setup -q -n %{pkg_name}-%{version}
-
+cp -p %{SOURCE1} %{pkg_name}.cabal
%build
%ghc_lib_build
-
%install
%ghc_lib_install
-
%check
-%if %{with tests}
-%{cabal} test
-%endif
-
+%cabal_test
%post devel
%ghc_pkg_recache
++++++ vector-algorithms.cabal ++++++
name: vector-algorithms
version: 0.7.0.1
x-revision: 1
license: BSD3
license-file: LICENSE
author: Dan Doel
maintainer: Dan Doel <[email protected]>
copyright: (c) 2008,2009,2010,2011,2012,2013,2014,2015 Dan Doel
(c) 2015 Tim Baumann
homepage: http://code.haskell.org/~dolio/
category: Data
synopsis: Efficient algorithms for vector arrays
description: Efficient algorithms for vector arrays
build-type: Simple
cabal-version: >= 1.9.2
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: False
flag properties
description: Enable the quickcheck tests
default: True
source-repository head
type: darcs
location: http://hub.darcs.net/dolio/vector-algorithms
library
hs-source-dirs: src
build-depends: base >= 4.5 && < 5,
vector >= 0.6 && < 0.13,
primitive >=0.3 && <0.7,
bytestring >= 0.9 && < 1.0
exposed-modules:
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:
-Odph
-funbox-strict-fields
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
executable vector-algorithms-bench
hs-source-dirs: bench
if !flag(bench)
buildable: False
main-is: Main.hs
other-modules:
Blocks
build-depends: base, mwc-random, vector, vector-algorithms, mtl
ghc-options: -Wall -Odph
test-suite properties
hs-source-dirs: tests/properties
type: exitcode-stdio-1.0
main-is: Tests.hs
other-modules:
Optimal
Properties
Util
if !flag(properties)
buildable: False
else
build-depends:
base,
bytestring,
containers,
QuickCheck >= 2,
vector,
vector-algorithms