diff --git a/ghc-vector-algorithms.changes b/ghc-vector-algorithms.changes index 08c8f98..3d45e86 100644 --- a/ghc-vector-algorithms.changes +++ b/ghc-vector-algorithms.changes @@ -1,16 +1,3 @@ -------------------------------------------------------------------- -Sat Oct 8 21:29:29 UTC 2022 - Peter Simons - -- 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 diff --git a/ghc-vector-algorithms.spec b/ghc-vector-algorithms.spec index 368b015..a9dfadf 100644 --- a/ghc-vector-algorithms.spec +++ b/ghc-vector-algorithms.spec @@ -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 diff --git a/vector-algorithms-0.8.0.4.tar.gz b/vector-algorithms-0.8.0.4.tar.gz new file mode 100644 index 0000000..df21460 --- /dev/null +++ b/vector-algorithms-0.8.0.4.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76176a56778bf30a275b1089ee6db24ec6c67d92525145f8dfe215b80137af3b +size 26681 diff --git a/vector-algorithms-0.9.0.1.tar.gz b/vector-algorithms-0.9.0.1.tar.gz deleted file mode 100644 index 450fdde..0000000 --- a/vector-algorithms-0.9.0.1.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2ba7c0d3a8f26ef3ada24ff4abe81609225ecbab3b5754f048f8a0a3ecc33841 -size 29149 diff --git a/vector-algorithms.cabal b/vector-algorithms.cabal index e4324ae..d916e70 100644 --- a/vector-algorithms.cabal +++ b/vector-algorithms.cabal @@ -1,156 +1,154 @@ -name: vector-algorithms -version: 0.9.0.1 -x-revision: 1 -license: BSD3 -license-file: LICENSE -author: Dan Doel -maintainer: Dan Doel - Erik de Castro Lopo -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 -cabal-version: >= 1.10 -extra-source-files: CHANGELOG.md - - -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.5 && < 5, - bitvec >= 1.0 && < 1.2, - vector >= 0.6 && < 0.14, - primitive >=0.6.2.0 && <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 - 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, - bytestring, - containers, - QuickCheck > 2.9 && < 2.15, - vector, - vector-algorithms - - if flag(llvm) - ghc-options: -fllvm - +name: vector-algorithms +version: 0.8.0.4 +x-revision: 2 +license: BSD3 +license-file: LICENSE +author: Dan Doel +maintainer: Dan Doel + Erik de Castro Lopo +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 +cabal-version: >= 1.10 +extra-source-files: CHANGELOG.md + + +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.5 && < 5, + 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.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, + bytestring, + containers, + QuickCheck > 2.9 && < 2.15, + vector, + vector-algorithms + + if flag(llvm) + ghc-options: -fllvm +