4
0

osc copypac from project:devel:languages:haskell:ghc-9.4.x package:ghc-vector-algorithms revision:3, using keep-link

OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-vector-algorithms?expand=0&rev=57
This commit is contained in:
2023-02-02 13:42:07 +00:00
committed by Git OBS Bridge
parent 23da2067bc
commit 521d196cca
5 changed files with 175 additions and 159 deletions

View File

@@ -1,3 +1,16 @@
-------------------------------------------------------------------
Sat Oct 8 21:29:29 UTC 2022 - Peter Simons <psimons@suse.com>
- Update vector-algorithms to version 0.9.0.1 revision 1.
## Version 0.9.0.1 (2022-07-28)
- Allow building with vector-0.13.*.
## Version 0.9.0.0 (2022-05-19)
- Add nub related functions.
- Add sortUniq related functions (sorts, then removes duplicates).
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jun 20 10:23:01 UTC 2022 - Peter Simons <psimons@suse.com> Mon Jun 20 10:23:01 UTC 2022 - Peter Simons <psimons@suse.com>

View File

@@ -19,14 +19,15 @@
%global pkg_name vector-algorithms %global pkg_name vector-algorithms
%bcond_with tests %bcond_with tests
Name: ghc-%{pkg_name} Name: ghc-%{pkg_name}
Version: 0.8.0.4 Version: 0.9.0.1
Release: 0 Release: 0
Summary: Efficient algorithms for vector arrays Summary: Efficient algorithms for vector arrays
License: BSD-3-Clause License: BSD-3-Clause
URL: https://hackage.haskell.org/package/%{pkg_name} URL: https://hackage.haskell.org/package/%{pkg_name}
Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz 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 Source1: https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/1.cabal#/%{pkg_name}.cabal
BuildRequires: ghc-Cabal-devel BuildRequires: ghc-Cabal-devel
BuildRequires: ghc-bitvec-devel
BuildRequires: ghc-bytestring-devel BuildRequires: ghc-bytestring-devel
BuildRequires: ghc-primitive-devel BuildRequires: ghc-primitive-devel
BuildRequires: ghc-rpm-macros BuildRequires: ghc-rpm-macros

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:76176a56778bf30a275b1089ee6db24ec6c67d92525145f8dfe215b80137af3b
size 26681

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2ba7c0d3a8f26ef3ada24ff4abe81609225ecbab3b5754f048f8a0a3ecc33841
size 29149

View File

