Skip to content

Commit

Permalink
Update from Hackage at 2018-08-24T00:07:33Z
Browse files Browse the repository at this point in the history
  • Loading branch information
all-cabal-tool committed Aug 24, 2018
1 parent 1bf3367 commit 79acecb
Show file tree
Hide file tree
Showing 2 changed files with 144 additions and 0 deletions.
143 changes: 143 additions & 0 deletions vector-algorithms/0.7.0.2/vector-algorithms.cabal
Original file line number Diff line number Diff line change
@@ -0,0 +1,143 @@
name: vector-algorithms
version: 0.7.0.2
license: BSD3
license-file: LICENSE
author: Dan Doel
maintainer: Dan Doel <dan.doel@gmail.com>
Erik de Castro Lopo <erikd@mega-nerd.com>
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.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

-- 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

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:
-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

executable simple-bench
hs-source-dirs: bench/simple

if !flag(bench)
buildable: False

main-is: Main.hs

other-modules:
Blocks

build-depends: base, mwc-random, vector, vector-algorithms, mtl
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

other-modules:
Optimal
Properties
Util

if !flag(properties)
buildable: False
else
build-depends:
base,
bytestring,
containers,
QuickCheck >= 2,
vector,
vector-algorithms

if flag(llvm)
ghc-options: -fllvm
1 change: 1 addition & 0 deletions vector-algorithms/0.7.0.2/vector-algorithms.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"package-hashes":{"MD5":"c7867d82ea63bf388f8da7a382827fc5","Skein512_512":"f5a4d8695fe9b0944452b783d3880ef97e7118a205559ca4f99d426bc50f1c09dfef62479fc4e48573c073535a77d64ef651cc638407e7785f32b110167f520e","SHA1":"be31c6bb9e481d6a91b63571fd8e9d7d4d47bb2a","SHA512":"b38ad09622af7fb1a7f541769f2c0b55c6797bf7d550254e06da834a20d83c9d26f61690e29c893cfe72215d11944182914830c34f7664ea51b733111c1f2bc7","SHA256":"028c264edfbf525fd6538567336cee13d7401ee7c3c80d53f8f0f5fb1773d069"},"package-locations":["https://hackage.haskell.org/package/vector-algorithms-0.7.0.2/vector-algorithms-0.7.0.2.tar.gz","https://s3.amazonaws.com/hackage.fpcomplete.com/package/vector-algorithms-0.7.0.2.tar.gz"],"package-size":25882}

0 comments on commit 79acecb

Please sign in to comment.