Accepting request 432732 from devel:languages:haskell:lts:7
version / revision update OBS-URL: https://build.opensuse.org/request/show/432732 OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-edit-distance?expand=0&rev=6
This commit is contained in:
parent
c7bb182f5e
commit
ca3abe51a6
@ -1,49 +1,49 @@
|
|||||||
name: edit-distance
|
name: edit-distance
|
||||||
version: 0.2.2.1
|
version: 0.2.2.1
|
||||||
x-revision: 1
|
x-revision: 1
|
||||||
cabal-version: >= 1.10
|
cabal-version: >= 1.10
|
||||||
category: Algorithms
|
category: Algorithms
|
||||||
synopsis: Levenshtein and restricted Damerau-Levenshtein edit distances
|
synopsis: Levenshtein and restricted Damerau-Levenshtein edit distances
|
||||||
description: Optimized edit distances for fuzzy matching, including Levenshtein and restricted Damerau-Levenshtein algorithms.
|
description: Optimized edit distances for fuzzy matching, including Levenshtein and restricted Damerau-Levenshtein algorithms.
|
||||||
license: BSD3
|
license: BSD3
|
||||||
license-File: LICENSE
|
license-File: LICENSE
|
||||||
extra-source-files: README.md
|
extra-source-files: README.md
|
||||||
author: Max Bolingbroke <batterseapower@hotmail.com>
|
author: Max Bolingbroke <batterseapower@hotmail.com>
|
||||||
copyright: (c) 2008-2013 Maximilian Bolinbroke
|
copyright: (c) 2008-2013 Maximilian Bolinbroke
|
||||||
maintainer: Oleg Grenrus <oleg.grenrus@iki.fi>
|
maintainer: Oleg Grenrus <oleg.grenrus@iki.fi>
|
||||||
homepage: http://github.com/phadej/edit-distance
|
homepage: http://github.com/phadej/edit-distance
|
||||||
build-type: Simple
|
build-type: Simple
|
||||||
|
|
||||||
library
|
library
|
||||||
default-language: Haskell98
|
default-language: Haskell98
|
||||||
exposed-modules: Text.EditDistance
|
exposed-modules: Text.EditDistance
|
||||||
other-modules: Text.EditDistance.EditCosts
|
other-modules: Text.EditDistance.EditCosts
|
||||||
Text.EditDistance.SquareSTUArray
|
Text.EditDistance.SquareSTUArray
|
||||||
Text.EditDistance.STUArray
|
Text.EditDistance.STUArray
|
||||||
Text.EditDistance.Bits
|
Text.EditDistance.Bits
|
||||||
Text.EditDistance.MonadUtilities
|
Text.EditDistance.MonadUtilities
|
||||||
Text.EditDistance.ArrayUtilities
|
Text.EditDistance.ArrayUtilities
|
||||||
build-depends: base >= 4.5 && < 5, array >= 0.1, random >= 1.0, containers >= 0.1.0.1
|
build-depends: base >= 4.5 && < 5, array >= 0.1, random >= 1.0, containers >= 0.1.0.1
|
||||||
ghc-options: -O2 -Wall
|
ghc-options: -O2 -Wall
|
||||||
|
|
||||||
test-suite edit-distance-tests
|
test-suite edit-distance-tests
|
||||||
default-language: Haskell98
|
default-language: Haskell98
|
||||||
main-is: Text/EditDistance/Tests.hs
|
main-is: Text/EditDistance/Tests.hs
|
||||||
other-modules: Text.EditDistance.Tests.EditOperationOntology
|
other-modules: Text.EditDistance.Tests.EditOperationOntology
|
||||||
Text.EditDistance.Tests.Properties
|
Text.EditDistance.Tests.Properties
|
||||||
type: exitcode-stdio-1.0
|
type: exitcode-stdio-1.0
|
||||||
ghc-options: -O2 -Wall
|
ghc-options: -O2 -Wall
|
||||||
build-depends: base >= 4.5 && < 5, array >= 0.1, random >= 1.0, containers >= 0.1.0.1,
|
build-depends: base >= 4.5 && < 5, array >= 0.1, random >= 1.0, containers >= 0.1.0.1,
|
||||||
test-framework >= 0.1.1, QuickCheck >= 2.4 && <2.10, test-framework-quickcheck2
|
test-framework >= 0.1.1, QuickCheck >= 2.4 && <2.10, test-framework-quickcheck2
|
||||||
|
|
||||||
benchmark edit-distance-benchmark
|
benchmark edit-distance-benchmark
|
||||||
default-language: Haskell98
|
default-language: Haskell98
|
||||||
main-is: Text/EditDistance/Benchmark.hs
|
main-is: Text/EditDistance/Benchmark.hs
|
||||||
type: exitcode-stdio-1.0
|
type: exitcode-stdio-1.0
|
||||||
build-depends: base >= 4.5 && < 5, array >= 0.1, random >= 1.0, time >= 1.0, process >= 1.0,
|
build-depends: base >= 4.5 && < 5, array >= 0.1, random >= 1.0, time >= 1.0, process >= 1.0,
|
||||||
deepseq >= 1.2, unix >= 2.3, criterion >= 1.1, containers >= 0.1.0.1
|
deepseq >= 1.2, unix >= 2.3, criterion >= 1.1, containers >= 0.1.0.1
|
||||||
ghc-options: -O2
|
ghc-options: -O2
|
||||||
|
|
||||||
source-repository head
|
source-repository head
|
||||||
type: git
|
type: git
|
||||||
location: https://github.com/phadej/edit-distance.git
|
location: https://github.com/phadej/edit-distance.git
|
@ -26,7 +26,7 @@ License: BSD-3-Clause
|
|||||||
Group: Development/Languages/Other
|
Group: Development/Languages/Other
|
||||||
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/1.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-array-devel
|
BuildRequires: ghc-array-devel
|
||||||
BuildRequires: ghc-containers-devel
|
BuildRequires: ghc-containers-devel
|
||||||
@ -79,6 +79,5 @@ cp -p %{SOURCE1} %{pkg_name}.cabal
|
|||||||
|
|
||||||
%files devel -f %{name}-devel.files
|
%files devel -f %{name}-devel.files
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%doc README.md
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
x
Reference in New Issue
Block a user