@@ -1,154 +1,156 @@
name: vector-algorithms name: vector-algorithms
version: 0.8.0.4 version: 0.9.0.1
x-revision: 2 x-revision: 1
license: BSD3 license: BSD3
license-file: LICENSE license-file: LICENSE
author: Dan Doel author: Dan Doel
maintainer: Dan Doel <dan.doel@gmail.com> maintainer: Dan Doel <dan.doel@gmail.com>
Erik de Castro Lopo <erikd@mega-nerd.com> Erik de Castro Lopo <erikd@mega-nerd.com>
copyright: (c) 2008,2009,2010,2011,2012,2013,2014,2015 Dan Doel copyright: (c) 2008,2009,2010,2011,2012,2013,2014,2015 Dan Doel
(c) 2015 Tim Baumann (c) 2015 Tim Baumann
homepage: https://github.com/erikd/vector-algorithms/ homepage: https://github.com/erikd/vector-algorithms/
category: Data category: Data
synopsis: Efficient algorithms for vector arrays synopsis: Efficient algorithms for vector arrays
description: Efficient algorithms for sorting vector arrays. At some stage description: Efficient algorithms for sorting vector arrays. At some stage
other vector algorithms may be added. other vector algorithms may be added.
build-type: Simple build-type: Simple
cabal-version: >= 1.10 cabal-version: >= 1.10
extra-source-files: CHANGELOG.md extra-source-files: CHANGELOG.md
flag BoundsChecks flag BoundsChecks
description: Enable bounds checking description: Enable bounds checking
default: True default: True
flag UnsafeChecks flag UnsafeChecks
description: Enable bounds checking in unsafe operations at the cost of a description: Enable bounds checking in unsafe operations at the cost of a
significant performance penalty. significant performance penalty.
default: False default: False
flag InternalChecks flag InternalChecks
description: Enable internal consistency checks at the cost of a description: Enable internal consistency checks at the cost of a
significant performance penalty. significant performance penalty.
default: False default: False
flag bench flag bench
description: Build a benchmarking program to test vector-algorithms description: Build a benchmarking program to test vector-algorithms
performance performance
default: True default: True
flag properties flag properties
description: Enable the quickcheck tests description: Enable the quickcheck tests
default: True default: True
-- flag dump-simpl -- flag dump-simpl
-- description: Dumps the simplified core during compilation -- description: Dumps the simplified core during compilation
-- default: False -- default: False
flag llvm flag llvm
description: Build using llvm description: Build using llvm
default: False default: False
source-repository head source-repository head
type: git type: git
location: https://github.com/erikd/vector-algorithms/ location: https://github.com/erikd/vector-algorithms/
library library
hs-source-dirs: src hs-source-dirs: src
default-language: Haskell2010 default-language: Haskell2010
build-depends: base >= 4.5 && < 5, build-depends: base >= 4.5 && < 5,
vector >= 0.6 && < 0.13, bitvec >= 1.0 && < 1.2,
primitive >=0.3 && <0.8, vector >= 0.6 && < 0.14,
bytestring >= 0.9 && < 1.0 primitive >=0.6.2.0 && <0.8,
bytestring >= 0.9 && < 1.0
if ! impl (ghc >= 7.8)
build-depends: tagged >= 0.4 && < 0.9 if ! impl (ghc >= 7.8)
build-depends: tagged >= 0.4 && < 0.9
exposed-modules:
Data.Vector.Algorithms.Optimal exposed-modules:
Data.Vector.Algorithms.Insertion Data.Vector.Algorithms
Data.Vector.Algorithms.Intro Data.Vector.Algorithms.Optimal
Data.Vector.Algorithms.Merge Data.Vector.Algorithms.Insertion
Data.Vector.Algorithms.Radix Data.Vector.Algorithms.Intro
Data.Vector.Algorithms.Search Data.Vector.Algorithms.Merge
Data.Vector.Algorithms.Heap Data.Vector.Algorithms.Radix
Data.Vector.Algorithms.AmericanFlag Data.Vector.Algorithms.Search
Data.Vector.Algorithms.Tim Data.Vector.Algorithms.Heap
Data.Vector.Algorithms.AmericanFlag
other-modules: Data.Vector.Algorithms.Tim
Data.Vector.Algorithms.Common
other-modules:
ghc-options: Data.Vector.Algorithms.Common
-funbox-strict-fields
ghc-options:
-- Cabal/Hackage complains about these -funbox-strict-fields
-- if flag(dump-simpl)
-- ghc-options: -ddump-simpl -ddump-to-file -- Cabal/Hackage complains about these
-- if flag(dump-simpl)
if flag(llvm) -- ghc-options: -ddump-simpl -ddump-to-file
ghc-options: -fllvm
if flag(llvm)
include-dirs: ghc-options: -fllvm
include
include-dirs:
install-includes: include
vector.h
install-includes:
if flag(BoundsChecks) vector.h
cpp-options: -DVECTOR_BOUNDS_CHECKS
if flag(BoundsChecks)
if flag(UnsafeChecks) cpp-options: -DVECTOR_BOUNDS_CHECKS
cpp-options: -DVECTOR_UNSAFE_CHECKS
if flag(UnsafeChecks)
if flag(InternalChecks) cpp-options: -DVECTOR_UNSAFE_CHECKS
cpp-options: -DVECTOR_INTERNAL_CHECKS
if flag(InternalChecks)
benchmark simple-bench cpp-options: -DVECTOR_INTERNAL_CHECKS
hs-source-dirs: bench/simple
type: exitcode-stdio-1.0 benchmark simple-bench
default-language: Haskell2010 hs-source-dirs: bench/simple
type: exitcode-stdio-1.0
if !flag(bench) default-language: Haskell2010
buildable: False
if !flag(bench)
main-is: Main.hs buildable: False
other-modules: main-is: Main.hs
Blocks
other-modules:
build-depends: base, mwc-random, vector, vector-algorithms Blocks
ghc-options: -Wall
build-depends: base, mwc-random, vector, vector-algorithms
-- Cabal/Hackage complains about these ghc-options: -Wall
-- if flag(dump-simpl)
-- ghc-options: -ddump-simpl -ddump-to-file -- Cabal/Hackage complains about these
-- if flag(dump-simpl)
if flag(llvm) -- ghc-options: -ddump-simpl -ddump-to-file
ghc-options: -fllvm
if flag(llvm)
test-suite properties ghc-options: -fllvm
hs-source-dirs: tests/properties
type: exitcode-stdio-1.0 test-suite properties
main-is: Tests.hs hs-source-dirs: tests/properties
default-language: Haskell2010 type: exitcode-stdio-1.0
main-is: Tests.hs
other-modules: default-language: Haskell2010
Optimal
Properties other-modules:
Util Optimal
Properties
if !flag(properties) Util
buildable: False
else if !flag(properties)
build-depends: buildable: False
base, else
bytestring, build-depends:
containers, base,
QuickCheck > 2.9 && < 2.15, bytestring,
vector, containers,
vector-algorithms QuickCheck > 2.9 && < 2.15,
vector,
if flag(llvm) vector-algorithms
ghc-options: -fllvm
if flag(llvm)
ghc-options: -fllvm