4
0

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

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

View File

@@ -1,16 +1,3 @@
-------------------------------------------------------------------
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>

View File

@@ -19,15 +19,14 @@
%global pkg_name vector-algorithms
%bcond_with tests
Name: ghc-%{pkg_name}
Version: 0.9.0.1
Version: 0.8.0.4
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/1.cabal#/%{pkg_name}.cabal
Source1: https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/2.cabal#/%{pkg_name}.cabal
BuildRequires: ghc-Cabal-devel
BuildRequires: ghc-bitvec-devel
BuildRequires: ghc-bytestring-devel
BuildRequires: ghc-primitive-devel
BuildRequires: ghc-rpm-macros

View File

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

View File

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

View File

@@ -1,6 +1,6 @@
name: vector-algorithms
version: 0.9.0.1
x-revision: 1
version: 0.8.0.4
x-revision: 2
license: BSD3
license-file: LICENSE
author: Dan Doel
@@ -58,16 +58,14 @@ library
default-language: Haskell2010
build-depends: base >= 4.5 && < 5,
bitvec >= 1.0 && < 1.2,
vector >= 0.6 && < 0.14,
primitive >=0.6.2.0 && <0.8,
vector >= 0.6 && < 0.13,
primitive >=0.3 && <0.8,
bytestring >= 0.9 && < 1.0
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