[DHG_packages] 03/03: text-metrics: Initial release of v0.3.0

Ilias Tsitsimpis iliastsi-guest at moszumanska.debian.org
Mon Nov 6 14:04:46 UTC 2017


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

iliastsi-guest pushed a commit to branch master
in repository DHG_packages.

commit 7cb313a396619a10353fc67ad5b6f546f1e9f7be
Author: Ilias Tsitsimpis <iliastsi at debian.org>
Date:   Mon Nov 6 15:51:57 2017 +0200

    text-metrics: Initial release of v0.3.0
    
    Closes: #879846
---
 p/haskell-text-metrics/debian/changelog     |  5 ++
 p/haskell-text-metrics/debian/compat        |  1 +
 p/haskell-text-metrics/debian/control       | 82 +++++++++++++++++++++++++++++
 p/haskell-text-metrics/debian/copyright     | 42 +++++++++++++++
 p/haskell-text-metrics/debian/rules         | 12 +++++
 p/haskell-text-metrics/debian/source/format |  1 +
 p/haskell-text-metrics/debian/watch         |  2 +
 7 files changed, 145 insertions(+)

diff --git a/p/haskell-text-metrics/debian/changelog b/p/haskell-text-metrics/debian/changelog
new file mode 100644
index 0000000..f7ab2fb
--- /dev/null
+++ b/p/haskell-text-metrics/debian/changelog
@@ -0,0 +1,5 @@
+haskell-text-metrics (0.3.0-1) unstable; urgency=low
+
+  * Initial release (Closes: #879846)
+
+ -- Ilias Tsitsimpis <iliastsi at debian.org>  Mon, 06 Nov 2017 15:47:35 +0200
diff --git a/p/haskell-text-metrics/debian/compat b/p/haskell-text-metrics/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/p/haskell-text-metrics/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/p/haskell-text-metrics/debian/control b/p/haskell-text-metrics/debian/control
new file mode 100644
index 0000000..f5da21c
--- /dev/null
+++ b/p/haskell-text-metrics/debian/control
@@ -0,0 +1,82 @@
+Source: haskell-text-metrics
+Maintainer: Debian Haskell Group <pkg-haskell-maintainers at lists.alioth.debian.org>
+Uploaders: Ilias Tsitsimpis <iliastsi at debian.org>
+Priority: optional
+Section: haskell
+Build-Depends: debhelper (>= 9),
+ haskell-devscripts-minimal | haskell-devscripts (>= 0.9),
+ cdbs,
+ ghc,
+ ghc-prof,
+ libghc-text-dev (>= 0.2),
+ libghc-text-dev (<< 1.3),
+ libghc-text-prof,
+ libghc-vector-dev (>= 0.11),
+ libghc-vector-dev (<< 0.13),
+ libghc-vector-prof,
+ libghc-quickcheck2-dev (>= 2.8),
+ libghc-quickcheck2-dev (<< 3.0),
+ libghc-hspec-dev (>= 2.0),
+ libghc-hspec-dev (<< 3.0),
+Build-Depends-Indep: ghc-doc,
+ libghc-text-doc,
+ libghc-vector-doc,
+Standards-Version: 4.1.1
+Homepage: https://github.com/mrkkrp/text-metrics
+Vcs-Browser: https://anonscm.debian.org/cgit/pkg-haskell/DHG_packages.git/tree/p/haskell-text-metrics
+Vcs-Git: https://anonscm.debian.org/cgit/pkg-haskell/DHG_packages.git
+X-Description: Calculate various string metrics efficiently
+ This library provides efficient implementations of various strings metric
+ algorithms. It works with strict Text values.
+ .
+ The current version implements the following algorithms:
+ .
+  * Levenshtein distance
+  * Normalized Levenshtein distance
+  * Damerau-Levenshtein distance
+  * Normalized Damerau-Levenshtein distance
+  * Hamming distance
+  * Jaro distance
+  * Jaro-Winkler distance
+  * Overlap coefficient
+  * Jaccard similarity coefficient
+
+Package: libghc-text-metrics-dev
+Architecture: any
+Depends: ${haskell:Depends},
+ ${misc:Depends},
+ ${shlibs:Depends},
+Recommends: ${haskell:Recommends},
+Suggests: ${haskell:Suggests},
+Conflicts: ${haskell:Conflicts},
+Provides: ${haskell:Provides},
+Description: ${haskell:ShortDescription}${haskell:ShortBlurb}
+ ${haskell:LongDescription}
+ .
+ ${haskell:Blurb}
+
+Package: libghc-text-metrics-prof
+Architecture: any
+Depends: ${haskell:Depends},
+ ${misc:Depends},
+Recommends: ${haskell:Recommends},
+Suggests: ${haskell:Suggests},
+Conflicts: ${haskell:Conflicts},
+Provides: ${haskell:Provides},
+Description: ${haskell:ShortDescription}${haskell:ShortBlurb}
+ ${haskell:LongDescription}
+ .
+ ${haskell:Blurb}
+
+Package: libghc-text-metrics-doc
+Architecture: all
+Section: doc
+Depends: ${haskell:Depends},
+ ${misc:Depends},
+Recommends: ${haskell:Recommends},
+Suggests: ${haskell:Suggests},
+Conflicts: ${haskell:Conflicts},
+Description: ${haskell:ShortDescription}${haskell:ShortBlurb}
+ ${haskell:LongDescription}
+ .
+ ${haskell:Blurb}
diff --git a/p/haskell-text-metrics/debian/copyright b/p/haskell-text-metrics/debian/copyright
new file mode 100644
index 0000000..d099c8f
--- /dev/null
+++ b/p/haskell-text-metrics/debian/copyright
@@ -0,0 +1,42 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: text-metrics
+Upstream-Contact: Mark Karpov <markkarpov92 at gmail.com>
+Source: https://hackage.haskell.org/package/text-metrics
+
+Files: *
+Copyright: 2016-2017 Mark Karpov
+License: BSD-3-clause
+
+Files: debian/*
+Copyright: held by the contributors mentioned in debian/changelog
+License: BSD-3-clause
+
+License: BSD-3-clause
+ Copyright © 2016-2017 Mark Karpov
+ .
+ All rights reserved.
+ .
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are met:
+ .
+ * Redistributions of source code must retain the above copyright notice,
+   this list of conditions and the following disclaimer.
+ .
+ * Redistributions in binary form must reproduce the above copyright
+   notice, this list of conditions and the following disclaimer in the
+   documentation and/or other materials provided with the distribution.
+ .
+ * Neither the name Mark Karpov nor the names of contributors may be used to
+   endorse or promote products derived from this software without specific
+   prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS "AS IS" AND ANY EXPRESS
+ OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
+ NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY DIRECT, INDIRECT,
+ INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
+ OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
+ EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff --git a/p/haskell-text-metrics/debian/rules b/p/haskell-text-metrics/debian/rules
new file mode 100755
index 0000000..3630a88
--- /dev/null
+++ b/p/haskell-text-metrics/debian/rules
@@ -0,0 +1,12 @@
+#!/usr/bin/make -f
+
+DEB_ENABLE_TESTS = yes
+DEB_SETUP_BIN_NAME = debian/hlibrary.setup
+DEB_CABAL_PACKAGE = text-metrics
+DEB_DEFAULT_COMPILER = ghc
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/hlibrary.mk
+
+# Without this, tests fail
+check-ghc-stamp: export LC_ALL := C.UTF-8
diff --git a/p/haskell-text-metrics/debian/source/format b/p/haskell-text-metrics/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/p/haskell-text-metrics/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/p/haskell-text-metrics/debian/watch b/p/haskell-text-metrics/debian/watch
new file mode 100644
index 0000000..9635fc5
--- /dev/null
+++ b/p/haskell-text-metrics/debian/watch
@@ -0,0 +1,2 @@
+version=3
+https://hackage.haskell.org/package/text-metrics/distro-monitor .*-([0-9\.]+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))

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



More information about the Pkg-haskell-commits mailing list