From a4eda48c6a72b97ee35ea845247b4a5da6b07870 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 21 Feb 2019 12:29:53 +0800 Subject: [PATCH] update to 0.7.0.4 --- .gitignore | 1 + ghc-vector-algorithms.spec | 12 ++-- sources | 2 +- vector-algorithms-0.7.0.1.cabal | 118 -------------------------------- 4 files changed, 9 insertions(+), 124 deletions(-) delete mode 100644 vector-algorithms-0.7.0.1.cabal diff --git a/.gitignore b/.gitignore index f6870a7..c64532e 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /vector-algorithms-0.7.0.1.tar.gz +/vector-algorithms-0.7.0.4.tar.gz diff --git a/ghc-vector-algorithms.spec b/ghc-vector-algorithms.spec index 0338492..b03201a 100644 --- a/ghc-vector-algorithms.spec +++ b/ghc-vector-algorithms.spec @@ -7,15 +7,14 @@ %bcond_with tests Name: ghc-%{pkg_name} -Version: 0.7.0.1 -Release: 7%{?dist} +Version: 0.7.0.4 +Release: 1%{?dist} Summary: Efficient algorithms for vector arrays License: BSD Url: https://hackage.haskell.org/package/%{pkg_name} # Begin cabal-rpm sources: Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz -Source1: https://hackage.haskell.org/package/%{pkgver}/%{pkg_name}.cabal#/%{pkgver}.cabal # End cabal-rpm sources # Begin cabal-rpm deps: @@ -31,7 +30,8 @@ BuildRequires: ghc-containers-devel # End cabal-rpm deps %description -Efficient algorithms for vector arrays. +Efficient algorithms for sorting vector arrays. At some stage other vector +algorithms may be added. %package devel @@ -53,7 +53,6 @@ files. %prep # Begin cabal-rpm setup: %setup -q -n %{pkgver} -cp -bp %{SOURCE1} %{pkg_name}.cabal # End cabal-rpm setup @@ -91,6 +90,9 @@ cp -bp %{SOURCE1} %{pkg_name}.cabal %changelog +* Thu Feb 21 2019 Jens Petersen - 0.7.0.4-1 +- update to 0.7.0.4 + * Sun Feb 17 2019 Jens Petersen - 0.7.0.1-7 - refresh to cabal-rpm-0.13 diff --git a/sources b/sources index edf54b5..7199da7 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (vector-algorithms-0.7.0.1.tar.gz) = 1ea718eeb062defee830fa7dba323981678691c5d320b8929dcd695af17f82d65007cfd35103310026dab51cf10462dbead09082fc0ba5ddd0c2e18e305c4c6a +SHA512 (vector-algorithms-0.7.0.4.tar.gz) = 056c8e5e9ff4b2899f2520edcbc1d8bdde70f3d38b390421df84274d20f6fc2cbd0d0d264001f7383ea69f36fa59cfb6fa8c63123daada6c7f01e8223a6a4064 diff --git a/vector-algorithms-0.7.0.1.cabal b/vector-algorithms-0.7.0.1.cabal deleted file mode 100644 index db4a504..0000000 --- a/vector-algorithms-0.7.0.1.cabal +++ /dev/null @@ -1,118 +0,0 @@ -name: vector-algorithms -version: 0.7.0.1 -x-revision: 1 -license: BSD3 -license-file: LICENSE -author: Dan Doel -maintainer: Dan Doel -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