Skip to content

Commit

Permalink
Update from Hackage at 2015-05-04T09:40:04+0000
Browse files Browse the repository at this point in the history
  • Loading branch information
all-cabal-tool committed May 4, 2015
1 parent 0703d66 commit 7291c19
Show file tree
Hide file tree
Showing 2 changed files with 124 additions and 0 deletions.
73 changes: 73 additions & 0 deletions edit-distance/0.2.1.3/edit-distance.cabal
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
Name: edit-distance
Version: 0.2.1.3
Cabal-Version: >= 1.2
Category: Algorithms
Synopsis: Levenshtein and restricted Damerau-Levenshtein edit distances
Description: Optimized edit distances for fuzzy matching, including Levenshtein and restricted Damerau-Levenshtein algorithms.
License: BSD3
License-File: LICENSE
Extra-Source-Files: README.textile
Author: Max Bolingbroke
Maintainer: batterseapower@hotmail.com
Homepage: http://github.com/batterseapower/edit-distance
Build-Type: Simple

Flag Tests
Description: Enable building the tests
Default: False

Flag Benchmark
Description: Enable building the benchmark suite
Default: False

Flag SplitBase
Description: Choose the new smaller, split-up base package
Default: True


Library
Exposed-Modules: Text.EditDistance
Other-Modules: Text.EditDistance.EditCosts
Text.EditDistance.SquareSTUArray
Text.EditDistance.STUArray
Text.EditDistance.Bits
Text.EditDistance.MonadUtilities
Text.EditDistance.ArrayUtilities

if flag(splitBase)
Build-Depends: base >= 3 && < 5, array >= 0.1, random >= 1.0, containers >= 0.1.0.1
else
Build-Depends: base < 3

Ghc-Options: -O2

Executable edit-distance-tests
Main-Is: Text/EditDistance/Tests.hs

Extensions: PatternGuards, PatternSignatures,
ScopedTypeVariables
Ghc-Options: -O2

if !flag(tests)
Buildable: False
else
Build-Depends: test-framework >= 0.1.1, QuickCheck >= 1.1 && < 2.0, test-framework-quickcheck
if flag(splitBase)
Build-Depends: base >= 3 && < 5, array >= 0.1, random >= 1.0
else
Build-Depends: base < 3

Executable edit-distance-benchmark
Main-Is: Text/EditDistance/Benchmark.hs

if !flag(benchmark)
Buildable: False
else
if flag(splitBase)
Build-Depends: base >= 3 && < 5, array >= 0.1, random >= 1.0, time >= 1.0, process >= 1.0,
deepseq >= 1.2, unix >= 2.3, criterion >= 0.6
else
Build-Depends: base < 3,
deepseq >= 1.2, unix >= 2.3

Ghc-Options: -O2
51 changes: 51 additions & 0 deletions feed/0.3.9.3/feed.cabal
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
Name: feed
Version: 0.3.9.3
License: BSD3
License-file: LICENSE
Category: Text
Synopsis: Interfacing with RSS (v 0.9x, 2.x, 1.0) + Atom feeds.
Description: Interfacing with RSS (v 0.9x, 2.x, 1.0) + Atom feeds.
.
To help working with the multiple feed formats we've
ended up with, this set of modules provides parsers,
pretty printers and some utility code for querying
and just generally working with a concrete representation
of feeds in Haskell.
Author: Sigbjorn Finne <sof@forkIO.com>
Maintainer: Sigbjorn Finne <sof@forkIO.com>
Homepage: https://github.com/sof/feed
Extra-Source-Files: tests/Main.hs tests/rss20.xml CHANGES
Cabal-version: >= 1.2
build-type: Simple

library
Exposed-Modules: Text.RSS.Syntax
Text.RSS.Import
Text.RSS.Export
Text.RSS1.Syntax
Text.RSS1.Import
Text.RSS1.Utils
Text.RSS1.Export
Text.DublinCore.Types
Text.Atom.Feed
Text.Atom.Feed.Export
Text.Atom.Feed.Import
Text.Atom.Feed.Link
Text.Atom.Feed.Validate
Text.Atom.Pub
Text.Atom.Pub.Export
Text.Feed.Import
Text.Feed.Types
Text.Feed.Export
Text.Feed.Query
Text.Feed.Constructor
Text.Feed.Translate
Text.Feed.Util
Ghc-Options: -Wall
Build-Depends: base >= 4 && < 5,
old-locale >= 1,
old-time >= 1,
xml >= 1.2.6,
utf8-string,
time,
time-locale-compat >= 0.1 && < 0.2

0 comments on commit 7291c19

Please sign in to comment.