[Pkg-haskell-commits] [package-plan] 01/01: Add pristine tabular cabal file

Joachim Breitner nomeata at moszumanska.debian.org
Tue Jan 20 09:47:08 UTC 2015


This is an automated email from the git hooks/post-receive script.

nomeata pushed a commit to branch ghc-7.8
in repository package-plan.

commit e1101ddc6267ad1d28176e0b08c7e986a70ab39d
Author: Joachim Breitner <mail at joachim-breitner.de>
Date:   Tue Jan 20 10:47:05 2015 +0100

    Add pristine tabular cabal file
---
 additional-cabals/tabular-0.2.2.5.cabal | 47 +++++++++++++++++++++++++++++++++
 1 file changed, 47 insertions(+)

diff --git a/additional-cabals/tabular-0.2.2.5.cabal b/additional-cabals/tabular-0.2.2.5.cabal
new file mode 100644
index 0000000..64d84c6
--- /dev/null
+++ b/additional-cabals/tabular-0.2.2.5.cabal
@@ -0,0 +1,47 @@
+name:                tabular
+version:             0.2.2.5
+synopsis:            Two-dimensional data tables with rendering functions
+description:         Tabular provides a Haskell representation of two-dimensional
+                     data tables, the kind that you might find in a spreadsheet or
+                     or a research report.  It also comes with some default
+                     rendering functions for turning those tables into ASCII art,
+                     simple text with an arbitrary delimiter, CSV, HTML or LaTeX.
+                     .
+                     Below is an example of the kind of output this library produces.
+                     The tabular package can group rows and columns, each group
+                     having one of three separators (no line, single line, double line)
+                     between its members.
+                     .
+                     >     || memtest 1 | memtest 2 ||  time test  | time test 2
+                     > ====++===========+===========++=============+============
+                     > A 1 ||       hog |  terrible ||        slow |      slower
+                     > A 2 ||       pig |   not bad ||        fast |     slowest
+                     > ----++-----------+-----------++-------------+------------
+                     > B 1 ||      good |     awful || intolerable |    bearable
+                     > B 2 ||    better | no chance ||    crawling |     amazing
+                     > B 3 ||       meh |   well... ||  worst ever |          ok
+category:            Text
+license:             BSD3
+license-file:        LICENSE
+author:              Eric Kow
+maintainer:          Eric Kow <eric.kow at gmail.com>
+homepage:            http://hub.darcs.net/kowey/tabular
+cabal-version:       >= 1.8
+build-type:          Simple
+data-files: example/sample1.hs,
+            example/sample1.tex
+
+source-repository head
+  type:     darcs
+  location: http://hub.darcs.net/kowey/tabular
+
+library
+  build-Depends:       base >= 2.1 && < 5, mtl >= 1 && < 2.2,
+                       csv  >= 0.1 && < 0.2,
+                       html >= 1.0 && < 2.0
+  exposed-modules:     Text.Tabular,
+                       Text.Tabular.AsciiArt,
+                       Text.Tabular.SimpleText,
+                       Text.Tabular.Csv,
+                       Text.Tabular.Html,
+                       Text.Tabular.Latex

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-haskell/package-plan.git



More information about the Pkg-haskell-commits mailing list